@flowio/api-prop-types 10.16.90 → 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.
Files changed (5) hide show
  1. package/lib/api.d.ts +577 -104
  2. package/lib/api.js +1 -1
  3. package/package.json +2 -2
  4. package/src/api.d.ts +577 -104
  5. package/src/api.js +1953 -1399
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([
@@ -1066,6 +1188,21 @@ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
1066
1188
  messages: PropTypes.arrayOf(PropTypes.string).isRequired,
1067
1189
  });
1068
1190
 
1191
+ T['io.flow.token.v0.models.token_partner_reference'] = PropTypes.exact({
1192
+ id: PropTypes.string.isRequired,
1193
+ });
1194
+
1195
+ T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
1196
+ id: PropTypes.string.isRequired,
1197
+ });
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
+
1069
1206
  T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
1070
1207
  discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
1071
1208
  interval: PropTypes.number.isRequired,
@@ -1092,6 +1229,24 @@ T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
1092
1229
  id: PropTypes.string.isRequired,
1093
1230
  });
1094
1231
 
1232
+ T['io.flow.token.v0.models.channel_token_reference'] = PropTypes.exact({
1233
+ discriminator: PropTypes.oneOf(['channel_token_reference']).isRequired,
1234
+ id: PropTypes.string.isRequired,
1235
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
1236
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
1237
+ });
1238
+
1239
+ T['io.flow.token.v0.models.channel_token'] = PropTypes.exact({
1240
+ discriminator: PropTypes.oneOf(['channel_token']).isRequired,
1241
+ id: PropTypes.string.isRequired,
1242
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
1243
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
1244
+ partial: PropTypes.string.isRequired,
1245
+ cleartext: PropTypes.string,
1246
+ created_at: PropTypes.string.isRequired,
1247
+ description: PropTypes.string,
1248
+ });
1249
+
1095
1250
  T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
1096
1251
  T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
1097
1252
  T['io.flow.common.v0.enums.calendar'] = PropTypes.oneOf(['weekdays', 'everyday']);
@@ -1176,8 +1331,29 @@ T['io.flow.common.v0.models.organization_defaults'] = PropTypes.exact({
1176
1331
  timezone: PropTypes.string.isRequired,
1177
1332
  });
1178
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
+
1179
1349
  T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
1180
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
+
1181
1357
  T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
1182
1358
  name: PropTypes.string,
1183
1359
  environment: T['io.flow.common.v0.enums.environment'],
@@ -1206,6 +1382,42 @@ T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact
1206
1382
  environment: T['io.flow.common.v0.enums.environment'].isRequired,
1207
1383
  });
1208
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
+
1392
+ T['io.flow.token.v0.models.partner_token_reference'] = PropTypes.exact({
1393
+ discriminator: PropTypes.oneOf(['partner_token_reference']).isRequired,
1394
+ id: PropTypes.string.isRequired,
1395
+ partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
1396
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1397
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
1398
+ });
1399
+
1400
+ T['io.flow.token.v0.models.partner_token_form'] = PropTypes.exact({
1401
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1402
+ description: PropTypes.string,
1403
+ });
1404
+
1405
+ T['io.flow.token.v0.models.partner_token'] = PropTypes.exact({
1406
+ discriminator: PropTypes.oneOf(['partner_token']).isRequired,
1407
+ id: PropTypes.string.isRequired,
1408
+ partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
1409
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
1410
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1411
+ partial: PropTypes.string.isRequired,
1412
+ created_at: PropTypes.string.isRequired,
1413
+ description: PropTypes.string,
1414
+ });
1415
+
1416
+ T['io.flow.token.v0.models.organization_token_form'] = PropTypes.exact({
1417
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1418
+ description: PropTypes.string,
1419
+ });
1420
+
1209
1421
  T['io.flow.common.v0.models.organization_summary'] = PropTypes.exact({
1210
1422
  id: PropTypes.string.isRequired,
1211
1423
  name: PropTypes.string.isRequired,
@@ -1222,6 +1434,67 @@ T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
1222
1434
  id: PropTypes.string.isRequired,
1223
1435
  });
1224
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
+
1448
+ T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
1449
+ discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
1450
+ id: PropTypes.string.isRequired,
1451
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
1452
+ });
1453
+
1454
+ T['io.flow.token.v0.models.organization_token_v2'] = PropTypes.exact({
1455
+ discriminator: PropTypes.oneOf(['organization_token_v2']).isRequired,
1456
+ id: PropTypes.string.isRequired,
1457
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
1458
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
1459
+ partial: PropTypes.string.isRequired,
1460
+ cleartext: PropTypes.string,
1461
+ created_at: PropTypes.string.isRequired,
1462
+ description: PropTypes.string,
1463
+ });
1464
+
1465
+ T['io.flow.token.v0.models.organization_token_reference'] = PropTypes.exact({
1466
+ discriminator: PropTypes.oneOf(['organization_token_reference']).isRequired,
1467
+ id: PropTypes.string.isRequired,
1468
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
1469
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1470
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
1471
+ });
1472
+
1473
+ T['io.flow.token.v0.unions.token_reference'] = PropTypes.oneOfType([
1474
+ T['io.flow.token.v0.models.channel_token_reference'],
1475
+ T['io.flow.token.v0.models.organization_token_reference'],
1476
+ T['io.flow.token.v0.models.organization_token_v2_reference'],
1477
+ T['io.flow.token.v0.models.partner_token_reference'],
1478
+ ]);
1479
+
1480
+ T['io.flow.token.v0.models.organization_token'] = PropTypes.exact({
1481
+ discriminator: PropTypes.oneOf(['organization_token']).isRequired,
1482
+ id: PropTypes.string.isRequired,
1483
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
1484
+ user: T['io.flow.common.v0.models.user_reference'].isRequired,
1485
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1486
+ partial: PropTypes.string.isRequired,
1487
+ created_at: PropTypes.string.isRequired,
1488
+ description: PropTypes.string,
1489
+ });
1490
+
1491
+ T['io.flow.token.v0.unions.token'] = PropTypes.oneOfType([
1492
+ T['io.flow.token.v0.models.channel_token'],
1493
+ T['io.flow.token.v0.models.organization_token'],
1494
+ T['io.flow.token.v0.models.organization_token_v2'],
1495
+ T['io.flow.token.v0.models.partner_token'],
1496
+ ]);
1497
+
1225
1498
  T['io.flow.common.v0.models.organization'] = PropTypes.exact({
1226
1499
  discriminator: PropTypes.oneOf(['organization']).isRequired,
1227
1500
  id: PropTypes.string.isRequired,
@@ -1687,6 +1960,13 @@ T['io.flow.permission.v0.models.permission_check'] = PropTypes.exact({
1687
1960
  routes: PropTypes.arrayOf(T['io.flow.permission.v0.models.permitted_route']).isRequired,
1688
1961
  });
1689
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
+
1690
1970
  T['io.flow.organization.v0.models.membership'] = PropTypes.exact({
1691
1971
  id: PropTypes.string.isRequired,
1692
1972
  organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
@@ -1826,437 +2106,6 @@ T['io.flow.common.v0.models.order_customer'] = PropTypes.exact({
1826
2106
  invoice: T['io.flow.common.v0.models.customer_invoice'],
1827
2107
  });
1828
2108
 
1829
- T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
1830
- 'adjustment',
1831
- 'vat_deminimis',
1832
- 'duty_deminimis',
1833
- 'duties_item_price',
1834
- 'duties_freight',
1835
- 'duties_insurance',
1836
- 'vat_item_price',
1837
- 'vat_freight',
1838
- 'vat_insurance',
1839
- 'vat_duties_item_price',
1840
- 'vat_duties_freight',
1841
- 'vat_duties_insurance',
1842
- 'item_price',
1843
- 'item_discount',
1844
- 'rounding',
1845
- 'insurance',
1846
- 'shipping',
1847
- 'shipping_discount',
1848
- 'order_discount',
1849
- 'subtotal_percent_sales_margin',
1850
- 'subtotal_vat_percent_sales_margin',
1851
- 'subtotal_duty_percent_sales_margin',
1852
- 'vat_subsidy',
1853
- 'duty_subsidy',
1854
- 'remote_area_surcharge',
1855
- 'fuel_surcharge',
1856
- 'emergency_situation_surcharge',
1857
- 'peak_surcharge',
1858
- 'duties_taxes_paid_surcharge',
1859
- 'tip',
1860
- ]);
1861
-
1862
- T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
1863
-
1864
- T['io.flow.common.v0.models.price'] = PropTypes.exact({
1865
- amount: PropTypes.number.isRequired,
1866
- currency: PropTypes.string.isRequired,
1867
- label: PropTypes.string.isRequired,
1868
- });
1869
-
1870
- T['io.flow.catalog.v0.models.localized_item_price'] = PropTypes.exact({
1871
- key: PropTypes.oneOf(['localized_item_price']).isRequired,
1872
- currency: PropTypes.string.isRequired,
1873
- amount: PropTypes.number.isRequired,
1874
- label: PropTypes.string.isRequired,
1875
- base: T['io.flow.common.v0.models.price'].isRequired,
1876
- includes: T['io.flow.common.v0.models.included_levies'],
1877
- });
1878
-
1879
- T['io.flow.catalog.v0.models.localized_adjustment'] = PropTypes.exact({
1880
- currency: PropTypes.string.isRequired,
1881
- amount: PropTypes.number.isRequired,
1882
- label: PropTypes.string.isRequired,
1883
- base: T['io.flow.common.v0.models.price'].isRequired,
1884
- reason: T['io.flow.catalog.v0.models.adjustment_reason'].isRequired,
1885
- });
1886
-
1887
- T['io.flow.catalog.v0.models.localized_item_vat'] = PropTypes.exact({
1888
- key: PropTypes.oneOf(['localized_item_vat']).isRequired,
1889
- currency: PropTypes.string.isRequired,
1890
- amount: PropTypes.number.isRequired,
1891
- label: PropTypes.string.isRequired,
1892
- base: T['io.flow.common.v0.models.price'].isRequired,
1893
- name: PropTypes.string.isRequired,
1894
- adjustment: T['io.flow.catalog.v0.models.localized_adjustment'],
1895
- accuracy: T['io.flow.price.v0.enums.price_accuracy'],
1896
- basis: T['io.flow.common.v0.models.money_with_base'],
1897
- });
1898
-
1899
- T['io.flow.catalog.v0.models.localized_item_duty'] = PropTypes.exact({
1900
- key: PropTypes.oneOf(['localized_item_duty']).isRequired,
1901
- currency: PropTypes.string.isRequired,
1902
- amount: PropTypes.number.isRequired,
1903
- label: PropTypes.string.isRequired,
1904
- base: T['io.flow.common.v0.models.price'].isRequired,
1905
- adjustment: T['io.flow.catalog.v0.models.localized_adjustment'],
1906
- basis: T['io.flow.common.v0.models.money_with_base'],
1907
- });
1908
-
1909
- T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
1910
- id: PropTypes.string.isRequired,
1911
- number: PropTypes.string.isRequired,
1912
- key: PropTypes.string.isRequired,
1913
- position: PropTypes.number.isRequired,
1914
- price: T['io.flow.common.v0.models.price'],
1915
- categories: PropTypes.arrayOf(PropTypes.string),
1916
- description: PropTypes.string,
1917
- attributes: PropTypes.objectOf(PropTypes.string),
1918
- dimensions: T['io.flow.common.v0.models.dimensions'],
1919
- images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
1920
- deleted_at: PropTypes.string,
1921
- });
1922
-
1923
- T['io.flow.fulfillment.v0.models.flat_rate'] = PropTypes.exact({
1924
- discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
1925
- price: T['io.flow.common.v0.models.price'].isRequired,
1926
- zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
1927
- });
1928
-
1929
- T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
1930
- key: PropTypes.oneOf(['localized_total']).isRequired,
1931
- currency: PropTypes.string.isRequired,
1932
- amount: PropTypes.number.isRequired,
1933
- label: PropTypes.string.isRequired,
1934
- base: T['io.flow.common.v0.models.price'].isRequired,
1935
- });
1936
-
1937
- T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
1938
- T['io.flow.catalog.v0.models.localized_item_price'],
1939
- T['io.flow.catalog.v0.models.localized_item_vat'],
1940
- T['io.flow.catalog.v0.models.localized_item_duty'],
1941
- T['io.flow.catalog.v0.models.localized_total'],
1942
- ]);
1943
-
1944
- T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
1945
- id: PropTypes.string.isRequired,
1946
- cost: T['io.flow.common.v0.models.price'].isRequired,
1947
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
1948
- price: T['io.flow.common.v0.models.price'].isRequired,
1949
- service: T['io.flow.fulfillment.v0.models.service_reference'].isRequired,
1950
- tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
1951
- window: T['io.flow.common.v0.models.datetime_range'].isRequired,
1952
- });
1953
-
1954
- T['io.flow.fulfillment.v0.models.delivery_option_version'] = PropTypes.exact({
1955
- id: PropTypes.string.isRequired,
1956
- timestamp: PropTypes.string.isRequired,
1957
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
1958
- delivery_option: T['io.flow.fulfillment.v0.models.delivery_option_summary'].isRequired,
1959
- });
1960
-
1961
- T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.exact({
1962
- key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
1963
- currency: PropTypes.string.isRequired,
1964
- amount: PropTypes.number.isRequired,
1965
- label: PropTypes.string.isRequired,
1966
- base: T['io.flow.common.v0.models.price'],
1967
- });
1968
-
1969
- T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
1970
- source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
1971
- ratecard_id: PropTypes.string,
1972
- currency: PropTypes.string.isRequired,
1973
- amount: PropTypes.number.isRequired,
1974
- label: PropTypes.string.isRequired,
1975
- base: T['io.flow.common.v0.models.price'],
1976
- components: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_component']).isRequired,
1977
- });
1978
-
1979
- T['io.flow.fulfillment.v0.models.price_with_base_and_details'] = PropTypes.exact({
1980
- currency: PropTypes.string.isRequired,
1981
- amount: PropTypes.number.isRequired,
1982
- label: PropTypes.string.isRequired,
1983
- base: T['io.flow.common.v0.models.price'],
1984
- details: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_detail']),
1985
- });
1986
-
1987
- T['io.flow.fulfillment.v0.models.item_shipping_pricing'] = PropTypes.exact({
1988
- min: T['io.flow.common.v0.models.price'].isRequired,
1989
- max: T['io.flow.common.v0.models.price'],
1990
- });
1991
-
1992
- T['io.flow.fulfillment.v0.models.country_shipping_pricing'] = PropTypes.exact({
1993
- pricing: T['io.flow.fulfillment.v0.models.item_shipping_pricing'].isRequired,
1994
- countries: PropTypes.arrayOf(PropTypes.string).isRequired,
1995
- });
1996
-
1997
- T['io.flow.fulfillment.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
1998
- id: PropTypes.string.isRequired,
1999
- item: T['io.flow.common.v0.models.item_reference'].isRequired,
2000
- shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
2001
- country_shipping_pricings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_shipping_pricing']).isRequired,
2002
- });
2003
-
2004
- T['io.flow.fulfillment.v0.models.amount_margin'] = PropTypes.exact({
2005
- discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
2006
- margin: T['io.flow.common.v0.models.price'].isRequired,
2007
- });
2008
-
2009
- T['io.flow.fulfillment.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
2010
- T['io.flow.fulfillment.v0.models.amount_margin'],
2011
- T['io.flow.fulfillment.v0.models.at_cost'],
2012
- T['io.flow.fulfillment.v0.models.flat_rate'],
2013
- T['io.flow.fulfillment.v0.models.percent_margin'],
2014
- ]);
2015
-
2016
- T['io.flow.fulfillment.v0.models.tier_rule'] = PropTypes.exact({
2017
- id: PropTypes.string.isRequired,
2018
- position: PropTypes.number.isRequired,
2019
- query: PropTypes.string.isRequired,
2020
- outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'].isRequired,
2021
- });
2022
-
2023
- T['io.flow.fulfillment.v0.models.tier_rule_version'] = PropTypes.exact({
2024
- id: PropTypes.string.isRequired,
2025
- timestamp: PropTypes.string.isRequired,
2026
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
2027
- tier_rule: T['io.flow.fulfillment.v0.models.tier_rule'].isRequired,
2028
- });
2029
-
2030
- T['io.flow.fulfillment.v0.models.tier'] = PropTypes.exact({
2031
- id: PropTypes.string.isRequired,
2032
- direction: T['io.flow.fulfillment.v0.enums.lane_direction'].isRequired,
2033
- integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
2034
- name: PropTypes.string.isRequired,
2035
- message: PropTypes.string,
2036
- rules: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier_rule']).isRequired,
2037
- services: PropTypes.arrayOf(T['io.flow.reference.v0.models.carrier_service']).isRequired,
2038
- strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
2039
- visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
2040
- currency: PropTypes.string.isRequired,
2041
- description: PropTypes.string,
2042
- display: T['io.flow.fulfillment.v0.models.tier_display'],
2043
- shipping_lane: PropTypes.string,
2044
- surcharge_settings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_setting']),
2045
- lane: T['io.flow.fulfillment.v0.models.shipping_lane_summary'],
2046
- settings: T['io.flow.fulfillment.v0.models.tier_settings'],
2047
- });
2048
-
2049
- T['io.flow.fulfillment.v0.models.shipping_lane'] = PropTypes.exact({
2050
- id: PropTypes.string.isRequired,
2051
- shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
2052
- region: PropTypes.string.isRequired,
2053
- centers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.expandable_center']).isRequired,
2054
- tiers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier']).isRequired,
2055
- query: T['io.flow.query.builder.v0.models.query'].isRequired,
2056
- strategy: T['io.flow.fulfillment.v0.enums.lane_strategy'].isRequired,
2057
- direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
2058
- preference: T['io.flow.fulfillment.v0.enums.lane_preselect_preference'],
2059
- });
2060
-
2061
- T['io.flow.fulfillment.v0.models.shipping_lane_version'] = PropTypes.exact({
2062
- id: PropTypes.string.isRequired,
2063
- timestamp: PropTypes.string.isRequired,
2064
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
2065
- shipping_lane: T['io.flow.fulfillment.v0.models.shipping_lane'].isRequired,
2066
- });
2067
-
2068
- T['io.flow.fulfillment.v0.models.shipping_configuration'] = PropTypes.exact({
2069
- id: PropTypes.string.isRequired,
2070
- name: PropTypes.string.isRequired,
2071
- key: PropTypes.string.isRequired,
2072
- type: T['io.flow.fulfillment.v0.enums.shipping_configuration_type'].isRequired,
2073
- shipping_lanes: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.shipping_lane']).isRequired,
2074
- });
2075
-
2076
- T['io.flow.fulfillment.v0.models.shipping_configuration_version'] = PropTypes.exact({
2077
- id: PropTypes.string.isRequired,
2078
- timestamp: PropTypes.string.isRequired,
2079
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
2080
- shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration'].isRequired,
2081
- });
2082
-
2083
- T['io.flow.fulfillment.v0.models.delivery_option'] = PropTypes.exact({
2084
- id: PropTypes.string.isRequired,
2085
- cost: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
2086
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
2087
- price: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
2088
- service: T['io.flow.fulfillment.v0.models.service_summary'].isRequired,
2089
- tier: T['io.flow.fulfillment.v0.models.tier_summary'].isRequired,
2090
- window: T['io.flow.fulfillment.v0.models.delivery_window'].isRequired,
2091
- rule_outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'],
2092
- weight: T['io.flow.fulfillment.v0.models.option_weight_estimates'],
2093
- send_to: T['io.flow.fulfillment.v0.models.shipping_address'],
2094
- surcharge: T['io.flow.fulfillment.v0.models.price_with_base_and_details'],
2095
- ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
2096
- });
2097
-
2098
- T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
2099
- id: PropTypes.string.isRequired,
2100
- key: PropTypes.string.isRequired,
2101
- price_book: T['io.flow.price.v0.models.price_book_reference'].isRequired,
2102
- price: T['io.flow.common.v0.models.price'].isRequired,
2103
- item_number: PropTypes.string.isRequired,
2104
- schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
2105
- item_attributes: PropTypes.objectOf(PropTypes.string),
2106
- });
2107
-
2108
- T['io.flow.price.v0.models.price_details'] = PropTypes.exact({
2109
- currency: PropTypes.string.isRequired,
2110
- item_price: T['io.flow.price.v0.models.price_detail'].isRequired,
2111
- margins: T['io.flow.price.v0.models.price_detail'].isRequired,
2112
- vat: T['io.flow.price.v0.models.price_detail'].isRequired,
2113
- duty: T['io.flow.price.v0.models.price_detail'].isRequired,
2114
- rounding: T['io.flow.price.v0.models.price_detail'].isRequired,
2115
- price: T['io.flow.common.v0.models.price'].isRequired,
2116
- total: T['io.flow.common.v0.models.price'].isRequired,
2117
- adjustment: T['io.flow.price.v0.models.price_detail'],
2118
- });
2119
-
2120
- T['io.flow.price.v0.models.local_price_details'] = PropTypes.exact({
2121
- base: T['io.flow.price.v0.models.price_details'].isRequired,
2122
- local: T['io.flow.price.v0.models.price_details'].isRequired,
2123
- discount: T['io.flow.price.v0.models.price_detail'],
2124
- local_before_discount: T['io.flow.price.v0.models.price_detail'],
2125
- });
2126
-
2127
- T['io.flow.price.v0.models.price_check'] = PropTypes.exact({
2128
- display: T['io.flow.price.v0.models.local_price_details'].isRequired,
2129
- 'final': T['io.flow.price.v0.models.local_price_details'].isRequired,
2130
- });
2131
-
2132
- T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
2133
- currency: PropTypes.string.isRequired,
2134
- amount: PropTypes.number.isRequired,
2135
- label: PropTypes.string.isRequired,
2136
- base: T['io.flow.common.v0.models.price'],
2137
- });
2138
-
2139
- T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
2140
- experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
2141
- prices: PropTypes.arrayOf(T['io.flow.catalog.v0.unions.localized_price']).isRequired,
2142
- rates: PropTypes.arrayOf(T['io.flow.currency.v0.models.rate']).isRequired,
2143
- spot_rates: PropTypes.arrayOf(PropTypes.object).isRequired,
2144
- status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
2145
- attributes: PropTypes.objectOf(PropTypes.string),
2146
- price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
2147
- });
2148
-
2149
- T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
2150
- id: PropTypes.string.isRequired,
2151
- number: PropTypes.string.isRequired,
2152
- locale: PropTypes.string.isRequired,
2153
- name: PropTypes.string.isRequired,
2154
- price: T['io.flow.common.v0.models.price'].isRequired,
2155
- categories: PropTypes.arrayOf(PropTypes.string).isRequired,
2156
- description: PropTypes.string,
2157
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
2158
- dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
2159
- images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
2160
- local: T['io.flow.catalog.v0.models.local'],
2161
- created_at: PropTypes.string,
2162
- updated_at: PropTypes.string,
2163
- deleted_at: PropTypes.string,
2164
- });
2165
-
2166
- T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
2167
- id: PropTypes.string.isRequired,
2168
- item: T['io.flow.catalog.v0.models.item'].isRequired,
2169
- status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
2170
- });
2171
-
2172
- T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
2173
- id: PropTypes.string.isRequired,
2174
- timestamp: PropTypes.string.isRequired,
2175
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
2176
- subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
2177
- });
2178
-
2179
- T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
2180
- id: PropTypes.string.isRequired,
2181
- timestamp: PropTypes.string.isRequired,
2182
- type: T['io.flow.common.v0.enums.change_type'].isRequired,
2183
- item: T['io.flow.catalog.v0.models.item'].isRequired,
2184
- });
2185
-
2186
- T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
2187
- key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
2188
- currency: PropTypes.string.isRequired,
2189
- amount: PropTypes.number.isRequired,
2190
- label: PropTypes.string.isRequired,
2191
- base: T['io.flow.common.v0.models.price'].isRequired,
2192
- name: PropTypes.string,
2193
- });
2194
-
2195
- T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
2196
- 'adjustment',
2197
- 'subtotal',
2198
- 'vat',
2199
- 'duty',
2200
- 'shipping',
2201
- 'insurance',
2202
- 'discount',
2203
- 'surcharges',
2204
- 'tip',
2205
- ]);
2206
-
2207
- T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
2208
- key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
2209
- currency: PropTypes.string.isRequired,
2210
- amount: PropTypes.number.isRequired,
2211
- label: PropTypes.string.isRequired,
2212
- base: T['io.flow.common.v0.models.price'].isRequired,
2213
- components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
2214
- name: PropTypes.string,
2215
- rate: PropTypes.number,
2216
- accuracy: T['io.flow.price.v0.enums.price_accuracy'],
2217
- rate_label: PropTypes.string,
2218
- });
2219
-
2220
- T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
2221
- discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
2222
- id: PropTypes.string.isRequired,
2223
- key: PropTypes.string,
2224
- center: T['io.flow.fulfillment.v0.models.center_summary'],
2225
- fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
2226
- ship_from_country: PropTypes.string,
2227
- items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
2228
- options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
2229
- special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
2230
- prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
2231
- total: T['io.flow.catalog.v0.models.localized_total'],
2232
- goods_supply: T['io.flow.common.v0.enums.goods_supply'],
2233
- merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
2234
- preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
2235
- });
2236
-
2237
- T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
2238
- discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
2239
- id: PropTypes.string.isRequired,
2240
- key: PropTypes.string,
2241
- items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
2242
- prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
2243
- total: T['io.flow.catalog.v0.models.localized_total'],
2244
- });
2245
-
2246
- T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
2247
- T['io.flow.fulfillment.v0.models.digital_delivery'],
2248
- T['io.flow.fulfillment.v0.models.physical_delivery'],
2249
- ]);
2250
-
2251
- T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
2252
- id: PropTypes.string.isRequired,
2253
- destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
2254
- deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
2255
- selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
2256
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
2257
- delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
2258
- });
2259
-
2260
2109
  T['io.flow.shopify.external.v0.enums.topic'] = PropTypes.oneOf([
2261
2110
  'carts/create',
2262
2111
  'carts/update',
@@ -2908,6 +2757,22 @@ T['io.flow.shopify.external.v0.models.request_shopify_gift_card'] = PropTypes.ex
2908
2757
  T['io.flow.shopify.external.v0.enums.weight_unit'] = PropTypes.oneOf(['g', 'kg', 'oz', 'lb']);
2909
2758
  T['io.flow.shopify.external.v0.enums.inventory_management'] = PropTypes.oneOf(['blank', 'shopify']);
2910
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
+
2911
2776
  T['io.flow.shopify.external.v0.enums.published_scope'] = PropTypes.oneOf(['global']);
2912
2777
 
2913
2778
  T['io.flow.shopify.external.v0.models.option'] = PropTypes.exact({
@@ -3077,6 +2942,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
3077
2942
  created_at: PropTypes.string.isRequired,
3078
2943
  updated_at: PropTypes.string.isRequired,
3079
2944
  has_variants_that_requires_components: PropTypes.bool,
2945
+ category: T['io.flow.product.v0.models.product_taxonomy_category'],
3080
2946
  });
3081
2947
 
3082
2948
  T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
@@ -3087,6 +2953,16 @@ T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
3087
2953
  product: T['io.flow.shopify.external.v0.models.product'].isRequired,
3088
2954
  });
