@flowio/api-prop-types 10.16.91 → 10.16.93

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/api.js CHANGED
@@ -359,6 +359,112 @@ T['io.flow.catalog.v0.models.adjustment_reason'] = PropTypes.exact({
359
359
  label: PropTypes.string.isRequired,
360
360
  });
361
361
 
362
+ T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
363
+ discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
364
+ organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
365
+ num_events: PropTypes.number.isRequired,
366
+ });
367
+
368
+ T['io.flow.ben.test.internal.v0.models.generate_load_single_org'] = PropTypes.exact({
369
+ discriminator: PropTypes.oneOf(['generate_load_single_org']).isRequired,
370
+ organization_id: PropTypes.string.isRequired,
371
+ num_events: PropTypes.number.isRequired,
372
+ });
373
+
374
+ T['io.flow.ben.test.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
375
+ T['io.flow.ben.test.internal.v0.models.generate_load_single_org'],
376
+ T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'],
377
+ ]);
378
+
379
+ T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
380
+ key: PropTypes.string.isRequired,
381
+ value: PropTypes.arrayOf(PropTypes.string).isRequired,
382
+ });
383
+
384
+ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'] = PropTypes.oneOf(['channel_order_mor_invalid', 'channel_order_does_not_exist']);
385
+
386
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropTypes.exact({
387
+ id: PropTypes.string.isRequired,
388
+ organization_id: PropTypes.string.isRequired,
389
+ channel_id: PropTypes.string.isRequired,
390
+ payment_request_id: PropTypes.string.isRequired,
391
+ code: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'].isRequired,
392
+ reason: PropTypes.string.isRequired,
393
+ });
394
+
395
+ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropTypes.oneOf([
396
+ 'unsupported_origin_country',
397
+ 'unsupported_destination_country',
398
+ 'domestic_order',
399
+ 'order_contains_gift_card',
400
+ 'order_contains_restricted_goods',
401
+ 'missing_order_information',
402
+ 'missing_classification_information',
403
+ 'unsupported_payment_information',
404
+ 'unsupported_shop_currency',
405
+ 'unsupported_free_order',
406
+ 'extracting_distribution_info_failed',
407
+ 'shipping_estimation_failed',
408
+ 'payment_authorization_failed',
409
+ 'unsupported_subsidized_order',
410
+ 'unsupported_virtual_goods',
411
+ 'non_matching_currencies',
412
+ 'unsupported_order_edit',
413
+ 'order_missing',
414
+ ]);
415
+
416
+ T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
417
+ edited_at: PropTypes.string.isRequired,
418
+ });
419
+
420
+ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
421
+ 'cx_team',
422
+ 'core_team',
423
+ 'core_team_investigate',
424
+ 'mex_team',
425
+ 'payments_team',
426
+ 'tc_team',
427
+ 'logistics_team',
428
+ ]);
429
+
430
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
431
+ description: PropTypes.string.isRequired,
432
+ rejection_reason: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'],
433
+ });
434
+
435
+ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
436
+ 'adjustment',
437
+ 'vat_deminimis',
438
+ 'duty_deminimis',
439
+ 'duties_item_price',
440
+ 'duties_freight',
441
+ 'duties_insurance',
442
+ 'vat_item_price',
443
+ 'vat_freight',
444
+ 'vat_insurance',
445
+ 'vat_duties_item_price',
446
+ 'vat_duties_freight',
447
+ 'vat_duties_insurance',
448
+ 'item_price',
449
+ 'item_discount',
450
+ 'rounding',
451
+ 'insurance',
452
+ 'shipping',
453
+ 'shipping_discount',
454
+ 'order_discount',
455
+ 'subtotal_percent_sales_margin',
456
+ 'subtotal_vat_percent_sales_margin',
457
+ 'subtotal_duty_percent_sales_margin',
458
+ 'vat_subsidy',
459
+ 'duty_subsidy',
460
+ 'remote_area_surcharge',
461
+ 'fuel_surcharge',
462
+ 'emergency_situation_surcharge',
463
+ 'peak_surcharge',
464
+ 'duties_taxes_paid_surcharge',
465
+ 'tip',
466
+ ]);
467
+
362
468
  T['io.flow.common.v0.enums.availability_status'] = PropTypes.oneOf(['enabled', 'disabled']);
363
469
 
364
470
  T['io.flow.organization.v0.models.region_setting_form'] = PropTypes.exact({
@@ -420,6 +526,16 @@ T['io.flow.permission.v0.models.permission_audit'] = PropTypes.exact({
420
526
 
421
527
  T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
422
528
 
529
+ T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
530
+ role: T['io.flow.common.v0.enums.role'],
531
+ });
532
+
533
+ T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
534
+ channel_id: PropTypes.string.isRequired,
535
+ user_id: PropTypes.string.isRequired,
536
+ role: T['io.flow.common.v0.enums.role'],
537
+ });
538
+
423
539
  T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
424
540
  role: T['io.flow.common.v0.enums.role'],
425
541
  roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
@@ -575,6 +691,20 @@ T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_co
575
691
  T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
576
692
  T['io.flow.fulfillment.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
577
693
  T['io.flow.fulfillment.v0.enums.zero_amount_indicator'] = PropTypes.oneOf(['zero', 'free']);
694
+ T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
695
+
696
+ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
697
+ 'adjustment',
698
+ 'subtotal',
699
+ 'vat',
700
+ 'duty',
701
+ 'shipping',
702
+ 'insurance',
703
+ 'discount',
704
+ 'surcharges',
705
+ 'tip',
706
+ ]);
707
+
578
708
  T['io.flow.fulfillment.v0.enums.delivery_window_location'] = PropTypes.oneOf(['center', 'crossdock', 'customer']);
579
709
  T['io.flow.fulfillment.v0.enums.delivery_window_component_source'] = PropTypes.oneOf(['flow', 'organization', 'carrier', 'center', 'mixed']);
580
710
 
@@ -826,23 +956,6 @@ T['io.flow.fulfillment.v0.models.number_range'] = PropTypes.exact({
826
956
  max: PropTypes.number.isRequired,
827
957
  });
828
958
 
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
959
  T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
847
960
  'area',
848
961
  'city',
@@ -942,6 +1055,14 @@ T['io.flow.reference.v0.models.carrier_service'] = PropTypes.exact({
942
1055
  name: PropTypes.string.isRequired,
943
1056
  });
944
1057
 
1058
+ T['io.flow.channel.v0.enums.channel_currency_capability'] = PropTypes.oneOf(['payment_authorizations', 'settlement_currency']);
1059
+
1060
+ T['io.flow.channel.internal.v0.models.channel_currency_form'] = PropTypes.exact({
1061
+ currency: PropTypes.string.isRequired,
1062
+ channel_id: PropTypes.string.isRequired,
1063
+ capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
1064
+ });
1065
+
945
1066
  T['io.flow.price.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
946
1067
 
947
1068
  T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
@@ -1074,6 +1195,13 @@ T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
1074
1195
  id: PropTypes.string.isRequired,
1075
1196
  });
1076
1197
 
1198
+ T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
1199
+ id: PropTypes.string.isRequired,
1200
+ currency: PropTypes.string.isRequired,
1201
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
1202
+ capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
1203
+ });
1204
+
1077
1205
  T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
1078
1206
  discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
1079
1207
  interval: PropTypes.number.isRequired,
@@ -1202,8 +1330,29 @@ T['io.flow.common.v0.models.organization_defaults'] = PropTypes.exact({
1202
1330
  timezone: PropTypes.string.isRequired,
1203
1331
  });
1204
1332
 
1333
+ T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
1334
+ name: PropTypes.string,
1335
+ slug: PropTypes.string,
1336
+ defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
1337
+ attributes: PropTypes.objectOf(PropTypes.string),
1338
+ });
1339
+
1340
+ T['io.flow.channel.v0.models.channel_organization_form'] = PropTypes.exact({
1341
+ key: PropTypes.string.isRequired,
1342
+ name: PropTypes.string,
1343
+ slug: PropTypes.string,
1344
+ defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
1345
+ attributes: PropTypes.objectOf(PropTypes.string),
1346
+ });
1347
+
1205
1348
  T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
1206
1349
 
1350
+ T['io.flow.channel.internal.v0.models.channel_form'] = PropTypes.exact({
1351
+ name: PropTypes.string.isRequired,
1352
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1353
+ organization_id_prefix: PropTypes.string,
1354
+ });
1355
+
1207
1356
  T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
1208
1357
  name: PropTypes.string,
1209
1358
  environment: T['io.flow.common.v0.enums.environment'],
@@ -1232,6 +1381,13 @@ T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact
1232
1381
  environment: T['io.flow.common.v0.enums.environment'].isRequired,
1233
1382
  });
1234
1383
 
1384
+ T['io.flow.channel.v0.models.channel'] = PropTypes.exact({
1385
+ id: PropTypes.string.isRequired,
1386
+ name: PropTypes.string.isRequired,
1387
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1388
+ organization_id_prefix: PropTypes.string,
1389
+ });
1390
+
1235
1391
  T['io.flow.token.v0.models.partner_token_reference'] = PropTypes.exact({
1236
1392
  discriminator: PropTypes.oneOf(['partner_token_reference']).isRequired,
1237
1393
  id: PropTypes.string.isRequired,
@@ -1277,6 +1433,17 @@ T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
1277
1433
  id: PropTypes.string.isRequired,
1278
1434
  });
1279
1435
 
1436
+ T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
1437
+ id: PropTypes.string.isRequired,
1438
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
1439
+ key: PropTypes.string.isRequired,
1440
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
1441
+ name: PropTypes.string.isRequired,
1442
+ slug: PropTypes.string,
1443
+ defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
1444
+ attributes: PropTypes.objectOf(PropTypes.string),
1445
+ });
1446
+
1280
1447
  T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
1281
1448
  discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
1282
1449
  id: PropTypes.string.isRequired,
@@ -1792,6 +1959,13 @@ T['io.flow.permission.v0.models.permission_check'] = PropTypes.exact({
1792
1959
  routes: PropTypes.arrayOf(T['io.flow.permission.v0.models.permitted_route']).isRequired,
1793
1960
  });
1794
1961
 
