@flowio/api-internal-prop-types 9.24.142 → 9.24.144

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.
@@ -66,6 +66,8 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
66
66
  source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
67
67
  });
68
68
 
69
+ T['io.flow.sellability.v0.enums.sellability_reprocess_policy'] = PropTypes.oneOf(['default', 'force']);
70
+
69
71
  T['io.flow.sellability.v0.models.sellability_reason_with_regions'] = PropTypes.exact({
70
72
  reason: PropTypes.string.isRequired,
71
73
  regions: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -728,6 +730,84 @@ T['io.flow.shopify.merchant.config.v0.unions.entity'] = PropTypes.oneOfType([
728
730
  T['io.flow.shopify.merchant.config.v0.models.individual'],
729
731
  ]);
730
732
 
733
+ T['io.flow.shopify.external.v2.v0.models.variant_image_node'] = PropTypes.exact({
734
+ id: PropTypes.string,
735
+ url: PropTypes.string,
736
+ });
737
+
738
+ T['io.flow.shopify.external.v2.v0.models.product_reference_node'] = PropTypes.exact({
739
+ id: PropTypes.string.isRequired,
740
+ });
741
+
742
+ T['io.flow.shopify.external.v2.v0.models.variant_reference_node'] = PropTypes.exact({
743
+ id: PropTypes.string.isRequired,
744
+ sku: PropTypes.string,
745
+ product: T['io.flow.shopify.external.v2.v0.models.product_reference_node'],
746
+ });
747
+
748
+ T['io.flow.shopify.external.v2.v0.models.product_variant_component_node'] = PropTypes.exact({
749
+ id: PropTypes.string.isRequired,
750
+ quantity: PropTypes.number,
751
+ productVariant: T['io.flow.shopify.external.v2.v0.models.variant_reference_node'],
752
+ });
753
+
754
+ T['io.flow.shopify.external.v2.v0.models.product_variant_component_connection'] = PropTypes.exact({
755
+ nodes: PropTypes.arrayOf(T['io.flow.shopify.external.v2.v0.models.product_variant_component_node']).isRequired,
756
+ });
757
+
758
+ T['io.flow.shopify.external.v2.v0.models.shop_node'] = PropTypes.exact({
759
+ id: PropTypes.string.isRequired,
760
+ currencyCode: PropTypes.string,
761
+ myshopifyDomain: PropTypes.string,
762
+ });
763
+
764
+ T['io.flow.shopify.external.v2.v0.models.image_node'] = PropTypes.exact({
765
+ id: PropTypes.string,
766
+ url: PropTypes.string,
767
+ });
768
+
769
+ T['io.flow.shopify.external.v2.v0.models.image_connection'] = PropTypes.exact({
770
+ nodes: PropTypes.arrayOf(T['io.flow.shopify.external.v2.v0.models.image_node']).isRequired,
771
+ });
772
+
773
+ T['io.flow.shopify.external.v2.v0.models.country_harmonized_system_code_node'] = PropTypes.exact({
774
+ harmonizedSystemCode: PropTypes.string,
775
+ countryCode: PropTypes.string,
776
+ });
777
+
778
+ T['io.flow.shopify.external.v2.v0.models.country_harmonized_system_code_connection'] = PropTypes.exact({
779
+ nodes: PropTypes.arrayOf(
780
+ T['io.flow.shopify.external.v2.v0.models.country_harmonized_system_code_node'],
781
+ ).isRequired,
782
+ });
783
+
784
+ T['io.flow.shopify.external.v2.v0.models.inventory_item_node'] = PropTypes.exact({
785
+ id: PropTypes.string,
786
+ countryCodeOfOrigin: PropTypes.string,
787
+ harmonizedSystemCode: PropTypes.string,
788
+ countryHarmonizedSystemCodes: T['io.flow.shopify.external.v2.v0.models.country_harmonized_system_code_connection'],
789
+ requiresShipping: PropTypes.bool,
790
+ variant: T['io.flow.shopify.external.v2.v0.models.variant_reference_node'],
791
+ });
792
+
793
+ T['io.flow.shopify.external.v2.v0.models.variant_node'] = PropTypes.exact({
794
+ id: PropTypes.string.isRequired,
795
+ sku: PropTypes.string,
796
+ price: PropTypes.string,
797
+ title: PropTypes.string,
798
+ barcode: PropTypes.string,
799
+ taxable: PropTypes.bool,
800
+ inventoryPolicy: PropTypes.string,
801
+ requiresComponents: PropTypes.bool,
802
+ image: T['io.flow.shopify.external.v2.v0.models.variant_image_node'],
803
+ inventoryItem: T['io.flow.shopify.external.v2.v0.models.inventory_item_node'],
804
+ productVariantComponents: T['io.flow.shopify.external.v2.v0.models.product_variant_component_connection'],
805
+ });
806
+
807
+ T['io.flow.shopify.external.v2.v0.models.variant_connection'] = PropTypes.exact({
808
+ nodes: PropTypes.arrayOf(T['io.flow.shopify.external.v2.v0.models.variant_node']).isRequired,
809
+ });
810
+
731
811
  T['io.flow.crypto.v0.enums.reason_type'] = PropTypes.oneOf(['duplicate', 'fraudulent', 'requested_by_customer']);
732
812
 
733
813
  T['io.flow.crypto.v0.models.refund_request'] = PropTypes.exact({
@@ -2874,6 +2954,33 @@ T['io.flow.shopify.external.v0.models.graphql_metaobject_field'] = PropTypes.exa
2874
2954
  type: PropTypes.string,
2875
2955
  });
2876
2956
 
2957
+ T['io.flow.shopify.external.v2.v0.models.metaobject_node'] = PropTypes.exact({
2958
+ id: PropTypes.string.isRequired,
2959
+ type: PropTypes.string,
2960
+ displayName: PropTypes.string,
2961
+ fields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_metaobject_field']).isRequired,
2962
+ });
2963
+
2964
+ T['io.flow.shopify.external.v2.v0.models.metafield_reference_edge'] = PropTypes.exact({
2965
+ node: T['io.flow.shopify.external.v2.v0.models.metaobject_node'],
2966
+ });
2967
+
2968
+ T['io.flow.shopify.external.v2.v0.models.metafield_reference_connection'] = PropTypes.exact({
2969
+ edges: PropTypes.arrayOf(T['io.flow.shopify.external.v2.v0.models.metafield_reference_edge']).isRequired,
2970
+ });
2971
+
2972
+ T['io.flow.shopify.external.v2.v0.models.metafield_node'] = PropTypes.exact({
2973
+ namespace: PropTypes.string,
2974
+ key: PropTypes.string.isRequired,
2975
+ value: PropTypes.string,
2976
+ type: PropTypes.string,
2977
+ references: T['io.flow.shopify.external.v2.v0.models.metafield_reference_connection'],
2978
+ });
2979
+
2980
+ T['io.flow.shopify.external.v2.v0.models.metafield_connection'] = PropTypes.exact({
2981
+ nodes: PropTypes.arrayOf(T['io.flow.shopify.external.v2.v0.models.metafield_node']).isRequired,
2982
+ });
2983
+
2877
2984
  T['io.flow.shopify.external.v0.models.graphql_metaobject'] = PropTypes.exact({
2878
2985
  id: PropTypes.string.isRequired,
2879
2986
  displayName: PropTypes.string.isRequired,
@@ -2923,6 +3030,25 @@ T['io.flow.shopify.external.v0.models.graphql_inferred_product_category'] = Prop
2923
3030
  category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
2924
3031
  });
2925
3032
 
3033
+ T['io.flow.shopify.external.v2.v0.models.product_node'] = PropTypes.exact({
3034
+ id: PropTypes.string.isRequired,
3035
+ handle: PropTypes.string,
3036
+ title: PropTypes.string,
3037
+ productType: PropTypes.string,
3038
+ status: PropTypes.string,
3039
+ createdAt: PropTypes.string,
3040
+ updatedAt: PropTypes.string,
3041
+ publishedAt: PropTypes.string,
3042
+ hasVariantsThatRequiresComponents: PropTypes.bool,
3043
+ descriptionHtml: PropTypes.string,
3044
+ tags: PropTypes.arrayOf(PropTypes.string),
3045
+ category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
3046
+ inferredProductCategory: T['io.flow.shopify.external.v0.models.graphql_inferred_product_category'],
3047
+ images: T['io.flow.shopify.external.v2.v0.models.image_connection'],
3048
+ metafields: T['io.flow.shopify.external.v2.v0.models.metafield_connection'],
3049
+ variants: T['io.flow.shopify.external.v2.v0.models.variant_connection'],
3050
+ });
3051
+
2926
3052
  T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
2927
3053
  id: PropTypes.string.isRequired,
2928
3054
  legacyResourceId: PropTypes.string.isRequired,
@@ -4880,12 +5006,6 @@ T['io.flow.external.paypal.v1.models.paypal_dispute_event'] = PropTypes.exact({
4880
5006
  resource: T['io.flow.external.paypal.v1.models.dispute'].isRequired,
4881
5007
  });
4882
5008
 
4883
- T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
4884
- id: PropTypes.string.isRequired,
4885
- flow_tracking_number: PropTypes.string.isRequired,
4886
- carrier_tracking_number: PropTypes.string.isRequired,
4887
- });
4888
-
4889
5009
  T['io.flow.label.v0.enums.origin_location_source'] = PropTypes.oneOf([
4890
5010
  'public_hub_code',
4891
5011
  'merchant_hub_code_override',
@@ -9194,8 +9314,8 @@ T['io.flow.internal.v0.models.label_tracking_summary_deleted'] = PropTypes.exact
9194
9314
  id: PropTypes.string.isRequired,
9195
9315
  });