3089
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
+
3090
2966
  T['io.flow.shopify.external.v0.models.graphql_option'] = PropTypes.exact({
3091
2967
  id: PropTypes.string.isRequired,
3092
2968
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -3151,6 +3027,8 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
3151
3027
  createdAt: PropTypes.string.isRequired,
3152
3028
  updatedAt: PropTypes.string.isRequired,
3153
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']),
3154
3032
  });
3155
3033
 
3156
3034
  T['io.flow.stripe.v0.models.stripe_event_request'] = PropTypes.exact({
@@ -5454,6 +5332,14 @@ T['io.flow.v0.models.channel_deleted'] = PropTypes.exact({
5454
5332
  id: PropTypes.string.isRequired,
5455
5333
  });
5456
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
+
5457
5343
  T['io.flow.v0.models.catalog_statistics_deleted'] = PropTypes.exact({
5458
5344
  discriminator: PropTypes.oneOf(['catalog_statistics_deleted']).isRequired,
5459
5345
  event_id: PropTypes.string.isRequired,
@@ -5481,31 +5367,6 @@ T['io.flow.v0.models.subcatalog_item_upserted'] = PropTypes.exact({
5481
5367
  status: PropTypes.string.isRequired,
5482
5368
  });
5483
5369
 
5484
- T['io.flow.v0.models.catalog_item_deleted'] = PropTypes.exact({
5485
- discriminator: PropTypes.oneOf(['catalog_item_deleted']).isRequired,
5486
- event_id: PropTypes.string.isRequired,
5487
- timestamp: PropTypes.string.isRequired,
5488
- organization: PropTypes.string.isRequired,
5489
- number: PropTypes.string.isRequired,
5490
- });
5491
-
5492
- T['io.flow.v0.models.catalog_item_upserted'] = PropTypes.exact({
5493
- discriminator: PropTypes.oneOf(['catalog_item_upserted']).isRequired,
5494
- event_id: PropTypes.string.isRequired,
5495
- timestamp: PropTypes.string.isRequired,
5496
- organization: PropTypes.string.isRequired,
5497
- number: PropTypes.string.isRequired,
5498
- locale: PropTypes.string.isRequired,
5499
- name: PropTypes.string.isRequired,
5500
- currency: PropTypes.string.isRequired,
5501
- price: PropTypes.number.isRequired,
5502
- categories: PropTypes.arrayOf(PropTypes.string).isRequired,
5503
- description: PropTypes.string,
5504
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
5505
- dimensions: PropTypes.object.isRequired,
5506
- images: PropTypes.arrayOf(PropTypes.object).isRequired,
5507
- });
5508
-
5509
5370
  T['io.flow.v0.models.subcatalog_deleted'] = PropTypes.exact({
5510
5371
  discriminator: PropTypes.oneOf(['subcatalog_deleted']).isRequired,
5511
5372
  event_id: PropTypes.string.isRequired,
@@ -5611,6 +5472,13 @@ T['io.flow.v0.models.organization_transaction_deleted'] = PropTypes.exact({
5611
5472
  id: PropTypes.string.isRequired,
5612
5473
  });
5613
5474
 
5475
+ T['io.flow.v0.models.aldo_item_deleted'] = PropTypes.exact({
5476
+ discriminator: PropTypes.oneOf(['aldo_item_deleted']).isRequired,
5477
+ event_id: PropTypes.string.isRequired,
5478
+ timestamp: PropTypes.string.isRequired,
5479
+ id: PropTypes.string.isRequired,
5480
+ });
5481
+
5614
5482
  T['io.flow.v0.models.generate_load'] = PropTypes.exact({
5615
5483
  discriminator: PropTypes.oneOf(['generate_load']).isRequired,
5616
5484
  event_id: PropTypes.string.isRequired,
@@ -6418,6 +6286,26 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
6418
6286
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
6419
6287
  });
6420
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
+
6421
6309
  T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
6422
6310
 
6423
6311
  T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
@@ -6461,25 +6349,79 @@ T['io.flow.v0.models.reasons_per_region'] = PropTypes.exact({
6461
6349
  review_status: T['io.flow.v0.enums.restricted_review_status'].isRequired,
6462
6350
  });
6463
6351
 
6464
- T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
6465
- id: PropTypes.string.isRequired,
6466
- product_id: PropTypes.string.isRequired,
6352
+ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
6353
+ id: PropTypes.string.isRequired,
6354
+ product_id: PropTypes.string.isRequired,
6355
+ item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
6356
+ prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
6357
+ reasons_per_region: PropTypes.arrayOf(T['io.flow.v0.models.reasons_per_region']),
6358
+ review_status: T['io.flow.v0.enums.review_status'],
6359
+ rules: PropTypes.arrayOf(T['io.flow.v0.enums.product_restriction_rule']),
6360
+ updated_by: PropTypes.string,
6361
+ product_restriction_id: PropTypes.string,
6362
+ hs_code: PropTypes.string,
6363
+ });
6364
+
6365
+ T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
6366
+ discriminator: PropTypes.oneOf(['product_restriction_result_upserted']).isRequired,
6367
+ event_id: PropTypes.string.isRequired,
6368
+ timestamp: PropTypes.string.isRequired,
6369
+ organization: PropTypes.string.isRequired,
6370
+ product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
6371
+ });
6372
+
6373
+ T['io.flow.v0.models.product_taxonomy_data'] = PropTypes.exact({
6374
+ key: PropTypes.string.isRequired,
6375
+ value: PropTypes.arrayOf(PropTypes.string).isRequired,
6376
+ });
6377
+
6378
+ T['io.flow.v0.models.product_taxonomy_category'] = PropTypes.exact({
6379
+ name: 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']),
6467
6398
  item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
6468
- prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
6469
- reasons_per_region: PropTypes.arrayOf(T['io.flow.v0.models.reasons_per_region']),
6470
- review_status: T['io.flow.v0.enums.review_status'],
6471
- rules: PropTypes.arrayOf(T['io.flow.v0.enums.product_restriction_rule']),
6472
- updated_by: PropTypes.string,
6473
- product_restriction_id: PropTypes.string,
6474
- hs_code: PropTypes.string,
6399
+ updated_at: PropTypes.string.isRequired,
6400
+ deleted_at: PropTypes.string,
6475
6401
  });
6476
6402
 
6477
- T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
6478
- discriminator: PropTypes.oneOf(['product_restriction_result_upserted']).isRequired,
6403
+ T['io.flow.v0.models.product_updated'] = PropTypes.exact({
6404
+ discriminator: PropTypes.oneOf(['product_updated']).isRequired,
6479
6405
  event_id: PropTypes.string.isRequired,
6480
6406
  timestamp: PropTypes.string.isRequired,
6481
6407
  organization: PropTypes.string.isRequired,
6482
- product_restriction_result: T['io.flow.v0.models.product_restriction_result'].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,
6417
+ });
6418
+
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,
6483
6425
  });
6484
6426
 
6485
6427
  T['io.flow.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
@@ -9492,6 +9434,9 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
9492
9434
  'virtual_card_refund',
9493
9435
  'failed_payout',
9494
9436
  'tax_refund',
9437
+ 'order_fx',
9438
+ 'ge_revenue_share',
9439
+ 'tax_duty_delta',
9495
9440
  ]);
9496
9441
 
9497
9442
  T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
@@ -9522,6 +9467,60 @@ T['io.flow.v0.models.settlement_no_payout'] = PropTypes.exact({
9522
9467
  placeholder: PropTypes.string,
9523
9468
  });