1962
+ T['io.flow.channel.internal.v0.models.channel_membership'] = PropTypes.exact({
1963
+ id: PropTypes.string.isRequired,
1964
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
1965
+ user: T['io.flow.common.v0.unions.expandable_user'].isRequired,
1966
+ role: T['io.flow.common.v0.enums.role'],
1967
+ });
1968
+
1795
1969
  T['io.flow.organization.v0.models.membership'] = PropTypes.exact({
1796
1970
  id: PropTypes.string.isRequired,
1797
1971
  organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
@@ -1931,53 +2105,6 @@ T['io.flow.common.v0.models.order_customer'] = PropTypes.exact({
1931
2105
  invoice: T['io.flow.common.v0.models.customer_invoice'],
1932
2106
  });
1933
2107
 
1934
- T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
1935
- 'adjustment',
1936
- 'vat_deminimis',
1937
- 'duty_deminimis',
1938
- 'duties_item_price',
1939
- 'duties_freight',
1940
- 'duties_insurance',
1941
- 'vat_item_price',
1942
- 'vat_freight',
1943
- 'vat_insurance',
1944
- 'vat_duties_item_price',
1945
- 'vat_duties_freight',
1946
- 'vat_duties_insurance',
1947
- 'item_price',
1948
- 'item_discount',
1949
- 'rounding',
1950
- 'insurance',
1951
- 'shipping',
1952
- 'shipping_discount',
1953
- 'order_discount',
1954
- 'subtotal_percent_sales_margin',
1955
- 'subtotal_vat_percent_sales_margin',
1956
- 'subtotal_duty_percent_sales_margin',
1957
- 'vat_subsidy',
1958
- 'duty_subsidy',
1959
- 'remote_area_surcharge',
1960
- 'fuel_surcharge',
1961
- 'emergency_situation_surcharge',
1962
- 'peak_surcharge',
1963
- 'duties_taxes_paid_surcharge',
1964
- 'tip',
1965
- ]);
1966
-
1967
- T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
1968
-
1969
- T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
1970
- 'adjustment',
1971
- 'subtotal',
1972
- 'vat',
1973
- 'duty',
1974
- 'shipping',
1975
- 'insurance',
1976
- 'discount',
1977
- 'surcharges',
1978
- 'tip',
1979
- ]);
1980
-
1981
2108
  T['io.flow.shopify.external.v0.enums.topic'] = PropTypes.oneOf([
1982
2109
  'carts/create',
1983
2110
  'carts/update',
@@ -2629,6 +2756,33 @@ T['io.flow.shopify.external.v0.models.request_shopify_gift_card'] = PropTypes.ex
2629
2756
  T['io.flow.shopify.external.v0.enums.weight_unit'] = PropTypes.oneOf(['g', 'kg', 'oz', 'lb']);
2630
2757
  T['io.flow.shopify.external.v0.enums.inventory_management'] = PropTypes.oneOf(['blank', 'shopify']);
2631
2758
  T['io.flow.shopify.external.v0.enums.fulfillment_service'] = PropTypes.oneOf(['manual', 'gift_card']);
2759
+
2760
+ T['io.flow.shopify.external.v0.models.product_metafield'] = PropTypes.exact({
2761
+ id: PropTypes.number.isRequired,
2762
+ namespace: PropTypes.string.isRequired,
2763
+ key: PropTypes.string.isRequired,
2764
+ value: PropTypes.string.isRequired,
2765
+ created_at: PropTypes.string.isRequired,
2766
+ updated_at: PropTypes.string.isRequired,
2767
+ type: PropTypes.string.isRequired,
2768
+ admin_graphql_api_id: PropTypes.string.isRequired,
2769
+ });
2770
+
2771
+ T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
2772
+ name: PropTypes.string.isRequired,
2773
+ full_name: PropTypes.string.isRequired,
2774
+ });
2775
+
2776
+ T['io.flow.product.v0.models.product'] = PropTypes.exact({
2777
+ organization_id: PropTypes.string.isRequired,
2778
+ number: PropTypes.string.isRequired,
2779
+ taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
2780
+ taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
2781
+ item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
2782
+ updated_at: PropTypes.string.isRequired,
2783
+ deleted_at: PropTypes.string,
2784
+ });
2785
+
2632
2786
  T['io.flow.shopify.external.v0.enums.published_scope'] = PropTypes.oneOf(['global']);
2633
2787
 
2634
2788
  T['io.flow.shopify.external.v0.models.option'] = PropTypes.exact({
@@ -2798,6 +2952,8 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
2798
2952
  created_at: PropTypes.string.isRequired,
2799
2953
  updated_at: PropTypes.string.isRequired,
2800
2954
  has_variants_that_requires_components: PropTypes.bool,
2955
+ category: T['io.flow.product.v0.models.product_taxonomy_category'],
2956
+ metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
2801
2957
  });
2802
2958
 
2803
2959
  T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
@@ -2808,6 +2964,18 @@ T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
2808
2964
  product: T['io.flow.shopify.external.v0.models.product'].isRequired,
2809
2965
  });
2810
2966
 
2967
+ T['io.flow.shopify.external.v0.models.graphql_metafield'] = PropTypes.exact({
2968
+ id: PropTypes.string.isRequired,
2969
+ key: PropTypes.string.isRequired,
2970
+ value: PropTypes.string.isRequired,
2971
+ type: PropTypes.string,
2972
+ });
2973
+
2974
+ T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
2975
+ name: PropTypes.string.isRequired,
2976
+ fullName: PropTypes.string.isRequired,
2977
+ });
2978
+
2811
2979
  T['io.flow.shopify.external.v0.models.graphql_option'] = PropTypes.exact({
2812
2980
  id: PropTypes.string.isRequired,
2813
2981
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -2872,6 +3040,8 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
2872
3040
  createdAt: PropTypes.string.isRequired,
2873
3041
  updatedAt: PropTypes.string.isRequired,
2874
3042
  hasVariantsThatRequiresComponents: PropTypes.bool,
3043
+ category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
3044
+ metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_metafield']),
2875
3045
  });
2876
3046
 