9196
9316
 
9197
- T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'] = PropTypes.exact({
9198
- discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_deleted']).isRequired,
9317
+ T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee_deleted'] = PropTypes.exact({
9318
+ discriminator: PropTypes.oneOf(['guaranteed_shipping_order_guarantee_deleted']).isRequired,
9199
9319
  event_id: PropTypes.string.isRequired,
9200
9320
  timestamp: PropTypes.string.isRequired,
9201
9321
  organization: PropTypes.string.isRequired,
@@ -9338,6 +9458,15 @@ T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'] = P
9338
9458
  id: PropTypes.string.isRequired,
9339
9459
  });
9340
9460
 
9461
+ T['io.flow.internal.v0.models.average_order_value_deleted'] = PropTypes.exact({
9462
+ discriminator: PropTypes.oneOf(['average_order_value_deleted']).isRequired,
9463
+ event_id: PropTypes.string.isRequired,
9464
+ timestamp: PropTypes.string.isRequired,
9465
+ organization: PropTypes.string.isRequired,
9466
+ channel_id: PropTypes.string.isRequired,
9467
+ id: PropTypes.string.isRequired,
9468
+ });
9469
+
9341
9470
  T['io.flow.internal.v0.models.outbound_shipping_cost_deleted'] = PropTypes.exact({
9342
9471
  discriminator: PropTypes.oneOf(['outbound_shipping_cost_deleted']).isRequired,
9343
9472
  event_id: PropTypes.string.isRequired,
@@ -9814,6 +9943,27 @@ T['io.flow.internal.v0.models.channel_billed_transaction_deleted'] = PropTypes.e
9814
9943
  id: PropTypes.string.isRequired,
9815
9944
  });
9816
9945
 
9946
+ T['io.flow.internal.v0.models.transaction_adjustment_deleted'] = PropTypes.exact({
9947
+ discriminator: PropTypes.oneOf(['transaction_adjustment_deleted']).isRequired,
9948
+ event_id: PropTypes.string.isRequired,
9949
+ timestamp: PropTypes.string.isRequired,
9950
+ id: PropTypes.string.isRequired,
9951
+ });
9952
+
9953
+ T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction_deleted'] = PropTypes.exact({
9954
+ discriminator: PropTypes.oneOf(['non_l4l_tax_duty_fx_transaction_deleted']).isRequired,
9955
+ event_id: PropTypes.string.isRequired,
9956
+ timestamp: PropTypes.string.isRequired,
9957
+ id: PropTypes.string.isRequired,
9958
+ });
9959
+
9960
+ T['io.flow.internal.v0.models.ge_revenue_share_transaction_deleted'] = PropTypes.exact({
9961
+ discriminator: PropTypes.oneOf(['ge_revenue_share_transaction_deleted']).isRequired,
9962
+ event_id: PropTypes.string.isRequired,
9963
+ timestamp: PropTypes.string.isRequired,
9964
+ id: PropTypes.string.isRequired,
9965
+ });
9966
+
9817
9967
  T['io.flow.internal.v0.models.label_transaction_deleted'] = PropTypes.exact({
9818
9968
  discriminator: PropTypes.oneOf(['label_transaction_deleted']).isRequired,
9819
9969
  event_id: PropTypes.string.isRequired,
@@ -10294,6 +10444,9 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
10294
10444
  'full_refund_without_shipment',
10295
10445
  'unfulfilled_order_above_de_min',
10296
10446
  'order_cancellation_without_capture',
10447
+ 'order_cancellation_marked_as_paid',
10448
+ 'order_cancellation_after_capture',
10449
+ 'order_rejection',
10297
10450
  ]);
10298
10451
 
10299
10452
  T['io.flow.billing.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
@@ -10865,6 +11018,22 @@ T['io.flow.internal.v0.models.shopify_product_delete_upserted'] = PropTypes.exac
10865
11018
  shopify_product_delete: T['io.flow.internal.v0.models.shopify_product_delete_webhook_event'].isRequired,
10866
11019
  });
10867
11020
 
11021
+ T['io.flow.shopify.external.v2.v0.models.product_query_variables'] = PropTypes.exact({
11022
+ productId: PropTypes.string.isRequired,
11023
+ variantsId: PropTypes.string,
11024
+ });
11025
+
11026
+ T['io.flow.shopify.external.v2.v0.models.product_data'] = PropTypes.exact({
11027
+ shop: T['io.flow.shopify.external.v2.v0.models.shop_node'].isRequired,
11028
+ product: T['io.flow.shopify.external.v2.v0.models.product_node'],
11029
+ productVariant: T['io.flow.shopify.external.v2.v0.models.variant_node'],
11030
+ });
11031
+
11032
+ T['io.flow.shopify.external.v0.models.product_variant_gid'] = PropTypes.exact({
11033
+ admin_graphql_api_id: PropTypes.string.isRequired,
11034
+ updated_at: PropTypes.string.isRequired,
11035
+ });
11036
+
10868
11037
  T['io.flow.shopify.external.v0.models.product_metafield'] = PropTypes.exact({
10869
11038
  id: PropTypes.number.isRequired,
10870
11039
  namespace: PropTypes.string.isRequired,
@@ -10952,6 +11121,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
10952
11121
  has_variants_that_requires_components: PropTypes.bool,
10953
11122
  category: T['io.flow.shopify.external.v0.models.rest_taxonomy_category'],
10954
11123
  metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_metafield']),
11124
+ variant_gids: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.product_variant_gid']),
10955
11125
  });
10956
11126
 
10957
11127
  T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
@@ -11414,6 +11584,148 @@ T['io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted'] =
11414
11584
  shopify_markets_best_selling_product: T['io.flow.internal.v0.models.shopify_markets_best_selling_product'].isRequired,
11415
11585
  });
11416
11586
 