9524
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
+
9525
9524
  T['io.flow.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
9526
9525
  'waiting_for_full_refund',
9527
9526
  'waiting_for_fulfillment',
@@ -9896,15 +9895,6 @@ T['io.flow.v0.models.image_form'] = PropTypes.exact({
9896
9895
  attributes: PropTypes.objectOf(PropTypes.string),
9897
9896
  });
9898
9897
 
9899
- T['io.flow.v0.models.experience_summary'] = PropTypes.exact({
9900
- id: PropTypes.string.isRequired,
9901
- key: PropTypes.string.isRequired,
9902
- name: PropTypes.string.isRequired,
9903
- country: PropTypes.string,
9904
- currency: PropTypes.string,
9905
- language: PropTypes.string,
9906
- });
9907
-
9908
9898
  T['io.flow.v0.models.image'] = PropTypes.exact({
9909
9899
  url: PropTypes.string.isRequired,
9910
9900
  tags: PropTypes.arrayOf(T['io.flow.v0.enums.image_tag']).isRequired,
@@ -9915,6 +9905,15 @@ T['io.flow.v0.models.catalog_item_document_images'] = PropTypes.exact({
9915
9905
  thumbnail: T['io.flow.v0.models.image'],
9916
9906
  });
9917
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
+
9918
9917
  T['io.flow.v0.models.catalog_item_document'] = PropTypes.exact({
9919
9918
  discriminator: PropTypes.oneOf(['catalog_item_document']).isRequired,
9920
9919
  number: PropTypes.string.isRequired,
@@ -11184,1229 +11183,1656 @@ T['io.flow.v0.models.experience'] = PropTypes.exact({
11184
11183
  status: T['io.flow.v0.enums.experience_status'],
11185
11184
  });
11186
11185
 
11187
- T['io.flow.v0.unions.expandable_experience'] = PropTypes.oneOfType([
11188
- T['io.flow.v0.models.experience'],
11189
- T['io.flow.v0.models.experience_reference'],
11186
+ T['io.flow.v0.unions.expandable_experience'] = PropTypes.oneOfType([
11187
+ T['io.flow.v0.models.experience'],
11188
+ T['io.flow.v0.models.experience_reference'],
11189
+ ]);
11190
+
11191
+ T['io.flow.v0.models.experience_upserted_v2'] = PropTypes.exact({
11192
+ discriminator: PropTypes.oneOf(['experience_upserted_v2']).isRequired,
11193
+ event_id: PropTypes.string.isRequired,
11194
+ timestamp: PropTypes.string.isRequired,
11195
+ organization: PropTypes.string.isRequired,
11196
+ experience: T['io.flow.v0.models.experience'].isRequired,
11197
+ });
11198
+
11199
+ T['io.flow.v0.models.experience_deleted_v2'] = PropTypes.exact({
11200
+ discriminator: PropTypes.oneOf(['experience_deleted_v2']).isRequired,
11201
+ event_id: PropTypes.string.isRequired,
11202
+ timestamp: PropTypes.string.isRequired,
11203
+ organization: PropTypes.string.isRequired,
11204
+ experience: T['io.flow.v0.models.experience'].isRequired,
11205
+ });
11206
+
11207
+ T['io.flow.v0.models.experience_logistics_settings'] = PropTypes.exact({
11208
+ id: PropTypes.string.isRequired,
11209
+ experience: T['io.flow.v0.models.experience_overview'].isRequired,
11210
+ shipping_configuration: T['io.flow.v0.models.shipping_configuration_reference'].isRequired,
11211
+ });
11212
+
11213
+ T['io.flow.v0.models.experience_logistics_settings_upserted'] = PropTypes.exact({
11214
+ discriminator: PropTypes.oneOf(['experience_logistics_settings_upserted']).isRequired,
11215
+ event_id: PropTypes.string.isRequired,
11216
+ timestamp: PropTypes.string.isRequired,
11217
+ organization: PropTypes.string.isRequired,
11218
+ logistics_settings: T['io.flow.v0.models.experience_logistics_settings'].isRequired,
11219
+ });
11220
+
11221
+ T['io.flow.v0.models.experience_logistics_settings_deleted'] = PropTypes.exact({
11222
+ discriminator: PropTypes.oneOf(['experience_logistics_settings_deleted']).isRequired,
11223
+ event_id: PropTypes.string.isRequired,
11224
+ timestamp: PropTypes.string.isRequired,
11225
+ organization: PropTypes.string.isRequired,
11226
+ logistics_settings: T['io.flow.v0.models.experience_logistics_settings'].isRequired,
11227
+ });
11228
+
11229
+ T['io.flow.v0.enums.available_filter_format'] = PropTypes.oneOf([
11230
+ 'boolean',
11231
+ 'date',
11232
+ 'money',
11233
+ 'decimal',
11234
+ 'string',
11235
+ 'unit_of_length',
11236
+ 'unit_of_mass',
11237
+ ]);
11238
+
11239
+ T['io.flow.v0.models.available_filter_structured'] = PropTypes.exact({
11240
+ discriminator: PropTypes.oneOf(['structured']).isRequired,
11241
+ field: PropTypes.string.isRequired,
11242
+ operators: PropTypes.arrayOf(PropTypes.string).isRequired,
11243
+ format: T['io.flow.v0.enums.available_filter_format'].isRequired,
11244
+ valid_values: PropTypes.arrayOf(PropTypes.string),
11245
+ placeholder: PropTypes.string,
11246
+ });
11247
+
11248
+ T['io.flow.v0.unions.available_filter'] = PropTypes.oneOfType([
11249
+ T['io.flow.v0.models.available_filter_structured'],
11250
+ T['io.flow.v0.models.available_filter_unstructured'],
11251
+ ]);
11252
+
11253
+ T['io.flow.v0.models.query_builder'] = PropTypes.exact({
11254
+ q: PropTypes.string.isRequired,
11255
+ filters: PropTypes.arrayOf(T['io.flow.v0.unions.query_filter']).isRequired,
11256
+ available: PropTypes.arrayOf(T['io.flow.v0.unions.available_filter']).isRequired,
11257
+ });
11258
+
11259
+ T['io.flow.v0.models.select_issuer_option_action_details'] = PropTypes.exact({
11260
+ discriminator: PropTypes.oneOf(['select_issuer_option_action_details']).isRequired,
11261
+ issuer_options: PropTypes.arrayOf(T['io.flow.v0.models.issuer_reference']).isRequired,
11262
+ });
11263
+
11264
+ T['io.flow.v0.models.klarna_sdk_authorization_result_action_details'] = PropTypes.exact({
11265
+ discriminator: PropTypes.oneOf(['klarna_sdk_authorization_result_action_details']).isRequired,
11266
+ client_token: PropTypes.string.isRequired,
11267
+ payment_method_categories: PropTypes.arrayOf(T['io.flow.v0.models.klarna_payment_method_category']).isRequired,
11268
+ });
11269
+
11270
+ T['io.flow.v0.models.applepay_sdk_validate_result_action_details'] = PropTypes.exact({
11271
+ discriminator: PropTypes.oneOf(['applepay_sdk_validate_result_action_details']).isRequired,
11272
+ payment_session: PropTypes.object.isRequired,
11273
+ });
11274
+
11275
+ T['io.flow.v0.models.applepay_sdk_create_result_action_details'] = PropTypes.exact({
11276
+ discriminator: PropTypes.oneOf(['applepay_sdk_create_result_action_details']).isRequired,
11277
+ merchant_identifier: PropTypes.string.isRequired,
11278
+ payment_data_request: PropTypes.object.isRequired,
11279
+ });
11280
+
11281
+ T['io.flow.v0.models.threeds_challenge_action_details'] = PropTypes.exact({
11282
+ discriminator: PropTypes.oneOf(['threeds_challenge_action_details']).isRequired,
11283
+ threeds_challenge_action: T['io.flow.v0.unions.threeds_challenge_action'].isRequired,
11284
+ expires_at: PropTypes.string.isRequired,
11285
+ });
11286
+
11287
+ T['io.flow.v0.models.threeds_identify_action_details'] = PropTypes.exact({
11288
+ discriminator: PropTypes.oneOf(['threeds_identify_action_details']).isRequired,
11289
+ threeds_identify_action: T['io.flow.v0.unions.threeds_identify_action'].isRequired,
11290
+ expires_at: PropTypes.string.isRequired,
11291
+ });
11292
+
11293
+ T['io.flow.v0.models.stripe_authorization_result_action_details'] = PropTypes.exact({
11294
+ discriminator: PropTypes.oneOf(['stripe_authorization_result_action_details']).isRequired,
11295
+ client_secret: PropTypes.string,
11296
+ payment_method_id: PropTypes.string,
11297
+ publishable_key: PropTypes.string,
11298
+ });
11299
+
11300
+ T['io.flow.v0.enums.authorization_result_action_type'] = PropTypes.oneOf(['native', 'redirect', 'wait']);
11301
+ T['io.flow.v0.enums.three_d_secure_code'] = PropTypes.oneOf(['verified', 'not_verified', 'failed']);
11302
+
11303
+ T['io.flow.v0.models.authorization_result_action_wait'] = PropTypes.exact({
11304
+ discriminator: PropTypes.oneOf(['authorization_result_action_wait']).isRequired,
11305
+ type: T['io.flow.v0.enums.authorization_result_action_type'].isRequired,
11306
+ });
11307
+
11308
+ T['io.flow.v0.models.authorization_result_action_post'] = PropTypes.exact({
11309
+ discriminator: PropTypes.oneOf(['authorization_result_action_post']).isRequired,
11310
+ type: T['io.flow.v0.enums.authorization_result_action_type'].isRequired,
11311
+ url: PropTypes.string.isRequired,
11312
+ parameters: PropTypes.object.isRequired,
11313
+ });
11314
+
11315
+ T['io.flow.v0.models.authorization_code'] = PropTypes.exact({
11316
+ result_code: PropTypes.string.isRequired,
11317
+ code: PropTypes.string.isRequired,
11318
+ });
11319
+
11320
+ T['io.flow.v0.models.authorization_result_description'] = PropTypes.exact({
11321
+ display: PropTypes.string.isRequired,
11322
+ });
11323
+
11324
+ T['io.flow.v0.models.three_d_secure'] = PropTypes.exact({
11325
+ code: T['io.flow.v0.enums.three_d_secure_code'].isRequired,
11326
+ description: PropTypes.string,
11327
+ eci: PropTypes.string,
11328
+ liability_sift: PropTypes.bool,
11329
+ version: PropTypes.string,
11330
+ authenticated: PropTypes.bool,
11331
+ authenticated_result: PropTypes.string,
11332
+ offered: PropTypes.bool,
11333
+ offered_result: PropTypes.string,
11334
+ sca_exemption: PropTypes.string,
11335
+ });
11336
+
11337
+ T['io.flow.v0.enums.authorization_status'] = PropTypes.oneOf([
11338
+ 'initiated',
11339
+ 'pending',
11340
+ 'expired',
11341
+ 'authorized',
11342
+ 'review',
11343
+ 'declined',
11344
+ 'reversed',
11345
+ ]);
11346
+
11347
+ T['io.flow.v0.models.authorization_order_reference'] = PropTypes.exact({
11348
+ discriminator: PropTypes.oneOf(['flow_order']).isRequired,
11349
+ number: PropTypes.string.isRequired,
11350
+ });
11351
+
11352
+ T['io.flow.v0.models.payment_paypal'] = PropTypes.exact({
11353
+ discriminator: PropTypes.oneOf(['payment_paypal']).isRequired,
11354
+ id: PropTypes.string.isRequired,
11355
+ order: T['io.flow.v0.models.authorization_order_reference'],
11356
+ amount: PropTypes.number.isRequired,
11357
+ currency: PropTypes.string.isRequired,
11358
+ created_at: PropTypes.string,
11359
+ paypal: T['io.flow.v0.unions.online_authorization_details'].isRequired,
11360
+ });
11361
+
11362
+ T['io.flow.v0.models.payment_cryptopay'] = PropTypes.exact({
11363
+ discriminator: PropTypes.oneOf(['payment_cryptopay']).isRequired,
11364
+ id: PropTypes.string.isRequired,
11365
+ order: T['io.flow.v0.models.authorization_order_reference'],
11366
+ amount: PropTypes.number.isRequired,
11367
+ currency: PropTypes.string.isRequired,
11368
+ created_at: PropTypes.string,
11369
+ cryptopay: T['io.flow.v0.unions.online_authorization_details'].isRequired,
11370
+ });
11371
+
11372
+ T['io.flow.v0.unions.payment'] = PropTypes.oneOfType([
11373
+ T['io.flow.v0.models.payment_paypal'],
11374
+ T['io.flow.v0.models.payment_cryptopay'],
11190
11375
  ]);
11191
11376
 
11192
- T['io.flow.v0.models.experience_upserted_v2'] = PropTypes.exact({
11193
- discriminator: PropTypes.oneOf(['experience_upserted_v2']).isRequired,
11377
+ T['io.flow.v0.models.payment_upserted'] = PropTypes.exact({
11378
+ discriminator: PropTypes.oneOf(['payment_upserted']).isRequired,
11194
11379
  event_id: PropTypes.string.isRequired,
11195
11380
  timestamp: PropTypes.string.isRequired,
11196
11381
  organization: PropTypes.string.isRequired,
11197
- experience: T['io.flow.v0.models.experience'].isRequired,
11382
+ id: PropTypes.string.isRequired,
11383
+ payment: T['io.flow.v0.unions.payment'].isRequired,
11198
11384
  });
11199
11385
 
11200
- T['io.flow.v0.models.experience_deleted_v2'] = PropTypes.exact({
11201
- discriminator: PropTypes.oneOf(['experience_deleted_v2']).isRequired,
11202
- event_id: PropTypes.string.isRequired,
11203
- timestamp: PropTypes.string.isRequired,
11204
- organization: PropTypes.string.isRequired,
11205
- experience: T['io.flow.v0.models.experience'].isRequired,
11386
+ T['io.flow.v0.unions.payment_order_reference'] = PropTypes.oneOfType([
11387
+ T['io.flow.v0.models.authorization_order_reference'],
11388
+ T['io.flow.v0.models.payment_payment_request_reference'],
11389
+ ]);
11390
+
11391
+ T['io.flow.v0.models.authorization_reference'] = PropTypes.exact({
11392
+ id: PropTypes.string.isRequired,
11393
+ key: PropTypes.string.isRequired,
11394
+ order: T['io.flow.v0.models.authorization_order_reference'],
11206
11395
  });
11207
11396
 
11208
- T['io.flow.v0.models.experience_logistics_settings'] = PropTypes.exact({
11397
+ T['io.flow.v0.models.virtual_card_refund'] = PropTypes.exact({
11209
11398
  id: PropTypes.string.isRequired,
11210
- experience: T['io.flow.v0.models.experience_overview'].isRequired,
11211
- shipping_configuration: T['io.flow.v0.models.shipping_configuration_reference'].isRequired,
11399
+ issuer: T['io.flow.v0.models.issuer_v1'].isRequired,
11400
+ virtual_card: T['io.flow.v0.models.virtual_card_reference'].isRequired,
11401
+ authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
11402
+ amount: PropTypes.number.isRequired,
11403
+ currency: PropTypes.string.isRequired,
11404
+ created_at: PropTypes.string.isRequired,
11212
11405
  });
11213
11406
 
11214
- T['io.flow.v0.models.experience_logistics_settings_upserted'] = PropTypes.exact({
11215
- discriminator: PropTypes.oneOf(['experience_logistics_settings_upserted']).isRequired,
11407
+ T['io.flow.v0.models.virtual_card_refund_upserted'] = PropTypes.exact({
11408
+ discriminator: PropTypes.oneOf(['virtual_card_refund_upserted']).isRequired,
11216
11409
  event_id: PropTypes.string.isRequired,
11217
11410
  timestamp: PropTypes.string.isRequired,
11218
11411
  organization: PropTypes.string.isRequired,
11219
- logistics_settings: T['io.flow.v0.models.experience_logistics_settings'].isRequired,
11412
+ id: PropTypes.string.isRequired,
11413
+ refund: T['io.flow.v0.models.virtual_card_refund'].isRequired,
11220
11414
  });
11221
11415
 
11222
- T['io.flow.v0.models.experience_logistics_settings_deleted'] = PropTypes.exact({
11223
- discriminator: PropTypes.oneOf(['experience_logistics_settings_deleted']).isRequired,
11416
+ T['io.flow.v0.models.virtual_card_capture'] = PropTypes.exact({
11417
+ id: PropTypes.string.isRequired,
11418
+ issuer: T['io.flow.v0.models.issuer_v1'].isRequired,
11419
+ virtual_card: T['io.flow.v0.models.virtual_card_reference'].isRequired,
11420
+ authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
11421
+ amount: PropTypes.number.isRequired,
11422
+ currency: PropTypes.string.isRequired,
11423
+ created_at: PropTypes.string.isRequired,
11424
+ });
11425
+
11426
+ T['io.flow.v0.models.virtual_card_capture_upserted'] = PropTypes.exact({
11427
+ discriminator: PropTypes.oneOf(['virtual_card_capture_upserted']).isRequired,
11224
11428
  event_id: PropTypes.string.isRequired,
11225
11429
  timestamp: PropTypes.string.isRequired,
11226
11430
  organization: PropTypes.string.isRequired,
11227
- logistics_settings: T['io.flow.v0.models.experience_logistics_settings'].isRequired,
11431
+ id: PropTypes.string.isRequired,
11432
+ capture: T['io.flow.v0.models.virtual_card_capture'].isRequired,
11228
11433
  });
11229
11434
 
11230
- T['io.flow.v0.enums.available_filter_format'] = PropTypes.oneOf([
11231
- 'boolean',
11232
- 'date',
11233
- 'money',
11234
- 'decimal',
11235
- 'string',
11236
- 'unit_of_length',
11237
- 'unit_of_mass',
11435
+ T['io.flow.v0.models.apple_pay_merchant_validation_payload'] = PropTypes.exact({
11436
+ discriminator: PropTypes.oneOf(['apple_pay_merchant_validation_payload']).isRequired,
11437
+ validation_url: PropTypes.string.isRequired,
11438
+ display_name: PropTypes.string,
11439
+ });
11440
+
11441
+ T['io.flow.v0.models.google_pay_authorization_payload'] = PropTypes.exact({
11442
+ discriminator: PropTypes.oneOf(['google_pay_authorization_payload']).isRequired,
11443
+ payload: PropTypes.object.isRequired,
11444
+ });
11445
+
11446
+ T['io.flow.v0.unions.authorization_payload_parameters'] = PropTypes.oneOfType([
11447
+ T['io.flow.v0.models.google_pay_authorization_payload'],
11448
+ T['io.flow.v0.models.apple_pay_merchant_validation_payload'],
11238
11449
  ]);
11239
11450
 
11240
- T['io.flow.v0.models.available_filter_structured'] = PropTypes.exact({
11241
- discriminator: PropTypes.oneOf(['structured']).isRequired,
11242
- field: PropTypes.string.isRequired,
11243
- operators: PropTypes.arrayOf(PropTypes.string).isRequired,
11244
- format: T['io.flow.v0.enums.available_filter_format'].isRequired,
11245
- valid_values: PropTypes.arrayOf(PropTypes.string),
11246
- placeholder: PropTypes.string,
11451
+ T['io.flow.v0.models.authorization_payload'] = PropTypes.exact({
11452
+ parameters: T['io.flow.v0.unions.authorization_payload_parameters'].isRequired,
11247
11453
  });
11248
11454
 
11249
- T['io.flow.v0.unions.available_filter'] = PropTypes.oneOfType([
11250
- T['io.flow.v0.models.available_filter_structured'],
11251
- T['io.flow.v0.models.available_filter_unstructured'],
11455
+ T['io.flow.v0.enums.cvv_code'] = PropTypes.oneOf(['match', 'suspicious', 'unsupported', 'no_match']);
11456
+ T['io.flow.v0.enums.avs_code'] = PropTypes.oneOf(['match', 'partial', 'unsupported', 'no_match']);
11457
+
11458
+ T['io.flow.v0.models.cvv'] = PropTypes.exact({
11459
+ code: T['io.flow.v0.enums.cvv_code'].isRequired,
11460
+ description: PropTypes.string,
11461
+ });
11462
+
11463
+ T['io.flow.v0.models.avs'] = PropTypes.exact({
11464
+ code: T['io.flow.v0.enums.avs_code'].isRequired,
11465
+ name: PropTypes.bool,
11466
+ address: PropTypes.bool,
11467
+ postal: PropTypes.bool,
11468
+ description: PropTypes.string,
11469
+ });
11470
+
11471
+ T['io.flow.v0.models.card_error'] = PropTypes.exact({
11472
+ code: T['io.flow.v0.enums.card_error_code'].isRequired,
11473
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
11474
+ avs: T['io.flow.v0.models.avs'],
11475
+ cvv: T['io.flow.v0.models.cvv'],
11476
+ });
11477
+
11478
+ T['io.flow.v0.enums.authorization_decline_code'] = PropTypes.oneOf([
11479
+ 'expired',
11480
+ 'invalid_name',
11481
+ 'invalid_number',
11482
+ 'invalid_expiration',
11483
+ 'invalid_address',
11484
+ 'invalid_token_type',
11485
+ 'invalid_token',
11486
+ 'no_account',
11487
+ 'avs',
11488
+ 'cvv',
11489
+ 'fraud',
11490
+ 'duplicate',
11491
+ 'not_supported',
11492
+ 'unknown',
11493
+ 'online_payment_error',
11252
11494
  ]);
11253
11495
 
11254
- T['io.flow.v0.models.query_builder'] = PropTypes.exact({
11255
- q: PropTypes.string.isRequired,
11256
- filters: PropTypes.arrayOf(T['io.flow.v0.unions.query_filter']).isRequired,
11257
- available: PropTypes.arrayOf(T['io.flow.v0.unions.available_filter']).isRequired,
11496
+ T['io.flow.v0.models.payment_authorization_status'] = PropTypes.exact({
11497
+ status: T['io.flow.v0.enums.authorization_status'].isRequired,
11498
+ reason: T['io.flow.v0.enums.authorization_decline_code'],
11258
11499
  });
11259
11500
 
11260
- T['io.flow.v0.models.select_issuer_option_action_details'] = PropTypes.exact({
11261
- discriminator: PropTypes.oneOf(['select_issuer_option_action_details']).isRequired,
11262
- issuer_options: PropTypes.arrayOf(T['io.flow.v0.models.issuer_reference']).isRequired,
11501
+ T['io.flow.v0.models.authorization_error'] = PropTypes.exact({
11502
+ code: T['io.flow.v0.enums.authorization_decline_code'].isRequired,
11503
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
11504
+ avs: T['io.flow.v0.models.avs'],
11505
+ cvv: T['io.flow.v0.models.cvv'],
11263
11506
  });
11264
11507
 
11265
- T['io.flow.v0.models.klarna_sdk_authorization_result_action_details'] = PropTypes.exact({
11266
- discriminator: PropTypes.oneOf(['klarna_sdk_authorization_result_action_details']).isRequired,
11267
- client_token: PropTypes.string.isRequired,
11268
- payment_method_categories: PropTypes.arrayOf(T['io.flow.v0.models.klarna_payment_method_category']).isRequired,
11508
+ T['io.flow.v0.enums.change_type'] = PropTypes.oneOf(['insert', 'update', 'delete']);
11509
+
11510
+ T['io.flow.v0.models.virtual_card_refund_version'] = PropTypes.exact({
11511
+ id: PropTypes.string.isRequired,
11512
+ timestamp: PropTypes.string.isRequired,
11513
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11514
+ virtual_card_refund: T['io.flow.v0.models.virtual_card_refund'].isRequired,
11269
11515
  });
11270
11516
 
11271
- T['io.flow.v0.models.applepay_sdk_validate_result_action_details'] = PropTypes.exact({
11272
- discriminator: PropTypes.oneOf(['applepay_sdk_validate_result_action_details']).isRequired,
11273
- payment_session: PropTypes.object.isRequired,
11517
+ T['io.flow.v0.models.virtual_card_capture_version'] = PropTypes.exact({
11518
+ id: PropTypes.string.isRequired,
11519
+ timestamp: PropTypes.string.isRequired,
11520
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11521
+ virtual_card_capture: T['io.flow.v0.models.virtual_card_capture'].isRequired,
11274
11522
  });
11275
11523
 
11276
- T['io.flow.v0.models.applepay_sdk_create_result_action_details'] = PropTypes.exact({
11277
- discriminator: PropTypes.oneOf(['applepay_sdk_create_result_action_details']).isRequired,
11278
- merchant_identifier: PropTypes.string.isRequired,
11279
- payment_data_request: PropTypes.object.isRequired,
11524
+ T['io.flow.v0.models.tracking_version'] = PropTypes.exact({
11525
+ id: PropTypes.string.isRequired,
11526
+ timestamp: PropTypes.string.isRequired,
11527
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11528
+ tracking: T['io.flow.v0.models.tracking_summary'].isRequired,
11280
11529
  });
11281
11530
 
11282
- T['io.flow.v0.models.threeds_challenge_action_details'] = PropTypes.exact({
11283
- discriminator: PropTypes.oneOf(['threeds_challenge_action_details']).isRequired,
11284
- threeds_challenge_action: T['io.flow.v0.unions.threeds_challenge_action'].isRequired,
11285
- expires_at: PropTypes.string.isRequired,
11531
+ T['io.flow.v0.models.tracking_label_version'] = PropTypes.exact({
11532
+ id: PropTypes.string.isRequired,
11533
+ timestamp: PropTypes.string.isRequired,
11534
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11535
+ tracking_label: T['io.flow.v0.models.tracking_label_summary'].isRequired,
11286
11536
  });
11287
11537
 
11288
- T['io.flow.v0.models.threeds_identify_action_details'] = PropTypes.exact({
11289
- discriminator: PropTypes.oneOf(['threeds_identify_action_details']).isRequired,
11290
- threeds_identify_action: T['io.flow.v0.unions.threeds_identify_action'].isRequired,
11291
- expires_at: PropTypes.string.isRequired,
11538
+ T['io.flow.v0.models.tracking_event_version'] = PropTypes.exact({
11539
+ id: PropTypes.string.isRequired,
11540
+ timestamp: PropTypes.string.isRequired,
11541
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11542
+ tracking_event: T['io.flow.v0.models.tracking_event_summary'].isRequired,
11292
11543
  });
11293
11544
 
11294
- T['io.flow.v0.models.stripe_authorization_result_action_details'] = PropTypes.exact({
11295
- discriminator: PropTypes.oneOf(['stripe_authorization_result_action_details']).isRequired,
11296
- client_secret: PropTypes.string,
11297
- payment_method_id: PropTypes.string,
11298
- publishable_key: PropTypes.string,
11545
+ T['io.flow.v0.models.tier_version'] = PropTypes.exact({
11546
+ id: PropTypes.string.isRequired,
11547
+ timestamp: PropTypes.string.isRequired,
11548
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11549
+ tier: T['io.flow.v0.models.tier_summary'].isRequired,
11299
11550
  });
11300
11551
 
11301
- T['io.flow.v0.enums.authorization_result_action_type'] = PropTypes.oneOf(['native', 'redirect', 'wait']);
11302
- T['io.flow.v0.enums.three_d_secure_code'] = PropTypes.oneOf(['verified', 'not_verified', 'failed']);
11552
+ T['io.flow.v0.models.subcatalog_version'] = PropTypes.exact({
11553
+ id: PropTypes.string.isRequired,
11554
+ timestamp: PropTypes.string.isRequired,
11555
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11556
+ subcatalog: T['io.flow.v0.models.subcatalog'].isRequired,
11557
+ });
11303
11558
 
11304
- T['io.flow.v0.models.authorization_result_action_wait'] = PropTypes.exact({
11305
- discriminator: PropTypes.oneOf(['authorization_result_action_wait']).isRequired,
11306
- type: T['io.flow.v0.enums.authorization_result_action_type'].isRequired,
11559
+ T['io.flow.v0.models.return_policy_version'] = PropTypes.exact({
11560
+ id: PropTypes.string.isRequired,
11561
+ timestamp: PropTypes.string.isRequired,
11562
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11563
+ return_policy: T['io.flow.v0.models.return_policy'].isRequired,
11307
11564
  });
11308
11565
 
11309
- T['io.flow.v0.models.authorization_result_action_post'] = PropTypes.exact({
11310
- discriminator: PropTypes.oneOf(['authorization_result_action_post']).isRequired,
11311
- type: T['io.flow.v0.enums.authorization_result_action_type'].isRequired,
11312
- url: PropTypes.string.isRequired,
11313
- parameters: PropTypes.object.isRequired,
11566
+ T['io.flow.v0.models.ratecard_version'] = PropTypes.exact({
11567
+ id: PropTypes.string.isRequired,
11568
+ timestamp: PropTypes.string.isRequired,
11569
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11570
+ ratecard: T['io.flow.v0.models.ratecard'].isRequired,
11314
11571
  });
11315
11572
 
11316
- T['io.flow.v0.models.authorization_code'] = PropTypes.exact({
11317
- result_code: PropTypes.string.isRequired,
11318
- code: PropTypes.string.isRequired,
11573
+ T['io.flow.v0.models.ratecard_rate_version'] = PropTypes.exact({
11574
+ id: PropTypes.string.isRequired,
11575
+ timestamp: PropTypes.string.isRequired,
11576
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11577
+ ratecard_rate: T['io.flow.v0.models.ratecard_rate'].isRequired,
11578
+ });
11579
+
11580
+ T['io.flow.v0.models.rate_version'] = PropTypes.exact({
11581
+ id: PropTypes.string.isRequired,
11582
+ timestamp: PropTypes.string.isRequired,
11583
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11584
+ rate: T['io.flow.v0.models.rate'].isRequired,
11585
+ });
11586
+
11587
+ T['io.flow.v0.models.pricing_version'] = PropTypes.exact({
11588
+ id: PropTypes.string.isRequired,
11589
+ timestamp: PropTypes.string.isRequired,
11590
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11591
+ pricing: T['io.flow.v0.models.pricing'].isRequired,
11319
11592
  });
11320
11593
 
11321
- T['io.flow.v0.models.authorization_result_description'] = PropTypes.exact({
11322
- display: PropTypes.string.isRequired,
11594
+ T['io.flow.v0.models.payment_version'] = PropTypes.exact({
11595
+ id: PropTypes.string.isRequired,
11596
+ timestamp: PropTypes.string.isRequired,
11597
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11598
+ payment: T['io.flow.v0.unions.payment'].isRequired,
11323
11599
  });
11324
11600
 
11325
- T['io.flow.v0.models.three_d_secure'] = PropTypes.exact({
11326
- code: T['io.flow.v0.enums.three_d_secure_code'].isRequired,
11327
- description: PropTypes.string,
11328
- eci: PropTypes.string,
11329
- liability_sift: PropTypes.bool,
11330
- version: PropTypes.string,
11331
- authenticated: PropTypes.bool,
11332
- authenticated_result: PropTypes.string,
11333
- offered: PropTypes.bool,
11334
- offered_result: PropTypes.string,
11335
- sca_exemption: PropTypes.string,
11601
+ T['io.flow.v0.models.organization_version'] = PropTypes.exact({
11602
+ id: PropTypes.string.isRequired,
11603
+ timestamp: PropTypes.string.isRequired,
11604
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11605
+ organization: T['io.flow.v0.models.organization'].isRequired,
11336
11606
  });
11337
11607
 
11338
- T['io.flow.v0.enums.authorization_status'] = PropTypes.oneOf([
11339
- 'initiated',
11340
- 'pending',
11341
- 'expired',
11342
- 'authorized',
11343
- 'review',
11344
- 'declined',
11345
- 'reversed',
11346
- ]);
11608
+ T['io.flow.v0.models.order_identifier_version'] = PropTypes.exact({
11609
+ id: PropTypes.string.isRequired,
11610
+ timestamp: PropTypes.string.isRequired,
11611
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11612
+ order_identifier: T['io.flow.v0.models.order_identifier'].isRequired,
11613
+ });
11347
11614
 
11348
- T['io.flow.v0.models.authorization_order_reference'] = PropTypes.exact({
11349
- discriminator: PropTypes.oneOf(['flow_order']).isRequired,
11350
- number: PropTypes.string.isRequired,
11615
+ T['io.flow.v0.models.item_margin_version'] = PropTypes.exact({
11616
+ id: PropTypes.string.isRequired,
11617
+ timestamp: PropTypes.string.isRequired,
11618
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11619
+ item_margin: T['io.flow.v0.models.item_margin'].isRequired,
11351
11620
  });
11352
11621
 
11353
- T['io.flow.v0.models.payment_paypal'] = PropTypes.exact({
11354
- discriminator: PropTypes.oneOf(['payment_paypal']).isRequired,
11622
+ T['io.flow.v0.models.import_version'] = PropTypes.exact({
11355
11623
  id: PropTypes.string.isRequired,
11356
- order: T['io.flow.v0.models.authorization_order_reference'],
11357
- amount: PropTypes.number.isRequired,
11358
- currency: PropTypes.string.isRequired,
11359
- created_at: PropTypes.string,
11360
- paypal: T['io.flow.v0.unions.online_authorization_details'].isRequired,
11624
+ timestamp: PropTypes.string.isRequired,
11625
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11626
+ 'import': T['io.flow.v0.models.import'].isRequired,
11361
11627
  });
11362
11628
 
11363
- T['io.flow.v0.models.payment_cryptopay'] = PropTypes.exact({
11364
- discriminator: PropTypes.oneOf(['payment_cryptopay']).isRequired,
11629
+ T['io.flow.v0.models.hs10_version'] = PropTypes.exact({
11365
11630
  id: PropTypes.string.isRequired,
11366
- order: T['io.flow.v0.models.authorization_order_reference'],
11367
- amount: PropTypes.number.isRequired,
11368
- currency: PropTypes.string.isRequired,
11369
- created_at: PropTypes.string,
11370
- cryptopay: T['io.flow.v0.unions.online_authorization_details'].isRequired,
11631
+ timestamp: PropTypes.string.isRequired,
11632
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11633
+ hs10: T['io.flow.v0.models.hs10'].isRequired,
11371
11634
  });
11372
11635
 
11373
- T['io.flow.v0.unions.payment'] = PropTypes.oneOfType([
11374
- T['io.flow.v0.models.payment_paypal'],
11375
- T['io.flow.v0.models.payment_cryptopay'],
11376
- ]);
11636
+ T['io.flow.v0.models.experience_version'] = PropTypes.exact({
11637
+ id: PropTypes.string.isRequired,
11638
+ timestamp: PropTypes.string.isRequired,
11639
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11640
+ experience: T['io.flow.v0.models.experience'].isRequired,
11641
+ });
11377
11642
 
11378
- T['io.flow.v0.models.payment_upserted'] = PropTypes.exact({
11379
- discriminator: PropTypes.oneOf(['payment_upserted']).isRequired,
11380
- event_id: PropTypes.string.isRequired,
11643
+ T['io.flow.v0.models.exclusion_rule_version'] = PropTypes.exact({
11644
+ id: PropTypes.string.isRequired,
11381
11645
  timestamp: PropTypes.string.isRequired,
11382
- organization: PropTypes.string.isRequired,
11646
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11647
+ exclusion_rule: T['io.flow.v0.models.exclusion_rule'].isRequired,
11648
+ });
11649
+
11650
+ T['io.flow.v0.models.catalog_version'] = PropTypes.exact({
11383
11651
  id: PropTypes.string.isRequired,
11384
- payment: T['io.flow.v0.unions.payment'].isRequired,
11652
+ timestamp: PropTypes.string.isRequired,
11653
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11654
+ catalog: T['io.flow.v0.models.catalog'].isRequired,
11385
11655
  });
11386
11656
 
11387
- T['io.flow.v0.unions.payment_order_reference'] = PropTypes.oneOfType([
11388
- T['io.flow.v0.models.authorization_order_reference'],
11389
- T['io.flow.v0.models.payment_payment_request_reference'],
11657
+ T['io.flow.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
11658
+
11659
+ T['io.flow.v0.enums.attribute_intent'] = PropTypes.oneOf([
11660
+ 'brand',
11661
+ 'color',
11662
+ 'countries_of_origin',
11663
+ 'product_id',
11664
+ 'fulfillment_method',
11665
+ 'hazardous',
11666
+ 'price',
11667
+ 'size',
11668
+ 'sku',
11669
+ 'taxability',
11670
+ 'consumer_url',
11671
+ 'gtin',
11672
+ 'mpn',
11673
+ 'facet',
11674
+ 'eccn',
11675
+ 'returnable',
11676
+ 'searchable',
11677
+ 'barcode',
11678
+ 'min_days_to_ship',
11679
+ 'max_days_to_ship',
11680
+ 'commercial_invoice_item_number',
11681
+ 'include_in_product_feeds',
11390
11682
  ]);
11391
11683
 
11392
- T['io.flow.v0.models.authorization_reference'] = PropTypes.exact({
11393
- id: PropTypes.string.isRequired,
11394
- key: PropTypes.string.isRequired,
11395
- order: T['io.flow.v0.models.authorization_order_reference'],
11684
+ T['io.flow.v0.models.options'] = PropTypes.exact({
11685
+ required: PropTypes.bool.isRequired,
11686
+ show_in_catalog: PropTypes.bool.isRequired,
11687
+ show_in_harmonization: PropTypes.bool.isRequired,
11396
11688
  });
11397
11689
 
11398
- T['io.flow.v0.models.virtual_card_refund'] = PropTypes.exact({
11399
- id: PropTypes.string.isRequired,
11400
- issuer: T['io.flow.v0.models.issuer_v1'].isRequired,
11401
- virtual_card: T['io.flow.v0.models.virtual_card_reference'].isRequired,
11402
- authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
11403
- amount: PropTypes.number.isRequired,
11404
- currency: PropTypes.string.isRequired,
11405
- created_at: PropTypes.string.isRequired,
11690
+ T['io.flow.v0.models.attribute_form'] = PropTypes.exact({
11691
+ key: PropTypes.string.isRequired,
11692
+ options: T['io.flow.v0.models.options'].isRequired,
11693
+ label: PropTypes.string,
11694
+ intent: T['io.flow.v0.enums.attribute_intent'],
11695
+ type: T['io.flow.v0.enums.attribute_data_type'],
11696
+ position: PropTypes.number,
11406
11697
  });
11407
11698
 
11408
- T['io.flow.v0.models.virtual_card_refund_upserted'] = PropTypes.exact({
11409
- discriminator: PropTypes.oneOf(['virtual_card_refund_upserted']).isRequired,
11410
- event_id: PropTypes.string.isRequired,
11411
- timestamp: PropTypes.string.isRequired,
11412
- organization: PropTypes.string.isRequired,
11699
+ T['io.flow.v0.models.attribute'] = PropTypes.exact({
11413
11700
  id: PropTypes.string.isRequired,
11414
- refund: T['io.flow.v0.models.virtual_card_refund'].isRequired,
11701
+ key: PropTypes.string.isRequired,
11702
+ options: T['io.flow.v0.models.options'].isRequired,
11703
+ label: PropTypes.string,
11704
+ intent: T['io.flow.v0.enums.attribute_intent'],
11705
+ type: T['io.flow.v0.enums.attribute_data_type'],
11706
+ position: PropTypes.number,
11415
11707
  });
11416
11708
 
11417
- T['io.flow.v0.models.virtual_card_capture'] = PropTypes.exact({
11709
+ T['io.flow.v0.models.attribute_version'] = PropTypes.exact({
11418
11710
  id: PropTypes.string.isRequired,
11419
- issuer: T['io.flow.v0.models.issuer_v1'].isRequired,
11420
- virtual_card: T['io.flow.v0.models.virtual_card_reference'].isRequired,
11421
- authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
11422
- amount: PropTypes.number.isRequired,
11423
- currency: PropTypes.string.isRequired,
11424
- created_at: PropTypes.string.isRequired,
11711
+ timestamp: PropTypes.string.isRequired,
11712
+ type: T['io.flow.v0.enums.change_type'].isRequired,
11713
+ attribute: T['io.flow.v0.models.attribute'].isRequired,
11425
11714
  });
11426
11715
 
11427
- T['io.flow.v0.models.virtual_card_capture_upserted'] = PropTypes.exact({
11428
- discriminator: PropTypes.oneOf(['virtual_card_capture_upserted']).isRequired,
11716
+ T['io.flow.v0.models.attribute_upserted_v2'] = PropTypes.exact({
11717
+ discriminator: PropTypes.oneOf(['attribute_upserted_v2']).isRequired,
11429
11718
  event_id: PropTypes.string.isRequired,
11430
11719
  timestamp: PropTypes.string.isRequired,
11431
11720
  organization: PropTypes.string.isRequired,
11432
- id: PropTypes.string.isRequired,
11433
- capture: T['io.flow.v0.models.virtual_card_capture'].isRequired,
11721
+ attribute: T['io.flow.v0.models.attribute'].isRequired,
11434
11722
  });
11435
11723
 
11436
- T['io.flow.v0.models.apple_pay_merchant_validation_payload'] = PropTypes.exact({
11437
- discriminator: PropTypes.oneOf(['apple_pay_merchant_validation_payload']).isRequired,
11438
- validation_url: PropTypes.string.isRequired,
11439
- display_name: PropTypes.string,
11440
- });
11724
+ T['io.flow.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
11441
11725
 
11442
- T['io.flow.v0.models.google_pay_authorization_payload'] = PropTypes.exact({
11443
- discriminator: PropTypes.oneOf(['google_pay_authorization_payload']).isRequired,
11444
- payload: PropTypes.object.isRequired,
11726
+ T['io.flow.v0.models.attachment'] = PropTypes.exact({
11727
+ type: T['io.flow.v0.enums.statement_attachment_type'].isRequired,
11728
+ url: PropTypes.string.isRequired,
11445
11729
  });
11446
11730
 
11447
- T['io.flow.v0.unions.authorization_payload_parameters'] = PropTypes.oneOfType([
11448
- T['io.flow.v0.models.google_pay_authorization_payload'],
11449
- T['io.flow.v0.models.apple_pay_merchant_validation_payload'],
11450
- ]);
11451
-
11452
- T['io.flow.v0.models.authorization_payload'] = PropTypes.exact({
11453
- parameters: T['io.flow.v0.unions.authorization_payload_parameters'].isRequired,
11731
+ T['io.flow.v0.models.statement'] = PropTypes.exact({
11732
+ id: PropTypes.string.isRequired,
11733
+ account: T['io.flow.v0.models.account_reference'].isRequired,
11734
+ ending_balance: PropTypes.number.isRequired,
11735
+ settlement: T['io.flow.v0.unions.settlement'].isRequired,
11736
+ attachments: PropTypes.arrayOf(T['io.flow.v0.models.attachment']).isRequired,
11737
+ created_at: PropTypes.string.isRequired,
11454
11738
  });
11455
11739
 
11456
- T['io.flow.v0.enums.cvv_code'] = PropTypes.oneOf(['match', 'suspicious', 'unsupported', 'no_match']);
11457
- T['io.flow.v0.enums.avs_code'] = PropTypes.oneOf(['match', 'partial', 'unsupported', 'no_match']);
11458
-
11459
- T['io.flow.v0.models.cvv'] = PropTypes.exact({
11460
- code: T['io.flow.v0.enums.cvv_code'].isRequired,
11461
- description: PropTypes.string,
11740
+ T['io.flow.v0.models.statement_upserted'] = PropTypes.exact({
11741
+ discriminator: PropTypes.oneOf(['statement_upserted']).isRequired,
11742
+ event_id: PropTypes.string.isRequired,
11743
+ timestamp: PropTypes.string.isRequired,
11744
+ organization: PropTypes.string.isRequired,
11745
+ statement: T['io.flow.v0.models.statement'].isRequired,
11462
11746
  });
11463
11747
 
11464
- T['io.flow.v0.models.avs'] = PropTypes.exact({
11465
- code: T['io.flow.v0.enums.avs_code'].isRequired,
11466
- name: PropTypes.bool,
11467
- address: PropTypes.bool,
11468
- postal: PropTypes.bool,
11469
- description: PropTypes.string,
11748
+ T['io.flow.v0.models.statement_deleted'] = PropTypes.exact({
11749
+ discriminator: PropTypes.oneOf(['statement_deleted']).isRequired,
11750
+ event_id: PropTypes.string.isRequired,
11751
+ timestamp: PropTypes.string.isRequired,
11752
+ organization: PropTypes.string.isRequired,
11753
+ statement: T['io.flow.v0.models.statement'].isRequired,
11470
11754
  });
11471
11755
 
11472
- T['io.flow.v0.models.card_error'] = PropTypes.exact({
11473
- code: T['io.flow.v0.enums.card_error_code'].isRequired,
11474
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
11475
- avs: T['io.flow.v0.models.avs'],
11476
- cvv: T['io.flow.v0.models.cvv'],
11756
+ T['io.flow.v0.models.channel_statement'] = PropTypes.exact({
11757
+ id: PropTypes.string.isRequired,
11758
+ account: T['io.flow.v0.models.account_reference'].isRequired,
11759
+ ending_balance: PropTypes.number.isRequired,
11760
+ settlement: T['io.flow.v0.unions.settlement'].isRequired,
11761
+ attachments: PropTypes.arrayOf(T['io.flow.v0.models.attachment']).isRequired,
11762
+ created_at: PropTypes.string.isRequired,
11477
11763
  });
11478
11764
 
11479
- T['io.flow.v0.enums.authorization_decline_code'] = PropTypes.oneOf([
11480
- 'expired',
11481
- 'invalid_name',
11482
- 'invalid_number',
11483
- 'invalid_expiration',
11484
- 'invalid_address',
11485
- 'invalid_token_type',
11486
- 'invalid_token',
11487
- 'no_account',
11488
- 'avs',
11489
- 'cvv',
11490
- 'fraud',
11491
- 'duplicate',
11492
- 'not_supported',
11493
- 'unknown',
11494
- 'online_payment_error',
11495
- ]);
11496
-
11497
- T['io.flow.v0.models.payment_authorization_status'] = PropTypes.exact({
11498
- status: T['io.flow.v0.enums.authorization_status'].isRequired,
11499
- reason: T['io.flow.v0.enums.authorization_decline_code'],
11765
+ T['io.flow.v0.models.channel_statement_upserted'] = PropTypes.exact({
11766
+ discriminator: PropTypes.oneOf(['channel_statement_upserted']).isRequired,
11767
+ event_id: PropTypes.string.isRequired,
11768
+ timestamp: PropTypes.string.isRequired,
11769
+ channel_id: PropTypes.string.isRequired,
11770
+ channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
11500
11771
  });
11501
11772
 
11502
- T['io.flow.v0.models.authorization_error'] = PropTypes.exact({
11503
- code: T['io.flow.v0.enums.authorization_decline_code'].isRequired,
11504
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
11505
- avs: T['io.flow.v0.models.avs'],
11506
- cvv: T['io.flow.v0.models.cvv'],
11773
+ T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
11774
+ discriminator: PropTypes.oneOf(['channel_statement_deleted']).isRequired,
11775
+ event_id: PropTypes.string.isRequired,
11776
+ timestamp: PropTypes.string.isRequired,
11777
+ channel_id: PropTypes.string.isRequired,
11778
+ channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
11507
11779
  });
11508
11780
 
11509
- T['io.flow.v0.enums.change_type'] = PropTypes.oneOf(['insert', 'update', 'delete']);
11781
+ T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
11782
+ 'adjustment',
11783
+ 'subtotal',
11784
+ 'vat',
11785
+ 'duty',
11786
+ 'shipping',
11787
+ 'insurance',
11788
+ 'discount',
11789
+ 'surcharges',
11790
+ 'tip',
11791
+ ]);
11510
11792
 
11511
- T['io.flow.v0.models.virtual_card_refund_version'] = PropTypes.exact({
11512
- id: PropTypes.string.isRequired,
11513
- timestamp: PropTypes.string.isRequired,
11514
- type: T['io.flow.v0.enums.change_type'].isRequired,
11515
- virtual_card_refund: T['io.flow.v0.models.virtual_card_refund'].isRequired,
11793
+ T['io.flow.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
11794
+
11795
+ T['io.flow.v0.models.price'] = PropTypes.exact({
11796
+ amount: PropTypes.number.isRequired,
11797
+ currency: PropTypes.string.isRequired,
11798
+ label: PropTypes.string.isRequired,
11516
11799
  });
11517
11800
 
11518
- T['io.flow.v0.models.virtual_card_capture_version'] = PropTypes.exact({
11801
+ T['io.flow.v0.models.virtual_card'] = PropTypes.exact({
11519
11802
  id: PropTypes.string.isRequired,
11520
- timestamp: PropTypes.string.isRequired,
11521
- type: T['io.flow.v0.enums.change_type'].isRequired,
11522
- virtual_card_capture: T['io.flow.v0.models.virtual_card_capture'].isRequired,
11803
+ key: PropTypes.string.isRequired,
11804
+ number: PropTypes.string,
11805
+ cvv: PropTypes.string,
11806
+ limit: T['io.flow.v0.models.price'].isRequired,
11807
+ type: T['io.flow.v0.enums.card_type'].isRequired,
11808
+ expiration: T['io.flow.v0.models.expiration'].isRequired,
11809
+ iin: PropTypes.string.isRequired,
11810
+ last4: PropTypes.string.isRequired,
11811
+ name: PropTypes.string.isRequired,
11812
+ attributes: PropTypes.objectOf(PropTypes.string),
11523
11813
  });
11524
11814
 
11525
- T['io.flow.v0.models.tracking_version'] = PropTypes.exact({
11815
+ T['io.flow.v0.models.virtual_card_version'] = PropTypes.exact({
11526
11816
  id: PropTypes.string.isRequired,
11527
11817
  timestamp: PropTypes.string.isRequired,
11528
11818
  type: T['io.flow.v0.enums.change_type'].isRequired,
11529
- tracking: T['io.flow.v0.models.tracking_summary'].isRequired,
11819
+ virtual_card: T['io.flow.v0.models.virtual_card'].isRequired,
11530
11820
  });
11531
11821
 
11532
- T['io.flow.v0.models.tracking_label_version'] = PropTypes.exact({
11822
+ T['io.flow.v0.models.price_book_item'] = PropTypes.exact({
11533
11823
  id: PropTypes.string.isRequired,
11534
- timestamp: PropTypes.string.isRequired,
11535
- type: T['io.flow.v0.enums.change_type'].isRequired,
11536
- tracking_label: T['io.flow.v0.models.tracking_label_summary'].isRequired,
11824
+ key: PropTypes.string.isRequired,
11825
+ price_book: T['io.flow.v0.models.price_book_reference'].isRequired,
11826
+ price: T['io.flow.v0.models.price'].isRequired,
11827
+ item_number: PropTypes.string.isRequired,
11828
+ schedule: T['io.flow.v0.models.price_book_item_schedule'].isRequired,
11829
+ item_attributes: PropTypes.objectOf(PropTypes.string),
11537
11830
  });
11538
11831
 
11539
- T['io.flow.v0.models.tracking_event_version'] = PropTypes.exact({
11540
- id: PropTypes.string.isRequired,
11832
+ T['io.flow.v0.models.price_book_item_upserted'] = PropTypes.exact({
11833
+ discriminator: PropTypes.oneOf(['price_book_item_upserted']).isRequired,
11834
+ event_id: PropTypes.string.isRequired,
11541
11835
  timestamp: PropTypes.string.isRequired,
11542
- type: T['io.flow.v0.enums.change_type'].isRequired,
11543
- tracking_event: T['io.flow.v0.models.tracking_event_summary'].isRequired,
11836
+ organization: PropTypes.string.isRequired,
11837
+ price_book_item: T['io.flow.v0.models.price_book_item'].isRequired,
11544
11838
  });
11545
11839
 
11546
- T['io.flow.v0.models.tier_version'] = PropTypes.exact({
11547
- id: PropTypes.string.isRequired,
11548
- timestamp: PropTypes.string.isRequired,
11549
- type: T['io.flow.v0.enums.change_type'].isRequired,
11550
- tier: T['io.flow.v0.models.tier_summary'].isRequired,
11840
+ T['io.flow.v0.models.order_summary_levy'] = PropTypes.exact({
11841
+ rate: PropTypes.number.isRequired,
11842
+ rate_label: PropTypes.string,
11843
+ value: T['io.flow.v0.models.price'].isRequired,
11551
11844
  });
11552
11845
 
11553
- T['io.flow.v0.models.subcatalog_version'] = PropTypes.exact({
11554
- id: PropTypes.string.isRequired,
11555
- timestamp: PropTypes.string.isRequired,
11556
- type: T['io.flow.v0.enums.change_type'].isRequired,
11557
- subcatalog: T['io.flow.v0.models.subcatalog'].isRequired,
11846
+ T['io.flow.v0.models.order_summary_item'] = PropTypes.exact({
11847
+ number: PropTypes.string.isRequired,
11848
+ name: PropTypes.string.isRequired,
11849
+ description: PropTypes.string,
11850
+ attributes: PropTypes.arrayOf(T['io.flow.v0.models.checkout_item_content_attribute']).isRequired,
11851
+ image: T['io.flow.v0.models.order_summary_image'],
11852
+ price: T['io.flow.v0.models.price'].isRequired,
11853
+ discount: T['io.flow.v0.models.price'],
11854
+ tax: T['io.flow.v0.models.order_summary_levy'],
11855
+ duty: T['io.flow.v0.models.order_summary_levy'],
11856
+ price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price']).isRequired,
11558
11857
  });
11559
11858
 
11560
- T['io.flow.v0.models.return_policy_version'] = PropTypes.exact({
11561
- id: PropTypes.string.isRequired,
11562
- timestamp: PropTypes.string.isRequired,
11563
- type: T['io.flow.v0.enums.change_type'].isRequired,
11564
- return_policy: T['io.flow.v0.models.return_policy'].isRequired,
11859
+ T['io.flow.v0.models.order_summary_line_item'] = PropTypes.exact({
11860
+ id: PropTypes.string,
11861
+ item: T['io.flow.v0.models.order_summary_item'].isRequired,
11862
+ quantity: PropTypes.number.isRequired,
11863
+ discount: T['io.flow.v0.models.price'],
11864
+ tax: T['io.flow.v0.models.order_summary_levy'],
11865
+ duty: T['io.flow.v0.models.order_summary_levy'],
11866
+ total: T['io.flow.v0.models.price'].isRequired,
11867
+ price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price']).isRequired,
11868
+ attributes: PropTypes.objectOf(PropTypes.string),
11565
11869
  });
11566
11870
 
11567
- T['io.flow.v0.models.ratecard_version'] = PropTypes.exact({
11568
- id: PropTypes.string.isRequired,
11569
- timestamp: PropTypes.string.isRequired,
11570
- type: T['io.flow.v0.enums.change_type'].isRequired,
11571
- ratecard: T['io.flow.v0.models.ratecard'].isRequired,
11871
+ T['io.flow.v0.models.order_summary_price_detail'] = PropTypes.exact({
11872
+ price: T['io.flow.v0.models.price'].isRequired,
11873
+ name: PropTypes.string,
11874
+ rate: PropTypes.number,
11875
+ rate_label: PropTypes.string,
11572
11876
  });
11573
11877
 
11574
- T['io.flow.v0.models.ratecard_rate_version'] = PropTypes.exact({
11575
- id: PropTypes.string.isRequired,
11576
- timestamp: PropTypes.string.isRequired,
11577
- type: T['io.flow.v0.enums.change_type'].isRequired,
11578
- ratecard_rate: T['io.flow.v0.models.ratecard_rate'].isRequired,
11878
+ T['io.flow.v0.models.order_summary'] = PropTypes.exact({
11879
+ number: PropTypes.string.isRequired,
11880
+ subtotal: T['io.flow.v0.models.order_summary_price_detail'].isRequired,
11881
+ shipping: T['io.flow.v0.models.order_summary_price_detail'],
11882
+ tax: T['io.flow.v0.models.order_summary_price_detail'],
11883
+ duty: T['io.flow.v0.models.order_summary_price_detail'],
11884
+ insurance: T['io.flow.v0.models.order_summary_price_detail'],
11885
+ discount: T['io.flow.v0.models.order_summary_price_detail'],
11886
+ surcharges: T['io.flow.v0.models.order_summary_price_detail'],
11887
+ adjustment: T['io.flow.v0.models.order_summary_price_detail'],
11888
+ total: T['io.flow.v0.models.order_summary_price_detail'].isRequired,
11889
+ lines: PropTypes.arrayOf(T['io.flow.v0.models.order_summary_line_item']).isRequired,
11890
+ identifiers: PropTypes.objectOf(PropTypes.string),
11891
+ attributes: PropTypes.objectOf(PropTypes.string),
11579
11892
  });
11580
11893
 
11581
- T['io.flow.v0.models.rate_version'] = PropTypes.exact({
11582
- id: PropTypes.string.isRequired,
11583
- timestamp: PropTypes.string.isRequired,
11584
- type: T['io.flow.v0.enums.change_type'].isRequired,
11585
- rate: T['io.flow.v0.models.rate'].isRequired,
11894
+ T['io.flow.v0.models.value_threshold_exceeded_details'] = PropTypes.exact({
11895
+ local: T['io.flow.v0.models.price'].isRequired,
11896
+ original: T['io.flow.v0.models.price'].isRequired,
11586
11897
  });
11587
11898
 
11588
- T['io.flow.v0.models.pricing_version'] = PropTypes.exact({
11589
- id: PropTypes.string.isRequired,
11590
- timestamp: PropTypes.string.isRequired,
11591
- type: T['io.flow.v0.enums.change_type'].isRequired,
11592
- pricing: T['io.flow.v0.models.pricing'].isRequired,
11899
+ T['io.flow.v0.models.order_error'] = PropTypes.exact({
11900
+ code: T['io.flow.v0.enums.order_error_code'].isRequired,
11901
+ messages: PropTypes.arrayOf(PropTypes.string).isRequired,
11902
+ numbers: PropTypes.arrayOf(PropTypes.string),
11903
+ destination_country: T['io.flow.v0.models.country'],
11904
+ threshold: T['io.flow.v0.models.value_threshold_exceeded_details'],
11593
11905
  });
11594
11906
 
11595
- T['io.flow.v0.models.payment_version'] = PropTypes.exact({
11596
- id: PropTypes.string.isRequired,
11597
- timestamp: PropTypes.string.isRequired,
11598
- type: T['io.flow.v0.enums.change_type'].isRequired,
11599
- payment: T['io.flow.v0.unions.payment'].isRequired,
11907
+ T['io.flow.v0.models.price_details'] = PropTypes.exact({
11908
+ currency: PropTypes.string.isRequired,
11909
+ item_price: T['io.flow.v0.models.price_detail'].isRequired,
11910
+ margins: T['io.flow.v0.models.price_detail'].isRequired,
11911
+ vat: T['io.flow.v0.models.price_detail'].isRequired,
11912
+ duty: T['io.flow.v0.models.price_detail'].isRequired,
11913
+ rounding: T['io.flow.v0.models.price_detail'].isRequired,
11914
+ price: T['io.flow.v0.models.price'].isRequired,
11915
+ total: T['io.flow.v0.models.price'].isRequired,
11916
+ adjustment: T['io.flow.v0.models.price_detail'],
11600
11917
  });
11601
11918
 
11602
- T['io.flow.v0.models.organization_version'] = PropTypes.exact({
11603
- id: PropTypes.string.isRequired,
11604
- timestamp: PropTypes.string.isRequired,
11605
- type: T['io.flow.v0.enums.change_type'].isRequired,
11606
- organization: T['io.flow.v0.models.organization'].isRequired,
11919
+ T['io.flow.v0.models.local_price_details'] = PropTypes.exact({
11920
+ base: T['io.flow.v0.models.price_details'].isRequired,
11921
+ local: T['io.flow.v0.models.price_details'].isRequired,
11922
+ discount: T['io.flow.v0.models.price_detail'],
11923
+ local_before_discount: T['io.flow.v0.models.price_detail'],
11607
11924
  });
11608
11925
 
11609
- T['io.flow.v0.models.order_identifier_version'] = PropTypes.exact({
11610
- id: PropTypes.string.isRequired,
11611
- timestamp: PropTypes.string.isRequired,
11612
- type: T['io.flow.v0.enums.change_type'].isRequired,
11613
- order_identifier: T['io.flow.v0.models.order_identifier'].isRequired,
11926
+ T['io.flow.v0.models.price_check'] = PropTypes.exact({
11927
+ display: T['io.flow.v0.models.local_price_details'].isRequired,
11928
+ 'final': T['io.flow.v0.models.local_price_details'].isRequired,
11614
11929
  });
11615
11930
 
11616
- T['io.flow.v0.models.item_margin_version'] = PropTypes.exact({
11617
- id: PropTypes.string.isRequired,
11618
- timestamp: PropTypes.string.isRequired,
11619
- type: T['io.flow.v0.enums.change_type'].isRequired,
11620
- item_margin: T['io.flow.v0.models.item_margin'].isRequired,
11931
+ T['io.flow.v0.models.order_promotion_trigger'] = PropTypes.exact({
11932
+ type: T['io.flow.v0.enums.promotion_trigger_type'].isRequired,
11933
+ min: T['io.flow.v0.models.price'],
11621
11934
  });
11622
11935
 
11623
- T['io.flow.v0.models.import_version'] = PropTypes.exact({
11624
- id: PropTypes.string.isRequired,
11625
- timestamp: PropTypes.string.isRequired,
11626
- type: T['io.flow.v0.enums.change_type'].isRequired,
11627
- 'import': T['io.flow.v0.models.import'].isRequired,
11936
+ T['io.flow.v0.models.promotion_trigger'] = PropTypes.exact({
11937
+ type: T['io.flow.v0.enums.promotion_trigger_type'].isRequired,
11938
+ min: T['io.flow.v0.models.price'].isRequired,
11939
+ remaining: T['io.flow.v0.models.price'].isRequired,
11628
11940
  });
11629
11941
 
11630
- T['io.flow.v0.models.hs10_version'] = PropTypes.exact({
11631
- id: PropTypes.string.isRequired,
11632
- timestamp: PropTypes.string.isRequired,
11633
- type: T['io.flow.v0.enums.change_type'].isRequired,
11634
- hs10: T['io.flow.v0.models.hs10'].isRequired,
11942
+ T['io.flow.v0.models.free_shipping'] = PropTypes.exact({
11943
+ discriminator: PropTypes.oneOf(['free_shipping']).isRequired,
11944
+ trigger: T['io.flow.v0.models.promotion_trigger'].isRequired,
11945
+ max: T['io.flow.v0.models.price'],
11946
+ });
11947
+
11948
+ T['io.flow.v0.models.flat_rate'] = PropTypes.exact({
11949
+ discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
11950
+ price: T['io.flow.v0.models.price'].isRequired,
11951
+ zero_amount_indicator: T['io.flow.v0.enums.zero_amount_indicator'],
11952
+ });
11953
+
11954
+ T['io.flow.v0.models.localized_item_price'] = PropTypes.exact({
11955
+ key: PropTypes.oneOf(['localized_item_price']).isRequired,
11956
+ currency: PropTypes.string.isRequired,
11957
+ amount: PropTypes.number.isRequired,
11958
+ label: PropTypes.string.isRequired,
11959
+ base: T['io.flow.v0.models.price'].isRequired,
11960
+ includes: T['io.flow.v0.models.included_levies'],
11961
+ });
11962
+
11963
+ T['io.flow.v0.models.experience_logistics_tier_summary_prices'] = PropTypes.exact({
11964
+ minimum: T['io.flow.v0.models.price'].isRequired,
11965
+ });
11966
+
11967
+ T['io.flow.v0.models.experience_logistics_tier_summary'] = PropTypes.exact({
11968
+ prices: T['io.flow.v0.models.experience_logistics_tier_summary_prices'].isRequired,
11969
+ });
11970
+
11971
+ T['io.flow.v0.models.experience_logistics_summary'] = PropTypes.exact({
11972
+ outbound: T['io.flow.v0.models.experience_logistics_tier_summary'],
11973
+ 'return': T['io.flow.v0.models.experience_logistics_tier_summary'],
11635
11974
  });
11636
11975
 
11637
- T['io.flow.v0.models.experience_version'] = PropTypes.exact({
11976
+ T['io.flow.v0.models.delivery_option_summary'] = PropTypes.exact({
11638
11977
  id: PropTypes.string.isRequired,
11639
- timestamp: PropTypes.string.isRequired,
11640
- type: T['io.flow.v0.enums.change_type'].isRequired,
11641
- experience: T['io.flow.v0.models.experience'].isRequired,
11978
+ cost: T['io.flow.v0.models.price'].isRequired,
11979
+ delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
11980
+ price: T['io.flow.v0.models.price'].isRequired,
11981
+ service: T['io.flow.v0.models.service_reference'].isRequired,
11982
+ tier: T['io.flow.v0.models.tier_reference'].isRequired,
11983
+ window: T['io.flow.v0.models.datetime_range'].isRequired,
11642
11984
  });
11643
11985
 
11644
- T['io.flow.v0.models.exclusion_rule_version'] = PropTypes.exact({
11986
+ T['io.flow.v0.models.delivery_option_version'] = PropTypes.exact({
11645
11987
  id: PropTypes.string.isRequired,
11646
11988
  timestamp: PropTypes.string.isRequired,
11647
11989
  type: T['io.flow.v0.enums.change_type'].isRequired,
11648
- exclusion_rule: T['io.flow.v0.models.exclusion_rule'].isRequired,
11990
+ delivery_option: T['io.flow.v0.models.delivery_option_summary'].isRequired,
11649
11991
  });
11650
11992
 
11651
- T['io.flow.v0.models.catalog_version'] = PropTypes.exact({
11652
- id: PropTypes.string.isRequired,
11653
- timestamp: PropTypes.string.isRequired,
11654
- type: T['io.flow.v0.enums.change_type'].isRequired,
11655
- catalog: T['io.flow.v0.models.catalog'].isRequired,
11993
+ T['io.flow.v0.models.delivery_option_cost_component'] = PropTypes.exact({
11994
+ key: T['io.flow.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
11995
+ currency: PropTypes.string.isRequired,
11996
+ amount: PropTypes.number.isRequired,
11997
+ label: PropTypes.string.isRequired,
11998
+ base: T['io.flow.v0.models.price'],
11656
11999
  });
11657
12000
 
11658
- T['io.flow.v0.enums.attribute_data_type'] = PropTypes.oneOf(['boolean', 'integer', 'decimal', 'string', 'json_array']);
12001
+ T['io.flow.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
12002
+ source: T['io.flow.v0.enums.delivery_option_cost_detail_source'].isRequired,
12003
+ ratecard_id: PropTypes.string,
12004
+ currency: PropTypes.string.isRequired,
12005
+ amount: PropTypes.number.isRequired,
12006
+ label: PropTypes.string.isRequired,
12007
+ base: T['io.flow.v0.models.price'],
12008
+ components: PropTypes.arrayOf(T['io.flow.v0.models.delivery_option_cost_component']).isRequired,
12009
+ });
11659
12010
 
11660
- T['io.flow.v0.enums.attribute_intent'] = PropTypes.oneOf([
11661
- 'brand',
11662
- 'color',
11663
- 'countries_of_origin',
11664
- 'product_id',
11665
- 'fulfillment_method',
11666
- 'hazardous',
11667
- 'price',
11668
- 'size',
11669
- 'sku',
11670
- 'taxability',
11671
- 'consumer_url',
11672
- 'gtin',
11673
- 'mpn',
11674
- 'facet',
11675
- 'eccn',
11676
- 'returnable',
11677
- 'searchable',
11678
- 'barcode',
11679
- 'min_days_to_ship',
11680
- 'max_days_to_ship',
11681
- 'commercial_invoice_item_number',
11682
- 'include_in_product_feeds',
11683
- ]);
12011
+ T['io.flow.v0.models.price_with_base_and_details'] = PropTypes.exact({
12012
+ currency: PropTypes.string.isRequired,
12013
+ amount: PropTypes.number.isRequired,
12014
+ label: PropTypes.string.isRequired,
12015
+ base: T['io.flow.v0.models.price'],
12016
+ details: PropTypes.arrayOf(T['io.flow.v0.models.delivery_option_cost_detail']),
12017
+ });
11684
12018
 
11685
- T['io.flow.v0.models.options'] = PropTypes.exact({
11686
- required: PropTypes.bool.isRequired,
11687
- show_in_catalog: PropTypes.bool.isRequired,
11688
- show_in_harmonization: PropTypes.bool.isRequired,
12019
+ T['io.flow.v0.models.original_prices'] = PropTypes.exact({
12020
+ value: T['io.flow.v0.models.price'].isRequired,
12021
+ max: T['io.flow.v0.models.price'].isRequired,
11689
12022
  });
11690
12023
 
11691
- T['io.flow.v0.models.attribute_form'] = PropTypes.exact({
11692
- key: PropTypes.string.isRequired,
11693
- options: T['io.flow.v0.models.options'].isRequired,
11694
- label: PropTypes.string,
11695
- intent: T['io.flow.v0.enums.attribute_intent'],
11696
- type: T['io.flow.v0.enums.attribute_data_type'],
11697
- position: PropTypes.number,
12024
+ T['io.flow.v0.models.item_shipping_pricing'] = PropTypes.exact({
12025
+ min: T['io.flow.v0.models.price'].isRequired,
12026
+ max: T['io.flow.v0.models.price'],
11698
12027
  });
11699
12028
 
11700
- T['io.flow.v0.models.attribute'] = PropTypes.exact({
11701
- id: PropTypes.string.isRequired,
11702
- key: PropTypes.string.isRequired,
11703
- options: T['io.flow.v0.models.options'].isRequired,
11704
- label: PropTypes.string,
11705
- intent: T['io.flow.v0.enums.attribute_intent'],
11706
- type: T['io.flow.v0.enums.attribute_data_type'],
11707
- position: PropTypes.number,
12029
+ T['io.flow.v0.models.country_shipping_pricing'] = PropTypes.exact({
12030
+ pricing: T['io.flow.v0.models.item_shipping_pricing'].isRequired,
12031
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
11708
12032
  });
11709
12033
 
11710
- T['io.flow.v0.models.attribute_version'] = PropTypes.exact({
12034
+ T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
11711
12035
  id: PropTypes.string.isRequired,
12036
+ item: T['io.flow.v0.models.item_reference'].isRequired,
12037
+ shipping_configuration: T['io.flow.v0.models.shipping_configuration_summary'].isRequired,
12038
+ country_shipping_pricings: PropTypes.arrayOf(T['io.flow.v0.models.country_shipping_pricing']).isRequired,
12039
+ });
12040
+
12041
+ T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_upserted'] = PropTypes.exact({
12042
+ discriminator: PropTypes.oneOf(['shipping_configuration_item_shipping_pricing_upserted']).isRequired,
12043
+ event_id: PropTypes.string.isRequired,
11712
12044
  timestamp: PropTypes.string.isRequired,
11713
- type: T['io.flow.v0.enums.change_type'].isRequired,
11714
- attribute: T['io.flow.v0.models.attribute'].isRequired,
12045
+ organization_id: PropTypes.string.isRequired,
12046
+ shipping_configuration_item_shipping_pricing: T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'].isRequired,
11715
12047
  });
11716
12048
 
11717
- T['io.flow.v0.models.attribute_upserted_v2'] = PropTypes.exact({
11718
- discriminator: PropTypes.oneOf(['attribute_upserted_v2']).isRequired,
12049
+ T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'] = PropTypes.exact({
12050
+ discriminator: PropTypes.oneOf(['shipping_configuration_item_shipping_pricing_deleted']).isRequired,
11719
12051
  event_id: PropTypes.string.isRequired,
11720
12052
  timestamp: PropTypes.string.isRequired,
11721
- organization: PropTypes.string.isRequired,
11722
- attribute: T['io.flow.v0.models.attribute'].isRequired,
12053
+ organization_id: PropTypes.string.isRequired,
12054
+ shipping_configuration_item_shipping_pricing: T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'].isRequired,
11723
12055
  });
11724
12056
 
11725
- T['io.flow.v0.enums.statement_attachment_type'] = PropTypes.oneOf(['csv']);
12057
+ T['io.flow.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
12058
+ discriminator: PropTypes.oneOf(['discount']).isRequired,
12059
+ price: T['io.flow.v0.models.price'].isRequired,
12060
+ });
11726
12061
 
11727
- T['io.flow.v0.models.attachment'] = PropTypes.exact({
11728
- type: T['io.flow.v0.enums.statement_attachment_type'].isRequired,
11729
- url: PropTypes.string.isRequired,
12062
+ T['io.flow.v0.models.consumer_invoice_levy'] = PropTypes.exact({
12063
+ rate: PropTypes.number.isRequired,
12064
+ value: T['io.flow.v0.models.price'].isRequired,
11730
12065
  });
11731
12066
 
11732
- T['io.flow.v0.models.statement'] = PropTypes.exact({
12067
+ T['io.flow.v0.models.consumer_invoice_line_shipping'] = PropTypes.exact({
12068
+ discriminator: PropTypes.oneOf(['shipping']).isRequired,
12069
+ price: T['io.flow.v0.models.price'].isRequired,
12070
+ discount: T['io.flow.v0.models.price'],
12071
+ tax: T['io.flow.v0.models.consumer_invoice_levy'],
12072
+ duty: T['io.flow.v0.models.consumer_invoice_levy'],
12073
+ });
12074
+
12075
+ T['io.flow.v0.models.consumer_invoice_line_item'] = PropTypes.exact({
12076
+ discriminator: PropTypes.oneOf(['item']).isRequired,
12077
+ item: T['io.flow.v0.models.item_reference'].isRequired,
12078
+ description: PropTypes.string.isRequired,
12079
+ quantity: PropTypes.number.isRequired,
12080
+ unit_price: T['io.flow.v0.models.price'].isRequired,
12081
+ unit_discount: T['io.flow.v0.models.price'],
12082
+ unit_tax: T['io.flow.v0.models.consumer_invoice_levy'],
12083
+ unit_duty: T['io.flow.v0.models.consumer_invoice_levy'],
12084
+ });
12085
+
12086
+ T['io.flow.v0.unions.consumer_invoice_line'] = PropTypes.oneOfType([
12087
+ T['io.flow.v0.models.consumer_invoice_line_item'],
12088
+ T['io.flow.v0.models.consumer_invoice_line_discount'],
12089
+ T['io.flow.v0.models.consumer_invoice_line_shipping'],
12090
+ ]);
12091
+
12092
+ T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
11733
12093
  id: PropTypes.string.isRequired,
11734
- account: T['io.flow.v0.models.account_reference'].isRequired,
11735
- ending_balance: PropTypes.number.isRequired,
11736
- settlement: T['io.flow.v0.unions.settlement'].isRequired,
11737
- attachments: PropTypes.arrayOf(T['io.flow.v0.models.attachment']).isRequired,
11738
- created_at: PropTypes.string.isRequired,
12094
+ number: PropTypes.string.isRequired,
12095
+ buyer: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
12096
+ seller: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
12097
+ status: T['io.flow.v0.enums.consumer_invoice_status'].isRequired,
12098
+ date: PropTypes.string.isRequired,
12099
+ key: PropTypes.string.isRequired,
12100
+ invoice: T['io.flow.v0.models.b2b_invoice_reference'].isRequired,
12101
+ lines: PropTypes.arrayOf(T['io.flow.v0.unions.consumer_invoice_line']).isRequired,
12102
+ documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
12103
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
12104
+ b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
11739
12105
  });
11740
12106
 
11741
- T['io.flow.v0.models.statement_upserted'] = PropTypes.exact({
11742
- discriminator: PropTypes.oneOf(['statement_upserted']).isRequired,
12107
+ T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
12108
+ discriminator: PropTypes.oneOf(['b2b_credit_memo_upserted']).isRequired,
11743
12109
  event_id: PropTypes.string.isRequired,
11744
12110
  timestamp: PropTypes.string.isRequired,
11745
12111
  organization: PropTypes.string.isRequired,
11746
- statement: T['io.flow.v0.models.statement'].isRequired,
12112
+ b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
11747
12113
  });
11748
12114
 
11749
- T['io.flow.v0.models.statement_deleted'] = PropTypes.exact({
11750
- discriminator: PropTypes.oneOf(['statement_deleted']).isRequired,
12115
+ T['io.flow.v0.models.b2b_credit_memo_deleted'] = PropTypes.exact({
12116
+ discriminator: PropTypes.oneOf(['b2b_credit_memo_deleted']).isRequired,
11751
12117
  event_id: PropTypes.string.isRequired,
11752
12118
  timestamp: PropTypes.string.isRequired,
11753
12119
  organization: PropTypes.string.isRequired,
11754
- statement: T['io.flow.v0.models.statement'].isRequired,
12120
+ b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
11755
12121
  });
11756
12122
 
11757
- T['io.flow.v0.models.channel_statement'] = PropTypes.exact({
12123
+ T['io.flow.v0.models.catalog_price_book_item_document'] = PropTypes.exact({
12124
+ price_book_key: PropTypes.string.isRequired,
12125
+ price_book_item_key: PropTypes.string.isRequired,
12126
+ catalog: T['io.flow.v0.models.catalog_item_summary'].isRequired,
12127
+ price: T['io.flow.v0.models.price'],
12128
+ amount: PropTypes.number.isRequired,
12129
+ starts_at: PropTypes.string.isRequired,
12130
+ ends_at: PropTypes.string,
12131
+ });
12132
+
12133
+ T['io.flow.v0.models.amount_margin'] = PropTypes.exact({
12134
+ discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
12135
+ margin: T['io.flow.v0.models.price'].isRequired,
12136
+ });
12137
+
12138
+ T['io.flow.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
12139
+ T['io.flow.v0.models.amount_margin'],
12140
+ T['io.flow.v0.models.at_cost'],
12141
+ T['io.flow.v0.models.flat_rate'],
12142
+ T['io.flow.v0.models.percent_margin'],
12143
+ ]);
12144
+
12145
+ T['io.flow.v0.models.tier_rule'] = PropTypes.exact({
11758
12146
  id: PropTypes.string.isRequired,
11759
- account: T['io.flow.v0.models.account_reference'].isRequired,
11760
- ending_balance: PropTypes.number.isRequired,
11761
- settlement: T['io.flow.v0.unions.settlement'].isRequired,
11762
- attachments: PropTypes.arrayOf(T['io.flow.v0.models.attachment']).isRequired,
11763
- created_at: PropTypes.string.isRequired,
12147
+ position: PropTypes.number.isRequired,
12148
+ query: PropTypes.string.isRequired,
12149
+ outcome: T['io.flow.v0.unions.tier_rule_outcome'].isRequired,
11764
12150
  });
11765
12151
 
11766
- T['io.flow.v0.models.channel_statement_upserted'] = PropTypes.exact({
11767
- discriminator: PropTypes.oneOf(['channel_statement_upserted']).isRequired,
11768
- event_id: PropTypes.string.isRequired,
12152
+ T['io.flow.v0.models.tier_rule_version'] = PropTypes.exact({
12153
+ id: PropTypes.string.isRequired,
11769
12154
  timestamp: PropTypes.string.isRequired,
11770
- channel_id: PropTypes.string.isRequired,
11771
- channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
12155
+ type: T['io.flow.v0.enums.change_type'].isRequired,
12156
+ tier_rule: T['io.flow.v0.models.tier_rule'].isRequired,
11772
12157
  });
11773
12158
 
11774
- T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
11775
- discriminator: PropTypes.oneOf(['channel_statement_deleted']).isRequired,
11776
- event_id: PropTypes.string.isRequired,
11777
- timestamp: PropTypes.string.isRequired,
11778
- channel_id: PropTypes.string.isRequired,
11779
- channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
12159
+ T['io.flow.v0.models.localized_total'] = PropTypes.exact({
12160
+ key: PropTypes.oneOf(['localized_total']).isRequired,
12161
+ currency: PropTypes.string.isRequired,
12162
+ amount: PropTypes.number.isRequired,
12163
+ label: PropTypes.string.isRequired,
12164
+ base: T['io.flow.v0.models.price'].isRequired,
11780
12165
  });
11781
12166
 
11782
- T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
11783
- 'adjustment',
11784
- 'subtotal',
11785
- 'vat',
11786
- 'duty',
11787
- 'shipping',
11788
- 'insurance',
11789
- 'discount',
11790
- 'surcharges',
11791
- 'tip',
11792
- ]);
12167
+ T['io.flow.v0.models.price_with_base'] = PropTypes.exact({
12168
+ currency: PropTypes.string.isRequired,
12169
+ amount: PropTypes.number.isRequired,
12170
+ label: PropTypes.string.isRequired,
12171
+ base: T['io.flow.v0.models.price'],
12172
+ });
12173
+
12174
+ T['io.flow.v0.models.shopify_order_price_attributes_metafield'] = PropTypes.exact({
12175
+ item_number: PropTypes.string.isRequired,
12176
+ price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price_with_base']).isRequired,
12177
+ });
11793
12178
 
11794
- T['io.flow.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
12179
+ T['io.flow.v0.models.shopify_local_price_metadata'] = PropTypes.exact({
12180
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
12181
+ });
11795
12182
 
11796
- T['io.flow.v0.models.price'] = PropTypes.exact({
12183
+ T['io.flow.v0.models.shopify_price'] = PropTypes.exact({
12184
+ name: PropTypes.string.isRequired,
11797
12185
  amount: PropTypes.number.isRequired,
12186
+ cents: PropTypes.number.isRequired,
11798
12187
  currency: PropTypes.string.isRequired,
11799
12188
  label: PropTypes.string.isRequired,
12189
+ includes: T['io.flow.v0.models.included_levies'],
12190
+ local: T['io.flow.v0.models.shopify_local_price_metadata'],
11800
12191
  });
11801
12192
 
11802
- T['io.flow.v0.models.virtual_card'] = PropTypes.exact({
11803
- id: PropTypes.string.isRequired,
11804
- key: PropTypes.string.isRequired,
11805
- number: PropTypes.string,
11806
- cvv: PropTypes.string,
11807
- limit: T['io.flow.v0.models.price'].isRequired,
11808
- type: T['io.flow.v0.enums.card_type'].isRequired,
11809
- expiration: T['io.flow.v0.models.expiration'].isRequired,
11810
- iin: PropTypes.string.isRequired,
11811
- last4: PropTypes.string.isRequired,
11812
- name: PropTypes.string.isRequired,
11813
- attributes: PropTypes.objectOf(PropTypes.string),
12193
+ T['io.flow.v0.models.shopify_localized_variant_prices'] = PropTypes.exact({
12194
+ item: T['io.flow.v0.models.shopify_price'].isRequired,
12195
+ compare_at: T['io.flow.v0.models.shopify_price'],
12196
+ vat: T['io.flow.v0.models.shopify_price'],
12197
+ duty: T['io.flow.v0.models.shopify_price'],
11814
12198
  });
11815
12199
 
11816
- T['io.flow.v0.models.virtual_card_version'] = PropTypes.exact({
11817
- id: PropTypes.string.isRequired,
11818
- timestamp: PropTypes.string.isRequired,
11819
- type: T['io.flow.v0.enums.change_type'].isRequired,
11820
- virtual_card: T['io.flow.v0.models.virtual_card'].isRequired,
12200
+ T['io.flow.v0.models.shopify_localized_variant'] = PropTypes.exact({
12201
+ id: PropTypes.number.isRequired,
12202
+ handle: PropTypes.string.isRequired,
12203
+ experience: T['io.flow.v0.models.experience_reference'].isRequired,
12204
+ prices: T['io.flow.v0.models.shopify_localized_variant_prices'].isRequired,
12205
+ status: T['io.flow.v0.enums.subcatalog_item_status'].isRequired,
12206
+ inventory_status: T['io.flow.v0.enums.item_availability_status'],
11821
12207
  });
11822
12208
 
11823
- T['io.flow.v0.models.price_book_item'] = PropTypes.exact({
12209
+ T['io.flow.v0.models.shopify_local_cart_item_metadata'] = PropTypes.exact({
12210
+ line_price: T['io.flow.v0.models.price_with_base'].isRequired,
12211
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
12212
+ });
12213
+
12214
+ T['io.flow.v0.models.shopify_cart_item'] = PropTypes.exact({
11824
12215
  id: PropTypes.string.isRequired,
11825
- key: PropTypes.string.isRequired,
11826
- price_book: T['io.flow.v0.models.price_book_reference'].isRequired,
11827
- price: T['io.flow.v0.models.price'].isRequired,
11828
- item_number: PropTypes.string.isRequired,
11829
- schedule: T['io.flow.v0.models.price_book_item_schedule'].isRequired,
11830
- item_attributes: PropTypes.objectOf(PropTypes.string),
12216
+ handle: PropTypes.string.isRequired,
12217
+ line_price: PropTypes.number.isRequired,
12218
+ price: PropTypes.number.isRequired,
12219
+ product_id: PropTypes.number.isRequired,
12220
+ product_title: PropTypes.string.isRequired,
12221
+ quantity: PropTypes.number.isRequired,
12222
+ title: PropTypes.string.isRequired,
12223
+ url: PropTypes.string.isRequired,
12224
+ variant_id: PropTypes.number.isRequired,
12225
+ local: T['io.flow.v0.models.shopify_local_cart_item_metadata'].isRequired,
12226
+ gift_card: PropTypes.bool.isRequired,
12227
+ image: PropTypes.string,
12228
+ product_description: PropTypes.string,
12229
+ product_type: PropTypes.string,
12230
+ properties: PropTypes.objectOf(PropTypes.string),
12231
+ requires_shipping: PropTypes.bool.isRequired,
12232
+ sku: PropTypes.string,
12233
+ variant_title: PropTypes.string,
12234
+ variant_options: PropTypes.arrayOf(PropTypes.string),
12235
+ vendor: PropTypes.string,
11831
12236
  });
11832
12237
 
11833
- T['io.flow.v0.models.price_book_item_upserted'] = PropTypes.exact({
11834
- discriminator: PropTypes.oneOf(['price_book_item_upserted']).isRequired,
11835
- event_id: PropTypes.string.isRequired,
11836
- timestamp: PropTypes.string.isRequired,
11837
- organization: PropTypes.string.isRequired,
11838
- price_book_item: T['io.flow.v0.models.price_book_item'].isRequired,
12238
+ T['io.flow.v0.models.line'] = PropTypes.exact({
12239
+ id: PropTypes.string,
12240
+ item_number: PropTypes.string.isRequired,
12241
+ quantity: PropTypes.number.isRequired,
12242
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
12243
+ total: T['io.flow.v0.models.price_with_base'].isRequired,
12244
+ attributes: PropTypes.objectOf(PropTypes.string),
11839
12245
  });
11840
12246
 
11841
- T['io.flow.v0.models.order_summary_levy'] = PropTypes.exact({
11842
- rate: PropTypes.number.isRequired,
11843
- rate_label: PropTypes.string,
11844
- value: T['io.flow.v0.models.price'].isRequired,
12247
+ T['io.flow.v0.models.klaviyo_order_prices'] = PropTypes.exact({
12248
+ subtotal: T['io.flow.v0.models.price_with_base'].isRequired,
12249
+ vat: T['io.flow.v0.models.price_with_base'],
12250
+ duty: T['io.flow.v0.models.price_with_base'],
12251
+ discount: T['io.flow.v0.models.price_with_base'],
12252
+ shipping: T['io.flow.v0.models.price_with_base'],
12253
+ insurance: T['io.flow.v0.models.price_with_base'],
12254
+ total: T['io.flow.v0.models.price_with_base'].isRequired,
11845
12255
  });
11846
12256
 
11847
- T['io.flow.v0.models.order_summary_item'] = PropTypes.exact({
11848
- number: PropTypes.string.isRequired,
11849
- name: PropTypes.string.isRequired,
11850
- description: PropTypes.string,
11851
- attributes: PropTypes.arrayOf(T['io.flow.v0.models.checkout_item_content_attribute']).isRequired,
11852
- image: T['io.flow.v0.models.order_summary_image'],
11853
- price: T['io.flow.v0.models.price'].isRequired,
11854
- discount: T['io.flow.v0.models.price'],
11855
- tax: T['io.flow.v0.models.order_summary_levy'],
11856
- duty: T['io.flow.v0.models.order_summary_levy'],
11857
- price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price']).isRequired,
12257
+ T['io.flow.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
12258
+ item_number: PropTypes.string.isRequired,
12259
+ line_number: PropTypes.number.isRequired,
12260
+ levies: T['io.flow.v0.models.price_with_base'].isRequired,
12261
+ total: T['io.flow.v0.models.price_with_base'].isRequired,
11858
12262
  });
11859
12263
 
11860
- T['io.flow.v0.models.order_summary_line_item'] = PropTypes.exact({
11861
- id: PropTypes.string,
11862
- item: T['io.flow.v0.models.order_summary_item'].isRequired,
11863
- quantity: PropTypes.number.isRequired,
11864
- discount: T['io.flow.v0.models.price'],
11865
- tax: T['io.flow.v0.models.order_summary_levy'],
11866
- duty: T['io.flow.v0.models.order_summary_levy'],
11867
- total: T['io.flow.v0.models.price'].isRequired,
11868
- price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price']).isRequired,
11869
- attributes: PropTypes.objectOf(PropTypes.string),
12264
+ T['io.flow.v0.models.experience_price_facet_conversion'] = PropTypes.exact({
12265
+ request: T['io.flow.v0.models.experience_price_facet_conversion_request'].isRequired,
12266
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
11870
12267
  });
11871
12268
 
11872
- T['io.flow.v0.models.order_summary_price_detail'] = PropTypes.exact({
11873
- price: T['io.flow.v0.models.price'].isRequired,
11874
- name: PropTypes.string,
11875
- rate: PropTypes.number,
11876
- rate_label: PropTypes.string,
12269
+ T['io.flow.v0.models.experience_price_facet_conversion_response'] = PropTypes.exact({
12270
+ facets: PropTypes.arrayOf(T['io.flow.v0.models.experience_price_facet_conversion']).isRequired,
11877
12271
  });
11878
12272
 
11879
- T['io.flow.v0.models.order_summary'] = PropTypes.exact({
11880
- number: PropTypes.string.isRequired,
11881
- subtotal: T['io.flow.v0.models.order_summary_price_detail'].isRequired,
11882
- shipping: T['io.flow.v0.models.order_summary_price_detail'],
11883
- tax: T['io.flow.v0.models.order_summary_price_detail'],
11884
- duty: T['io.flow.v0.models.order_summary_price_detail'],
11885
- insurance: T['io.flow.v0.models.order_summary_price_detail'],
11886
- discount: T['io.flow.v0.models.order_summary_price_detail'],
11887
- surcharges: T['io.flow.v0.models.order_summary_price_detail'],
11888
- adjustment: T['io.flow.v0.models.order_summary_price_detail'],
11889
- total: T['io.flow.v0.models.order_summary_price_detail'].isRequired,
11890
- lines: PropTypes.arrayOf(T['io.flow.v0.models.order_summary_line_item']).isRequired,
11891
- identifiers: PropTypes.objectOf(PropTypes.string),
11892
- attributes: PropTypes.objectOf(PropTypes.string),
12273
+ T['io.flow.v0.models.experience_price_conversion'] = PropTypes.exact({
12274
+ request: T['io.flow.v0.models.experience_price_conversion_request'].isRequired,
12275
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
11893
12276
  });
11894
12277
 
11895
- T['io.flow.v0.models.value_threshold_exceeded_details'] = PropTypes.exact({
11896
- local: T['io.flow.v0.models.price'].isRequired,
11897
- original: T['io.flow.v0.models.price'].isRequired,
12278
+ T['io.flow.v0.models.experience_price_conversion_response'] = PropTypes.exact({
12279
+ prices: PropTypes.arrayOf(T['io.flow.v0.models.experience_price_conversion']).isRequired,
11898
12280
  });
11899
12281
 
11900
- T['io.flow.v0.models.order_error'] = PropTypes.exact({
11901
- code: T['io.flow.v0.enums.order_error_code'].isRequired,
11902
- messages: PropTypes.arrayOf(PropTypes.string).isRequired,
11903
- numbers: PropTypes.arrayOf(PropTypes.string),
11904
- destination_country: T['io.flow.v0.models.country'],
11905
- threshold: T['io.flow.v0.models.value_threshold_exceeded_details'],
12282
+ T['io.flow.v0.models.discount'] = PropTypes.exact({
12283
+ discriminator: PropTypes.oneOf(['discount']).isRequired,
12284
+ id: PropTypes.string.isRequired,
12285
+ code: PropTypes.string,
12286
+ label: PropTypes.string.isRequired,
12287
+ price: T['io.flow.v0.models.price_with_base'].isRequired,
12288
+ attributes: PropTypes.objectOf(PropTypes.string),
11906
12289
  });
11907
12290
 
11908
- T['io.flow.v0.models.price_details'] = PropTypes.exact({
11909
- currency: PropTypes.string.isRequired,
11910
- item_price: T['io.flow.v0.models.price_detail'].isRequired,
11911
- margins: T['io.flow.v0.models.price_detail'].isRequired,
11912
- vat: T['io.flow.v0.models.price_detail'].isRequired,
11913
- duty: T['io.flow.v0.models.price_detail'].isRequired,
11914
- rounding: T['io.flow.v0.models.price_detail'].isRequired,
11915
- price: T['io.flow.v0.models.price'].isRequired,
11916
- total: T['io.flow.v0.models.price'].isRequired,
11917
- adjustment: T['io.flow.v0.models.price_detail'],
12291
+ T['io.flow.v0.unions.promotion'] = PropTypes.oneOfType([T['io.flow.v0.models.free_shipping'], T['io.flow.v0.models.discount']]);
12292
+
12293
+ T['io.flow.v0.models.promotions'] = PropTypes.exact({
12294
+ applied: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
12295
+ available: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
11918
12296
  });
11919
12297
 
11920
- T['io.flow.v0.models.local_price_details'] = PropTypes.exact({
11921
- base: T['io.flow.v0.models.price_details'].isRequired,
11922
- local: T['io.flow.v0.models.price_details'].isRequired,
11923
- discount: T['io.flow.v0.models.price_detail'],
11924
- local_before_discount: T['io.flow.v0.models.price_detail'],
12298
+ T['io.flow.v0.models.shopify_local_cart_metadata'] = PropTypes.exact({
12299
+ total_price: T['io.flow.v0.models.price_with_base'].isRequired,
12300
+ promotions: T['io.flow.v0.models.promotions'].isRequired,
12301
+ rules: T['io.flow.v0.models.order_rules_summary'],
12302
+ subtotal: T['io.flow.v0.models.price_with_base'].isRequired,
12303
+ vat: T['io.flow.v0.models.price_with_base'],
12304
+ duty: T['io.flow.v0.models.price_with_base'],
12305
+ discount: T['io.flow.v0.models.price_with_base'],
11925
12306
  });
11926
12307
 
11927
- T['io.flow.v0.models.price_check'] = PropTypes.exact({
11928
- display: T['io.flow.v0.models.local_price_details'].isRequired,
11929
- 'final': T['io.flow.v0.models.local_price_details'].isRequired,
12308
+ T['io.flow.v0.models.shopify_cart'] = PropTypes.exact({
12309
+ id: PropTypes.string.isRequired,
12310
+ items: PropTypes.arrayOf(T['io.flow.v0.models.shopify_cart_item']).isRequired,
12311
+ item_count: PropTypes.number.isRequired,
12312
+ total_price: PropTypes.number.isRequired,
12313
+ local: T['io.flow.v0.models.shopify_local_cart_metadata'].isRequired,
12314
+ attributes: PropTypes.object,
12315
+ note: PropTypes.string,
12316
+ requires_shipping: PropTypes.bool.isRequired,
12317
+ total_weight: PropTypes.number,
11930
12318
  });
11931
12319
 
11932
- T['io.flow.v0.models.order_promotion_trigger'] = PropTypes.exact({
11933
- type: T['io.flow.v0.enums.promotion_trigger_type'].isRequired,
11934
- min: T['io.flow.v0.models.price'],
12320
+ T['io.flow.v0.models.available_promotion'] = PropTypes.exact({
12321
+ id: PropTypes.string.isRequired,
12322
+ shipping_configuration: T['io.flow.v0.models.shipping_configuration_reference'].isRequired,
12323
+ region: T['io.flow.v0.models.region_reference'].isRequired,
12324
+ promotions: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
11935
12325
  });
11936
12326
 
11937
- T['io.flow.v0.models.promotion_trigger'] = PropTypes.exact({
11938
- type: T['io.flow.v0.enums.promotion_trigger_type'].isRequired,
11939
- min: T['io.flow.v0.models.price'].isRequired,
11940
- remaining: T['io.flow.v0.models.price'].isRequired,
12327
+ T['io.flow.v0.models.available_promotions_upserted_v2'] = PropTypes.exact({
12328
+ discriminator: PropTypes.oneOf(['available_promotions_upserted_v2']).isRequired,
12329
+ event_id: PropTypes.string.isRequired,
12330
+ timestamp: PropTypes.string.isRequired,
12331
+ organization: PropTypes.string.isRequired,
12332
+ available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
11941
12333
  });
11942
12334
 
11943
- T['io.flow.v0.models.free_shipping'] = PropTypes.exact({
11944
- discriminator: PropTypes.oneOf(['free_shipping']).isRequired,
11945
- trigger: T['io.flow.v0.models.promotion_trigger'].isRequired,
11946
- max: T['io.flow.v0.models.price'],
12335
+ T['io.flow.v0.models.available_promotions_deleted_v2'] = PropTypes.exact({
12336
+ discriminator: PropTypes.oneOf(['available_promotions_deleted_v2']).isRequired,
12337
+ event_id: PropTypes.string.isRequired,
12338
+ timestamp: PropTypes.string.isRequired,
12339
+ organization: PropTypes.string.isRequired,
12340
+ available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
11947
12341
  });
11948
12342
 
11949
- T['io.flow.v0.models.flat_rate'] = PropTypes.exact({
11950
- discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
11951
- price: T['io.flow.v0.models.price'].isRequired,
11952
- zero_amount_indicator: T['io.flow.v0.enums.zero_amount_indicator'],
12343
+ T['io.flow.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
12344
+ 'adjustment',
12345
+ 'vat_deminimis',
12346
+ 'duty_deminimis',
12347
+ 'duties_item_price',
12348
+ 'duties_freight',
12349
+ 'duties_insurance',
12350
+ 'vat_item_price',
12351
+ 'vat_freight',
12352
+ 'vat_insurance',
12353
+ 'vat_duties_item_price',
12354
+ 'vat_duties_freight',
12355
+ 'vat_duties_insurance',
12356
+ 'item_price',
12357
+ 'item_discount',
12358
+ 'rounding',
12359
+ 'insurance',
12360
+ 'shipping',
12361
+ 'shipping_discount',
12362
+ 'order_discount',
12363
+ 'subtotal_percent_sales_margin',
12364
+ 'subtotal_vat_percent_sales_margin',
12365
+ 'subtotal_duty_percent_sales_margin',
12366
+ 'vat_subsidy',
12367
+ 'duty_subsidy',
12368
+ 'remote_area_surcharge',
12369
+ 'fuel_surcharge',
12370
+ 'emergency_situation_surcharge',
12371
+ 'peak_surcharge',
12372
+ 'duties_taxes_paid_surcharge',
12373
+ 'tip',
12374
+ ]);
12375
+
12376
+ T['io.flow.v0.models.order_price_detail_component'] = PropTypes.exact({
12377
+ key: T['io.flow.v0.enums.order_price_detail_component_key'].isRequired,
12378
+ currency: PropTypes.string.isRequired,
12379
+ amount: PropTypes.number.isRequired,
12380
+ label: PropTypes.string.isRequired,
12381
+ base: T['io.flow.v0.models.price'].isRequired,
12382
+ name: PropTypes.string,
11953
12383
  });
11954
12384
 
11955
- T['io.flow.v0.models.localized_item_price'] = PropTypes.exact({
11956
- key: PropTypes.oneOf(['localized_item_price']).isRequired,
12385
+ T['io.flow.v0.models.order_price_detail'] = PropTypes.exact({
12386
+ key: T['io.flow.v0.enums.order_price_detail_key'].isRequired,
11957
12387
  currency: PropTypes.string.isRequired,
11958
12388
  amount: PropTypes.number.isRequired,
11959
12389
  label: PropTypes.string.isRequired,
11960
12390
  base: T['io.flow.v0.models.price'].isRequired,
11961
- includes: T['io.flow.v0.models.included_levies'],
12391
+ components: PropTypes.arrayOf(T['io.flow.v0.models.order_price_detail_component']).isRequired,
12392
+ name: PropTypes.string,
12393
+ rate: PropTypes.number,
12394
+ accuracy: T['io.flow.v0.enums.price_accuracy'],
12395
+ rate_label: PropTypes.string,
11962
12396
  });
11963
12397
 
11964
- T['io.flow.v0.models.experience_logistics_tier_summary_prices'] = PropTypes.exact({
11965
- minimum: T['io.flow.v0.models.price'].isRequired,
12398
+ T['io.flow.v0.models.allocation_detail_component'] = PropTypes.exact({
12399
+ discriminator: PropTypes.oneOf(['allocation_detail_component']).isRequired,
12400
+ key: T['io.flow.v0.enums.order_price_detail_component_key'].isRequired,
12401
+ total: T['io.flow.v0.models.price_with_base'].isRequired,
12402
+ price: T['io.flow.v0.models.price_with_base'],
11966
12403
  });
11967
12404
 
11968
- T['io.flow.v0.models.experience_logistics_tier_summary'] = PropTypes.exact({
11969
- prices: T['io.flow.v0.models.experience_logistics_tier_summary_prices'].isRequired,
12405
+ T['io.flow.v0.models.allocation_order_summary'] = PropTypes.exact({
12406
+ id: PropTypes.string.isRequired,
12407
+ number: PropTypes.string.isRequired,
12408
+ submitted_at: PropTypes.string,
11970
12409
  });
11971
12410
 
11972
- T['io.flow.v0.models.experience_logistics_summary'] = PropTypes.exact({
11973
- outbound: T['io.flow.v0.models.experience_logistics_tier_summary'],
11974
- 'return': T['io.flow.v0.models.experience_logistics_tier_summary'],
11975
- });
12411
+ T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'] = PropTypes.oneOf(['physical', 'digital']);
11976
12412
 
11977
- T['io.flow.v0.models.delivery_option_summary'] = PropTypes.exact({
11978
- id: PropTypes.string.isRequired,
11979
- cost: T['io.flow.v0.models.price'].isRequired,
11980
- delivered_duty: T['io.flow.v0.enums.delivered_duty'].isRequired,
11981
- price: T['io.flow.v0.models.price'].isRequired,
11982
- service: T['io.flow.v0.models.service_reference'].isRequired,
11983
- tier: T['io.flow.v0.models.tier_reference'].isRequired,
11984
- window: T['io.flow.v0.models.datetime_range'].isRequired,
12413
+ T['io.flow.common.v0.models.price'] = PropTypes.exact({
12414
+ amount: PropTypes.number.isRequired,
12415
+ currency: PropTypes.string.isRequired,
12416
+ label: PropTypes.string.isRequired,
11985
12417
  });
11986
12418
 
11987
- T['io.flow.v0.models.delivery_option_version'] = PropTypes.exact({
11988
- id: PropTypes.string.isRequired,
11989
- timestamp: PropTypes.string.isRequired,
11990
- type: T['io.flow.v0.enums.change_type'].isRequired,
11991
- delivery_option: T['io.flow.v0.models.delivery_option_summary'].isRequired,
12419
+ T['io.flow.catalog.v0.models.localized_item_price'] = PropTypes.exact({
12420
+ key: PropTypes.oneOf(['localized_item_price']).isRequired,
12421
+ currency: PropTypes.string.isRequired,
12422
+ amount: PropTypes.number.isRequired,
12423
+ label: PropTypes.string.isRequired,
12424
+ base: T['io.flow.common.v0.models.price'].isRequired,
12425
+ includes: T['io.flow.common.v0.models.included_levies'],
11992
12426
  });
11993
12427
 
11994
- T['io.flow.v0.models.delivery_option_cost_component'] = PropTypes.exact({
11995
- key: T['io.flow.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
12428
+ T['io.flow.catalog.v0.models.localized_adjustment'] = PropTypes.exact({
11996
12429
  currency: PropTypes.string.isRequired,
11997
12430
  amount: PropTypes.number.isRequired,
11998
12431
  label: PropTypes.string.isRequired,
11999
- base: T['io.flow.v0.models.price'],
12432
+ base: T['io.flow.common.v0.models.price'].isRequired,
12433
+ reason: T['io.flow.catalog.v0.models.adjustment_reason'].isRequired,
12000
12434
  });
12001
12435
 
12002
- T['io.flow.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
12003
- source: T['io.flow.v0.enums.delivery_option_cost_detail_source'].isRequired,
12004
- ratecard_id: PropTypes.string,
12436
+ T['io.flow.catalog.v0.models.localized_item_vat'] = PropTypes.exact({
12437
+ key: PropTypes.oneOf(['localized_item_vat']).isRequired,
12005
12438
  currency: PropTypes.string.isRequired,
12006
12439
  amount: PropTypes.number.isRequired,
12007
12440
  label: PropTypes.string.isRequired,
12008
- base: T['io.flow.v0.models.price'],
12009
- components: PropTypes.arrayOf(T['io.flow.v0.models.delivery_option_cost_component']).isRequired,
12441
+ base: T['io.flow.common.v0.models.price'].isRequired,
12442
+ name: PropTypes.string.isRequired,
12443
+ adjustment: T['io.flow.catalog.v0.models.localized_adjustment'],
12444
+ accuracy: T['io.flow.price.v0.enums.price_accuracy'],
12445
+ basis: T['io.flow.common.v0.models.money_with_base'],
12010
12446
  });
12011
12447
 
12012
- T['io.flow.v0.models.price_with_base_and_details'] = PropTypes.exact({
12448
+ T['io.flow.catalog.v0.models.localized_item_duty'] = PropTypes.exact({
12449
+ key: PropTypes.oneOf(['localized_item_duty']).isRequired,
12013
12450
  currency: PropTypes.string.isRequired,
12014
12451
  amount: PropTypes.number.isRequired,
12015
12452
  label: PropTypes.string.isRequired,
12016
- base: T['io.flow.v0.models.price'],
12017
- details: PropTypes.arrayOf(T['io.flow.v0.models.delivery_option_cost_detail']),
12453
+ base: T['io.flow.common.v0.models.price'].isRequired,
12454
+ adjustment: T['io.flow.catalog.v0.models.localized_adjustment'],
12455
+ basis: T['io.flow.common.v0.models.money_with_base'],
12018
12456
  });
12019
12457
 
12020
- T['io.flow.v0.models.original_prices'] = PropTypes.exact({
12021
- value: T['io.flow.v0.models.price'].isRequired,
12022
- max: T['io.flow.v0.models.price'].isRequired,
12458
+ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
12459
+ id: PropTypes.string.isRequired,
12460
+ number: PropTypes.string.isRequired,
12461
+ key: PropTypes.string.isRequired,
12462
+ position: PropTypes.number.isRequired,
12463
+ price: T['io.flow.common.v0.models.price'],
12464
+ categories: PropTypes.arrayOf(PropTypes.string),
12465
+ description: PropTypes.string,
12466
+ attributes: PropTypes.objectOf(PropTypes.string),
12467
+ dimensions: T['io.flow.common.v0.models.dimensions'],
12468
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image_form']),
12469
+ deleted_at: PropTypes.string,
12023
12470
  });
12024
12471
 
12025
- T['io.flow.v0.models.item_shipping_pricing'] = PropTypes.exact({
12026
- min: T['io.flow.v0.models.price'].isRequired,
12027
- max: T['io.flow.v0.models.price'],
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,
12028
12479
  });
12029
12480
 
12030
- T['io.flow.v0.models.country_shipping_pricing'] = PropTypes.exact({
12031
- pricing: T['io.flow.v0.models.item_shipping_pricing'].isRequired,
12032
- countries: PropTypes.arrayOf(PropTypes.string).isRequired,
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,
12033
12487
  });
12034
12488
 
12035
- T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
12489
+ T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
12036
12490
  id: PropTypes.string.isRequired,
12037
- item: T['io.flow.v0.models.item_reference'].isRequired,
12038
- shipping_configuration: T['io.flow.v0.models.shipping_configuration_summary'].isRequired,
12039
- country_shipping_pricings: PropTypes.arrayOf(T['io.flow.v0.models.country_shipping_pricing']).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,
12040
12496
  });
12041
12497
 
12042
- T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_upserted'] = PropTypes.exact({
12043
- discriminator: PropTypes.oneOf(['shipping_configuration_item_shipping_pricing_upserted']).isRequired,
12044
- event_id: PropTypes.string.isRequired,
12045
- timestamp: PropTypes.string.isRequired,
12046
- organization_id: PropTypes.string.isRequired,
12047
- shipping_configuration_item_shipping_pricing: T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'].isRequired,
12498
+ T['io.flow.tech.onboarding.playground.v0.models.aldo_item_form'] = PropTypes.exact({
12499
+ number: PropTypes.string.isRequired,
12500
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12501
+ description: PropTypes.string,
12502
+ type: T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'].isRequired,
12503
+ added_on: PropTypes.string.isRequired,
12048
12504
  });
12049
12505
 
12050
- T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'] = PropTypes.exact({
12051
- discriminator: PropTypes.oneOf(['shipping_configuration_item_shipping_pricing_deleted']).isRequired,
12052
- event_id: PropTypes.string.isRequired,
12053
- timestamp: PropTypes.string.isRequired,
12054
- organization_id: PropTypes.string.isRequired,
12055
- shipping_configuration_item_shipping_pricing: T['io.flow.v0.models.shipping_configuration_item_shipping_pricing'].isRequired,
12506
+ T['io.flow.fulfillment.v0.models.flat_rate'] = PropTypes.exact({
12507
+ discriminator: PropTypes.oneOf(['flat_rate']).isRequired,
12508
+ price: T['io.flow.common.v0.models.price'].isRequired,
12509
+ zero_amount_indicator: T['io.flow.fulfillment.v0.enums.zero_amount_indicator'],
12056
12510
  });
12057
12511
 
12058
- T['io.flow.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
12059
- discriminator: PropTypes.oneOf(['discount']).isRequired,
12060
- price: T['io.flow.v0.models.price'].isRequired,
12512
+ T['io.flow.catalog.v0.models.localized_total'] = PropTypes.exact({
12513
+ key: PropTypes.oneOf(['localized_total']).isRequired,
12514
+ currency: PropTypes.string.isRequired,
12515
+ amount: PropTypes.number.isRequired,
12516
+ label: PropTypes.string.isRequired,
12517
+ base: T['io.flow.common.v0.models.price'].isRequired,
12061
12518
  });
12062
12519
 
12063
- T['io.flow.v0.models.consumer_invoice_levy'] = PropTypes.exact({
12064
- rate: PropTypes.number.isRequired,
12065
- value: T['io.flow.v0.models.price'].isRequired,
12066
- });
12520
+ T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
12521
+ T['io.flow.catalog.v0.models.localized_item_price'],
12522
+ T['io.flow.catalog.v0.models.localized_item_vat'],
12523
+ T['io.flow.catalog.v0.models.localized_item_duty'],
12524
+ T['io.flow.catalog.v0.models.localized_total'],
12525
+ ]);
12067
12526
 
12068
- T['io.flow.v0.models.consumer_invoice_line_shipping'] = PropTypes.exact({
12069
- discriminator: PropTypes.oneOf(['shipping']).isRequired,
12070
- price: T['io.flow.v0.models.price'].isRequired,
12071
- discount: T['io.flow.v0.models.price'],
12072
- tax: T['io.flow.v0.models.consumer_invoice_levy'],
12073
- duty: T['io.flow.v0.models.consumer_invoice_levy'],
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,
12074
12538
  });
12075
12539
 
12076
- T['io.flow.v0.models.consumer_invoice_line_item'] = PropTypes.exact({
12077
- discriminator: PropTypes.oneOf(['item']).isRequired,
12078
- item: T['io.flow.v0.models.item_reference'].isRequired,
12079
- description: PropTypes.string.isRequired,
12080
- quantity: PropTypes.number.isRequired,
12081
- unit_price: T['io.flow.v0.models.price'].isRequired,
12082
- unit_discount: T['io.flow.v0.models.price'],
12083
- unit_tax: T['io.flow.v0.models.consumer_invoice_levy'],
12084
- unit_duty: T['io.flow.v0.models.consumer_invoice_levy'],
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'],
12085
12547
  });
12086
12548
 
12087
- T['io.flow.v0.unions.consumer_invoice_line'] = PropTypes.oneOfType([
12088
- T['io.flow.v0.models.consumer_invoice_line_item'],
12089
- T['io.flow.v0.models.consumer_invoice_line_discount'],
12090
- T['io.flow.v0.models.consumer_invoice_line_shipping'],
12091
- ]);
12549
+ T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
12550
+ id: PropTypes.string.isRequired,
12551
+ cost: T['io.flow.common.v0.models.price'].isRequired,
12552
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
12553
+ price: T['io.flow.common.v0.models.price'].isRequired,
12554
+ service: T['io.flow.fulfillment.v0.models.service_reference'].isRequired,
12555
+ tier: T['io.flow.fulfillment.v0.models.tier_reference'].isRequired,
12556
+ window: T['io.flow.common.v0.models.datetime_range'].isRequired,
12557
+ });
12092
12558
 
12093
- T['io.flow.v0.models.b2b_credit_memo'] = PropTypes.exact({
12559
+ T['io.flow.fulfillment.v0.models.delivery_option_version'] = PropTypes.exact({
12094
12560
  id: PropTypes.string.isRequired,
12095
- number: PropTypes.string.isRequired,
12096
- buyer: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
12097
- seller: T['io.flow.v0.models.merchant_of_record_entity'].isRequired,
12098
- status: T['io.flow.v0.enums.consumer_invoice_status'].isRequired,
12099
- date: PropTypes.string.isRequired,
12100
- key: PropTypes.string.isRequired,
12101
- invoice: T['io.flow.v0.models.b2b_invoice_reference'].isRequired,
12102
- lines: PropTypes.arrayOf(T['io.flow.v0.unions.consumer_invoice_line']).isRequired,
12103
- documents: PropTypes.arrayOf(T['io.flow.v0.models.consumer_invoice_document']).isRequired,
12104
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
12105
- b2b_invoice_type: T['io.flow.v0.enums.b2b_invoice_type'].isRequired,
12561
+ timestamp: PropTypes.string.isRequired,
12562
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
12563
+ delivery_option: T['io.flow.fulfillment.v0.models.delivery_option_summary'].isRequired,
12564
+ });
12565
+
12566
+ T['io.flow.fulfillment.v0.models.delivery_option_cost_component'] = PropTypes.exact({
12567
+ key: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_component_key'].isRequired,
12568
+ currency: PropTypes.string.isRequired,
12569
+ amount: PropTypes.number.isRequired,
12570
+ label: PropTypes.string.isRequired,
12571
+ base: T['io.flow.common.v0.models.price'],
12572
+ });
12573
+
12574
+ T['io.flow.fulfillment.v0.models.delivery_option_cost_detail'] = PropTypes.exact({
12575
+ source: T['io.flow.fulfillment.v0.enums.delivery_option_cost_detail_source'].isRequired,
12576
+ ratecard_id: PropTypes.string,
12577
+ currency: PropTypes.string.isRequired,
12578
+ amount: PropTypes.number.isRequired,
12579
+ label: PropTypes.string.isRequired,
12580
+ base: T['io.flow.common.v0.models.price'],
12581
+ components: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_component']).isRequired,
12106
12582
  });
12107
12583
 
12108
- T['io.flow.v0.models.b2b_credit_memo_upserted'] = PropTypes.exact({
12109
- discriminator: PropTypes.oneOf(['b2b_credit_memo_upserted']).isRequired,
12110
- event_id: PropTypes.string.isRequired,
12111
- timestamp: PropTypes.string.isRequired,
12112
- organization: PropTypes.string.isRequired,
12113
- b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
12584
+ T['io.flow.fulfillment.v0.models.price_with_base_and_details'] = PropTypes.exact({
12585
+ currency: PropTypes.string.isRequired,
12586
+ amount: PropTypes.number.isRequired,
12587
+ label: PropTypes.string.isRequired,
12588
+ base: T['io.flow.common.v0.models.price'],
12589
+ details: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_cost_detail']),
12114
12590
  });
12115
12591
 
12116
- T['io.flow.v0.models.b2b_credit_memo_deleted'] = PropTypes.exact({
12117
- discriminator: PropTypes.oneOf(['b2b_credit_memo_deleted']).isRequired,
12118
- event_id: PropTypes.string.isRequired,
12119
- timestamp: PropTypes.string.isRequired,
12120
- organization: PropTypes.string.isRequired,
12121
- b2b_credit_memo: T['io.flow.v0.models.b2b_credit_memo'].isRequired,
12592
+ T['io.flow.fulfillment.v0.models.item_shipping_pricing'] = PropTypes.exact({
12593
+ min: T['io.flow.common.v0.models.price'].isRequired,
12594
+ max: T['io.flow.common.v0.models.price'],
12122
12595
  });
12123
12596
 
12124
- T['io.flow.v0.models.catalog_price_book_item_document'] = PropTypes.exact({
12125
- price_book_key: PropTypes.string.isRequired,
12126
- price_book_item_key: PropTypes.string.isRequired,
12127
- catalog: T['io.flow.v0.models.catalog_item_summary'].isRequired,
12128
- price: T['io.flow.v0.models.price'],
12129
- amount: PropTypes.number.isRequired,
12130
- starts_at: PropTypes.string.isRequired,
12131
- ends_at: PropTypes.string,
12597
+ T['io.flow.fulfillment.v0.models.country_shipping_pricing'] = PropTypes.exact({
12598
+ pricing: T['io.flow.fulfillment.v0.models.item_shipping_pricing'].isRequired,
12599
+ countries: PropTypes.arrayOf(PropTypes.string).isRequired,
12132
12600
  });
12133
12601
 
12134
- T['io.flow.v0.models.amount_margin'] = PropTypes.exact({
12602
+ T['io.flow.fulfillment.v0.models.shipping_configuration_item_shipping_pricing'] = PropTypes.exact({
12603
+ id: PropTypes.string.isRequired,
12604
+ item: T['io.flow.common.v0.models.item_reference'].isRequired,
12605
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_summary'].isRequired,
12606
+ country_shipping_pricings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.country_shipping_pricing']).isRequired,
12607
+ });
12608
+
12609
+ T['io.flow.fulfillment.v0.models.amount_margin'] = PropTypes.exact({
12135
12610
  discriminator: PropTypes.oneOf(['amount_margin']).isRequired,
12136
- margin: T['io.flow.v0.models.price'].isRequired,
12611
+ margin: T['io.flow.common.v0.models.price'].isRequired,
12137
12612
  });
12138
12613
 
12139
- T['io.flow.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
12140
- T['io.flow.v0.models.amount_margin'],
12141
- T['io.flow.v0.models.at_cost'],
12142
- T['io.flow.v0.models.flat_rate'],
12143
- T['io.flow.v0.models.percent_margin'],
12614
+ T['io.flow.fulfillment.v0.unions.tier_rule_outcome'] = PropTypes.oneOfType([
12615
+ T['io.flow.fulfillment.v0.models.amount_margin'],
12616
+ T['io.flow.fulfillment.v0.models.at_cost'],
12617
+ T['io.flow.fulfillment.v0.models.flat_rate'],
12618
+ T['io.flow.fulfillment.v0.models.percent_margin'],
12144
12619
  ]);
12145
12620
 
12146
- T['io.flow.v0.models.tier_rule'] = PropTypes.exact({
12621
+ T['io.flow.fulfillment.v0.models.tier_rule'] = PropTypes.exact({
12147
12622
  id: PropTypes.string.isRequired,
12148
12623
  position: PropTypes.number.isRequired,
12149
12624
  query: PropTypes.string.isRequired,
12150
- outcome: T['io.flow.v0.unions.tier_rule_outcome'].isRequired,
12625
+ outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'].isRequired,
12151
12626
  });
12152
12627
 
12153
- T['io.flow.v0.models.tier_rule_version'] = PropTypes.exact({
12628
+ T['io.flow.fulfillment.v0.models.tier_rule_version'] = PropTypes.exact({
12154
12629
  id: PropTypes.string.isRequired,
12155
12630
  timestamp: PropTypes.string.isRequired,
12156
- type: T['io.flow.v0.enums.change_type'].isRequired,
12157
- tier_rule: T['io.flow.v0.models.tier_rule'].isRequired,
12158
- });
12159
-
12160
- T['io.flow.v0.models.localized_total'] = PropTypes.exact({
12161
- key: PropTypes.oneOf(['localized_total']).isRequired,
12162
- currency: PropTypes.string.isRequired,
12163
- amount: PropTypes.number.isRequired,
12164
- label: PropTypes.string.isRequired,
12165
- base: T['io.flow.v0.models.price'].isRequired,
12631
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
12632
+ tier_rule: T['io.flow.fulfillment.v0.models.tier_rule'].isRequired,
12166
12633
  });
12167
12634
 
12168
- T['io.flow.v0.models.price_with_base'] = PropTypes.exact({
12635
+ T['io.flow.fulfillment.v0.models.tier'] = PropTypes.exact({
12636
+ id: PropTypes.string.isRequired,
12637
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'].isRequired,
12638
+ integration: T['io.flow.fulfillment.v0.enums.shipment_integration_type'].isRequired,
12639
+ name: PropTypes.string.isRequired,
12640
+ message: PropTypes.string,
12641
+ rules: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier_rule']).isRequired,
12642
+ services: PropTypes.arrayOf(T['io.flow.reference.v0.models.carrier_service']).isRequired,
12643
+ strategy: T['io.flow.fulfillment.v0.enums.tier_strategy'].isRequired,
12644
+ visibility: T['io.flow.common.v0.enums.visibility'].isRequired,
12169
12645
  currency: PropTypes.string.isRequired,
12170
- amount: PropTypes.number.isRequired,
12171
- label: PropTypes.string.isRequired,
12172
- base: T['io.flow.v0.models.price'],
12646
+ description: PropTypes.string,
12647
+ display: T['io.flow.fulfillment.v0.models.tier_display'],
12648
+ shipping_lane: PropTypes.string,
12649
+ surcharge_settings: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.surcharge_setting']),
12650
+ lane: T['io.flow.fulfillment.v0.models.shipping_lane_summary'],
12651
+ settings: T['io.flow.fulfillment.v0.models.tier_settings'],
12173
12652
  });
12174
12653
 
12175
- T['io.flow.v0.models.shopify_order_price_attributes_metafield'] = PropTypes.exact({
12176
- item_number: PropTypes.string.isRequired,
12177
- price_attributes: PropTypes.objectOf(T['io.flow.v0.models.price_with_base']).isRequired,
12654
+ T['io.flow.fulfillment.v0.models.shipping_lane'] = PropTypes.exact({
12655
+ id: PropTypes.string.isRequired,
12656
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration_reference'].isRequired,
12657
+ region: PropTypes.string.isRequired,
12658
+ centers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.expandable_center']).isRequired,
12659
+ tiers: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.tier']).isRequired,
12660
+ query: T['io.flow.query.builder.v0.models.query'].isRequired,
12661
+ strategy: T['io.flow.fulfillment.v0.enums.lane_strategy'].isRequired,
12662
+ direction: T['io.flow.fulfillment.v0.enums.lane_direction'],
12663
+ preference: T['io.flow.fulfillment.v0.enums.lane_preselect_preference'],
12178
12664
  });
12179
12665
 
12180
- T['io.flow.v0.models.shopify_local_price_metadata'] = PropTypes.exact({
12181
- price: T['io.flow.v0.models.price_with_base'].isRequired,
12666
+ T['io.flow.fulfillment.v0.models.shipping_lane_version'] = PropTypes.exact({
12667
+ id: PropTypes.string.isRequired,
12668
+ timestamp: PropTypes.string.isRequired,
12669
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
12670
+ shipping_lane: T['io.flow.fulfillment.v0.models.shipping_lane'].isRequired,
12182
12671
  });
12183
12672
 
12184
- T['io.flow.v0.models.shopify_price'] = PropTypes.exact({
12673
+ T['io.flow.fulfillment.v0.models.shipping_configuration'] = PropTypes.exact({
12674
+ id: PropTypes.string.isRequired,
12185
12675
  name: PropTypes.string.isRequired,
12186
- amount: PropTypes.number.isRequired,
12187
- cents: PropTypes.number.isRequired,
12188
- currency: PropTypes.string.isRequired,
12189
- label: PropTypes.string.isRequired,
12190
- includes: T['io.flow.v0.models.included_levies'],
12191
- local: T['io.flow.v0.models.shopify_local_price_metadata'],
12192
- });
12193
-
12194
- T['io.flow.v0.models.shopify_localized_variant_prices'] = PropTypes.exact({
12195
- item: T['io.flow.v0.models.shopify_price'].isRequired,
12196
- compare_at: T['io.flow.v0.models.shopify_price'],
12197
- vat: T['io.flow.v0.models.shopify_price'],
12198
- duty: T['io.flow.v0.models.shopify_price'],
12676
+ key: PropTypes.string.isRequired,
12677
+ type: T['io.flow.fulfillment.v0.enums.shipping_configuration_type'].isRequired,
12678
+ shipping_lanes: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.shipping_lane']).isRequired,
12199
12679
  });
12200
12680
 
12201
- T['io.flow.v0.models.shopify_localized_variant'] = PropTypes.exact({
12202
- id: PropTypes.number.isRequired,
12203
- handle: PropTypes.string.isRequired,
12204
- experience: T['io.flow.v0.models.experience_reference'].isRequired,
12205
- prices: T['io.flow.v0.models.shopify_localized_variant_prices'].isRequired,
12206
- status: T['io.flow.v0.enums.subcatalog_item_status'].isRequired,
12207
- inventory_status: T['io.flow.v0.enums.item_availability_status'],
12681
+ T['io.flow.fulfillment.v0.models.shipping_configuration_version'] = PropTypes.exact({
12682
+ id: PropTypes.string.isRequired,
12683
+ timestamp: PropTypes.string.isRequired,
12684
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
12685
+ shipping_configuration: T['io.flow.fulfillment.v0.models.shipping_configuration'].isRequired,
12208
12686
  });
12209
12687
 
12210
- T['io.flow.v0.models.shopify_local_cart_item_metadata'] = PropTypes.exact({
12211
- line_price: T['io.flow.v0.models.price_with_base'].isRequired,
12212
- price: T['io.flow.v0.models.price_with_base'].isRequired,
12688
+ T['io.flow.fulfillment.v0.models.delivery_option'] = PropTypes.exact({
12689
+ id: PropTypes.string.isRequired,
12690
+ cost: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
12691
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
12692
+ price: T['io.flow.fulfillment.v0.models.price_with_base_and_details'].isRequired,
12693
+ service: T['io.flow.fulfillment.v0.models.service_summary'].isRequired,
12694
+ tier: T['io.flow.fulfillment.v0.models.tier_summary'].isRequired,
12695
+ window: T['io.flow.fulfillment.v0.models.delivery_window'].isRequired,
12696
+ rule_outcome: T['io.flow.fulfillment.v0.unions.tier_rule_outcome'],
12697
+ weight: T['io.flow.fulfillment.v0.models.option_weight_estimates'],
12698
+ send_to: T['io.flow.fulfillment.v0.models.shipping_address'],
12699
+ surcharge: T['io.flow.fulfillment.v0.models.price_with_base_and_details'],
12700
+ ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
12213
12701
  });
12214
12702
 
12215
- T['io.flow.v0.models.shopify_cart_item'] = PropTypes.exact({
12703
+ T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
12704
+ discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
12216
12705
  id: PropTypes.string.isRequired,
12217
- handle: PropTypes.string.isRequired,
12218
- line_price: PropTypes.number.isRequired,
12219
- price: PropTypes.number.isRequired,
12220
- product_id: PropTypes.number.isRequired,
12221
- product_title: PropTypes.string.isRequired,
12222
- quantity: PropTypes.number.isRequired,
12223
- title: PropTypes.string.isRequired,
12224
- url: PropTypes.string.isRequired,
12225
- variant_id: PropTypes.number.isRequired,
12226
- local: T['io.flow.v0.models.shopify_local_cart_item_metadata'].isRequired,
12227
- gift_card: PropTypes.bool.isRequired,
12228
- image: PropTypes.string,
12229
- product_description: PropTypes.string,
12230
- product_type: PropTypes.string,
12231
- properties: PropTypes.objectOf(PropTypes.string),
12232
- requires_shipping: PropTypes.bool.isRequired,
12233
- sku: PropTypes.string,
12234
- variant_title: PropTypes.string,
12235
- variant_options: PropTypes.arrayOf(PropTypes.string),
12236
- vendor: PropTypes.string,
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'],
12237
12718
  });
12238
12719
 
12239
- T['io.flow.v0.models.line'] = PropTypes.exact({
12240
- id: PropTypes.string,
12241
- item_number: PropTypes.string.isRequired,
12242
- quantity: PropTypes.number.isRequired,
12243
- price: T['io.flow.v0.models.price_with_base'].isRequired,
12244
- total: T['io.flow.v0.models.price_with_base'].isRequired,
12245
- attributes: PropTypes.objectOf(PropTypes.string),
12246
- });
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
+ ]);
12247
12724
 
12248
- T['io.flow.v0.models.klaviyo_order_prices'] = PropTypes.exact({
12249
- subtotal: T['io.flow.v0.models.price_with_base'].isRequired,
12250
- vat: T['io.flow.v0.models.price_with_base'],
12251
- duty: T['io.flow.v0.models.price_with_base'],
12252
- discount: T['io.flow.v0.models.price_with_base'],
12253
- shipping: T['io.flow.v0.models.price_with_base'],
12254
- insurance: T['io.flow.v0.models.price_with_base'],
12255
- total: T['io.flow.v0.models.price_with_base'].isRequired,
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,
12256
12732
  });
12257
12733
 
12258
- T['io.flow.v0.models.fulfillment_item_allocation_details'] = PropTypes.exact({
12734
+ T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
12735
+ id: PropTypes.string.isRequired,
12736
+ key: PropTypes.string.isRequired,
12737
+ price_book: T['io.flow.price.v0.models.price_book_reference'].isRequired,
12738
+ price: T['io.flow.common.v0.models.price'].isRequired,
12259
12739
  item_number: PropTypes.string.isRequired,
12260
- line_number: PropTypes.number.isRequired,
12261
- levies: T['io.flow.v0.models.price_with_base'].isRequired,
12262
- total: T['io.flow.v0.models.price_with_base'].isRequired,
12263
- });
12264
-
12265
- T['io.flow.v0.models.experience_price_facet_conversion'] = PropTypes.exact({
12266
- request: T['io.flow.v0.models.experience_price_facet_conversion_request'].isRequired,
12267
- price: T['io.flow.v0.models.price_with_base'].isRequired,
12268
- });
12269
-
12270
- T['io.flow.v0.models.experience_price_facet_conversion_response'] = PropTypes.exact({
12271
- facets: PropTypes.arrayOf(T['io.flow.v0.models.experience_price_facet_conversion']).isRequired,
12740
+ schedule: T['io.flow.price.v0.models.price_book_item_schedule'].isRequired,
12741
+ item_attributes: PropTypes.objectOf(PropTypes.string),
12272
12742
  });
12273
12743
 
12274
- T['io.flow.v0.models.experience_price_conversion'] = PropTypes.exact({
12275
- request: T['io.flow.v0.models.experience_price_conversion_request'].isRequired,
12276
- price: T['io.flow.v0.models.price_with_base'].isRequired,
12744
+ T['io.flow.price.v0.models.price_details'] = PropTypes.exact({
12745
+ currency: PropTypes.string.isRequired,
12746
+ item_price: T['io.flow.price.v0.models.price_detail'].isRequired,
12747
+ margins: T['io.flow.price.v0.models.price_detail'].isRequired,
12748
+ vat: T['io.flow.price.v0.models.price_detail'].isRequired,
12749
+ duty: T['io.flow.price.v0.models.price_detail'].isRequired,
12750
+ rounding: T['io.flow.price.v0.models.price_detail'].isRequired,
12751
+ price: T['io.flow.common.v0.models.price'].isRequired,
12752
+ total: T['io.flow.common.v0.models.price'].isRequired,
12753
+ adjustment: T['io.flow.price.v0.models.price_detail'],
12277
12754
  });
12278
12755
 
12279
- T['io.flow.v0.models.experience_price_conversion_response'] = PropTypes.exact({
12280
- prices: PropTypes.arrayOf(T['io.flow.v0.models.experience_price_conversion']).isRequired,
12756
+ T['io.flow.price.v0.models.local_price_details'] = PropTypes.exact({
12757
+ base: T['io.flow.price.v0.models.price_details'].isRequired,
12758
+ local: T['io.flow.price.v0.models.price_details'].isRequired,
12759
+ discount: T['io.flow.price.v0.models.price_detail'],
12760
+ local_before_discount: T['io.flow.price.v0.models.price_detail'],
12281
12761
  });
12282
12762
 
12283
- T['io.flow.v0.models.discount'] = PropTypes.exact({
12284
- discriminator: PropTypes.oneOf(['discount']).isRequired,
12285
- id: PropTypes.string.isRequired,
12286
- code: PropTypes.string,
12287
- label: PropTypes.string.isRequired,
12288
- price: T['io.flow.v0.models.price_with_base'].isRequired,
12289
- attributes: PropTypes.objectOf(PropTypes.string),
12763
+ T['io.flow.price.v0.models.price_check'] = PropTypes.exact({
12764
+ display: T['io.flow.price.v0.models.local_price_details'].isRequired,
12765
+ 'final': T['io.flow.price.v0.models.local_price_details'].isRequired,
12290
12766
  });
12291
12767
 
12292
- T['io.flow.v0.unions.promotion'] = PropTypes.oneOfType([T['io.flow.v0.models.free_shipping'], T['io.flow.v0.models.discount']]);
12293
-
12294
- T['io.flow.v0.models.promotions'] = PropTypes.exact({
12295
- applied: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
12296
- available: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
12768
+ T['io.flow.common.v0.models.price_with_base'] = PropTypes.exact({
12769
+ currency: PropTypes.string.isRequired,
12770
+ amount: PropTypes.number.isRequired,
12771
+ label: PropTypes.string.isRequired,
12772
+ base: T['io.flow.common.v0.models.price'],
12297
12773
  });
12298
12774
 
12299
- T['io.flow.v0.models.shopify_local_cart_metadata'] = PropTypes.exact({
12300
- total_price: T['io.flow.v0.models.price_with_base'].isRequired,
12301
- promotions: T['io.flow.v0.models.promotions'].isRequired,
12302
- rules: T['io.flow.v0.models.order_rules_summary'],
12303
- subtotal: T['io.flow.v0.models.price_with_base'].isRequired,
12304
- vat: T['io.flow.v0.models.price_with_base'],
12305
- duty: T['io.flow.v0.models.price_with_base'],
12306
- discount: T['io.flow.v0.models.price_with_base'],
12775
+ T['io.flow.catalog.v0.models.local'] = PropTypes.exact({
12776
+ experience: T['io.flow.common.v0.models.experience_summary'].isRequired,
12777
+ prices: PropTypes.arrayOf(T['io.flow.catalog.v0.unions.localized_price']).isRequired,
12778
+ rates: PropTypes.arrayOf(T['io.flow.currency.v0.models.rate']).isRequired,
12779
+ spot_rates: PropTypes.arrayOf(PropTypes.object).isRequired,
12780
+ status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
12781
+ attributes: PropTypes.objectOf(PropTypes.string),
12782
+ price_attributes: PropTypes.objectOf(T['io.flow.common.v0.models.price_with_base']),
12307
12783
  });
12308
12784
 
12309
- T['io.flow.v0.models.shopify_cart'] = PropTypes.exact({
12785
+ T['io.flow.catalog.v0.models.item'] = PropTypes.exact({
12310
12786
  id: PropTypes.string.isRequired,
12311
- items: PropTypes.arrayOf(T['io.flow.v0.models.shopify_cart_item']).isRequired,
12312
- item_count: PropTypes.number.isRequired,
12313
- total_price: PropTypes.number.isRequired,
12314
- local: T['io.flow.v0.models.shopify_local_cart_metadata'].isRequired,
12315
- attributes: PropTypes.object,
12316
- note: PropTypes.string,
12317
- requires_shipping: PropTypes.bool.isRequired,
12318
- total_weight: PropTypes.number,
12787
+ number: PropTypes.string.isRequired,
12788
+ locale: PropTypes.string.isRequired,
12789
+ name: PropTypes.string.isRequired,
12790
+ price: T['io.flow.common.v0.models.price'].isRequired,
12791
+ categories: PropTypes.arrayOf(PropTypes.string).isRequired,
12792
+ description: PropTypes.string,
12793
+ attributes: PropTypes.objectOf(PropTypes.string).isRequired,
12794
+ dimensions: T['io.flow.common.v0.models.dimensions'].isRequired,
12795
+ images: PropTypes.arrayOf(T['io.flow.catalog.v0.models.image']).isRequired,
12796
+ local: T['io.flow.catalog.v0.models.local'],
12797
+ created_at: PropTypes.string,
12798
+ updated_at: PropTypes.string,
12799
+ deleted_at: PropTypes.string,
12319
12800
  });
12320
12801
 
12321
- T['io.flow.v0.models.available_promotion'] = PropTypes.exact({
12802
+ T['io.flow.catalog.v0.models.subcatalog_item'] = PropTypes.exact({
12322
12803
  id: PropTypes.string.isRequired,
12323
- shipping_configuration: T['io.flow.v0.models.shipping_configuration_reference'].isRequired,
12324
- region: T['io.flow.v0.models.region_reference'].isRequired,
12325
- promotions: PropTypes.arrayOf(T['io.flow.v0.unions.promotion']).isRequired,
12804
+ item: T['io.flow.catalog.v0.models.item'].isRequired,
12805
+ status: T['io.flow.catalog.v0.enums.subcatalog_item_status'].isRequired,
12326
12806
  });
12327
12807
 
12328
- T['io.flow.v0.models.available_promotions_upserted_v2'] = PropTypes.exact({
12329
- discriminator: PropTypes.oneOf(['available_promotions_upserted_v2']).isRequired,
12330
- event_id: PropTypes.string.isRequired,
12808
+ T['io.flow.catalog.v0.models.subcatalog_item_version'] = PropTypes.exact({
12809
+ id: PropTypes.string.isRequired,
12331
12810
  timestamp: PropTypes.string.isRequired,
12332
- organization: PropTypes.string.isRequired,
12333
- available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
12811
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
12812
+ subcatalog_item: T['io.flow.catalog.v0.models.subcatalog_item'].isRequired,
12334
12813
  });
12335
12814
 
12336
- T['io.flow.v0.models.available_promotions_deleted_v2'] = PropTypes.exact({
12337
- discriminator: PropTypes.oneOf(['available_promotions_deleted_v2']).isRequired,
12338
- event_id: PropTypes.string.isRequired,
12815
+ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
12816
+ id: PropTypes.string.isRequired,
12339
12817
  timestamp: PropTypes.string.isRequired,
12340
- organization: PropTypes.string.isRequired,
12341
- available_promotion: T['io.flow.v0.models.available_promotion'].isRequired,
12342
- });
12343
-
12344
- T['io.flow.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
12345
- 'adjustment',
12346
- 'vat_deminimis',
12347
- 'duty_deminimis',
12348
- 'duties_item_price',
12349
- 'duties_freight',
12350
- 'duties_insurance',
12351
- 'vat_item_price',
12352
- 'vat_freight',
12353
- 'vat_insurance',
12354
- 'vat_duties_item_price',
12355
- 'vat_duties_freight',
12356
- 'vat_duties_insurance',
12357
- 'item_price',
12358
- 'item_discount',
12359
- 'rounding',
12360
- 'insurance',
12361
- 'shipping',
12362
- 'shipping_discount',
12363
- 'order_discount',
12364
- 'subtotal_percent_sales_margin',
12365
- 'subtotal_vat_percent_sales_margin',
12366
- 'subtotal_duty_percent_sales_margin',
12367
- 'vat_subsidy',
12368
- 'duty_subsidy',
12369
- 'remote_area_surcharge',
12370
- 'fuel_surcharge',
12371
- 'emergency_situation_surcharge',
12372
- 'peak_surcharge',
12373
- 'duties_taxes_paid_surcharge',
12374
- 'tip',
12375
- ]);
12376
-
12377
- T['io.flow.v0.models.order_price_detail_component'] = PropTypes.exact({
12378
- key: T['io.flow.v0.enums.order_price_detail_component_key'].isRequired,
12379
- currency: PropTypes.string.isRequired,
12380
- amount: PropTypes.number.isRequired,
12381
- label: PropTypes.string.isRequired,
12382
- base: T['io.flow.v0.models.price'].isRequired,
12383
- name: PropTypes.string,
12384
- });
12385
-
12386
- T['io.flow.v0.models.order_price_detail'] = PropTypes.exact({
12387
- key: T['io.flow.v0.enums.order_price_detail_key'].isRequired,
12388
- currency: PropTypes.string.isRequired,
12389
- amount: PropTypes.number.isRequired,
12390
- label: PropTypes.string.isRequired,
12391
- base: T['io.flow.v0.models.price'].isRequired,
12392
- components: PropTypes.arrayOf(T['io.flow.v0.models.order_price_detail_component']).isRequired,
12393
- name: PropTypes.string,
12394
- rate: PropTypes.number,
12395
- accuracy: T['io.flow.v0.enums.price_accuracy'],
12396
- rate_label: PropTypes.string,
12397
- });
12398
-
12399
- T['io.flow.v0.models.allocation_detail_component'] = PropTypes.exact({
12400
- discriminator: PropTypes.oneOf(['allocation_detail_component']).isRequired,
12401
- key: T['io.flow.v0.enums.order_price_detail_component_key'].isRequired,
12402
- total: T['io.flow.v0.models.price_with_base'].isRequired,
12403
- price: T['io.flow.v0.models.price_with_base'],
12818
+ type: T['io.flow.common.v0.enums.change_type'].isRequired,
12819
+ item: T['io.flow.catalog.v0.models.item'].isRequired,
12404
12820
  });
12405
12821
 
12406
- T['io.flow.v0.models.allocation_order_summary'] = PropTypes.exact({
12822
+ T['io.flow.tech.onboarding.playground.v0.models.aldo_item'] = PropTypes.exact({
12407
12823
  id: PropTypes.string.isRequired,
12408
12824
  number: PropTypes.string.isRequired,
12409
- submitted_at: PropTypes.string,
12825
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12826
+ description: PropTypes.string,
12827
+ type: T['io.flow.tech.onboarding.playground.v0.enums.aldo_item_type'].isRequired,
12828
+ added_on: PropTypes.string.isRequired,
12829
+ });
12830
+
12831
+ T['io.flow.v0.models.aldo_item_upserted'] = PropTypes.exact({
12832
+ discriminator: PropTypes.oneOf(['aldo_item_upserted']).isRequired,
12833
+ event_id: PropTypes.string.isRequired,
12834
+ timestamp: PropTypes.string.isRequired,
12835
+ item: T['io.flow.tech.onboarding.playground.v0.models.aldo_item'].isRequired,
12410
12836
  });
12411
12837
 
12412
12838
  T['io.flow.v0.models.adyen_challenge_shopper_data'] = PropTypes.exact({
@@ -13655,6 +14081,7 @@ T['io.flow.v0.models.dimension_estimate_form'] = PropTypes.exact({
13655
14081
  q: PropTypes.string.isRequired,
13656
14082
  dimensions: T['io.flow.v0.models.estimated_dimensions'].isRequired,
13657
14083
  position: PropTypes.number,
14084
+ block_bulk_update: PropTypes.bool,
13658
14085
  });
13659
14086
 
13660
14087
  T['io.flow.v0.models.dimension_estimate'] = PropTypes.exact({
@@ -13662,6 +14089,7 @@ T['io.flow.v0.models.dimension_estimate'] = PropTypes.exact({
13662
14089
  q: PropTypes.string.isRequired,
13663
14090
  dimensions: T['io.flow.v0.models.estimated_dimensions'].isRequired,
13664
14091
  position: PropTypes.number.isRequired,
14092
+ block_bulk_update: PropTypes.bool,
13665
14093
  });
13666
14094
 
13667
14095
  T['io.flow.v0.models.dimension_estimate_version'] = PropTypes.exact({
@@ -13828,12 +14256,6 @@ T['io.flow.v0.models.item_form'] = PropTypes.exact({
13828
14256
  deleted_at: PropTypes.string,
13829
14257
  });
13830
14258
 
13831
- T['io.flow.v0.models.packaging'] = PropTypes.exact({
13832
- dimensions: T['io.flow.v0.models.dimensions'].isRequired,
13833
- name: PropTypes.string,
13834
- number: PropTypes.string,
13835
- });
13836
-
13837
14259
  T['io.flow.v0.models.item'] = PropTypes.exact({
13838
14260
  id: PropTypes.string.isRequired,
13839
14261
  number: PropTypes.string.isRequired,
@@ -13916,20 +14338,10 @@ T['io.flow.v0.models.klaviyo_order_content'] = PropTypes.exact({
13916
14338
  checkout_url: PropTypes.string.isRequired,
13917
14339
  });
13918
14340
 
13919
- T['io.flow.v0.models.catalog_item_upserted_v2'] = PropTypes.exact({
13920
- discriminator: PropTypes.oneOf(['catalog_item_upserted_v2']).isRequired,
13921
- event_id: PropTypes.string.isRequired,
13922
- timestamp: PropTypes.string.isRequired,
13923
- organization: PropTypes.string.isRequired,
13924
- item: T['io.flow.v0.models.item'].isRequired,
13925
- });
13926
-
13927
- T['io.flow.v0.models.catalog_item_deleted_v2'] = PropTypes.exact({
13928
- discriminator: PropTypes.oneOf(['catalog_item_deleted_v2']).isRequired,
13929
- event_id: PropTypes.string.isRequired,
13930
- timestamp: PropTypes.string.isRequired,
13931
- organization: PropTypes.string.isRequired,
13932
- 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,
13933
14345
  });
13934
14346
 
13935
14347
  T['io.flow.v0.models.option_weight_estimates'] = PropTypes.exact({
@@ -15863,6 +16275,8 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
15863
16275
  T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
15864
16276
  T['io.flow.v0.models.test_upserted'],
15865
16277
  T['io.flow.v0.models.generate_load'],
16278
+ T['io.flow.v0.models.aldo_item_upserted'],
16279
+ T['io.flow.v0.models.aldo_item_deleted'],
15866
16280
  T['io.flow.v0.models.transaction_upserted'],
15867
16281
  T['io.flow.v0.models.organization_transaction_upserted'],
15868
16282
  T['io.flow.v0.models.organization_transaction_deleted'],
@@ -15889,10 +16303,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
15889
16303
  T['io.flow.v0.models.catalog_deleted'],
15890
16304
  T['io.flow.v0.models.subcatalog_upserted'],
15891
16305
  T['io.flow.v0.models.subcatalog_deleted'],
15892
- T['io.flow.v0.models.catalog_item_upserted'],
15893
- T['io.flow.v0.models.catalog_item_deleted'],
15894
- T['io.flow.v0.models.catalog_item_upserted_v2'],
15895
- T['io.flow.v0.models.catalog_item_deleted_v2'],
15896
16306
  T['io.flow.v0.models.subcatalog_item_upserted'],
15897
16307
  T['io.flow.v0.models.subcatalog_item_deleted'],
15898
16308
  T['io.flow.v0.models.catalog_statistics_upserted'],
@@ -15900,6 +16310,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
15900
16310
  T['io.flow.v0.models.item_inserted'],
15901
16311
  T['io.flow.v0.models.item_updated'],
15902
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'],
15903
16315
  T['io.flow.v0.models.channel_upserted'],
15904
16316
  T['io.flow.v0.models.channel_deleted'],
15905
16317
  T['io.flow.v0.models.channel_currency_upserted'],
@@ -16048,6 +16460,9 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16048
16460
  T['io.flow.v0.models.price_book_deleted'],
16049
16461
  T['io.flow.v0.models.price_book_item_upserted'],
16050
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'],
16051
16466
  T['io.flow.v0.models.organization_rates_published'],
16052
16467
  T['io.flow.v0.models.ratecard_lane_upserted'],
16053
16468
  T['io.flow.v0.models.ratecard_lane_deleted'],
@@ -16249,6 +16664,8 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
16249
16664
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16250
16665
  'test_upserted',
16251
16666
  'generate_load',
16667
+ 'aldo_item_upserted',
16668
+ 'aldo_item_deleted',
16252
16669
  'transaction_upserted',
16253
16670
  'organization_transaction_upserted',
16254
16671
  'organization_transaction_deleted',
@@ -16275,10 +16692,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16275
16692
  'catalog_deleted',
16276
16693
  'subcatalog_upserted',
16277
16694
  'subcatalog_deleted',
16278
- 'catalog_item_upserted',
16279
- 'catalog_item_deleted',
16280
- 'catalog_item_upserted_v2',
16281
- 'catalog_item_deleted_v2',
16282
16695
  'subcatalog_item_upserted',
16283
16696
  'subcatalog_item_deleted',
16284
16697
  'catalog_statistics_upserted',
@@ -16286,6 +16699,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16286
16699
  'item_inserted',
16287
16700
  'item_updated',
16288
16701
  'item_deleted',
16702
+ 'channel_shopify_order_state_upserted',
16703
+ 'channel_shopify_order_state_deleted',
16289
16704
  'channel_upserted',
16290
16705
  'channel_deleted',
16291
16706
  'channel_currency_upserted',
@@ -16434,6 +16849,9 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16434
16849
  'price_book_deleted',
16435
16850
  'price_book_item_upserted',
16436
16851
  'price_book_item_deleted',
16852
+ 'product_inserted',
16853
+ 'product_updated',
16854
+ 'product_deleted',
16437
16855
  'organization_rates_published',
16438
16856
  'ratecard_lane_upserted',
16439
16857
  'ratecard_lane_deleted',
@@ -16492,6 +16910,51 @@ T['io.flow.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Clos
16492
16910
  T['io.flow.v0.enums.shopify_grant'] = PropTypes.oneOf(['customer', 'discount', 'gift_card', 'metafield', 'order']);
16493
16911
  T['io.flow.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
16494
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
+
16495
16958
  T['io.flow.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
16496
16959
  T['io.flow.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
16497
16960
  T['io.flow.v0.enums.tracking_number_type'] = PropTypes.oneOf(['flow', 'carrier']);
@@ -16527,6 +16990,11 @@ T['io.flow.v0.models.card_token_form'] = PropTypes.exact({
16527
16990
  token: PropTypes.string.isRequired,
16528
16991
  });
16529
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
+
16530
16998
  T['io.flow.v0.models.cart_reference'] = PropTypes.exact({
16531
16999
  id: PropTypes.string.isRequired,
16532
17000
  });
@@ -17389,10 +17857,6 @@ T['io.flow.common.v0.models.catalog_item_summary'] = PropTypes.exact({
17389
17857
  attributes: PropTypes.objectOf(PropTypes.string).isRequired,
17390
17858
  });
17391
17859
 
17392
- T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
17393
- id: PropTypes.string.isRequired,
17394
- });
17395
-
17396
17860
  T['io.flow.common.v0.models.checkout_reference'] = PropTypes.exact({
17397
17861
  id: PropTypes.string.isRequired,
17398
17862
  });
@@ -17428,7 +17892,58 @@ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
17428
17892
  country: PropTypes.string.isRequired,
17429
17893
  });
17430
17894
 
17895
+ T['io.flow.token.v0.models.channel_token_form'] = PropTypes.exact({
17896
+ channel_id: PropTypes.string.isRequired,
17897
+ description: PropTypes.string,
17898
+ });
17899
+
17900
+ T['io.flow.token.v0.models.cleartext'] = PropTypes.exact({
17901
+ value: PropTypes.string.isRequired,
17902
+ });
17903
+
17904
+ T['io.flow.token.v0.models.organization_token_form_v2'] = PropTypes.exact({
17905
+ organization_id: PropTypes.string.isRequired,
17906
+ description: PropTypes.string,
17907
+ });
17908
+
17909
+ T['io.flow.token.v0.models.token_authentication_form'] = PropTypes.exact({
17910
+ token: PropTypes.string.isRequired,
17911
+ });
17912
+
17913
+ T['io.flow.token.v0.models.token_rbac_authentication_form'] = PropTypes.exact({
17914
+ token: PropTypes.string.isRequired,
17915
+ method: PropTypes.string.isRequired,
17916
+ path_pattern: PropTypes.string.isRequired,
17917
+ path: PropTypes.string.isRequired,
17918
+ });
17919
+
17920
+ T['io.flow.token.v0.models.token_validation'] = PropTypes.exact({
17921
+ status: PropTypes.string.isRequired,
17922
+ });
17923
+
17924
+ T['io.flow.token.v0.models.token_validation_form'] = PropTypes.exact({
17925
+ token: PropTypes.string.isRequired,
17926
+ });
17927
+
17431
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
+
17432
17947
  T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
17433
17948
 
17434
17949
  T['io.flow.reference.v0.models.country'] = PropTypes.exact({
@@ -17464,10 +17979,6 @@ T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
17464
17979
  offset: PropTypes.number.isRequired,
17465
17980
  });
17466
17981
 
17467
- T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
17468
- name: PropTypes.string.isRequired,
17469
- });
17470
-
17471
17982
  T['io.flow.fulfillment.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
17472
17983
 
17473
17984
  T['io.flow.fulfillment.v0.models.center_query'] = PropTypes.exact({
@@ -17499,6 +18010,22 @@ T['io.flow.apple.pay.v0.models.apple_pay_payment_data'] = PropTypes.exact({
17499
18010
 
17500
18011
  T['io.flow.merchant.of.record.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
17501
18012
 
18013
+ T['io.flow.tech.onboarding.playground.v0.models.jean_demo_item'] = PropTypes.exact({
18014
+ id: PropTypes.string.isRequired,
18015
+ name: PropTypes.string.isRequired,
18016
+ });
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
+
18025
+ T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] = PropTypes.exact({
18026
+ description: PropTypes.string.isRequired,
18027
+ });
18028
+
17502
18029
  T['io.flow.currency.v0.models.rate_form'] = PropTypes.exact({
17503
18030
  base: PropTypes.string.isRequired,
17504
18031
  target: PropTypes.string.isRequired,
@@ -17509,6 +18036,16 @@ T['io.flow.organization.v0.models.organization_default_configurations_form'] = P
17509
18036
  id: PropTypes.string.isRequired,
17510
18037
  });
17511
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
+
17512
18049
  T['io.flow.catalog.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
17513
18050
  T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
17514
18051
  T['io.flow.catalog.v0.enums.return_item_status'] = PropTypes.oneOf(['returnable', 'non-returnable']);
@@ -17597,6 +18134,8 @@ export const adyenNativeActionDetails = T['io.flow.v0.models.adyen_native_action
17597
18134
  export const adyenNativeData = T['io.flow.v0.unions.adyen_native_data'];
17598
18135
  export const adyenV3ChallengeToken = T['io.flow.v0.models.adyen_v3_challenge_token'];
17599
18136
  export const adyenV3FingerprintToken = T['io.flow.v0.models.adyen_v3_fingerprint_token'];
18137
+ export const aldoItemDeleted = T['io.flow.v0.models.aldo_item_deleted'];
18138
+ export const aldoItemUpserted = T['io.flow.v0.models.aldo_item_upserted'];
17600
18139
  export const allocation = T['io.flow.v0.models.allocation'];
17601
18140
  export const allocationComponent = T['io.flow.v0.unions.allocation_component'];
17602
18141
  export const allocationDeletedV2 = T['io.flow.v0.models.allocation_deleted_v2'];
@@ -17749,19 +18288,16 @@ export const cardVersion = T['io.flow.v0.models.card_version'];
17749
18288
  export const carrier = T['io.flow.v0.models.carrier'];
17750
18289
  export const carrierChargeReason = T['io.flow.v0.enums.carrier_charge_reason'];
17751
18290
  export const carrierReference = T['io.flow.v0.models.carrier_reference'];
18291
+ export const carrierRestrictions = T['io.flow.v0.models.carrier_restrictions'];
17752
18292
  export const carrierService = T['io.flow.v0.models.carrier_service'];
17753
18293
  export const cartReference = T['io.flow.v0.models.cart_reference'];
17754
18294
  export const catalog = T['io.flow.v0.models.catalog'];
17755
18295
  export const catalogDeleted = T['io.flow.v0.models.catalog_deleted'];
17756
- export const catalogItemDeleted = T['io.flow.v0.models.catalog_item_deleted'];
17757
- export const catalogItemDeletedV2 = T['io.flow.v0.models.catalog_item_deleted_v2'];
17758
18296
  export const catalogItemDocument = T['io.flow.v0.models.catalog_item_document'];
17759
18297
  export const catalogItemDocumentImages = T['io.flow.v0.models.catalog_item_document_images'];
17760
18298
  export const catalogItemExportType = T['io.flow.v0.models.catalog_item_export_type'];
17761
18299
  export const catalogItemReference = T['io.flow.v0.models.catalog_item_reference'];
17762
18300
  export const catalogItemSummary = T['io.flow.v0.models.catalog_item_summary'];
17763
- export const catalogItemUpserted = T['io.flow.v0.models.catalog_item_upserted'];
17764
- export const catalogItemUpsertedV2 = T['io.flow.v0.models.catalog_item_upserted_v2'];
17765
18301
  export const catalogPriceBookItemDocument = T['io.flow.v0.models.catalog_price_book_item_document'];
17766
18302
  export const catalogReference = T['io.flow.v0.models.catalog_reference'];
17767
18303
  export const catalogStatistics = T['io.flow.v0.models.catalog_statistics'];
@@ -17807,6 +18343,12 @@ export const channelPendingPayoutTransactionDeleted = T['io.flow.v0.models.chann
17807
18343
  export const channelPendingPayoutTransactionUpserted = T['io.flow.v0.models.channel_pending_payout_transaction_upserted'];
17808
18344
  export const channelRate = T['io.flow.v0.models.channel_rate'];
17809
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'];
17810
18352
  export const channelStatement = T['io.flow.v0.models.channel_statement'];
17811
18353
  export const channelStatementDeleted = T['io.flow.v0.models.channel_statement_deleted'];
17812
18354
  export const channelStatementUpserted = T['io.flow.v0.models.channel_statement_upserted'];
@@ -18794,10 +19336,19 @@ export const pricingSettings = T['io.flow.v0.models.pricing_settings'];
18794
19336
  export const pricingUpserted = T['io.flow.v0.models.pricing_upserted'];
18795
19337
  export const pricingVersion = T['io.flow.v0.models.pricing_version'];
18796
19338
  export const processingEstimate = T['io.flow.v0.models.processing_estimate'];
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'];
18797
19342
  export const productRestrictionResult = T['io.flow.v0.models.product_restriction_result'];
18798
19343
  export const productRestrictionResultDeleted = T['io.flow.v0.models.product_restriction_result_deleted'];
18799
19344
  export const productRestrictionResultUpserted = T['io.flow.v0.models.product_restriction_result_upserted'];
18800
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'];
19349
+ export const productTaxonomyCategory = T['io.flow.v0.models.product_taxonomy_category'];
19350
+ export const productTaxonomyData = T['io.flow.v0.models.product_taxonomy_data'];
19351
+ export const productUpdated = T['io.flow.v0.models.product_updated'];
18801
19352
  export const promotion = T['io.flow.v0.unions.promotion'];
18802
19353
  export const promotionTrigger = T['io.flow.v0.models.promotion_trigger'];
18803
19354
  export const promotionTriggerForm = T['io.flow.v0.models.promotion_trigger_form'];
@@ -18942,6 +19493,7 @@ export const rounding = T['io.flow.v0.models.rounding'];
18942
19493
  export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
18943
19494
  export const roundingType = T['io.flow.v0.enums.rounding_type'];
18944
19495
  export const routeAudit = T['io.flow.v0.models.route_audit'];
19496
+ export const ruleEffectType = T['io.flow.v0.enums.rule_effect_type'];
18945
19497
  export const schedule = T['io.flow.v0.models.schedule'];
18946
19498
  export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
18947
19499
  export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
@@ -18951,6 +19503,7 @@ export const sdkAdyenV3AuthenticationToken = T['io.flow.v0.unions.sdk_adyen_v3_a
18951
19503
  export const securityRatecardFee = T['io.flow.v0.models.security_ratecard_fee'];
18952
19504
  export const securityServiceFee = T['io.flow.v0.models.security_service_fee'];
18953
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'];
18954
19507
  export const serviceDescription = T['io.flow.v0.unions.service_description'];
18955
19508
  export const serviceFee = T['io.flow.v0.unions.service_fee'];
18956
19509
  export const serviceReference = T['io.flow.v0.models.service_reference'];
@@ -19092,6 +19645,7 @@ export const subcatalogSettingsForm = T['io.flow.v0.models.subcatalog_settings_f
19092
19645
  export const subcatalogStatistics = T['io.flow.v0.models.subcatalog_statistics'];
19093
19646
  export const subcatalogUpserted = T['io.flow.v0.models.subcatalog_upserted'];
19094
19647
  export const subcatalogVersion = T['io.flow.v0.models.subcatalog_version'];
19648
+ export const substatusCode = T['io.flow.v0.enums.substatus_code'];
19095
19649
  export const suggestion = T['io.flow.v0.models.suggestion'];
19096
19650
  export const summaryShippingLabelForm = T['io.flow.v0.models.summary_shipping_label_form'];
19097
19651
  export const summaryShippingNotificationForm = T['io.flow.v0.models.summary_shipping_notification_form'];