2877
3047
  T['io.flow.stripe.v0.models.stripe_event_request'] = PropTypes.exact({
@@ -2969,7 +3139,123 @@ T['io.flow.stripe.v0.models.source_klarna_request'] = PropTypes.exact({
2969
3139
  locale: PropTypes.string,
2970
3140
  });
2971
3141
 
2972
- T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
3142
+ T['io.flow.stripe.v0.enums.three_d_secure_support'] = PropTypes.oneOf(['required', 'recommended', 'optional', 'not_supported']);
3143
+
3144
+ T['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'] = PropTypes.oneOf([
3145
+ 'charge.captured',
3146
+ 'charge.dispute.created',
3147
+ 'charge.dispute.closed',
3148
+ 'charge.dispute.funds_reinstated',
3149
+ 'charge.dispute.funds_withdrawn',
3150
+ 'charge.dispute.updated',
3151
+ 'charge.expired',
3152
+ 'charge.failed',
3153
+ 'charge.pending',
3154
+ 'charge.refund.updated',
3155
+ 'charge.refunded',
3156
+ 'charge.succeeded',
3157
+ 'charge.updated',
3158
+ 'payment_intent.amount_capturable_updated',
3159
+ 'payment_intent.canceled',
3160
+ 'payment_intent.created',
3161
+ 'payment_intent.partially_funded',
3162
+ 'payment_intent.payment_failed',
3163
+ 'payment_intent.processing',
3164
+ 'payment_intent.requires_action',
3165
+ 'payment_intent.succeeded',
3166
+ 'transfer.created',
3167
+ 'transfer.reversed',
3168
+ 'transfer.updated',
3169
+ 'reporting.report_run.succeeded',
3170
+ 'reporting.report_type.updated',
3171
+ 'reporting.report_type.failed',
3172
+ ]);
3173
+
3174
+ T['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'] = PropTypes.exact({
3175
+ object: PropTypes.object,
3176
+ previous_attributes: PropTypes.object,
3177
+ });
3178
+
3179
+ T['io.flow.stripe.v0.models.shopify_payment_stripe_event'] = PropTypes.exact({
3180
+ id: PropTypes.string.isRequired,
3181
+ api_version: PropTypes.string,
3182
+ data: T['io.flow.stripe.v0.models.shopify_payment_stripe_event_data'].isRequired,
3183
+ request: PropTypes.object,
3184
+ type: T['io.flow.stripe.v0.enums.shopify_payment_stripe_event_type'].isRequired,
3185
+ object: PropTypes.string.isRequired,
3186
+ account: PropTypes.string,
3187
+ created: PropTypes.number.isRequired,
3188
+ livemode: PropTypes.bool.isRequired,
3189
+ pending_webhooks: PropTypes.number.isRequired,
3190
+ });
3191
+
3192
+ T['io.flow.stripe.v0.models.report_run_parameters'] = PropTypes.exact({
3193
+ interval_start: PropTypes.number.isRequired,
3194
+ interval_end: PropTypes.number.isRequired,
3195
+ columns: PropTypes.arrayOf(PropTypes.string),
3196
+ payout: PropTypes.string,
3197
+ connected_account: PropTypes.string,
3198
+ reporting_category: PropTypes.string,
3199
+ });
3200
+
3201
+ T['io.flow.stripe.v0.enums.reporting_report_type'] = PropTypes.oneOf([
3202
+ 'ending_balance_reconciliation.itemized.1',
3203
+ 'ending_balance_reconciliation.itemized.2',
3204
+ 'ending_balance_reconciliation.itemized.3',
3205
+ 'ending_balance_reconciliation.itemized.4',
3206
+ 'payout_reconciliation.itemized.5',
3207
+ 'payout_reconciliation.by_id.itemized.1',
3208
+ 'payout_reconciliation.by_id.itemized.2',
3209
+ 'payout_reconciliation.by_id.itemized.3',
3210
+ 'payout_reconciliation.by_id.itemized.4',
3211
+ 'payout_reconciliation.by_id.summary.1',
3212
+ 'ending_balance_reconciliation.summary.1',
3213
+ 'payout_reconciliation.itemized.1',
3214
+ 'payout_reconciliation.itemized.2',
3215
+ 'payout_reconciliation.itemized.3',
3216
+ 'payout_reconciliation.itemized.4',
3217
+ 'payout_reconciliation.summary.1',
3218
+ ]);
3219
+
3220
+ T['io.flow.stripe.v0.models.reporting_report_run_form'] = PropTypes.exact({
3221
+ report_type: T['io.flow.stripe.v0.enums.reporting_report_type'].isRequired,
3222
+ parameters: T['io.flow.stripe.v0.models.report_run_parameters'].isRequired,
3223
+ });
3224
+
3225
+ T['io.flow.stripe.v0.models.reporting_report_run_result'] = PropTypes.exact({
3226
+ id: PropTypes.string.isRequired,
3227
+ object: PropTypes.string.isRequired,
3228
+ created: PropTypes.number.isRequired,
3229
+ expires_at: PropTypes.number.isRequired,
3230
+ filename: PropTypes.string.isRequired,
3231
+ links: PropTypes.object.isRequired,
3232
+ purpose: PropTypes.string.isRequired,
3233
+ size: PropTypes.number.isRequired,
3234
+ title: PropTypes.string.isRequired,
3235
+ type: PropTypes.string.isRequired,
3236
+ url: PropTypes.string.isRequired,
3237
+ });
3238
+
3239
+ T['io.flow.stripe.v0.enums.reporting_report_run_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
3240
+
3241
+ T['io.flow.stripe.v0.models.reporting_report_run'] = PropTypes.exact({
3242
+ id: PropTypes.string.isRequired,
3243
+ object: PropTypes.string.isRequired,
3244
+ created: PropTypes.number.isRequired,
3245
+ error: PropTypes.string,
3246
+ livemode: PropTypes.bool.isRequired,
3247
+ status: T['io.flow.stripe.v0.enums.reporting_report_run_status'].isRequired,
3248
+ result: T['io.flow.stripe.v0.models.reporting_report_run_result'],
3249
+ succeeded_at: PropTypes.number,
3250
+ });
3251
+
3252
+ T['io.flow.stripe.v0.models.reporting_report_runs'] = PropTypes.exact({
3253
+ object: PropTypes.string.isRequired,
3254
+ data: PropTypes.arrayOf(T['io.flow.stripe.v0.models.reporting_report_run']).isRequired,
3255
+ has_more: PropTypes.bool.isRequired,
3256
+ url: PropTypes.string,
3257
+ });
3258
+
2973
3259
  T['io.flow.stripe.v0.enums.refund_reason'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
2974
3260
 
2975
3261
  T['io.flow.stripe.v0.enums.refund_failure_reason'] = PropTypes.oneOf([
@@ -4954,6 +5240,14 @@ T['io.flow.v0.models.hs6_code_upserted'] = PropTypes.exact({
4954
5240
  code: PropTypes.string.isRequired,
4955
5241
  });
4956
5242
 
5243
+ T['io.flow.v0.models.ge_product_restriction_result_deleted'] = PropTypes.exact({
5244
+ discriminator: PropTypes.oneOf(['ge_product_restriction_result_deleted']).isRequired,
5245
+ event_id: PropTypes.string.isRequired,
5246
+ timestamp: PropTypes.string.isRequired,
5247
+ organization: PropTypes.string.isRequired,
5248
+ id: PropTypes.string.isRequired,
5249
+ });
5250
+
4957
5251
  T['io.flow.v0.models.shipping_configuration_deleted'] = PropTypes.exact({
4958
5252
  discriminator: PropTypes.oneOf(['shipping_configuration_deleted']).isRequired,
4959
5253
  event_id: PropTypes.string.isRequired,
@@ -5175,6 +5469,14 @@ T['io.flow.v0.models.channel_deleted'] = PropTypes.exact({
5175
5469
  id: PropTypes.string.isRequired,
5176
5470
  });
5177
5471
 
5472
+ T['io.flow.v0.models.channel_shopify_order_state_deleted'] = PropTypes.exact({
5473
+ discriminator: PropTypes.oneOf(['channel_shopify_order_state_deleted']).isRequired,
5474
+ event_id: PropTypes.string.isRequired,
5475
+ timestamp: PropTypes.string.isRequired,
5476
+ organization: PropTypes.string.isRequired,
5477
+ id: PropTypes.string.isRequired,
5478
+ });
5479
+
5178
5480
  T['io.flow.v0.models.catalog_statistics_deleted'] = PropTypes.exact({
5179
5481
  discriminator: PropTypes.oneOf(['catalog_statistics_deleted']).isRequired,
5180
5482
  event_id: PropTypes.string.isRequired,
@@ -5202,31 +5504,6 @@ T['io.flow.v0.models.subcatalog_item_upserted'] = PropTypes.exact({
5202
5504
  status: PropTypes.string.isRequired,
5203
5505
  });
5204
5506
 
5205
- T['io.flow.v0.models.catalog_item_deleted'] = PropTypes.exact({
5206
- discriminator: PropTypes.oneOf(['catalog_item_deleted']).isRequired,
5207
- event_id: PropTypes.string.isRequired,
5208
- timestamp: PropTypes.string.isRequired,
5209
- organization: PropTypes.string.isRequired,
5210
- number: PropTypes.string.isRequired,
5211
- });
5212
-
5213
- T['io.flow.v0.models.catalog_item_upserted'] = PropTypes.exact({
5214
- discriminator: PropTypes.oneOf(['catalog_item_upserted']).isRequired,
5215
- event_id: PropTypes.string.isRequired,
5216
- timestamp: PropTypes.string.isRequired,
5217
- organization: PropTypes.string.isRequired,
5218
- number: PropTypes.string.isRequired,
5219
- locale: PropTypes.string.isRequired,
5220
- name: PropTypes.string.isRequired,
5221
- currency: PropTypes.string.isRequired,
5222
- price: PropTypes.number.isRequired,
5223
- categories: PropTypes.arrayOf(PropTypes.string).isRequired,
5224
- description: PropTypes.string,
5225
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
5226
- dimensions: PropTypes.object.isRequired,
5227
- images: PropTypes.arrayOf(PropTypes.object).isRequired,
5228
- });
5229
-
5230
5507
  T['io.flow.v0.models.subcatalog_deleted'] = PropTypes.exact({
5231
5508
  discriminator: PropTypes.oneOf(['subcatalog_deleted']).isRequired,
5232
5509
  event_id: PropTypes.string.isRequired,
@@ -5332,6 +5609,13 @@ T['io.flow.v0.models.organization_transaction_deleted'] = PropTypes.exact({
5332
5609
  id: PropTypes.string.isRequired,
5333
5610
  });
5334
5611
 
5612
+ T['io.flow.v0.models.ansh_item_deleted'] = PropTypes.exact({
5613
+ discriminator: PropTypes.oneOf(['ansh_item_deleted']).isRequired,
5614
+ event_id: PropTypes.string.isRequired,
5615
+ timestamp: PropTypes.string.isRequired,
5616
+ id: PropTypes.string.isRequired,
5617
+ });
5618
+
5335
5619
  T['io.flow.v0.models.aldo_item_deleted'] = PropTypes.exact({
5336
5620
  discriminator: PropTypes.oneOf(['aldo_item_deleted']).isRequired,
5337
5621
  event_id: PropTypes.string.isRequired,
@@ -5348,6 +5632,14 @@ T['io.flow.v0.models.generate_load'] = PropTypes.exact({
5348
5632
  num_tests: PropTypes.number.isRequired,
5349
5633
  });
5350
5634
 
5635
+ T['io.flow.v0.models.authorization_retry_deleted'] = PropTypes.exact({
5636
+ discriminator: PropTypes.oneOf(['authorization_retry_deleted']).isRequired,
5637
+ event_id: PropTypes.string.isRequired,
5638
+ timestamp: PropTypes.string.isRequired,
5639
+ organization: PropTypes.string.isRequired,
5640
+ id: PropTypes.string.isRequired,
5641
+ });
5642
+
5351
5643
  T['io.flow.v0.models.bank_account_form_simple'] = PropTypes.exact({
5352
5644
  discriminator: PropTypes.oneOf(['simple']).isRequired,
5353
5645
  routing_number: PropTypes.string.isRequired,
@@ -5529,6 +5821,8 @@ T['io.flow.v0.enums.tracking_status'] = PropTypes.oneOf([
5529
5821
  'exception',
5530
5822
  'returned',
5531
5823
  'expired',
5824
+ 'unknown',
5825
+ 'unmapped',
5532
5826
  ]);
5533
5827
 
5534
5828
  T['io.flow.v0.models.tracking_summary'] = PropTypes.exact({
@@ -5615,78 +5909,6 @@ T['io.flow.v0.models.repeat_hourly'] = PropTypes.exact({
5615
5909
  interval: PropTypes.number.isRequired,
5616
5910
  });
5617
5911
 
5618
- T['io.flow.v0.enums.sync_stream_type'] = PropTypes.oneOf(['submitted_order', 'placed_order']);
5619
- T['io.flow.v0.enums.sync_record_failure_reason'] = PropTypes.oneOf(['inventory', 'address', 'promotion', 'other']);
5620
-
5621
- T['io.flow.v0.models.sync_record_failure_form'] = PropTypes.exact({
5622
- stream_key: PropTypes.string.isRequired,
5623
- value: PropTypes.string.isRequired,
5624
- system: PropTypes.string.isRequired,
5625
- reason: T['io.flow.v0.enums.sync_record_failure_reason'].isRequired,
5626
- attributes: PropTypes.objectOf(PropTypes.string),
5627
- });
5628
-
5629
- T['io.flow.v0.models.sync_stream_reference'] = PropTypes.exact({
5630
- id: PropTypes.string.isRequired,
5631
- key: PropTypes.string.isRequired,
5632
- });
5633
-
5634
- T['io.flow.v0.models.sync_record_failure'] = PropTypes.exact({
5635
- id: PropTypes.string.isRequired,
5636
- stream: T['io.flow.v0.models.sync_stream_reference'].isRequired,
5637
- value: PropTypes.string.isRequired,
5638
- system: PropTypes.string.isRequired,
5639
- reason: T['io.flow.v0.enums.sync_record_failure_reason'].isRequired,
5640
- attributes: PropTypes.objectOf(PropTypes.string),
5641
- });
5642
-
5643
- T['io.flow.v0.models.sync_record'] = PropTypes.exact({
5644
- id: PropTypes.string.isRequired,
5645
- system: PropTypes.string.isRequired,
5646
- value: PropTypes.string.isRequired,
5647
- stream: T['io.flow.v0.models.sync_stream_reference'].isRequired,
5648
- });
5649
-
5650
- T['io.flow.v0.models.sync_pending_record'] = PropTypes.exact({
5651
- id: PropTypes.string.isRequired,
5652
- stream: T['io.flow.v0.models.sync_stream_reference'].isRequired,
5653
- value: PropTypes.string.isRequired,
5654
- system: PropTypes.string.isRequired,
5655
- });
5656
-
5657
- T['io.flow.v0.enums.sync_unit_of_time'] = PropTypes.oneOf(['day', 'hour', 'minute', 'second']);
5658
-
5659
- T['io.flow.v0.models.sync_duration'] = PropTypes.exact({
5660
- unit: T['io.flow.v0.enums.sync_unit_of_time'].isRequired,
5661
- value: PropTypes.number.isRequired,
5662
- });
5663
-
5664
- T['io.flow.v0.models.sync_stream_settings_form'] = PropTypes.exact({
5665
- pending_record_after: T['io.flow.v0.models.sync_duration'].isRequired,
5666
- warn_after: T['io.flow.v0.models.sync_duration'].isRequired,
5667
- error_after: T['io.flow.v0.models.sync_duration'].isRequired,
5668
- });
5669
-
5670
- T['io.flow.v0.models.sync_stream_form'] = PropTypes.exact({
5671
- type: T['io.flow.v0.enums.sync_stream_type'].isRequired,
5672
- systems: PropTypes.arrayOf(PropTypes.string).isRequired,
5673
- settings: T['io.flow.v0.models.sync_stream_settings_form'],
5674
- });
5675
-
5676
- T['io.flow.v0.models.sync_stream_settings'] = PropTypes.exact({
5677
- pending_record_after: T['io.flow.v0.models.sync_duration'].isRequired,
5678
- warn_after: T['io.flow.v0.models.sync_duration'].isRequired,
5679
- error_after: T['io.flow.v0.models.sync_duration'].isRequired,
5680
- });
5681
-
5682
- T['io.flow.v0.models.sync_stream'] = PropTypes.exact({
5683
- id: PropTypes.string.isRequired,
5684
- key: PropTypes.string.isRequired,
5685
- type: T['io.flow.v0.enums.sync_stream_type'].isRequired,
5686
- systems: PropTypes.arrayOf(PropTypes.string).isRequired,
5687
- settings: T['io.flow.v0.models.sync_stream_settings'].isRequired,
5688
- });
5689
-
5690
5912
  T['io.flow.v0.enums.surcharge_responsible_party'] = PropTypes.oneOf(['organization', 'customer']);
5691
5913
 
5692
5914
  T['io.flow.v0.models.surcharge_responsible_party_display'] = PropTypes.exact({
@@ -6148,68 +6370,6 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
6148
6370
 
6149
6371
  T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
6150
6372
 
6151
- T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
6152
- 'Adult Products',
6153
- 'Alcohol',
6154
- 'Anti Money Laundering',
6155
- 'Collagen',
6156
- 'Consumer Safety',
6157
- 'Cosmetics',
6158
- 'DG - Batteries',
6159
- 'DG - Hazmat',
6160
- 'Drugs',
6161
- 'Dual Use',
6162
- 'Fine Art',
6163
- 'Fish & Wildlife - CITES',
6164
- 'Fish & Wildlife - Plant',
6165
- 'Fish & Wildlife - USFWS',
6166
- 'Food',
6167
- 'Gambling',
6168
- 'Health',
6169
- 'Human hair',
6170
- 'Insufficient Details',
6171
- 'Intangible',
6172
- 'Jewelry',
6173
- 'Jewelry & Watches Over 5000',
6174
- 'Knives',
6175
- 'Liquids',
6176
- 'Oversized',
6177
- 'Restrict by Default',
6178
- 'Supplements',
6179
- 'Tattoo Ink And PMU',
6180
- 'Weapon',
6181
- 'Wood',
6182
- ]);
6183
-
6184
- T['io.flow.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
6185
-
6186
- T['io.flow.v0.models.reasons_per_region'] = PropTypes.exact({
6187
- region: PropTypes.string.isRequired,
6188
- reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
6189
- review_status: T['io.flow.v0.enums.restricted_review_status'].isRequired,
6190
- });
6191
-
6192
- T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
6193
- id: PropTypes.string.isRequired,
6194
- product_id: PropTypes.string.isRequired,
6195
- item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
6196
- prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
6197
- reasons_per_region: PropTypes.arrayOf(T['io.flow.v0.models.reasons_per_region']),
6198
- review_status: T['io.flow.v0.enums.review_status'],
6199
- rules: PropTypes.arrayOf(T['io.flow.v0.enums.product_restriction_rule']),
6200
- updated_by: PropTypes.string,
6201
- product_restriction_id: PropTypes.string,
6202
- hs_code: PropTypes.string,
6203
- });
6204
-
6205
- T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
6206
- discriminator: PropTypes.oneOf(['product_restriction_result_upserted']).isRequired,
6207
- event_id: PropTypes.string.isRequired,
6208
- timestamp: PropTypes.string.isRequired,
6209
- organization: PropTypes.string.isRequired,
6210
- product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
6211
- });
6212
-
6213
6373
  T['io.flow.v0.models.product_taxonomy_data'] = PropTypes.exact({
6214
6374
  key: PropTypes.string.isRequired,
6215
6375
  value: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -6217,11 +6377,10 @@ T['io.flow.v0.models.product_taxonomy_data'] = PropTypes.exact({
6217
6377
 
6218
6378
  T['io.flow.v0.models.product_taxonomy_category'] = PropTypes.exact({
6219
6379
  name: PropTypes.string.isRequired,
6220
- fullname: PropTypes.string.isRequired,
6380
+ full_name: PropTypes.string.isRequired,
6221
6381
  });
6222
6382
 
6223
6383
  T['io.flow.v0.models.product'] = PropTypes.exact({
6224
- id: PropTypes.string.isRequired,
6225
6384
  organization_id: PropTypes.string.isRequired,
6226
6385
  number: PropTypes.string.isRequired,
6227
6386
  taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'],
@@ -6231,6 +6390,30 @@ T['io.flow.v0.models.product'] = PropTypes.exact({
6231
6390
  deleted_at: PropTypes.string,
6232
6391
  });
6233
6392
 
6393
+ T['io.flow.v0.models.product_updated'] = PropTypes.exact({
6394
+ discriminator: PropTypes.oneOf(['product_updated']).isRequired,
6395
+ event_id: PropTypes.string.isRequired,
6396
+ timestamp: PropTypes.string.isRequired,
6397
+ organization: PropTypes.string.isRequired,
6398
+ product: T['io.flow.v0.models.product'].isRequired,
6399
+ });
6400
+
6401
+ T['io.flow.v0.models.product_inserted'] = PropTypes.exact({
6402
+ discriminator: PropTypes.oneOf(['product_inserted']).isRequired,
6403
+ event_id: PropTypes.string.isRequired,
6404
+ timestamp: PropTypes.string.isRequired,
6405
+ organization: PropTypes.string.isRequired,
6406
+ product: T['io.flow.v0.models.product'].isRequired,
6407
+ });
6408
+
6409
+ T['io.flow.v0.models.product_deleted'] = PropTypes.exact({
6410
+ discriminator: PropTypes.oneOf(['product_deleted']).isRequired,
6411
+ event_id: PropTypes.string.isRequired,
6412
+ timestamp: PropTypes.string.isRequired,
6413
+ organization: PropTypes.string.isRequired,
6414
+ product: T['io.flow.v0.models.product'].isRequired,
6415
+ });
6416
+
6234
6417
  T['io.flow.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
6235
6418
  T['io.flow.v0.enums.rounding_type'] = PropTypes.oneOf(['pattern', 'multiple']);
6236
6419
 
@@ -6271,11 +6454,6 @@ T['io.flow.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
6271
6454
  ]);
6272
6455
 
6273
6456
  T['io.flow.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
6274
-
6275
- T['io.flow.v0.models.price_book_item_export_options'] = PropTypes.exact({
6276
- available_identifiers: PropTypes.arrayOf(T['io.flow.v0.enums.item_identifier']).isRequired,
6277
- });
6278
-
6279
6457
  T['io.flow.v0.enums.price_book_status'] = PropTypes.oneOf(['draft', 'published', 'archived']);
6280
6458
  T['io.flow.v0.enums.preferred_service_selection_strategy'] = PropTypes.oneOf(['calculated_rate', 'flat_rate', 'custom_rate']);
6281
6459
 
@@ -7673,6 +7851,76 @@ T['io.flow.v0.models.harmonization_document'] = PropTypes.exact({
7673
7851
  origin: PropTypes.string,
7674
7852
  });
7675
7853
 
7854
+ T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
7855
+ 'Adult Products',
7856
+ 'Alcohol',
7857
+ 'Anti Money Laundering',
7858
+ 'Collagen',
7859
+ 'Consumer Safety',
7860
+ 'Cosmetics',
7861
+ 'DG - Batteries',
7862
+ 'DG - Hazmat',
7863
+ 'Drugs',
7864
+ 'Dual Use',
7865
+ 'Fine Art',
7866
+ 'Fish & Wildlife - CITES',
7867
+ 'Fish & Wildlife - Plant',
7868
+ 'Fish & Wildlife - USFWS',
7869
+ 'Food',
7870
+ 'Gambling',
7871
+ 'Health',
7872
+ 'Human hair',
7873
+ 'Insufficient Details',
7874
+ 'Intangible',
7875
+ 'Jewelry',
7876
+ 'Jewelry & Watches Over 5000',
7877
+ 'Knives',
7878
+ 'Liquids',
7879
+ 'Oversized',
7880
+ 'Restrict by Default',
7881
+ 'Supplements',
7882
+ 'Tattoo Ink And PMU',
7883
+ 'Weapon',
7884
+ 'Wood',
7885
+ ]);
7886
+
7887
+ T['io.flow.v0.enums.review_status'] = PropTypes.oneOf(['high_risk_in_review', 'low_risk_in_review', 'reviewed']);
7888
+
7889
+ T['io.flow.v0.models.reasons_per_region'] = PropTypes.exact({
7890
+ region: PropTypes.string.isRequired,
7891
+ reasons: PropTypes.arrayOf(PropTypes.string).isRequired,
7892
+ review_status: T['io.flow.v0.enums.restricted_review_status'].isRequired,
7893
+ });
7894
+
7895
+ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
7896
+ id: PropTypes.string.isRequired,
7897
+ product_id: PropTypes.string.isRequired,
7898
+ item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
7899
+ prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
7900
+ reasons_per_region: PropTypes.arrayOf(T['io.flow.v0.models.reasons_per_region']),
7901
+ review_status: T['io.flow.v0.enums.review_status'],
7902
+ rules: PropTypes.arrayOf(T['io.flow.v0.enums.product_restriction_rule']),
7903
+ updated_by: PropTypes.string,
7904
+ product_restriction_id: PropTypes.string,
7905
+ hs_code: PropTypes.string,
7906
+ });
7907
+
7908
+ T['io.flow.v0.models.product_restriction_result_upserted'] = PropTypes.exact({
7909
+ discriminator: PropTypes.oneOf(['product_restriction_result_upserted']).isRequired,
7910
+ event_id: PropTypes.string.isRequired,
7911
+ timestamp: PropTypes.string.isRequired,
7912
+ organization: PropTypes.string.isRequired,
7913
+ product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
7914
+ });
7915
+
7916
+ T['io.flow.v0.models.ge_product_restriction_result_upserted'] = PropTypes.exact({
7917
+ discriminator: PropTypes.oneOf(['ge_product_restriction_result_upserted']).isRequired,
7918
+ event_id: PropTypes.string.isRequired,
7919
+ timestamp: PropTypes.string.isRequired,
7920
+ organization: PropTypes.string.isRequired,
7921
+ ge_product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
7922
+ });
7923
+
7676
7924
  T['io.flow.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
7677
7925
 
7678
7926
  T['io.flow.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
@@ -8913,6 +9161,7 @@ T['io.flow.v0.models.card_payment_source_form'] = PropTypes.exact({
8913
9161
  card_id: PropTypes.string.isRequired,
8914
9162
  });
8915
9163
 
9164
+ T['io.flow.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
8916
9165
  T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
8917
9166
 
8918
9167
  T['io.flow.v0.models.order_options'] = PropTypes.exact({
@@ -9241,6 +9490,9 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
9241
9490
  'virtual_card_refund',
9242
9491
  'failed_payout',
9243
9492
  'tax_refund',
9493
+ 'non_l4l_tax_duty_fx',
9494
+ 'ge_revenue_share',
9495
+ 'tax_duty_delta',
9244
9496
  ]);
9245
9497
 
9246
9498
  T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
@@ -9266,9 +9518,63 @@ T['io.flow.v0.models.user_reference'] = PropTypes.exact({
9266
9518
  id: PropTypes.string.isRequired,
9267
9519
  });
9268
9520
 
9269
- T['io.flow.v0.models.settlement_no_payout'] = PropTypes.exact({
9270
- discriminator: PropTypes.oneOf(['no_payout']).isRequired,
9271
- placeholder: PropTypes.string,
9521
+ T['io.flow.v0.models.settlement_no_payout'] = PropTypes.exact({
9522
+ discriminator: PropTypes.oneOf(['no_payout']).isRequired,
9523
+ placeholder: PropTypes.string,
9524
+ });
9525
+
9526
+ T['io.flow.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
9527
+
9528
+ T['io.flow.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
9529
+ code: T['io.flow.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
9530
+ message: PropTypes.string.isRequired,
9531
+ });
9532
+
9533
+ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'] = PropTypes.oneOf(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']);
9534
+
9535
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact({
9536
+ status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
9537
+ });
9538
+
9539
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
9540
+ id: PropTypes.string.isRequired,
9541
+ organization_id: PropTypes.string.isRequired,
9542
+ order_number: PropTypes.string.isRequired,
9543
+ channel_id: PropTypes.string.isRequired,
9544
+ external_order_reference: PropTypes.string.isRequired,
9545
+ payment_request_id: PropTypes.string,
9546
+ order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
9547
+ status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
9548
+ reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
9549
+ next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
9550
+ order_created_at: PropTypes.string,
9551
+ order_updated_at: PropTypes.string,
9552
+ order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
9553
+ });
9554
+
9555
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
9556
+ order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
9557
+ external_order: PropTypes.object.isRequired,
9558
+ });
9559
+
9560
+ T['io.flow.v0.models.channel_shopify_order_summary'] = PropTypes.exact({
9561
+ order_id: PropTypes.number.isRequired,
9562
+ shop_id: PropTypes.number.isRequired,
9563
+ });
9564
+
9565
+ T['io.flow.v0.models.channel_shopify_order_state'] = PropTypes.exact({
9566
+ id: PropTypes.string.isRequired,
9567
+ shopify_order_summary: T['io.flow.v0.models.channel_shopify_order_summary'].isRequired,
9568
+ status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
9569
+ reasons: PropTypes.arrayOf(T['io.flow.v0.models.channel_shopify_order_state_reason']),
9570
+ });
9571
+
9572
+ T['io.flow.v0.models.channel_shopify_order_state_upserted'] = PropTypes.exact({
9573
+ discriminator: PropTypes.oneOf(['channel_shopify_order_state_upserted']).isRequired,
9574
+ event_id: PropTypes.string.isRequired,
9575
+ timestamp: PropTypes.string.isRequired,
9576
+ organization: PropTypes.string.isRequired,
9577
+ channel_shopify_order_state: T['io.flow.v0.models.channel_shopify_order_state'].isRequired,
9272
9578
  });
9273
9579
 
9274
9580
  T['io.flow.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
@@ -9645,15 +9951,6 @@ T['io.flow.v0.models.image_form'] = PropTypes.exact({
9645
9951
  attributes: PropTypes.objectOf(PropTypes.string),
9646
9952
  });
9647
9953
 
9648
- T['io.flow.v0.models.experience_summary'] = PropTypes.exact({
9649
- id: PropTypes.string.isRequired,
9650
- key: PropTypes.string.isRequired,
9651
- name: PropTypes.string.isRequired,
9652
- country: PropTypes.string,
9653
- currency: PropTypes.string,
9654
- language: PropTypes.string,
9655
- });
9656
-
9657
9954
  T['io.flow.v0.models.image'] = PropTypes.exact({
9658
9955
  url: PropTypes.string.isRequired,
9659
9956
  tags: PropTypes.arrayOf(T['io.flow.v0.enums.image_tag']).isRequired,
@@ -9664,6 +9961,15 @@ T['io.flow.v0.models.catalog_item_document_images'] = PropTypes.exact({
9664
9961
  thumbnail: T['io.flow.v0.models.image'],
9665
9962
  });
9666
9963
 
9964
+ T['io.flow.v0.models.experience_summary'] = PropTypes.exact({
9965
+ id: PropTypes.string.isRequired,
9966
+ key: PropTypes.string.isRequired,
9967
+ name: PropTypes.string.isRequired,
9968
+ country: PropTypes.string,
9969
+ currency: PropTypes.string,
9970
+ language: PropTypes.string,
9971
+ });
9972
+
9667
9973
  T['io.flow.v0.models.catalog_item_document'] = PropTypes.exact({
9668
9974
  discriminator: PropTypes.oneOf(['catalog_item_document']).isRequired,
9669
9975
  number: PropTypes.string.isRequired,
@@ -11006,6 +11312,25 @@ T['io.flow.v0.models.query_builder'] = PropTypes.exact({
11006
11312
  available: PropTypes.arrayOf(T['io.flow.v0.unions.available_filter']).isRequired,
11007
11313
  });
11008
11314
 
11315
+ T['io.flow.v0.models.authorization_retry'] = PropTypes.exact({
11316
+ id: PropTypes.string.isRequired,
11317
+ authorization_request_id: PropTypes.string.isRequired,
11318
+ authorization_id: PropTypes.string.isRequired,
11319
+ organization_id: PropTypes.string.isRequired,
11320
+ attempt: PropTypes.number.isRequired,
11321
+ last_failure_code: PropTypes.string.isRequired,
11322
+ created_at: PropTypes.string.isRequired,
11323
+ updated_at: PropTypes.string.isRequired,
11324
+ });
11325
+
11326
+ T['io.flow.v0.models.authorization_retry_upserted'] = PropTypes.exact({
11327
+ discriminator: PropTypes.oneOf(['authorization_retry_upserted']).isRequired,
11328
+ event_id: PropTypes.string.isRequired,
11329
+ timestamp: PropTypes.string.isRequired,
11330
+ organization: PropTypes.string.isRequired,
11331
+ authorization_retry: T['io.flow.v0.models.authorization_retry'].isRequired,
11332
+ });
11333
+
11009
11334
  T['io.flow.v0.models.select_issuer_option_action_details'] = PropTypes.exact({
11010
11335
  discriminator: PropTypes.oneOf(['select_issuer_option_action_details']).isRequired,
11011
11336
  issuer_options: PropTypes.arrayOf(T['io.flow.v0.models.issuer_reference']).isRequired,
@@ -11528,6 +11853,8 @@ T['io.flow.v0.models.channel_statement_deleted'] = PropTypes.exact({
11528
11853
  channel_statement: T['io.flow.v0.models.channel_statement'].isRequired,
11529
11854
  });
11530
11855
 
11856
+ T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
11857
+
11531
11858
  T['io.flow.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
11532
11859
  'adjustment',
11533
11860
  'subtotal',
@@ -12219,6 +12546,23 @@ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
12219
12546
  deleted_at: PropTypes.string,
12220
12547
  });
12221
12548
 
12549
+ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
12550
+ key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
12551
+ currency: PropTypes.string.isRequired,
12552
+ amount: PropTypes.number.isRequired,
12553
+ label: PropTypes.string.isRequired,
12554
+ base: T['io.flow.common.v0.models.price'].isRequired,
12555
+ name: PropTypes.string,
12556
+ });
12557
+
12558
+ T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exact({
12559
+ number: PropTypes.string.isRequired,
12560
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12561
+ description: PropTypes.string,
12562
+ type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
12563
+ added_on: PropTypes.string.isRequired,
12564
+ });
12565
+
12222
12566
  T['io.flow.tech.onboarding.playground.v0.models.aldo_item_form'] = PropTypes.exact({
12223
12567
  number: PropTypes.string.isRequired,
12224
12568
  amount: T['io.flow.common.v0.models.price'].isRequired,
@@ -12248,6 +12592,28 @@ T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
12248
12592
  T['io.flow.catalog.v0.models.localized_total'],
12249
12593
  ]);
12250
12594
 
12595
+ T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
12596
+ key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
12597
+ currency: PropTypes.string.isRequired,
12598
+ amount: PropTypes.number.isRequired,
12599
+ label: PropTypes.string.isRequired,
12600
+ base: T['io.flow.common.v0.models.price'].isRequired,
12601
+ components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
12602
+ name: PropTypes.string,
12603
+ rate: PropTypes.number,
12604
+ accuracy: T['io.flow.price.v0.enums.price_accuracy'],
12605
+ rate_label: PropTypes.string,
12606
+ });
12607
+
12608
+ T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
12609
+ discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
12610
+ id: PropTypes.string.isRequired,
12611
+ key: PropTypes.string,
12612
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
12613
+ prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
12614
+ total: T['io.flow.catalog.v0.models.localized_total'],
12615
+ });
12616
+
12251
12617
  T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
12252
12618
  id: PropTypes.string.isRequired,
12253
12619
  cost: T['io.flow.common.v0.models.price'].isRequired,
@@ -12402,6 +12768,37 @@ T['io.flow.fulfillment.v0.models.delivery_option'] = PropTypes.exact({
12402
12768
  ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
12403
12769
  });
12404
12770
 
12771
+ T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
12772
+ discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
12773
+ id: PropTypes.string.isRequired,
12774
+ key: PropTypes.string,
12775
+ center: T['io.flow.fulfillment.v0.models.center_summary'],
12776
+ fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
12777
+ ship_from_country: PropTypes.string,
12778
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
12779
+ options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
12780
+ special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
12781
+ prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
12782
+ total: T['io.flow.catalog.v0.models.localized_total'],
12783
+ goods_supply: T['io.flow.common.v0.enums.goods_supply'],
12784
+ merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
12785
+ preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
12786
+ });
12787
+
12788
+ T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
12789
+ T['io.flow.fulfillment.v0.models.digital_delivery'],
12790
+ T['io.flow.fulfillment.v0.models.physical_delivery'],
12791
+ ]);
12792
+
12793
+ T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
12794
+ id: PropTypes.string.isRequired,
12795
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
12796
+ deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
12797
+ selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
12798
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
12799
+ delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
12800
+ });
12801
+
12405
12802
  T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
12406
12803
  id: PropTypes.string.isRequired,
12407
12804
  key: PropTypes.string.isRequired,
@@ -12490,66 +12887,20 @@ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
12490
12887
  item: T['io.flow.catalog.v0.models.item'].isRequired,
12491
12888
  });
12492
12889
 
12493
- T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
12494
- key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
12495
- currency: PropTypes.string.isRequired,
12496
- amount: PropTypes.number.isRequired,
12497
- label: PropTypes.string.isRequired,
12498
- base: T['io.flow.common.v0.models.price'].isRequired,
12499
- name: PropTypes.string,
12500
- });
12501
-
12502
- T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
12503
- key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
12504
- currency: PropTypes.string.isRequired,
12505
- amount: PropTypes.number.isRequired,
12506
- label: PropTypes.string.isRequired,
12507
- base: T['io.flow.common.v0.models.price'].isRequired,
12508
- components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
12509
- name: PropTypes.string,
12510
- rate: PropTypes.number,
12511
- accuracy: T['io.flow.price.v0.enums.price_accuracy'],
12512
- rate_label: PropTypes.string,
12513
- });
12514
-
12515
- T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
12516
- discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
12517
- id: PropTypes.string.isRequired,
12518
- key: PropTypes.string,
12519
- center: T['io.flow.fulfillment.v0.models.center_summary'],
12520
- fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
12521
- ship_from_country: PropTypes.string,
12522
- items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
12523
- options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
12524
- special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
12525
- prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
12526
- total: T['io.flow.catalog.v0.models.localized_total'],
12527
- goods_supply: T['io.flow.common.v0.enums.goods_supply'],
12528
- merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
12529
- preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
12530
- });
12531
-
12532
- T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
12533
- discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
12890
+ T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
12534
12891
  id: PropTypes.string.isRequired,
12535
- key: PropTypes.string,
12536
- items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
12537
- prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
12538
- total: T['io.flow.catalog.v0.models.localized_total'],
12892
+ number: PropTypes.string.isRequired,
12893
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12894
+ description: PropTypes.string,
12895
+ type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
12896
+ added_on: PropTypes.string.isRequired,
12539
12897
  });
12540
12898
 
12541
- T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
12542
- T['io.flow.fulfillment.v0.models.digital_delivery'],
12543
- T['io.flow.fulfillment.v0.models.physical_delivery'],
12544
- ]);
12545
-
12546
- T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
12547
- id: PropTypes.string.isRequired,
12548
- destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
12549
- deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
12550
- selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
12551
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
12552
- delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
12899
+ T['io.flow.v0.models.ansh_item_upserted'] = PropTypes.exact({
12900
+ discriminator: PropTypes.oneOf(['ansh_item_upserted']).isRequired,
12901
+ event_id: PropTypes.string.isRequired,
12902
+ timestamp: PropTypes.string.isRequired,
12903
+ item: T['io.flow.tech.onboarding.playground.v0.models.ansh_item'].isRequired,
12553
12904
  });