11587
+ T['io.flow.shopify.external.v2.v0.models.inventory_item_data'] = PropTypes.exact({
11588
+ shop: T['io.flow.shopify.external.v2.v0.models.shop_node'].isRequired,
11589
+ inventoryItem: T['io.flow.shopify.external.v2.v0.models.inventory_item_node'],
11590
+ });
11591
+
11592
+ T['io.flow.shopify.external.v2.v0.models.inventory_item_query_variables'] = PropTypes.exact({
11593
+ inventoryItemId: PropTypes.string.isRequired,
11594
+ });
11595
+
11596
+ T['io.flow.shopify.external.v2.v0.models.fields_changed'] = PropTypes.exact({
11597
+ added: PropTypes.arrayOf(PropTypes.string).isRequired,
11598
+ updated: PropTypes.arrayOf(PropTypes.string).isRequired,
11599
+ removed: PropTypes.arrayOf(PropTypes.string).isRequired,
11600
+ });
11601
+
11602
+ T['io.flow.shopify.external.v2.v0.models.product_event'] = PropTypes.exact({
11603
+ topic: PropTypes.string.isRequired,
11604
+ action: PropTypes.string.isRequired,
11605
+ handle: PropTypes.string.isRequired,
11606
+ data: T['io.flow.shopify.external.v2.v0.models.product_data'].isRequired,
11607
+ fields_changed: T['io.flow.shopify.external.v2.v0.models.fields_changed'],
11608
+ query_variables: T['io.flow.shopify.external.v2.v0.models.product_query_variables'].isRequired,
11609
+ });
11610
+
11611
+ T['io.flow.internal.v0.models.shopify_product_variant_data_v2'] = PropTypes.exact({
11612
+ discriminator: PropTypes.oneOf(['shopify_product_variant_data_v2']).isRequired,
11613
+ event_id: PropTypes.string.isRequired,
11614
+ timestamp: PropTypes.string.isRequired,
11615
+ organization: PropTypes.string.isRequired,
11616
+ triggered_at: PropTypes.string.isRequired,
11617
+ webhook_id: PropTypes.string.isRequired,
11618
+ product_id: PropTypes.string.isRequired,
11619
+ variant_id: PropTypes.string,
11620
+ event: T['io.flow.shopify.external.v2.v0.models.product_event'].isRequired,
11621
+ });
11622
+
11623
+ T['io.flow.internal.v0.models.shopify_product_variant_components_v2'] = PropTypes.exact({
11624
+ discriminator: PropTypes.oneOf(['shopify_product_variant_components_v2']).isRequired,
11625
+ event_id: PropTypes.string.isRequired,
11626
+ timestamp: PropTypes.string.isRequired,
11627
+ organization: PropTypes.string.isRequired,
11628
+ triggered_at: PropTypes.string.isRequired,
11629
+ webhook_id: PropTypes.string.isRequired,
11630
+ product_id: PropTypes.string.isRequired,
11631
+ variant_id: PropTypes.string,
11632
+ event: T['io.flow.shopify.external.v2.v0.models.product_event'].isRequired,
11633
+ });
11634
+
11635
+ T['io.flow.internal.v0.models.shopify_product_metafields_update_v2'] = PropTypes.exact({
11636
+ discriminator: PropTypes.oneOf(['shopify_product_metafields_update_v2']).isRequired,
11637
+ event_id: PropTypes.string.isRequired,
11638
+ timestamp: PropTypes.string.isRequired,
11639
+ organization: PropTypes.string.isRequired,
11640
+ triggered_at: PropTypes.string.isRequired,
11641
+ webhook_id: PropTypes.string.isRequired,
11642
+ product_id: PropTypes.string.isRequired,
11643
+ variant_id: PropTypes.string,
11644
+ event: T['io.flow.shopify.external.v2.v0.models.product_event'].isRequired,
11645
+ });
11646
+
11647
+ T['io.flow.internal.v0.models.shopify_product_data_update_v2'] = PropTypes.exact({
11648
+ discriminator: PropTypes.oneOf(['shopify_product_data_update_v2']).isRequired,
11649
+ event_id: PropTypes.string.isRequired,
11650
+ timestamp: PropTypes.string.isRequired,
11651
+ organization: PropTypes.string.isRequired,
11652
+ triggered_at: PropTypes.string.isRequired,
11653
+ webhook_id: PropTypes.string.isRequired,
11654
+ product_id: PropTypes.string.isRequired,
11655
+ variant_id: PropTypes.string,
11656
+ event: T['io.flow.shopify.external.v2.v0.models.product_event'].isRequired,
11657
+ });
11658
+
11659
+ T['io.flow.internal.v0.models.shopify_product_data_delete_v2'] = PropTypes.exact({
11660
+ discriminator: PropTypes.oneOf(['shopify_product_data_delete_v2']).isRequired,
11661
+ event_id: PropTypes.string.isRequired,
11662
+ timestamp: PropTypes.string.isRequired,
11663
+ organization: PropTypes.string.isRequired,
11664
+ triggered_at: PropTypes.string.isRequired,
11665
+ webhook_id: PropTypes.string.isRequired,
11666
+ product_id: PropTypes.string.isRequired,
11667
+ variant_id: PropTypes.string,
11668
+ event: T['io.flow.shopify.external.v2.v0.models.product_event'].isRequired,
11669
+ });
11670
+
11671
+ T['io.flow.internal.v0.models.shopify_product_data_create_v2'] = PropTypes.exact({
11672
+ discriminator: PropTypes.oneOf(['shopify_product_data_create_v2']).isRequired,
11673
+ event_id: PropTypes.string.isRequired,
11674
+ timestamp: PropTypes.string.isRequired,
11675
+ organization: PropTypes.string.isRequired,
11676
+ triggered_at: PropTypes.string.isRequired,
11677
+ webhook_id: PropTypes.string.isRequired,
11678
+ product_id: PropTypes.string.isRequired,
11679
+ variant_id: PropTypes.string,
11680
+ event: T['io.flow.shopify.external.v2.v0.models.product_event'].isRequired,
11681
+ });
11682
+
11683
+ T['io.flow.shopify.external.v2.v0.models.inventory_item_event'] = PropTypes.exact({
11684
+ topic: PropTypes.string.isRequired,
11685
+ action: PropTypes.string.isRequired,
11686
+ handle: PropTypes.string.isRequired,
11687
+ data: T['io.flow.shopify.external.v2.v0.models.inventory_item_data'].isRequired,
11688
+ fields_changed: T['io.flow.shopify.external.v2.v0.models.fields_changed'],
11689
+ query_variables: T['io.flow.shopify.external.v2.v0.models.inventory_item_query_variables'].isRequired,
11690
+ });
11691
+
11692
+ T['io.flow.internal.v0.models.shopify_inventory_item_update_v2'] = PropTypes.exact({
11693
+ discriminator: PropTypes.oneOf(['shopify_inventory_item_update_v2']).isRequired,
11694
+ event_id: PropTypes.string.isRequired,
11695
+ timestamp: PropTypes.string.isRequired,
11696
+ organization: PropTypes.string.isRequired,
11697
+ triggered_at: PropTypes.string.isRequired,
11698
+ webhook_id: PropTypes.string.isRequired,
11699
+ inventory_item_id: PropTypes.string.isRequired,
11700
+ variant_id: PropTypes.string,
11701
+ event: T['io.flow.shopify.external.v2.v0.models.inventory_item_event'].isRequired,
11702
+ });
11703
+
11704
+ T['io.flow.shopify.external.v2.v0.models.inventory_item_delete_data'] = PropTypes.exact({
11705
+ shop: T['io.flow.shopify.external.v2.v0.models.shop_node'].isRequired,
11706
+ inventoryItem: T['io.flow.shopify.external.v2.v0.models.inventory_item_node'],
11707
+ });
11708
+
11709
+ T['io.flow.shopify.external.v2.v0.models.inventory_item_delete_event'] = PropTypes.exact({
11710
+ topic: PropTypes.string.isRequired,
11711
+ action: PropTypes.string.isRequired,
11712
+ handle: PropTypes.string.isRequired,
11713
+ data: T['io.flow.shopify.external.v2.v0.models.inventory_item_delete_data'].isRequired,
11714
+ fields_changed: T['io.flow.shopify.external.v2.v0.models.fields_changed'],
11715
+ query_variables: T['io.flow.shopify.external.v2.v0.models.inventory_item_query_variables'].isRequired,
11716
+ });
11717
+
11718
+ T['io.flow.internal.v0.models.shopify_inventory_item_delete_v2'] = PropTypes.exact({
11719
+ discriminator: PropTypes.oneOf(['shopify_inventory_item_delete_v2']).isRequired,
11720
+ event_id: PropTypes.string.isRequired,
11721
+ timestamp: PropTypes.string.isRequired,
11722
+ organization: PropTypes.string.isRequired,
11723
+ triggered_at: PropTypes.string.isRequired,
11724
+ webhook_id: PropTypes.string.isRequired,
11725
+ inventory_item_id: PropTypes.string.isRequired,
11726
+ event: T['io.flow.shopify.external.v2.v0.models.inventory_item_delete_event'].isRequired,
11727
+ });
11728
+
11417
11729
  T['io.flow.shopify.external.v0.models.shopify_inventory_item_delete'] = PropTypes.exact({
11418
11730
  id: PropTypes.number.isRequired,
11419
11731
  });
@@ -11684,6 +11996,12 @@ T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
11684
11996
  carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
11685
11997
  });
11686
11998
 
11999
+ T['io.flow.label.v0.models.shipping_label_summary'] = PropTypes.exact({
12000
+ id: PropTypes.string.isRequired,
12001
+ flow_tracking_number: PropTypes.string.isRequired,
12002
+ carrier_tracking_number: PropTypes.string.isRequired,
12003
+ });
12004
+
11687
12005
  T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
11688
12006
 
11689
12007
  T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
@@ -12006,6 +12324,11 @@ T['io.flow.internal.v0.models.return_policy_item_result_deleted'] = PropTypes.ex
12006
12324
  result: T['io.flow.catalog.return.v0.models.return_policy_item_result'].isRequired,
12007
12325
  });
12008
12326
 
12327
+ T['io.flow.internal.v0.models.return_trigger_credit_refund'] = PropTypes.exact({
12328
+ discriminator: PropTypes.oneOf(['by_credit_refund']).isRequired,
12329
+ order_refund_transaction_id: PropTypes.string.isRequired,
12330
+ });
12331
+
12009
12332
  T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
12010
12333
  id: PropTypes.string.isRequired,
12011
12334
  report_date: PropTypes.string.isRequired,
@@ -12109,6 +12432,11 @@ T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'] = PropT
12109
12432
  T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'] = PropTypes.oneOf(['all_screenings', 'first_screening_only']);
12110
12433
  T['io.flow.internal.v0.enums.restriction_rule_activation_status'] = PropTypes.oneOf(['draft', 'active', 'inactive']);
12111
12434
 
12435
+ T['io.flow.internal.v0.models.auto_accept_keyword_cancelling'] = PropTypes.exact({
12436
+ accept_keyword: PropTypes.string.isRequired,
12437
+ negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
12438
+ });
12439
+
12112
12440
  T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
12113
12441
  positive_keyword: PropTypes.string.isRequired,
12114
12442
  negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -12256,6 +12584,7 @@ T['io.flow.internal.v0.models.reporting_fulfillment_is'] = PropTypes.exact({
12256
12584
  manual_capture: PropTypes.bool,
12257
12585
  partial_fulfillment: PropTypes.bool,
12258
12586
  partial_refund: PropTypes.bool,
12587
+ credit_payment: PropTypes.bool,
12259
12588
  });
12260
12589
 
12261
12590
  T['io.flow.internal.v0.models.reporting_refund_reference'] = PropTypes.exact({
@@ -12764,6 +13093,7 @@ T['io.flow.internal.v0.enums.sellability_decision_source'] = PropTypes.oneOf([
12764
13093
  'fast_screen_hs_chapter_exception',
12765
13094
  'fast_screen_active_mode',
12766
13095
  'unserviceable_taxonomy',
13096
+ 'insufficient_details',
12767
13097
  'pending_classification',
12768
13098
  'pending_agent_review',
12769
13099
  'screen_failed',
@@ -12865,46 +13195,6 @@ T['io.flow.product.v0.models.product'] = PropTypes.exact({
12865
13195
  deleted_at: PropTypes.string,
12866
13196
  });
12867
13197
 
12868
- T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exact({
12869
- id: PropTypes.string,
12870
- merchant_id: PropTypes.string.isRequired,
12871
- product_id: PropTypes.string.isRequired,
12872
- channel: PropTypes.string.isRequired,
12873
- request_id: PropTypes.string.isRequired,
12874
- status: T['io.flow.sellability.v0.enums.sellability_result_status'].isRequired,
12875
- error_code: T['io.flow.sellability.v0.enums.sellability_result_error_code'],
12876
- hs6_code: PropTypes.string,
12877
- hs6_code_source: T['io.flow.internal.v0.enums.hs6_code_source'],
12878
- restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']),
12879
- rule_ids: PropTypes.arrayOf(PropTypes.string),
12880
- matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
12881
- matching_sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
12882
- classification_failure_reason: T['io.flow.internal.v0.enums.classification_failure_reason'],
12883
- taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
12884
- inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
12885
- effective_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
12886
- fingerprint: PropTypes.string.isRequired,
12887
- screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
12888
- decision_source: T['io.flow.internal.v0.enums.sellability_decision_source'],
12889
- rule_matches: PropTypes.arrayOf(T['io.flow.internal.v0.models.sellability_rule_match']),
12890
- created_at: PropTypes.string,
12891
- });
12892
-
12893
- T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'] = PropTypes.exact({
12894
- discriminator: PropTypes.oneOf(['preonboarding_sellability_result_updated']).isRequired,
12895
- event_id: PropTypes.string.isRequired,
12896
- timestamp: PropTypes.string.isRequired,
12897
- previous_preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
12898
- preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
12899
- });
12900
-
12901
- T['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'] = PropTypes.exact({
12902
- discriminator: PropTypes.oneOf(['preonboarding_sellability_result_inserted']).isRequired,
12903
- event_id: PropTypes.string.isRequired,
12904
- timestamp: PropTypes.string.isRequired,
12905
- preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
12906
- });
12907
-
12908
13198
  T['io.flow.internal.v0.enums.preonboarding_request_status'] = PropTypes.oneOf(['pending', 'completed', 'failed', 'discarded']);
12909
13199
  T['io.flow.internal.v0.enums.preonboarding_classification_platform'] = PropTypes.oneOf(['FlowOnboarding']);
12910
13200
 
@@ -13537,6 +13827,7 @@ T['io.flow.internal.v0.enums.order_validation_status'] = PropTypes.oneOf([
13537
13827
  'breached',
13538
13828
  ]);
13539
13829
 
13830
+ T['io.flow.internal.v0.enums.refund_transaction_payment_type'] = PropTypes.oneOf(['globale', 'third_party', 'credit']);
13540
13831
  T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
13541
13832
 
13542
13833
  T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
@@ -14944,9 +15235,12 @@ T['io.flow.internal.v0.models.item_hs6_override_rejection'] = PropTypes.exact({
14944
15235
  message: PropTypes.string.isRequired,
14945
15236
  });
14946
15237
 
15238
+ T['io.flow.internal.v0.enums.classification_scope'] = PropTypes.oneOf(['Item', 'Product', 'Bucket']);
15239
+
14947
15240
  T['io.flow.internal.v0.models.item_hs6_override'] = PropTypes.exact({
14948
15241
  item_number: PropTypes.string.isRequired,
14949
15242
  hs6: PropTypes.string.isRequired,
15243
+ classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
14950
15244
  });
14951
15245
 
14952
15246
  T['io.flow.internal.v0.models.item_hs6_override_result'] = PropTypes.exact({
@@ -14954,7 +15248,6 @@ T['io.flow.internal.v0.models.item_hs6_override_result'] = PropTypes.exact({
14954
15248
  rejected: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_hs6_override_rejection']).isRequired,
14955
15249
  });
14956
15250
 
14957
- T['io.flow.internal.v0.enums.classification_scope'] = PropTypes.oneOf(['Item', 'Product', 'Bucket']);
14958
15251
  T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']);
14959
15252
  T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
14960
15253
 
@@ -15572,6 +15865,25 @@ T['io.flow.internal.v0.models.guaranteed_shipping_publication'] = PropTypes.exac
15572
15865
  status: T['io.flow.internal.v0.enums.guaranteed_shipping_publication_status'].isRequired,
15573
15866
  });
15574
15867
 
15868
+ T['io.flow.internal.v0.enums.guaranteed_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
15869
+
15870
+ T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee'] = PropTypes.exact({
15871
+ id: PropTypes.string.isRequired,
15872
+ organization_id: PropTypes.string.isRequired,
15873
+ order_number: PropTypes.string.isRequired,
15874
+ guarantee_state: T['io.flow.internal.v0.enums.guaranteed_shipping_order_guarantee_state'].isRequired,
15875
+ label_id: PropTypes.string,
15876
+ notification_id: PropTypes.string,
15877
+ });
15878
+
15879
+ T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee_upserted'] = PropTypes.exact({
15880
+ discriminator: PropTypes.oneOf(['guaranteed_shipping_order_guarantee_upserted']).isRequired,
15881
+ event_id: PropTypes.string.isRequired,
15882
+ timestamp: PropTypes.string.isRequired,
15883
+ organization: PropTypes.string.isRequired,
15884
+ guaranteed_shipping_order_guarantee: T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee'].isRequired,
15885
+ });
15886
+
15575
15887
  T['io.flow.internal.v0.models.guaranteed_shipping_calibration_lane_form'] = PropTypes.exact({
15576
15888
  channel_id: PropTypes.string.isRequired,
15577
15889
  organization_id: PropTypes.string.isRequired,
@@ -21163,6 +21475,7 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
21163
21475
  'b2b_fee_shipping_tax',
21164
21476
  'flat_rate_label',
21165
21477
  'flat_rate_label_subsidy',
21478
+ 'credit_refund',
21166
21479
  ]);
21167
21480
 
21168
21481
  T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
@@ -21505,9 +21818,12 @@ T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exac
21505
21818
  });
21506
21819
 
21507
21820
  T['io.flow.internal.v0.models.restriction_product_summary'] = PropTypes.exact({
21821
+ product_id: PropTypes.string,
21508
21822
  name: PropTypes.string.isRequired,
21509
21823
  restrictions: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review_summary']).isRequired,
21510
21824
  prohibited_regions: PropTypes.arrayOf(PropTypes.string),
21825
+ fatal_restricted_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
21826
+ fatal_review_pending_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
21511
21827
  });
21512
21828
 
21513
21829
  T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact({
@@ -21637,6 +21953,7 @@ T['io.flow.internal.v0.models.restriction_item_review'] = PropTypes.exact({
21637
21953
  agent_review_status: PropTypes.string,
21638
21954
  agent_reviewed_at: PropTypes.string,
21639
21955
  agent_confidence: PropTypes.number,
21956
+ agent_confidence_threshold: PropTypes.number,
21640
21957
  updated_at: PropTypes.string.isRequired,
21641
21958
  });
21642
21959
 
@@ -21657,6 +21974,10 @@ T['io.flow.internal.v0.models.restriction_history_item_review_decision'] = PropT
21657
21974
  created_at: PropTypes.string.isRequired,
21658
21975
  updated_at: PropTypes.string.isRequired,
21659
21976
  updated_by: T['io.flow.common.v0.models.user'],
21977
+ agent_review_status: PropTypes.string,
21978
+ agent_reviewed_at: PropTypes.string,
21979
+ agent_confidence: PropTypes.number,
21980
+ agent_confidence_threshold: PropTypes.number,
21660
21981
  });
21661
21982
 
21662
21983
  T['io.flow.internal.v0.models.product_review_history'] = PropTypes.exact({
@@ -22501,6 +22822,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
22501
22822
  attribute_names: PropTypes.arrayOf(PropTypes.string),
22502
22823
  attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
22503
22824
  keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
22825
+ auto_accept_keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_accept_keyword_cancelling']),
22504
22826
  activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
22505
22827
  evaluation_mode: T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'].isRequired,
22506
22828
  });
@@ -22522,6 +22844,7 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
22522
22844
  attribute_names: PropTypes.arrayOf(PropTypes.string),
22523
22845
  attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
22524
22846
  keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.keyword_cancelling']),
22847
+ auto_accept_keyword_cancelling: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_accept_keyword_cancelling']),
22525
22848
  activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
22526
22849
  evaluation_mode: T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'].isRequired,
22527
22850
  });
@@ -23617,6 +23940,7 @@ T['io.flow.sellability.v0.models.sellability_screening_form'] = PropTypes.exact(
23617
23940
  taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
23618
23941
  inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
23619
23942
  mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'].isRequired,
23943
+ reprocess_policy: T['io.flow.sellability.v0.enums.sellability_reprocess_policy'],
23620
23944
  catalog_size: PropTypes.number,
23621
23945
  relative_ranking: PropTypes.number,
23622
23946
  dry_run: PropTypes.bool,
@@ -24593,6 +24917,7 @@ T['io.flow.internal.v0.models.shipping_cost_summary'] = PropTypes.exact({
24593
24917
  amount: T['io.flow.common.v0.models.money'].isRequired,
24594
24918
  tax: T['io.flow.common.v0.models.money'].isRequired,
24595
24919
  label_id: PropTypes.string,
24920
+ shipping_label: T['io.flow.label.v0.models.shipping_label_summary'],
24596
24921
  base: T['io.flow.trueup.v0.models.label_base'],
24597
24922
  surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']),
24598
24923
  });
@@ -24650,6 +24975,50 @@ T['io.flow.internal.v0.models.product_sellability_internal_form'] = PropTypes.ex
24650
24975
  categories: PropTypes.arrayOf(PropTypes.string).isRequired,
24651
24976
  });
24652
24977
 