12554
12905
 
12555
12906
  T['io.flow.tech.onboarding.playground.v0.models.aldo_item'] = PropTypes.exact({
@@ -13814,6 +14165,7 @@ T['io.flow.v0.models.dimension_estimate_form'] = PropTypes.exact({
13814
14165
  q: PropTypes.string.isRequired,
13815
14166
  dimensions: T['io.flow.v0.models.estimated_dimensions'].isRequired,
13816
14167
  position: PropTypes.number,
14168
+ block_bulk_update: PropTypes.bool,
13817
14169
  });
13818
14170
 
13819
14171
  T['io.flow.v0.models.dimension_estimate'] = PropTypes.exact({
@@ -13821,6 +14173,7 @@ T['io.flow.v0.models.dimension_estimate'] = PropTypes.exact({
13821
14173
  q: PropTypes.string.isRequired,
13822
14174
  dimensions: T['io.flow.v0.models.estimated_dimensions'].isRequired,
13823
14175
  position: PropTypes.number.isRequired,
14176
+ block_bulk_update: PropTypes.bool,
13824
14177
  });
13825
14178
 
13826
14179
  T['io.flow.v0.models.dimension_estimate_version'] = PropTypes.exact({
@@ -13987,12 +14340,6 @@ T['io.flow.v0.models.item_form'] = PropTypes.exact({
13987
14340
  deleted_at: PropTypes.string,
13988
14341
  });
13989
14342
 
13990
- T['io.flow.v0.models.packaging'] = PropTypes.exact({
13991
- dimensions: T['io.flow.v0.models.dimensions'].isRequired,
13992
- name: PropTypes.string,
13993
- number: PropTypes.string,
13994
- });
13995
-
13996
14343
  T['io.flow.v0.models.item'] = PropTypes.exact({
13997
14344
  id: PropTypes.string.isRequired,
13998
14345
  number: PropTypes.string.isRequired,
@@ -14054,6 +14401,30 @@ T['io.flow.v0.models.item_deleted'] = PropTypes.exact({
14054
14401
  item: T['io.flow.v0.models.item'].isRequired,
14055
14402
  });
14056
14403
 
14404
+ T['io.flow.v0.models.ge_item_updated'] = PropTypes.exact({
14405
+ discriminator: PropTypes.oneOf(['ge_item_updated']).isRequired,
14406
+ event_id: PropTypes.string.isRequired,
14407
+ timestamp: PropTypes.string.isRequired,
14408
+ organization: PropTypes.string.isRequired,
14409
+ item: T['io.flow.v0.models.item'].isRequired,
14410
+ });
14411
+
14412
+ T['io.flow.v0.models.ge_item_inserted'] = PropTypes.exact({
14413
+ discriminator: PropTypes.oneOf(['ge_item_inserted']).isRequired,
14414
+ event_id: PropTypes.string.isRequired,
14415
+ timestamp: PropTypes.string.isRequired,
14416
+ organization: PropTypes.string.isRequired,
14417
+ item: T['io.flow.v0.models.item'].isRequired,
14418
+ });
14419
+
14420
+ T['io.flow.v0.models.ge_item_deleted'] = PropTypes.exact({
14421
+ discriminator: PropTypes.oneOf(['ge_item_deleted']).isRequired,
14422
+ event_id: PropTypes.string.isRequired,
14423
+ timestamp: PropTypes.string.isRequired,
14424
+ organization: PropTypes.string.isRequired,
14425
+ item: T['io.flow.v0.models.item'].isRequired,
14426
+ });
14427
+
14057
14428
  T['io.flow.v0.models.checkout_item_content'] = PropTypes.exact({
14058
14429
  item: T['io.flow.v0.models.item'].isRequired,
14059
14430
  name: PropTypes.string.isRequired,
@@ -14075,20 +14446,10 @@ T['io.flow.v0.models.klaviyo_order_content'] = PropTypes.exact({
14075
14446
  checkout_url: PropTypes.string.isRequired,
14076
14447
  });
14077
14448
 
14078
- T['io.flow.v0.models.catalog_item_upserted_v2'] = PropTypes.exact({
14079
- discriminator: PropTypes.oneOf(['catalog_item_upserted_v2']).isRequired,
14080
- event_id: PropTypes.string.isRequired,
14081
- timestamp: PropTypes.string.isRequired,
14082
- organization: PropTypes.string.isRequired,
14083
- item: T['io.flow.v0.models.item'].isRequired,
14084
- });
14085
-
14086
- T['io.flow.v0.models.catalog_item_deleted_v2'] = PropTypes.exact({
14087
- discriminator: PropTypes.oneOf(['catalog_item_deleted_v2']).isRequired,
14088
- event_id: PropTypes.string.isRequired,
14089
- timestamp: PropTypes.string.isRequired,
14090
- organization: PropTypes.string.isRequired,
14091
- item: T['io.flow.v0.models.item'].isRequired,
14449
+ T['io.flow.v0.models.packaging'] = PropTypes.exact({
14450
+ dimensions: T['io.flow.v0.models.dimensions'].isRequired,
14451
+ name: PropTypes.string,
14452
+ number: PropTypes.string,
14092
14453
  });
14093
14454
 
14094
14455
  T['io.flow.v0.models.option_weight_estimates'] = PropTypes.exact({
@@ -14725,22 +15086,6 @@ T['io.flow.v0.models.local_item'] = PropTypes.exact({
14725
15086
  attributes: PropTypes.objectOf(PropTypes.string),
14726
15087
  });
14727
15088
 
14728
- T['io.flow.v0.models.local_item_upserted'] = PropTypes.exact({
14729
- discriminator: PropTypes.oneOf(['local_item_upserted']).isRequired,
14730
- event_id: PropTypes.string.isRequired,
14731
- timestamp: PropTypes.string.isRequired,
14732
- organization: PropTypes.string.isRequired,
14733
- local_item: T['io.flow.v0.models.local_item'].isRequired,
14734
- });
14735
-
14736
- T['io.flow.v0.models.local_item_deleted'] = PropTypes.exact({
14737
- discriminator: PropTypes.oneOf(['local_item_deleted']).isRequired,
14738
- event_id: PropTypes.string.isRequired,
14739
- timestamp: PropTypes.string.isRequired,
14740
- organization: PropTypes.string.isRequired,
14741
- local_item: T['io.flow.v0.models.local_item'].isRequired,
14742
- });
14743
-
14744
15089
  T['io.flow.v0.models.fulfillment'] = PropTypes.exact({
14745
15090
  organization: PropTypes.string.isRequired,
14746
15091
  key: PropTypes.string.isRequired,
@@ -15247,6 +15592,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
15247
15592
  device_details: T['io.flow.v0.unions.device_details'],
15248
15593
  destination_contact_details: PropTypes.arrayOf(T['io.flow.v0.models.destination_contact_detail']),
15249
15594
  incoterm_summary: T['io.flow.v0.models.incoterm_summary'],
15595
+ payment_source: T['io.flow.v0.enums.order_payment_source_type'],
15250
15596
  });
15251
15597
 
15252
15598
  T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
@@ -15416,6 +15762,7 @@ T['io.flow.v0.models.online_authorization'] = PropTypes.exact({
15416
15762
  processor: T['io.flow.v0.unions.expandable_payment_processor'],
15417
15763
  confirmation_details: T['io.flow.v0.unions.confirmation_details'],
15418
15764
  authorized_at: PropTypes.string,
15765
+ authorization_request_id: PropTypes.string,
15419
15766
  });
15420
15767
 
15421
15768
  T['io.flow.v0.models.online_authorization_upserted_v2'] = PropTypes.exact({
@@ -15519,6 +15866,7 @@ T['io.flow.v0.models.card_authorization'] = PropTypes.exact({
15519
15866
  processor: T['io.flow.v0.unions.expandable_payment_processor'],
15520
15867
  stored_method_usage_step: T['io.flow.v0.enums.stored_method_usage_step'],
15521
15868
  authorized_at: PropTypes.string,
15869
+ authorization_request_id: PropTypes.string,
15522
15870
  });
15523
15871
 
15524
15872
  T['io.flow.v0.models.card_authorization_upserted_v2'] = PropTypes.exact({
@@ -15779,6 +16127,7 @@ T['io.flow.v0.models.order_put_form'] = PropTypes.exact({
15779
16127
  authorization_keys: PropTypes.arrayOf(PropTypes.string),
15780
16128
  options: T['io.flow.v0.models.order_options'],
15781
16129
  device_details: T['io.flow.v0.unions.device_details'],
16130
+ payment_source: T['io.flow.v0.enums.order_payment_source_type'],
15782
16131
  });
15783
16132
 
15784
16133
  T['io.flow.v0.models.order_estimate_form'] = PropTypes.exact({
@@ -15811,6 +16160,7 @@ T['io.flow.v0.models.order_form'] = PropTypes.exact({
15811
16160
  authorization_keys: PropTypes.arrayOf(PropTypes.string),
15812
16161
  options: T['io.flow.v0.models.order_options'],
15813
16162
  device_details: T['io.flow.v0.unions.device_details'],
16163
+ payment_source: T['io.flow.v0.enums.order_payment_source_type'],
15814
16164
  });
15815
16165
 
15816
16166
  T['io.flow.v0.models.order_with_discounts_form'] = PropTypes.exact({
@@ -16020,10 +16370,14 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
16020
16370
  });
16021
16371
 
16022
16372
  T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16373
+ T['io.flow.v0.models.authorization_retry_upserted'],
16374
+ T['io.flow.v0.models.authorization_retry_deleted'],
16023
16375
  T['io.flow.v0.models.test_upserted'],
16024
16376
  T['io.flow.v0.models.generate_load'],
16025
16377
  T['io.flow.v0.models.aldo_item_upserted'],
16026
16378
  T['io.flow.v0.models.aldo_item_deleted'],
16379
+ T['io.flow.v0.models.ansh_item_upserted'],
16380
+ T['io.flow.v0.models.ansh_item_deleted'],
16027
16381
  T['io.flow.v0.models.transaction_upserted'],
16028
16382
  T['io.flow.v0.models.organization_transaction_upserted'],
16029
16383
  T['io.flow.v0.models.organization_transaction_deleted'],
@@ -16050,10 +16404,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16050
16404
  T['io.flow.v0.models.catalog_deleted'],
16051
16405
  T['io.flow.v0.models.subcatalog_upserted'],
16052
16406
  T['io.flow.v0.models.subcatalog_deleted'],
16053
- T['io.flow.v0.models.catalog_item_upserted'],
16054
- T['io.flow.v0.models.catalog_item_deleted'],
16055
- T['io.flow.v0.models.catalog_item_upserted_v2'],
16056
- T['io.flow.v0.models.catalog_item_deleted_v2'],
16057
16407
  T['io.flow.v0.models.subcatalog_item_upserted'],
16058
16408
  T['io.flow.v0.models.subcatalog_item_deleted'],
16059
16409
  T['io.flow.v0.models.catalog_statistics_upserted'],
@@ -16061,6 +16411,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16061
16411
  T['io.flow.v0.models.item_inserted'],
16062
16412
  T['io.flow.v0.models.item_updated'],
16063
16413
  T['io.flow.v0.models.item_deleted'],
16414
+ T['io.flow.v0.models.channel_shopify_order_state_upserted'],
16415
+ T['io.flow.v0.models.channel_shopify_order_state_deleted'],
16064
16416
  T['io.flow.v0.models.channel_upserted'],
16065
16417
  T['io.flow.v0.models.channel_deleted'],
16066
16418
  T['io.flow.v0.models.channel_currency_upserted'],
@@ -16135,6 +16487,11 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16135
16487
  T['io.flow.v0.models.shipping_configuration_item_availability_deleted'],
16136
16488
  T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_upserted'],
16137
16489
  T['io.flow.v0.models.shipping_configuration_item_shipping_pricing_deleted'],
16490
+ T['io.flow.v0.models.ge_item_inserted'],
16491
+ T['io.flow.v0.models.ge_item_updated'],
16492
+ T['io.flow.v0.models.ge_item_deleted'],
16493
+ T['io.flow.v0.models.ge_product_restriction_result_upserted'],
16494
+ T['io.flow.v0.models.ge_product_restriction_result_deleted'],
16138
16495
  T['io.flow.v0.models.hs6_code_upserted'],
16139
16496
  T['io.flow.v0.models.hs6_code_deleted'],
16140
16497
  T['io.flow.v0.models.hs10_code_upserted'],
@@ -16154,8 +16511,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16154
16511
  T['io.flow.v0.models.manifested_label_deleted'],
16155
16512
  T['io.flow.v0.models.label_processing_modification_upserted'],
16156
16513
  T['io.flow.v0.models.label_processing_modification_deleted'],
16157
- T['io.flow.v0.models.local_item_upserted'],
16158
- T['io.flow.v0.models.local_item_deleted'],
16159
16514
  T['io.flow.v0.models.merchant_application_upserted'],
16160
16515
  T['io.flow.v0.models.merchant_application_deleted'],
16161
16516
  T['io.flow.v0.models.checkout_optin_responses_upserted'],
@@ -16209,6 +16564,9 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16209
16564
  T['io.flow.v0.models.price_book_deleted'],
16210
16565
  T['io.flow.v0.models.price_book_item_upserted'],
16211
16566
  T['io.flow.v0.models.price_book_item_deleted'],
16567
+ T['io.flow.v0.models.product_inserted'],
16568
+ T['io.flow.v0.models.product_updated'],
16569
+ T['io.flow.v0.models.product_deleted'],
16212
16570
  T['io.flow.v0.models.organization_rates_published'],
16213
16571
  T['io.flow.v0.models.ratecard_lane_upserted'],
16214
16572
  T['io.flow.v0.models.ratecard_lane_deleted'],
@@ -16408,10 +16766,14 @@ T['io.flow.v0.models.abandoned_order_settings'] = PropTypes.exact({
16408
16766
  T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
16409
16767
 
16410
16768
  T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16769
+ 'authorization_retry_upserted',
16770
+ 'authorization_retry_deleted',
16411
16771
  'test_upserted',
16412
16772
  'generate_load',
16413
16773
  'aldo_item_upserted',
16414
16774
  'aldo_item_deleted',
16775
+ 'ansh_item_upserted',
16776
+ 'ansh_item_deleted',
16415
16777
  'transaction_upserted',
16416
16778
  'organization_transaction_upserted',
16417
16779
  'organization_transaction_deleted',
@@ -16438,10 +16800,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16438
16800
  'catalog_deleted',
16439
16801
  'subcatalog_upserted',
16440
16802
  'subcatalog_deleted',
16441
- 'catalog_item_upserted',
16442
- 'catalog_item_deleted',
16443
- 'catalog_item_upserted_v2',
16444
- 'catalog_item_deleted_v2',
16445
16803
  'subcatalog_item_upserted',
16446
16804
  'subcatalog_item_deleted',
16447
16805
  'catalog_statistics_upserted',
@@ -16449,6 +16807,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16449
16807
  'item_inserted',
16450
16808
  'item_updated',
16451
16809
  'item_deleted',
16810
+ 'channel_shopify_order_state_upserted',
16811
+ 'channel_shopify_order_state_deleted',
16452
16812
  'channel_upserted',
16453
16813
  'channel_deleted',
16454
16814
  'channel_currency_upserted',
@@ -16523,6 +16883,11 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16523
16883
  'shipping_configuration_item_availability_deleted',
16524
16884
  'shipping_configuration_item_shipping_pricing_upserted',
16525
16885
  'shipping_configuration_item_shipping_pricing_deleted',
16886
+ 'ge_item_inserted',
16887
+ 'ge_item_updated',
16888
+ 'ge_item_deleted',
16889
+ 'ge_product_restriction_result_upserted',
16890
+ 'ge_product_restriction_result_deleted',
16526
16891
  'hs6_code_upserted',
16527
16892
  'hs6_code_deleted',
16528
16893
  'hs10_code_upserted',
@@ -16542,8 +16907,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16542
16907
  'manifested_label_deleted',
16543
16908
  'label_processing_modification_upserted',
16544
16909
  'label_processing_modification_deleted',
16545
- 'local_item_upserted',
16546
- 'local_item_deleted',
16547
16910
  'merchant_application_upserted',
16548
16911
  'merchant_application_deleted',
16549
16912
  'checkout_optin_responses_upserted',
@@ -16597,6 +16960,9 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16597
16960
  'price_book_deleted',
16598
16961
  'price_book_item_upserted',
16599
16962
  'price_book_item_deleted',
16963
+ 'product_inserted',
16964
+ 'product_updated',
16965
+ 'product_deleted',
16600
16966
  'organization_rates_published',
16601
16967
  'ratecard_lane_upserted',
16602
16968
  'ratecard_lane_deleted',
@@ -16655,6 +17021,51 @@ T['io.flow.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Clos
16655
17021
  T['io.flow.v0.enums.shopify_grant'] = PropTypes.oneOf(['customer', 'discount', 'gift_card', 'metafield', 'order']);
16656
17022
  T['io.flow.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
16657
17023
  T['io.flow.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
17024
+
17025
+ T['io.flow.v0.enums.substatus_code'] = PropTypes.oneOf([
17026
+ 'Delivered_001',
17027
+ 'Delivered_002',
17028
+ 'Delivered_003',
17029
+ 'Delivered_004',
17030
+ 'AvailableForPickup_001',
17031
+ 'Exception_001',
17032
+ 'Exception_002',
17033
+ 'Exception_003',
17034
+ 'Exception_004',
17035
+ 'Exception_005',
17036
+ 'Exception_006',
17037
+ 'Exception_007',
17038
+ 'Exception_008',
17039
+ 'Exception_009',
17040
+ 'Exception_010',
17041
+ 'Exception_011',
17042
+ 'Exception_012',
17043
+ 'Exception_013',
17044
+ 'AttemptFail_001',
17045
+ 'AttemptFail_002',
17046
+ 'AttemptFail_003',
17047
+ 'InTransit_001',
17048
+ 'InTransit_002',
17049
+ 'InTransit_003',
17050
+ 'InTransit_004',
17051
+ 'InTransit_005',
17052
+ 'InTransit_006',
17053
+ 'InTransit_007',
17054
+ 'InTransit_008',
17055
+ 'InTransit_009',
17056
+ 'InfoReceived_001',
17057
+ 'OutForDelivery_001',
17058
+ 'OutForDelivery_003',
17059
+ 'OutForDelivery_004',
17060
+ 'Pending_001',
17061
+ 'Pending_002',
17062
+ 'Pending_003',
17063
+ 'Pending_004',
17064
+ 'Pending_005',
17065
+ 'Pending_006',
17066
+ 'Expired_001',
17067
+ ]);
17068
+
16658
17069
  T['io.flow.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
16659
17070
  T['io.flow.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
16660
17071
  T['io.flow.v0.enums.tracking_number_type'] = PropTypes.oneOf(['flow', 'carrier']);
@@ -16690,6 +17101,11 @@ T['io.flow.v0.models.card_token_form'] = PropTypes.exact({
16690
17101
  token: PropTypes.string.isRequired,
16691
17102
  });
16692
17103
 
17104
+ T['io.flow.v0.models.carrier_restrictions'] = PropTypes.exact({
17105
+ carrier: PropTypes.string.isRequired,
17106
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
17107
+ });
17108
+
16693
17109
  T['io.flow.v0.models.cart_reference'] = PropTypes.exact({
16694
17110
  id: PropTypes.string.isRequired,
16695
17111
  });
@@ -17262,12 +17678,6 @@ T['io.flow.v0.models.suggestion'] = PropTypes.exact({
17262
17678
  count: PropTypes.number.isRequired,
17263
17679
  });
17264
17680
 
17265
- T['io.flow.v0.models.sync_record_form'] = PropTypes.exact({
17266
- stream_key: PropTypes.string.isRequired,
17267
- system: PropTypes.string.isRequired,
17268
- value: PropTypes.string.isRequired,
17269
- });
17270
-
17271
17681
  T['io.flow.v0.models.tax_registration_form'] = PropTypes.exact({
17272
17682
  number: PropTypes.string.isRequired,
17273
17683
  company_name: PropTypes.string,
@@ -17461,6 +17871,11 @@ T['io.flow.shopify.external.v0.models.count'] = PropTypes.exact({
17461
17871
  count: PropTypes.number.isRequired,
17462
17872
  });
17463
17873
 
17874
+ T['io.flow.shopify.external.v0.models.graphql_metaobject'] = PropTypes.exact({
17875
+ id: PropTypes.string.isRequired,
17876
+ displayName: PropTypes.string.isRequired,
17877
+ });
17878
+
17464
17879
  T['io.flow.shopify.external.v0.models.product_delete'] = PropTypes.exact({
17465
17880
  id: PropTypes.number.isRequired,
17466
17881
  });
@@ -17621,6 +18036,24 @@ T['io.flow.token.v0.models.token_validation_form'] = PropTypes.exact({
17621
18036
  });
17622
18037
 
17623
18038
  T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
18039
+
18040
+ T['io.flow.channel.v0.models.channel_authorization'] = PropTypes.exact({
18041
+ placeholder: PropTypes.string,
18042
+ });
18043
+
18044
+ T['io.flow.channel.v0.models.channel_authorization_form'] = PropTypes.exact({
18045
+ channel_id: PropTypes.string.isRequired,
18046
+ });
18047
+
18048
+ T['io.flow.channel.v0.models.channel_organization_authorization'] = PropTypes.exact({
18049
+ placeholder: PropTypes.string,
18050
+ });
18051
+
18052
+ T['io.flow.channel.v0.models.channel_organization_authorization_form'] = PropTypes.exact({
18053
+ channel_id: PropTypes.string.isRequired,
18054
+ organization_id: PropTypes.string.isRequired,
18055
+ });
18056
+
17624
18057
  T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
17625
18058
 
17626
18059
  T['io.flow.reference.v0.models.country'] = PropTypes.exact({
@@ -17656,10 +18089,6 @@ T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
17656
18089
  offset: PropTypes.number.isRequired,
17657
18090
  });
17658
18091
 
17659
- T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
17660
- name: PropTypes.string.isRequired,
17661
- });
17662
-
17663
18092
  T['io.flow.fulfillment.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
17664
18093
 
17665
18094
  T['io.flow.fulfillment.v0.models.center_query'] = PropTypes.exact({
@@ -17710,6 +18139,16 @@ T['io.flow.organization.v0.models.organization_default_configurations_form'] = P
17710
18139
  id: PropTypes.string.isRequired,
17711
18140
  });
17712
18141
 
18142
+ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject', 'auto_accept']);
18143
+
18144
+ T['io.flow.channel.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
18145
+ placeholder: PropTypes.string,
18146
+ });
18147
+
18148
+ T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
18149
+ name: PropTypes.string.isRequired,
18150
+ });
18151
+
17713
18152
  T['io.flow.catalog.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
17714
18153
  T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
17715
18154
  T['io.flow.catalog.v0.enums.return_item_status'] = PropTypes.oneOf(['returnable', 'non-returnable']);
@@ -17817,6 +18256,8 @@ export const allocationV2 = T['io.flow.v0.models.allocation_v2'];
17817
18256
  export const amountMargin = T['io.flow.v0.models.amount_margin'];
17818
18257
  export const amountMarginForm = T['io.flow.v0.models.amount_margin_form'];
17819
18258
  export const analyticsExportType = T['io.flow.v0.models.analytics_export_type'];
18259
+ export const anshItemDeleted = T['io.flow.v0.models.ansh_item_deleted'];
18260
+ export const anshItemUpserted = T['io.flow.v0.models.ansh_item_upserted'];
17820
18261
  export const applePayMerchantValidationPayload = T['io.flow.v0.models.apple_pay_merchant_validation_payload'];
17821
18262
  export const applepaySdkCreateResultActionDetails = T['io.flow.v0.models.applepay_sdk_create_result_action_details'];
17822
18263
  export const applepaySdkValidateResultActionDetails = T['io.flow.v0.models.applepay_sdk_validate_result_action_details'];
@@ -17856,6 +18297,9 @@ export const authorizationResultActionPost = T['io.flow.v0.models.authorization_
17856
18297
  export const authorizationResultActionType = T['io.flow.v0.enums.authorization_result_action_type'];
17857
18298
  export const authorizationResultActionWait = T['io.flow.v0.models.authorization_result_action_wait'];
17858
18299
  export const authorizationResultDescription = T['io.flow.v0.models.authorization_result_description'];
18300
+ export const authorizationRetry = T['io.flow.v0.models.authorization_retry'];
18301
+ export const authorizationRetryDeleted = T['io.flow.v0.models.authorization_retry_deleted'];
18302
+ export const authorizationRetryUpserted = T['io.flow.v0.models.authorization_retry_upserted'];
17859
18303
  export const authorizationStatus = T['io.flow.v0.enums.authorization_status'];
17860
18304
  export const authorizationStatusChanged = T['io.flow.v0.models.authorization_status_changed'];
17861
18305
  export const authorizationVersion = T['io.flow.v0.models.authorization_version'];
@@ -17952,19 +18396,16 @@ export const cardVersion = T['io.flow.v0.models.card_version'];
17952
18396
  export const carrier = T['io.flow.v0.models.carrier'];
17953
18397
  export const carrierChargeReason = T['io.flow.v0.enums.carrier_charge_reason'];
17954
18398
  export const carrierReference = T['io.flow.v0.models.carrier_reference'];
18399
+ export const carrierRestrictions = T['io.flow.v0.models.carrier_restrictions'];
17955
18400
  export const carrierService = T['io.flow.v0.models.carrier_service'];
17956
18401
  export const cartReference = T['io.flow.v0.models.cart_reference'];
17957
18402
  export const catalog = T['io.flow.v0.models.catalog'];
17958
18403
  export const catalogDeleted = T['io.flow.v0.models.catalog_deleted'];
17959
- export const catalogItemDeleted = T['io.flow.v0.models.catalog_item_deleted'];
17960
- export const catalogItemDeletedV2 = T['io.flow.v0.models.catalog_item_deleted_v2'];
17961
18404
  export const catalogItemDocument = T['io.flow.v0.models.catalog_item_document'];
17962
18405
  export const catalogItemDocumentImages = T['io.flow.v0.models.catalog_item_document_images'];
17963
18406
  export const catalogItemExportType = T['io.flow.v0.models.catalog_item_export_type'];
17964
18407
  export const catalogItemReference = T['io.flow.v0.models.catalog_item_reference'];
17965
18408
  export const catalogItemSummary = T['io.flow.v0.models.catalog_item_summary'];
17966
- export const catalogItemUpserted = T['io.flow.v0.models.catalog_item_upserted'];
17967
- export const catalogItemUpsertedV2 = T['io.flow.v0.models.catalog_item_upserted_v2'];
17968
18409
  export const catalogPriceBookItemDocument = T['io.flow.v0.models.catalog_price_book_item_document'];
17969
18410
  export const catalogReference = T['io.flow.v0.models.catalog_reference'];
17970
18411
  export const catalogStatistics = T['io.flow.v0.models.catalog_statistics'];
@@ -18010,6 +18451,12 @@ export const channelPendingPayoutTransactionDeleted = T['io.flow.v0.models.chann
18010
18451
  export const channelPendingPayoutTransactionUpserted = T['io.flow.v0.models.channel_pending_payout_transaction_upserted'];
18011
18452
  export const channelRate = T['io.flow.v0.models.channel_rate'];
18012
18453
  export const channelReference = T['io.flow.v0.models.channel_reference'];
18454
+ export const channelShopifyOrderState = T['io.flow.v0.models.channel_shopify_order_state'];
18455
+ export const channelShopifyOrderStateDeleted = T['io.flow.v0.models.channel_shopify_order_state_deleted'];
18456
+ export const channelShopifyOrderStateReason = T['io.flow.v0.models.channel_shopify_order_state_reason'];
18457
+ export const channelShopifyOrderStateReasonCode = T['io.flow.v0.enums.channel_shopify_order_state_reason_code'];
18458
+ export const channelShopifyOrderStateUpserted = T['io.flow.v0.models.channel_shopify_order_state_upserted'];
18459
+ export const channelShopifyOrderSummary = T['io.flow.v0.models.channel_shopify_order_summary'];
18013
18460
  export const channelStatement = T['io.flow.v0.models.channel_statement'];
18014
18461
  export const channelStatementDeleted = T['io.flow.v0.models.channel_statement_deleted'];
18015
18462
  export const channelStatementUpserted = T['io.flow.v0.models.channel_statement_upserted'];
@@ -18372,6 +18819,11 @@ export const fulfillmentRouting = T['io.flow.v0.enums.fulfillment_routing'];
18372
18819
  export const fullyHarmonizedItemUpserted = T['io.flow.v0.models.fully_harmonized_item_upserted'];
18373
18820
  export const gatewayAuthenticationData = T['io.flow.v0.unions.gateway_authentication_data'];
18374
18821
  export const gatewayAuthenticationDataForm = T['io.flow.v0.unions.gateway_authentication_data_form'];
18822
+ export const geItemDeleted = T['io.flow.v0.models.ge_item_deleted'];
18823
+ export const geItemInserted = T['io.flow.v0.models.ge_item_inserted'];
18824
+ export const geItemUpdated = T['io.flow.v0.models.ge_item_updated'];
18825
+ export const geProductRestrictionResultDeleted = T['io.flow.v0.models.ge_product_restriction_result_deleted'];
18826
+ export const geProductRestrictionResultUpserted = T['io.flow.v0.models.ge_product_restriction_result_upserted'];
18375
18827
  export const generateLoad = T['io.flow.v0.models.generate_load'];
18376
18828
  export const genericError = T['io.flow.v0.models.generic_error'];
18377
18829
  export const genericErrorCode = T['io.flow.v0.enums.generic_error_code'];
@@ -18533,9 +18985,7 @@ export const link = T['io.flow.v0.models.link'];
18533
18985
  export const local = T['io.flow.v0.models.local'];
18534
18986
  export const localItem = T['io.flow.v0.models.local_item'];
18535
18987
  export const localItemAttributePricing = T['io.flow.v0.models.local_item_attribute_pricing'];
18536
- export const localItemDeleted = T['io.flow.v0.models.local_item_deleted'];
18537
18988
  export const localItemPricing = T['io.flow.v0.models.local_item_pricing'];
18538
- export const localItemUpserted = T['io.flow.v0.models.local_item_upserted'];
18539
18989
  export const localPriceDetails = T['io.flow.v0.models.local_price_details'];
18540
18990
  export const localSession = T['io.flow.v0.models.local_session'];
18541
18991
  export const locale = T['io.flow.v0.models.locale'];
@@ -18679,6 +19129,7 @@ export const orderNumberGeneratorUuid = T['io.flow.v0.models.order_number_genera
18679
19129
  export const orderNumberReference = T['io.flow.v0.models.order_number_reference'];
18680
19130
  export const orderOptions = T['io.flow.v0.models.order_options'];
18681
19131
  export const orderPayment = T['io.flow.v0.models.order_payment'];
19132
+ export const orderPaymentSourceType = T['io.flow.v0.enums.order_payment_source_type'];
18682
19133
  export const orderPaymentType = T['io.flow.v0.enums.order_payment_type'];
18683
19134
  export const orderPlaced = T['io.flow.v0.models.order_placed'];
18684
19135
  export const orderPlacedDetails = T['io.flow.v0.models.order_placed_details'];
@@ -18965,7 +19416,6 @@ export const priceBookDeleted = T['io.flow.v0.models.price_book_deleted'];
18965
19416
  export const priceBookForm = T['io.flow.v0.models.price_book_form'];
18966
19417
  export const priceBookItem = T['io.flow.v0.models.price_book_item'];
18967
19418
  export const priceBookItemDeleted = T['io.flow.v0.models.price_book_item_deleted'];
18968
- export const priceBookItemExportOptions = T['io.flow.v0.models.price_book_item_export_options'];
18969
19419
  export const priceBookItemExportType = T['io.flow.v0.models.price_book_item_export_type'];
18970
19420
  export const priceBookItemForm = T['io.flow.v0.models.price_book_item_form'];
18971
19421
  export const priceBookItemQueryForm = T['io.flow.v0.models.price_book_item_query_form'];
@@ -18998,12 +19448,15 @@ export const pricingUpserted = T['io.flow.v0.models.pricing_upserted'];
18998
19448
  export const pricingVersion = T['io.flow.v0.models.pricing_version'];
18999
19449
  export const processingEstimate = T['io.flow.v0.models.processing_estimate'];
19000
19450
  export const product = T['io.flow.v0.models.product'];
19451
+ export const productDeleted = T['io.flow.v0.models.product_deleted'];
19452
+ export const productInserted = T['io.flow.v0.models.product_inserted'];
19001
19453
  export const productRestrictionResult = T['io.flow.v0.models.product_restriction_result'];
19002
19454
  export const productRestrictionResultDeleted = T['io.flow.v0.models.product_restriction_result_deleted'];
19003
19455
  export const productRestrictionResultUpserted = T['io.flow.v0.models.product_restriction_result_upserted'];
19004
19456
  export const productRestrictionRule = T['io.flow.v0.enums.product_restriction_rule'];
19005
19457
  export const productTaxonomyCategory = T['io.flow.v0.models.product_taxonomy_category'];
19006
19458
  export const productTaxonomyData = T['io.flow.v0.models.product_taxonomy_data'];
19459
+ export const productUpdated = T['io.flow.v0.models.product_updated'];
19007
19460
  export const promotion = T['io.flow.v0.unions.promotion'];
19008
19461
  export const promotionTrigger = T['io.flow.v0.models.promotion_trigger'];
19009
19462
  export const promotionTriggerForm = T['io.flow.v0.models.promotion_trigger_form'];
@@ -19298,6 +19751,7 @@ export const subcatalogSettingsForm = T['io.flow.v0.models.subcatalog_settings_f
19298
19751
  export const subcatalogStatistics = T['io.flow.v0.models.subcatalog_statistics'];
19299
19752
  export const subcatalogUpserted = T['io.flow.v0.models.subcatalog_upserted'];
19300
19753
  export const subcatalogVersion = T['io.flow.v0.models.subcatalog_version'];
19754
+ export const substatusCode = T['io.flow.v0.enums.substatus_code'];
19301
19755
  export const suggestion = T['io.flow.v0.models.suggestion'];
19302
19756
  export const summaryShippingLabelForm = T['io.flow.v0.models.summary_shipping_label_form'];
19303
19757
  export const summaryShippingNotificationForm = T['io.flow.v0.models.summary_shipping_notification_form'];
@@ -19305,20 +19759,6 @@ export const surchargeResponsibleParty = T['io.flow.v0.enums.surcharge_responsib
19305
19759
  export const surchargeResponsiblePartyDisplay = T['io.flow.v0.models.surcharge_responsible_party_display'];
19306
19760
  export const surchargeSetting = T['io.flow.v0.models.surcharge_setting'];
19307
19761
  export const surchargeSettingDisplay = T['io.flow.v0.models.surcharge_setting_display'];
19308
- export const syncDuration = T['io.flow.v0.models.sync_duration'];
19309
- export const syncPendingRecord = T['io.flow.v0.models.sync_pending_record'];
19310
- export const syncRecord = T['io.flow.v0.models.sync_record'];
19311
- export const syncRecordFailure = T['io.flow.v0.models.sync_record_failure'];
19312
- export const syncRecordFailureForm = T['io.flow.v0.models.sync_record_failure_form'];
19313
- export const syncRecordFailureReason = T['io.flow.v0.enums.sync_record_failure_reason'];
19314
- export const syncRecordForm = T['io.flow.v0.models.sync_record_form'];
19315
- export const syncStream = T['io.flow.v0.models.sync_stream'];
19316
- export const syncStreamForm = T['io.flow.v0.models.sync_stream_form'];
19317
- export const syncStreamReference = T['io.flow.v0.models.sync_stream_reference'];
19318
- export const syncStreamSettings = T['io.flow.v0.models.sync_stream_settings'];
19319
- export const syncStreamSettingsForm = T['io.flow.v0.models.sync_stream_settings_form'];
19320
- export const syncStreamType = T['io.flow.v0.enums.sync_stream_type'];
19321
- export const syncUnitOfTime = T['io.flow.v0.enums.sync_unit_of_time'];
19322
19762
  export const tax = T['io.flow.v0.models.tax'];
19323
19763
  export const taxApplicability = T['io.flow.v0.enums.tax_applicability'];
19324
19764
  export const taxRegistration = T['io.flow.v0.models.tax_registration'];