24978
+ T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exact({
24979
+ id: PropTypes.string,
24980
+ merchant_id: PropTypes.string.isRequired,
24981
+ product_id: PropTypes.string.isRequired,
24982
+ channel: PropTypes.string.isRequired,
24983
+ request_id: PropTypes.string.isRequired,
24984
+ status: T['io.flow.sellability.v0.enums.sellability_result_status'].isRequired,
24985
+ error_code: T['io.flow.sellability.v0.enums.sellability_result_error_code'],
24986
+ hs6_code: PropTypes.string,
24987
+ hs6_code_source: T['io.flow.internal.v0.enums.hs6_code_source'],
24988
+ restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']),
24989
+ rule_ids: PropTypes.arrayOf(PropTypes.string),
24990
+ matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
24991
+ matching_sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
24992
+ classification_failure_reason: T['io.flow.internal.v0.enums.classification_failure_reason'],
24993
+ taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
24994
+ inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
24995
+ effective_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
24996
+ fingerprint: PropTypes.string.isRequired,
24997
+ screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
24998
+ decision_source: T['io.flow.internal.v0.enums.sellability_decision_source'],
24999
+ rule_matches: PropTypes.arrayOf(T['io.flow.internal.v0.models.sellability_rule_match']),
25000
+ name: PropTypes.string,
25001
+ description: PropTypes.string,
25002
+ price: T['io.flow.common.v0.models.money'],
25003
+ relative_ranking: PropTypes.number,
25004
+ created_at: PropTypes.string,
25005
+ });
25006
+
25007
+ T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'] = PropTypes.exact({
25008
+ discriminator: PropTypes.oneOf(['preonboarding_sellability_result_updated']).isRequired,
25009
+ event_id: PropTypes.string.isRequired,
25010
+ timestamp: PropTypes.string.isRequired,
25011
+ previous_preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
25012
+ preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
25013
+ });
25014
+
25015
+ T['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'] = PropTypes.exact({
25016
+ discriminator: PropTypes.oneOf(['preonboarding_sellability_result_inserted']).isRequired,
25017
+ event_id: PropTypes.string.isRequired,
25018
+ timestamp: PropTypes.string.isRequired,
25019
+ preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
25020
+ });
25021
+
24653
25022
  T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes.exact({
24654
25023
  id: PropTypes.string.isRequired,
24655
25024
  merchant_id: PropTypes.string.isRequired,
@@ -24833,7 +25202,7 @@ T['io.flow.internal.v0.models.guaranteed_shipping_published_output'] = PropTypes
24833
25202
  outbound_shipping_cost_source_updated_at: PropTypes.number.isRequired,
24834
25203
  average_order_value_source_updated_at: PropTypes.number.isRequired,
24835
25204
  target_flat_rates_source_updated_at: PropTypes.number.isRequired,
24836
- published_at: PropTypes.number,
25205
+ published_at: PropTypes.number.isRequired,
24837
25206
  });
24838
25207
 
24839
25208
  T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'] = PropTypes.exact({
@@ -25424,6 +25793,7 @@ T['io.flow.internal.v0.models.carrier_estimate'] = PropTypes.exact({
25424
25793
  cost: T['io.flow.common.v0.models.money'].isRequired,
25425
25794
  min_delivery_days: PropTypes.number,
25426
25795
  max_delivery_days: PropTypes.number,
25796
+ model_diagnostics: PropTypes.string,
25427
25797
  });
25428
25798
 
25429
25799
  T['io.flow.internal.v0.models.outbound_shipping_cost'] = PropTypes.exact({
@@ -25520,6 +25890,26 @@ T['io.flow.internal.v0.models.b2b_tax_ledger'] = PropTypes.exact({
25520
25890
  document_number: PropTypes.string,
25521
25891
  });
25522
25892
 
25893
+ T['io.flow.internal.v0.models.average_order_value'] = PropTypes.exact({
25894
+ id: PropTypes.string.isRequired,
25895
+ channel_id: PropTypes.string.isRequired,
25896
+ organization_id: PropTypes.string.isRequired,
25897
+ amount: T['io.flow.common.v0.models.money'].isRequired,
25898
+ updated_at: PropTypes.number.isRequired,
25899
+ run_id: PropTypes.string.isRequired,
25900
+ model_version: PropTypes.string.isRequired,
25901
+ model_diagnostics: PropTypes.string,
25902
+ });
25903
+
25904
+ T['io.flow.internal.v0.models.average_order_value_upserted'] = PropTypes.exact({
25905
+ discriminator: PropTypes.oneOf(['average_order_value_upserted']).isRequired,
25906
+ event_id: PropTypes.string.isRequired,
25907
+ timestamp: PropTypes.string.isRequired,
25908
+ organization: PropTypes.string.isRequired,
25909
+ channel_id: PropTypes.string.isRequired,
25910
+ average_order_value: T['io.flow.internal.v0.models.average_order_value'].isRequired,
25911
+ });
25912
+
25523
25913
  T['io.flow.internal.v0.models.adjustment_details_amount_fixed'] = PropTypes.exact({
25524
25914
  amount: T['io.flow.common.v0.models.money'].isRequired,
25525
25915
  });
@@ -25603,25 +25993,6 @@ T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
25603
25993
  T['io.flow.internal.v0.models.calculation_step'],
25604
25994
  ]);
25605
25995
 
25606
- T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
25607
-
25608
- T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'] = PropTypes.exact({
25609
- id: PropTypes.string.isRequired,
25610
- organization_id: PropTypes.string.isRequired,
25611
- order_number: PropTypes.string.isRequired,
25612
- guarantee_state: T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'].isRequired,
25613
- label_id: PropTypes.string,
25614
- notification_id: PropTypes.string,
25615
- });
25616
-
25617
- T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'] = PropTypes.exact({
25618
- discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_upserted']).isRequired,
25619
- event_id: PropTypes.string.isRequired,
25620
- timestamp: PropTypes.string.isRequired,
25621
- organization: PropTypes.string.isRequired,
25622
- adaptive_shipping_order_guarantee: T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'].isRequired,
25623
- });
25624
-
25625
25996
  T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
25626
25997
 
25627
25998
  T['io.flow.internal.v0.models.action_quantity'] = PropTypes.exact({
@@ -25669,6 +26040,13 @@ T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
25669
26040
  details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
25670
26041
  });
25671
26042
 
26043
+ T['io.flow.internal.v0.models.transaction_adjustment_upserted'] = PropTypes.exact({
26044
+ discriminator: PropTypes.oneOf(['transaction_adjustment_upserted']).isRequired,
26045
+ event_id: PropTypes.string.isRequired,
26046
+ timestamp: PropTypes.string.isRequired,
26047
+ transaction_adjustment: T['io.flow.internal.v0.models.transaction_adjustment'].isRequired,
26048
+ });
26049
+
25672
26050
  T['io.flow.internal.v0.models.return_trigger_reversal'] = PropTypes.exact({
25673
26051
  discriminator: PropTypes.oneOf(['by_reversal']).isRequired,
25674
26052
  reversal: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
@@ -25713,6 +26091,7 @@ T['io.flow.internal.v0.models.return_trigger_refund'] = PropTypes.exact({
25713
26091
  T['io.flow.internal.v0.unions.return_trigger'] = PropTypes.oneOfType([
25714
26092
  T['io.flow.internal.v0.models.return_trigger_refund'],
25715
26093
  T['io.flow.internal.v0.models.return_trigger_reversal'],
26094
+ T['io.flow.internal.v0.models.return_trigger_credit_refund'],
25716
26095
  ]);
25717
26096
 
25718
26097
  T['io.flow.internal.v0.models.accounting_return_metadata'] = PropTypes.exact({
@@ -26635,6 +27014,12 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
26635
27014
  name: PropTypes.string,
26636
27015
  });
26637
27016
 
27017
+ T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping_pass_through'] = PropTypes.exact({
27018
+ discriminator: PropTypes.oneOf(['shipping_pass_through']).isRequired,
27019
+ line_id: PropTypes.string,
27020
+ price: T['io.flow.common.v0.models.price'].isRequired,
27021
+ });
27022
+
26638
27023
  T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
26639
27024
  discriminator: PropTypes.oneOf(['discount']).isRequired,
26640
27025
  line_id: PropTypes.string,
@@ -26678,6 +27063,7 @@ T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'] = PropTypes.oneOfT
26678
27063
  T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item'],
26679
27064
  T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'],
26680
27065
  T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping'],
27066
+ T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_shipping_pass_through'],
26681
27067
  T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip'],
26682
27068
  ]);
26683
27069
 
@@ -28081,6 +28467,7 @@ T['io.flow.internal.v0.models.order_refund_transaction'] = PropTypes.exact({
28081
28467
  order_number: PropTypes.string.isRequired,
28082
28468
  price: T['io.flow.common.v0.models.price_with_base'].isRequired,
28083
28469
  refunded_at: PropTypes.string,
28470
+ payment_type: T['io.flow.internal.v0.enums.refund_transaction_payment_type'],
28084
28471
  });
28085
28472
 
28086
28473
  T['io.flow.internal.v0.models.order_refund_transaction_upserted'] = PropTypes.exact({
@@ -28676,6 +29063,7 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
28676
29063
  'b2b_fee_shipping_tax',
28677
29064
  'flat_rate_label',
28678
29065
  'flat_rate_label_subsidy',
29066
+ 'credit_refund',
28679
29067
  ]);
28680
29068
 
28681
29069
  T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
@@ -28909,6 +29297,13 @@ T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'] = PropTypes.exac
28909
29297
  created_at: PropTypes.string.isRequired,
28910
29298
  });
28911
29299
 
29300
+ T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction_upserted'] = PropTypes.exact({
29301
+ discriminator: PropTypes.oneOf(['non_l4l_tax_duty_fx_transaction_upserted']).isRequired,
29302
+ event_id: PropTypes.string.isRequired,
29303
+ timestamp: PropTypes.string.isRequired,
29304
+ non_l4l_tax_duty_fx_transaction: T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'].isRequired,
29305
+ });
29306
+
28912
29307
  T['io.flow.internal.v0.models.merchant_fee_transaction'] = PropTypes.exact({
28913
29308
  discriminator: PropTypes.oneOf(['merchant_fee_transaction']).isRequired,
28914
29309
  order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
@@ -29018,6 +29413,7 @@ T['io.flow.internal.v0.models.ge_revenue_share_transaction'] = PropTypes.exact({
29018
29413
  discriminator: PropTypes.oneOf(['ge_revenue_share_transaction']).isRequired,
29019
29414
  order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
29020
29415
  ge_revenue_share: T['io.flow.internal.v0.models.fee'].isRequired,
29416
+ capture_id: PropTypes.string.isRequired,
29021
29417
  id: PropTypes.string.isRequired,
29022
29418
  type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
29023
29419
  status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
@@ -29028,6 +29424,13 @@ T['io.flow.internal.v0.models.ge_revenue_share_transaction'] = PropTypes.exact({
29028
29424
  created_at: PropTypes.string.isRequired,
29029
29425
  });
29030
29426
 
29427
+ T['io.flow.internal.v0.models.ge_revenue_share_transaction_upserted'] = PropTypes.exact({
29428
+ discriminator: PropTypes.oneOf(['ge_revenue_share_transaction_upserted']).isRequired,
29429
+ event_id: PropTypes.string.isRequired,
29430
+ timestamp: PropTypes.string.isRequired,
29431
+ ge_revenue_share_transaction: T['io.flow.internal.v0.models.ge_revenue_share_transaction'].isRequired,
29432
+ });
29433
+
29031
29434
  T['io.flow.internal.v0.models.flat_rate_label_transaction'] = PropTypes.exact({
29032
29435
  discriminator: PropTypes.oneOf(['flat_rate_label_transaction']).isRequired,
29033
29436
  order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
@@ -29459,6 +29862,12 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
29459
29862
  T['io.flow.internal.v0.models.order_transaction_deleted'],
29460
29863
  T['io.flow.internal.v0.models.label_transaction_upserted'],
29461
29864
  T['io.flow.internal.v0.models.label_transaction_deleted'],
29865
+ T['io.flow.internal.v0.models.ge_revenue_share_transaction_upserted'],
29866
+ T['io.flow.internal.v0.models.ge_revenue_share_transaction_deleted'],
29867
+ T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction_upserted'],
29868
+ T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction_deleted'],
29869
+ T['io.flow.internal.v0.models.transaction_adjustment_upserted'],
29870
+ T['io.flow.internal.v0.models.transaction_adjustment_deleted'],
29462
29871
  T['io.flow.internal.v0.models.channel_billed_transaction_upserted'],
29463
29872
  T['io.flow.internal.v0.models.channel_billed_transaction_deleted'],
29464
29873
  T['io.flow.internal.v0.models.tax_transaction_upserted'],
@@ -29595,6 +30004,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
29595
30004
  T['io.flow.internal.v0.models.guaranteed_shipping_calibrated_output_deleted'],
29596
30005
  T['io.flow.internal.v0.models.outbound_shipping_cost_upserted'],
29597
30006
  T['io.flow.internal.v0.models.outbound_shipping_cost_deleted'],
30007
+ T['io.flow.internal.v0.models.average_order_value_upserted'],
30008
+ T['io.flow.internal.v0.models.average_order_value_deleted'],
29598
30009
  T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'],
29599
30010
  T['io.flow.internal.v0.models.guaranteed_shipping_published_output_deleted'],
29600
30011
  T['io.flow.internal.v0.models.guaranteed_shipping_settings_upserted'],
@@ -29633,8 +30044,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
29633
30044
  T['io.flow.internal.v0.models.order_validation_deleted'],
29634
30045
  T['io.flow.internal.v0.models.label_creation_job_upserted'],
29635
30046
  T['io.flow.internal.v0.models.label_creation_job_deleted'],
29636
- T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'],
29637
- T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'],
30047
+ T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee_upserted'],
30048
+ T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee_deleted'],
29638
30049
  T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
29639
30050
  T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
29640
30051
  T['io.flow.internal.v0.models.logistics_capabilities_upserted'],
@@ -29785,6 +30196,14 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
29785
30196
  T['io.flow.internal.v0.models.shopify_inventory_item_update_deleted'],
29786
30197
  T['io.flow.internal.v0.models.shopify_inventory_item_delete_upserted'],
29787
30198
  T['io.flow.internal.v0.models.shopify_inventory_item_delete_deleted'],
30199
+ T['io.flow.internal.v0.models.shopify_product_data_create_v2'],
30200
+ T['io.flow.internal.v0.models.shopify_product_data_update_v2'],
30201
+ T['io.flow.internal.v0.models.shopify_product_metafields_update_v2'],
30202
+ T['io.flow.internal.v0.models.shopify_product_variant_data_v2'],
30203
+ T['io.flow.internal.v0.models.shopify_product_variant_components_v2'],
30204
+ T['io.flow.internal.v0.models.shopify_product_data_delete_v2'],
30205
+ T['io.flow.internal.v0.models.shopify_inventory_item_update_v2'],
30206
+ T['io.flow.internal.v0.models.shopify_inventory_item_delete_v2'],
29788
30207
  T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
29789
30208
  T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
29790
30209
  T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
@@ -29943,6 +30362,28 @@ T['io.flow.internal.v0.models.lab_project_settings'] = PropTypes.exact({
29943
30362
  terms: T['io.flow.internal.v0.models.acceptance'],
29944
30363
  });
29945
30364
 
30365
+ T['io.flow.internal.v0.enums.ai_review_batch_item_outcome'] = PropTypes.oneOf([
30366
+ 'succeeded',
30367
+ 'errored',
30368
+ 'expired',
30369
+ 'canceled',
30370
+ 'undecided',
30371
+ 'unparseable',
30372
+ 'missing',
30373
+ 'batch_failed',
30374
+ 'batch_timed_out',
30375
+ ]);
30376
+
30377
+ T['io.flow.internal.v0.enums.ai_review_batch_status'] = PropTypes.oneOf([
30378
+ 'pending',
30379
+ 'processing',
30380
+ 'canceling',
30381
+ 'completed',
30382
+ 'failed',
30383
+ 'timed_out',
30384
+ 'published',
30385
+ ]);
30386
+
29946
30387
  T['io.flow.internal.v0.enums.any_dangerous_goods'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
29947
30388
  T['io.flow.internal.v0.enums.api_call_reference_id'] = PropTypes.oneOf(['duty_rates_data_event', 'integration_test', 'unit_test']);
29948
30389
 
@@ -30063,6 +30504,12 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
30063
30504
  'order_transaction_deleted',
30064
30505
  'label_transaction_upserted',
30065
30506
  'label_transaction_deleted',
30507
+ 'ge_revenue_share_transaction_upserted',
30508
+ 'ge_revenue_share_transaction_deleted',
30509
+ 'non_l4l_tax_duty_fx_transaction_upserted',
30510
+ 'non_l4l_tax_duty_fx_transaction_deleted',
30511
+ 'transaction_adjustment_upserted',
30512
+ 'transaction_adjustment_deleted',
30066
30513
  'channel_billed_transaction_upserted',
30067
30514
  'channel_billed_transaction_deleted',
30068
30515
  'tax_transaction_upserted',
@@ -30199,6 +30646,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
30199
30646
  'guaranteed_shipping_calibrated_output_deleted',
30200
30647
  'outbound_shipping_cost_upserted',
30201
30648
  'outbound_shipping_cost_deleted',
30649
+ 'average_order_value_upserted',
30650
+ 'average_order_value_deleted',
30202
30651
  'guaranteed_shipping_published_output_upserted',
30203
30652
  'guaranteed_shipping_published_output_deleted',
30204
30653
  'guaranteed_shipping_settings_upserted',
@@ -30237,8 +30686,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
30237
30686
  'order_validation_deleted',
30238
30687
  'label_creation_job_upserted',
30239
30688
  'label_creation_job_deleted',
30240
- 'adaptive_shipping_order_guarantee_upserted',
30241
- 'adaptive_shipping_order_guarantee_deleted',
30689
+ 'guaranteed_shipping_order_guarantee_upserted',
30690
+ 'guaranteed_shipping_order_guarantee_deleted',
30242
30691
  'label_tracking_summary_upserted',
30243
30692
  'label_tracking_summary_deleted',
30244
30693
  'logistics_capabilities_upserted',
@@ -30389,6 +30838,14 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
30389
30838
  'shopify_inventory_item_update_deleted',
30390
30839
  'shopify_inventory_item_delete_upserted',
30391
30840
  'shopify_inventory_item_delete_deleted',
30841
+ 'shopify_product_data_create_v2',
30842
+ 'shopify_product_data_update_v2',
30843
+ 'shopify_product_metafields_update_v2',
30844
+ 'shopify_product_variant_data_v2',
30845
+ 'shopify_product_variant_components_v2',
30846
+ 'shopify_product_data_delete_v2',
30847
+ 'shopify_inventory_item_update_v2',
30848
+ 'shopify_inventory_item_delete_v2',
30392
30849
  'shopify_monitoring_order_monitor_event_upserted',
30393
30850
  'shopify_monitoring_order_monitor_event_deleted',
30394
30851
  'shopify_order_fulfillments_snapshot_upserted',
@@ -30511,6 +30968,7 @@ T['io.flow.internal.v0.enums.processing_transaction_type'] = PropTypes.oneOf([
30511
30968
  'refund',
30512
30969
  'fully_subsidized_order',
30513
30970
  'credit_payment',
30971
+ 'credit_refund',
30514
30972
  ]);
30515
30973
 
30516
30974
  T['io.flow.internal.v0.enums.product_status'] = PropTypes.oneOf(['active', 'archived', 'draft', 'unlisted']);
@@ -30713,11 +31171,19 @@ T['io.flow.internal.v0.models.cafe24_markets_webhook'] = PropTypes.exact({
30713
31171
  placeholder: PropTypes.string,
30714
31172
  });
30715
31173
 
31174
+ T['io.flow.internal.v0.models.calculator_organization_settings_country_of_origin_form'] = PropTypes.exact({
31175
+ country_of_origin: PropTypes.string.isRequired,
31176
+ });
31177
+
30716
31178
  T['io.flow.internal.v0.models.calculator_organization_settings_form'] = PropTypes.exact({
30717
31179
  default_country_of_origin: PropTypes.string,
30718
31180
  default_hs_code: PropTypes.string,
30719
31181
  });
30720
31182
 
31183
+ T['io.flow.internal.v0.models.calculator_organization_settings_hs_code_form'] = PropTypes.exact({
31184
+ default_hs_code: PropTypes.string.isRequired,
31185
+ });
31186
+
30721
31187
  T['io.flow.internal.v0.models.call_record'] = PropTypes.exact({
30722
31188
  id: PropTypes.string.isRequired,
30723
31189
  request_body: PropTypes.string,
@@ -31393,6 +31859,10 @@ T['io.flow.internal.v0.models.shipping_lane'] = PropTypes.exact({
31393
31859
  destination: PropTypes.string.isRequired,
31394
31860
  });
31395
31861
 
31862
+ T['io.flow.internal.v0.models.shopify_markets_event'] = PropTypes.exact({
31863
+ placeholder: PropTypes.string,
31864
+ });
31865
+
31396
31866
  T['io.flow.internal.v0.models.shopify_markets_queued_record'] = PropTypes.exact({
31397
31867
  id: PropTypes.string.isRequired,
31398
31868
  type: PropTypes.string.isRequired,
@@ -31994,6 +32464,10 @@ T['io.flow.shopify.markets.internal.v0.models.shipping_lane'] = PropTypes.exact(
31994
32464
  destination: PropTypes.string.isRequired,
31995
32465
  });
31996
32466
 
32467
+ T['io.flow.shopify.markets.internal.v0.models.shopify_markets_event'] = PropTypes.exact({
32468
+ placeholder: PropTypes.string,
32469
+ });
32470
+
31997
32471
  T['io.flow.shopify.markets.internal.v0.models.shopify_markets_queued_record'] = PropTypes.exact({
31998
32472
  id: PropTypes.string.isRequired,
31999
32473
  type: PropTypes.string.isRequired,
@@ -32832,10 +33306,6 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
32832
33306
  export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
32833
33307
  export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
32834
33308
  export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
32835
- export const adaptiveShippingOrderGuarantee = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'];
32836
- export const adaptiveShippingOrderGuaranteeDeleted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'];
32837
- export const adaptiveShippingOrderGuaranteeState = T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'];
32838
- export const adaptiveShippingOrderGuaranteeUpserted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'];
32839
33309
  export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
32840
33310
  export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
32841
33311
  export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
@@ -32895,6 +33365,8 @@ export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_ref
32895
33365
  export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
32896
33366
  export const agentReviewDetail = T['io.flow.internal.v0.models.agent_review_detail'];
32897
33367
  export const aiOutput = T['io.flow.internal.v0.unions.ai_output'];
33368
+ export const aiReviewBatchItemOutcome = T['io.flow.internal.v0.enums.ai_review_batch_item_outcome'];
33369
+ export const aiReviewBatchStatus = T['io.flow.internal.v0.enums.ai_review_batch_status'];
32898
33370
  export const aiReviewBatchSubmitted = T['io.flow.internal.v0.models.ai_review_batch_submitted'];
32899
33371
  export const aiReviewConsumer = T['io.flow.internal.v0.enums.ai_review_consumer'];
32900
33372
  export const aiReviewContext = T['io.flow.internal.v0.unions.ai_review_context'];
@@ -32932,8 +33404,12 @@ export const authorizedChargeStatus = T['io.flow.internal.v0.models.authorized_c
32932
33404
  export const authorizedLineItemCharge = T['io.flow.internal.v0.models.authorized_line_item_charge'];
32933
33405
  export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_order_charge'];
32934
33406
  export const authorizedShippingCharge = T['io.flow.internal.v0.models.authorized_shipping_charge'];
33407
+ export const autoAcceptKeywordCancelling = T['io.flow.internal.v0.models.auto_accept_keyword_cancelling'];
32935
33408
  export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
32936
33409
  export const autoReviewCriteria = T['io.flow.internal.v0.models.auto_review_criteria'];
33410
+ export const averageOrderValue = T['io.flow.internal.v0.models.average_order_value'];
33411
+ export const averageOrderValueDeleted = T['io.flow.internal.v0.models.average_order_value_deleted'];
33412
+ export const averageOrderValueUpserted = T['io.flow.internal.v0.models.average_order_value_upserted'];
32937
33413
  export const b2BFeeMorTaxTriggerMetadata = T['io.flow.internal.v0.models.b2b_fee_mor_tax_trigger_metadata'];
32938
33414
  export const b2BFeeMorTaxTriggerType = T['io.flow.internal.v0.enums.b2b_fee_mor_tax_trigger_type'];
32939
33415
  export const b2BFeeShippingTaxTriggerMetadata = T['io.flow.internal.v0.models.b2b_fee_shipping_tax_trigger_metadata'];
@@ -33035,8 +33511,10 @@ export const calculatorDtcePostBody = T['io.flow.internal.v0.models.calculator_d
33035
33511
  export const calculatorDtceProduct = T['io.flow.internal.v0.models.calculator_dtce_product'];
33036
33512
  export const calculatorEngine = T['io.flow.internal.v0.enums.calculator_engine'];
33037
33513
  export const calculatorOrganizationSettings = T['io.flow.internal.v0.models.calculator_organization_settings'];
33514
+ export const calculatorOrganizationSettingsCountryOfOriginForm = T['io.flow.internal.v0.models.calculator_organization_settings_country_of_origin_form'];
33038
33515
  export const calculatorOrganizationSettingsDeleted = T['io.flow.internal.v0.models.calculator_organization_settings_deleted'];
33039
33516
  export const calculatorOrganizationSettingsForm = T['io.flow.internal.v0.models.calculator_organization_settings_form'];
33517
+ export const calculatorOrganizationSettingsHsCodeForm = T['io.flow.internal.v0.models.calculator_organization_settings_hs_code_form'];
33040
33518
  export const calculatorOrganizationSettingsUpserted = T['io.flow.internal.v0.models.calculator_organization_settings_upserted'];
33041
33519
  export const calculatorStamp = T['io.flow.internal.v0.unions.calculator_stamp'];
33042
33520
  export const callRecord = T['io.flow.internal.v0.models.call_record'];
@@ -33594,7 +34072,9 @@ export const gabrielItemType = T['io.flow.internal.v0.enums.gabriel_item_type'];
33594
34072
  export const gabrielItemUpserted = T['io.flow.internal.v0.models.gabriel_item_upserted'];
33595
34073
  export const geIngestionFileStatus = T['io.flow.internal.v0.enums.ge_ingestion_file_status'];
33596
34074
  export const geRevenueShareTransaction = T['io.flow.internal.v0.models.ge_revenue_share_transaction'];
34075
+ export const geRevenueShareTransactionDeleted = T['io.flow.internal.v0.models.ge_revenue_share_transaction_deleted'];
33597
34076
  export const geRevenueShareTransactionType = T['io.flow.internal.v0.enums.ge_revenue_share_transaction_type'];
34077
+ export const geRevenueShareTransactionUpserted = T['io.flow.internal.v0.models.ge_revenue_share_transaction_upserted'];
33598
34078
  export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
33599
34079
  export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
33600
34080
  export const generateLoadRate = T['io.flow.internal.v0.models.generate_load_rate'];
@@ -33619,6 +34099,10 @@ export const guaranteedShippingCalibratedOutputUpserted = T['io.flow.internal.v0
33619
34099
  export const guaranteedShippingCalibration = T['io.flow.internal.v0.models.guaranteed_shipping_calibration'];
33620
34100
  export const guaranteedShippingCalibrationForm = T['io.flow.internal.v0.models.guaranteed_shipping_calibration_form'];
33621
34101
  export const guaranteedShippingCalibrationLaneForm = T['io.flow.internal.v0.models.guaranteed_shipping_calibration_lane_form'];
34102
+ export const guaranteedShippingOrderGuarantee = T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee'];
34103
+ export const guaranteedShippingOrderGuaranteeDeleted = T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee_deleted'];
34104
+ export const guaranteedShippingOrderGuaranteeState = T['io.flow.internal.v0.enums.guaranteed_shipping_order_guarantee_state'];
34105
+ export const guaranteedShippingOrderGuaranteeUpserted = T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee_upserted'];
33622
34106
  export const guaranteedShippingPublication = T['io.flow.internal.v0.models.guaranteed_shipping_publication'];
33623
34107
  export const guaranteedShippingPublicationForm = T['io.flow.internal.v0.models.guaranteed_shipping_publication_form'];
33624
34108
  export const guaranteedShippingPublicationLaneForm = T['io.flow.internal.v0.models.guaranteed_shipping_publication_lane_form'];
@@ -33879,7 +34363,9 @@ export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_r
33879
34363
  export const nonChannelPaymentBankAccount = T['io.flow.internal.v0.models.non_channel_payment_bank_account'];
33880
34364
  export const nonL4LTaxDutyFxFeeMetadata = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'];
33881
34365
  export const nonL4LTaxDutyFxTransaction = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'];
34366
+ export const nonL4LTaxDutyFxTransactionDeleted = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction_deleted'];
33882
34367
  export const nonL4LTaxDutyFxTransactionType = T['io.flow.internal.v0.enums.non_l4l_tax_duty_fx_transaction_type'];
34368
+ export const nonL4LTaxDutyFxTransactionUpserted = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction_upserted'];
33883
34369
  export const notification = T['io.flow.internal.v0.models.notification'];
33884
34370
  export const onboardingAuditMessage = T['io.flow.internal.v0.models.onboarding_audit_message'];
33885
34371
  export const onboardingAuditMessageLevel = T['io.flow.internal.v0.enums.onboarding_audit_message_level'];
@@ -34259,6 +34745,7 @@ export const recordReference = T['io.flow.internal.v0.models.record_reference'];
34259
34745
  export const redirect = T['io.flow.internal.v0.models.redirect'];
34260
34746
  export const redirectActionCompleted = T['io.flow.internal.v0.models.redirect_action_completed'];
34261
34747
  export const redirectReason = T['io.flow.internal.v0.enums.redirect_reason'];
34748
+ export const refundTransactionPaymentType = T['io.flow.internal.v0.enums.refund_transaction_payment_type'];
34262
34749
  export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'];
34263
34750
  export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
34264
34751
  export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
@@ -34406,6 +34893,7 @@ export const returnPolicyItemResultUpserted = T['io.flow.internal.v0.models.retu
34406
34893
  export const returnPolicyUpserted = T['io.flow.internal.v0.models.return_policy_upserted'];
34407
34894
  export const returnSummary = T['io.flow.internal.v0.models.return_summary'];
34408
34895
  export const returnTrigger = T['io.flow.internal.v0.unions.return_trigger'];
34896
+ export const returnTriggerCreditRefund = T['io.flow.internal.v0.models.return_trigger_credit_refund'];
34409
34897
  export const returnTriggerRefund = T['io.flow.internal.v0.models.return_trigger_refund'];
34410
34898
  export const returnTriggerReversal = T['io.flow.internal.v0.models.return_trigger_reversal'];
34411
34899
  export const revenueRecord = T['io.flow.internal.v0.models.revenue_record'];
@@ -34490,9 +34978,11 @@ export const shopifyInventoryItemCreateUpserted = T['io.flow.internal.v0.models.
34490
34978
  export const shopifyInventoryItemCreateWebhookEvent = T['io.flow.internal.v0.models.shopify_inventory_item_create_webhook_event'];
34491
34979
  export const shopifyInventoryItemDeleteDeleted = T['io.flow.internal.v0.models.shopify_inventory_item_delete_deleted'];
34492
34980
  export const shopifyInventoryItemDeleteUpserted = T['io.flow.internal.v0.models.shopify_inventory_item_delete_upserted'];
34981
+ export const shopifyInventoryItemDeleteV2 = T['io.flow.internal.v0.models.shopify_inventory_item_delete_v2'];
34493
34982
  export const shopifyInventoryItemDeleteWebhookEvent = T['io.flow.internal.v0.models.shopify_inventory_item_delete_webhook_event'];
34494
34983
  export const shopifyInventoryItemUpdateDeleted = T['io.flow.internal.v0.models.shopify_inventory_item_update_deleted'];
34495
34984
  export const shopifyInventoryItemUpdateUpserted = T['io.flow.internal.v0.models.shopify_inventory_item_update_upserted'];
34985
+ export const shopifyInventoryItemUpdateV2 = T['io.flow.internal.v0.models.shopify_inventory_item_update_v2'];
34496
34986
  export const shopifyInventoryItemUpdateWebhookEvent = T['io.flow.internal.v0.models.shopify_inventory_item_update_webhook_event'];
34497
34987
  export const shopifyMarketsBestSellingProduct = T['io.flow.internal.v0.models.shopify_markets_best_selling_product'];
34498
34988
  export const shopifyMarketsBestSellingProductDeleted = T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'];
@@ -34500,6 +34990,7 @@ export const shopifyMarketsBestSellingProductUpserted = T['io.flow.internal.v0.m
34500
34990
  export const shopifyMarketsDangerousGoods = T['io.flow.internal.v0.enums.shopify_markets_dangerous_goods'];
34501
34991
  export const shopifyMarketsDiscrepancy = T['io.flow.internal.v0.models.shopify_markets_discrepancy'];
34502
34992
  export const shopifyMarketsDiscrepancyData = T['io.flow.internal.v0.models.shopify_markets_discrepancy_data'];
34993
+ export const shopifyMarketsEvent = T['io.flow.internal.v0.models.shopify_markets_event'];
34503
34994
  export const shopifyMarketsHtsNumberAvailable = T['io.flow.internal.v0.enums.shopify_markets_hts_number_available'];
34504
34995
  export const shopifyMarketsIncorporationCountry = T['io.flow.internal.v0.models.shopify_markets_incorporation_country'];
34505
34996
  export const shopifyMarketsInternalOrderMetrics = T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'];
@@ -34572,9 +35063,13 @@ export const shopifyProductBundleUpserted = T['io.flow.internal.v0.models.shopif
34572
35063
  export const shopifyProductCreateDeleted = T['io.flow.internal.v0.models.shopify_product_create_deleted'];
34573
35064
  export const shopifyProductCreateUpserted = T['io.flow.internal.v0.models.shopify_product_create_upserted'];
34574
35065
  export const shopifyProductCreateWebhookEvent = T['io.flow.internal.v0.models.shopify_product_create_webhook_event'];
35066
+ export const shopifyProductDataCreateV2 = T['io.flow.internal.v0.models.shopify_product_data_create_v2'];
35067
+ export const shopifyProductDataDeleteV2 = T['io.flow.internal.v0.models.shopify_product_data_delete_v2'];
35068
+ export const shopifyProductDataUpdateV2 = T['io.flow.internal.v0.models.shopify_product_data_update_v2'];
34575
35069
  export const shopifyProductDeleteDeleted = T['io.flow.internal.v0.models.shopify_product_delete_deleted'];
34576
35070
  export const shopifyProductDeleteUpserted = T['io.flow.internal.v0.models.shopify_product_delete_upserted'];
34577
35071
  export const shopifyProductDeleteWebhookEvent = T['io.flow.internal.v0.models.shopify_product_delete_webhook_event'];
35072
+ export const shopifyProductMetafieldsUpdateV2 = T['io.flow.internal.v0.models.shopify_product_metafields_update_v2'];
34578
35073
  export const shopifyProductTaxonomyAttribute = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute'];
34579
35074
  export const shopifyProductTaxonomyAttributeDeleted = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_deleted'];
34580
35075
  export const shopifyProductTaxonomyAttributeUpserted = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_upserted'];
@@ -34584,6 +35079,8 @@ export const shopifyProductTaxonomyAttributeValueUpserted = T['io.flow.internal.
34584
35079
  export const shopifyProductUpdateDeleted = T['io.flow.internal.v0.models.shopify_product_update_deleted'];
34585
35080
  export const shopifyProductUpdateUpserted = T['io.flow.internal.v0.models.shopify_product_update_upserted'];
34586
35081
  export const shopifyProductUpdateWebhookEvent = T['io.flow.internal.v0.models.shopify_product_update_webhook_event'];
35082
+ export const shopifyProductVariantComponentsV2 = T['io.flow.internal.v0.models.shopify_product_variant_components_v2'];
35083
+ export const shopifyProductVariantDataV2 = T['io.flow.internal.v0.models.shopify_product_variant_data_v2'];
34587
35084
  export const shopifyProductWrapper = T['io.flow.internal.v0.models.shopify_product_wrapper'];
34588
35085
  export const shopifyRateCustomsDetail = T['io.flow.internal.v0.models.shopify_rate_customs_detail'];
34589
35086
  export const shopifyRatePickupPoint = T['io.flow.internal.v0.models.shopify_rate_pickup_point'];
@@ -34779,7 +35276,9 @@ export const trackingUpserted = T['io.flow.internal.v0.models.tracking_upserted'
34779
35276
  export const trackingWebhook = T['io.flow.internal.v0.models.tracking_webhook'];
34780
35277
  export const transaction = T['io.flow.internal.v0.unions.transaction'];
34781
35278
  export const transactionAdjustment = T['io.flow.internal.v0.models.transaction_adjustment'];
35279
+ export const transactionAdjustmentDeleted = T['io.flow.internal.v0.models.transaction_adjustment_deleted'];
34782
35280
  export const transactionAdjustmentForm = T['io.flow.internal.v0.models.transaction_adjustment_form'];
35281
+ export const transactionAdjustmentUpserted = T['io.flow.internal.v0.models.transaction_adjustment_upserted'];
34783
35282
  export const transactionPostingMethod = T['io.flow.internal.v0.enums.transaction_posting_method'];
34784
35283
  export const transactionReference = T['io.flow.internal.v0.models.transaction_reference'];
34785
35284
  export const transactionStatement = T['io.flow.internal.v0.models.transaction_statement'];