@flowio/api-internal-prop-types 9.24.143 → 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.
- package/lib/api-internal.d.ts +448 -48
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +448 -48
- package/src/api-internal.js +533 -77
package/src/api-internal.js
CHANGED
|
@@ -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.
|
|
9198
|
-
discriminator: PropTypes.oneOf(['
|
|
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,
|
|
@@ -9823,6 +9943,27 @@ T['io.flow.internal.v0.models.channel_billed_transaction_deleted'] = PropTypes.e
|
|
|
9823
9943
|
id: PropTypes.string.isRequired,
|
|
9824
9944
|
});
|
|
9825
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
|
+
|
|
9826
9967
|
T['io.flow.internal.v0.models.label_transaction_deleted'] = PropTypes.exact({
|
|
9827
9968
|
discriminator: PropTypes.oneOf(['label_transaction_deleted']).isRequired,
|
|
9828
9969
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10303,6 +10444,9 @@ T['io.flow.billing.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf
|
|
|
10303
10444
|
'full_refund_without_shipment',
|
|
10304
10445
|
'unfulfilled_order_above_de_min',
|
|
10305
10446
|
'order_cancellation_without_capture',
|
|
10447
|
+
'order_cancellation_marked_as_paid',
|
|
10448
|
+
'order_cancellation_after_capture',
|
|
10449
|
+
'order_rejection',
|
|
10306
10450
|
]);
|
|
10307
10451
|
|
|
10308
10452
|
T['io.flow.billing.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
|
|
@@ -10874,6 +11018,22 @@ T['io.flow.internal.v0.models.shopify_product_delete_upserted'] = PropTypes.exac
|
|
|
10874
11018
|
shopify_product_delete: T['io.flow.internal.v0.models.shopify_product_delete_webhook_event'].isRequired,
|
|
10875
11019
|
});
|
|
10876
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
|
+
|
|
10877
11037
|
T['io.flow.shopify.external.v0.models.product_metafield'] = PropTypes.exact({
|
|
10878
11038
|
id: PropTypes.number.isRequired,
|
|
10879
11039
|
namespace: PropTypes.string.isRequired,
|
|
@@ -10961,6 +11121,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
|
10961
11121
|
has_variants_that_requires_components: PropTypes.bool,
|
|
10962
11122
|
category: T['io.flow.shopify.external.v0.models.rest_taxonomy_category'],
|
|
10963
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']),
|
|
10964
11125
|
});
|
|
10965
11126
|
|
|
10966
11127
|
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
@@ -11423,6 +11584,148 @@ T['io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted'] =
|
|
|
11423
11584
|
shopify_markets_best_selling_product: T['io.flow.internal.v0.models.shopify_markets_best_selling_product'].isRequired,
|
|
11424
11585
|
});
|
|
11425
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
|
+
|
|
11426
11729
|
T['io.flow.shopify.external.v0.models.shopify_inventory_item_delete'] = PropTypes.exact({
|
|
11427
11730
|
id: PropTypes.number.isRequired,
|
|
11428
11731
|
});
|
|
@@ -11693,6 +11996,12 @@ T['io.flow.ratecard.v0.models.ratecard_service_summary'] = PropTypes.exact({
|
|
|
11693
11996
|
carrier: T['io.flow.ratecard.v0.models.ratecard_carrier_summary'].isRequired,
|
|
11694
11997
|
});
|
|
11695
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
|
+
|
|
11696
12005
|
T['io.flow.fulfillment.v0.enums.ratecard_owner'] = PropTypes.oneOf(['flow', 'organization']);
|
|
11697
12006
|
|
|
11698
12007
|
T['io.flow.ratecard.v0.models.ratecard_summary'] = PropTypes.exact({
|
|
@@ -12015,6 +12324,11 @@ T['io.flow.internal.v0.models.return_policy_item_result_deleted'] = PropTypes.ex
|
|
|
12015
12324
|
result: T['io.flow.catalog.return.v0.models.return_policy_item_result'].isRequired,
|
|
12016
12325
|
});
|
|
12017
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
|
+
|
|
12018
12332
|
T['io.flow.internal.v0.models.restrictions_dailyops'] = PropTypes.exact({
|
|
12019
12333
|
id: PropTypes.string.isRequired,
|
|
12020
12334
|
report_date: PropTypes.string.isRequired,
|
|
@@ -12118,6 +12432,11 @@ T['io.flow.internal.v0.models.restrictions_athena_dailyops_fs_upserted'] = PropT
|
|
|
12118
12432
|
T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'] = PropTypes.oneOf(['all_screenings', 'first_screening_only']);
|
|
12119
12433
|
T['io.flow.internal.v0.enums.restriction_rule_activation_status'] = PropTypes.oneOf(['draft', 'active', 'inactive']);
|
|
12120
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
|
+
|
|
12121
12440
|
T['io.flow.internal.v0.models.keyword_cancelling'] = PropTypes.exact({
|
|
12122
12441
|
positive_keyword: PropTypes.string.isRequired,
|
|
12123
12442
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -12265,6 +12584,7 @@ T['io.flow.internal.v0.models.reporting_fulfillment_is'] = PropTypes.exact({
|
|
|
12265
12584
|
manual_capture: PropTypes.bool,
|
|
12266
12585
|
partial_fulfillment: PropTypes.bool,
|
|
12267
12586
|
partial_refund: PropTypes.bool,
|
|
12587
|
+
credit_payment: PropTypes.bool,
|
|
12268
12588
|
});
|
|
12269
12589
|
|
|
12270
12590
|
T['io.flow.internal.v0.models.reporting_refund_reference'] = PropTypes.exact({
|
|
@@ -12773,6 +13093,7 @@ T['io.flow.internal.v0.enums.sellability_decision_source'] = PropTypes.oneOf([
|
|
|
12773
13093
|
'fast_screen_hs_chapter_exception',
|
|
12774
13094
|
'fast_screen_active_mode',
|
|
12775
13095
|
'unserviceable_taxonomy',
|
|
13096
|
+
'insufficient_details',
|
|
12776
13097
|
'pending_classification',
|
|
12777
13098
|
'pending_agent_review',
|
|
12778
13099
|
'screen_failed',
|
|
@@ -12874,46 +13195,6 @@ T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
|
12874
13195
|
deleted_at: PropTypes.string,
|
|
12875
13196
|
});
|
|
12876
13197
|
|
|
12877
|
-
T['io.flow.internal.v0.models.preonboarding_sellability_result'] = PropTypes.exact({
|
|
12878
|
-
id: PropTypes.string,
|
|
12879
|
-
merchant_id: PropTypes.string.isRequired,
|
|
12880
|
-
product_id: PropTypes.string.isRequired,
|
|
12881
|
-
channel: PropTypes.string.isRequired,
|
|
12882
|
-
request_id: PropTypes.string.isRequired,
|
|
12883
|
-
status: T['io.flow.sellability.v0.enums.sellability_result_status'].isRequired,
|
|
12884
|
-
error_code: T['io.flow.sellability.v0.enums.sellability_result_error_code'],
|
|
12885
|
-
hs6_code: PropTypes.string,
|
|
12886
|
-
hs6_code_source: T['io.flow.internal.v0.enums.hs6_code_source'],
|
|
12887
|
-
restricted_regions_by_type: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellability_restricted_region']),
|
|
12888
|
-
rule_ids: PropTypes.arrayOf(PropTypes.string),
|
|
12889
|
-
matching_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
12890
|
-
matching_sellability_positive_keywords: PropTypes.arrayOf(PropTypes.string),
|
|
12891
|
-
classification_failure_reason: T['io.flow.internal.v0.enums.classification_failure_reason'],
|
|
12892
|
-
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12893
|
-
inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12894
|
-
effective_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
12895
|
-
fingerprint: PropTypes.string.isRequired,
|
|
12896
|
-
screening_mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'],
|
|
12897
|
-
decision_source: T['io.flow.internal.v0.enums.sellability_decision_source'],
|
|
12898
|
-
rule_matches: PropTypes.arrayOf(T['io.flow.internal.v0.models.sellability_rule_match']),
|
|
12899
|
-
created_at: PropTypes.string,
|
|
12900
|
-
});
|
|
12901
|
-
|
|
12902
|
-
T['io.flow.internal.v0.models.preonboarding_sellability_result_updated'] = PropTypes.exact({
|
|
12903
|
-
discriminator: PropTypes.oneOf(['preonboarding_sellability_result_updated']).isRequired,
|
|
12904
|
-
event_id: PropTypes.string.isRequired,
|
|
12905
|
-
timestamp: PropTypes.string.isRequired,
|
|
12906
|
-
previous_preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
|
|
12907
|
-
preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
|
|
12908
|
-
});
|
|
12909
|
-
|
|
12910
|
-
T['io.flow.internal.v0.models.preonboarding_sellability_result_inserted'] = PropTypes.exact({
|
|
12911
|
-
discriminator: PropTypes.oneOf(['preonboarding_sellability_result_inserted']).isRequired,
|
|
12912
|
-
event_id: PropTypes.string.isRequired,
|
|
12913
|
-
timestamp: PropTypes.string.isRequired,
|
|
12914
|
-
preonboarding_sellability_result: T['io.flow.internal.v0.models.preonboarding_sellability_result'].isRequired,
|
|
12915
|
-
});
|
|
12916
|
-
|
|
12917
13198
|
T['io.flow.internal.v0.enums.preonboarding_request_status'] = PropTypes.oneOf(['pending', 'completed', 'failed', 'discarded']);
|
|
12918
13199
|
T['io.flow.internal.v0.enums.preonboarding_classification_platform'] = PropTypes.oneOf(['FlowOnboarding']);
|
|
12919
13200
|
|
|
@@ -13546,6 +13827,7 @@ T['io.flow.internal.v0.enums.order_validation_status'] = PropTypes.oneOf([
|
|
|
13546
13827
|
'breached',
|
|
13547
13828
|
]);
|
|
13548
13829
|
|
|
13830
|
+
T['io.flow.internal.v0.enums.refund_transaction_payment_type'] = PropTypes.oneOf(['globale', 'third_party', 'credit']);
|
|
13549
13831
|
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
13550
13832
|
|
|
13551
13833
|
T['io.flow.internal.v0.models.user_status_rule_form'] = PropTypes.exact({
|
|
@@ -14953,9 +15235,12 @@ T['io.flow.internal.v0.models.item_hs6_override_rejection'] = PropTypes.exact({
|
|
|
14953
15235
|
message: PropTypes.string.isRequired,
|
|
14954
15236
|
});
|
|
14955
15237
|
|
|
15238
|
+
T['io.flow.internal.v0.enums.classification_scope'] = PropTypes.oneOf(['Item', 'Product', 'Bucket']);
|
|
15239
|
+
|
|
14956
15240
|
T['io.flow.internal.v0.models.item_hs6_override'] = PropTypes.exact({
|
|
14957
15241
|
item_number: PropTypes.string.isRequired,
|
|
14958
15242
|
hs6: PropTypes.string.isRequired,
|
|
15243
|
+
classification_scope: T['io.flow.internal.v0.enums.classification_scope'],
|
|
14959
15244
|
});
|
|
14960
15245
|
|
|
14961
15246
|
T['io.flow.internal.v0.models.item_hs6_override_result'] = PropTypes.exact({
|
|
@@ -14963,7 +15248,6 @@ T['io.flow.internal.v0.models.item_hs6_override_result'] = PropTypes.exact({
|
|
|
14963
15248
|
rejected: PropTypes.arrayOf(T['io.flow.internal.v0.models.item_hs6_override_rejection']).isRequired,
|
|
14964
15249
|
});
|
|
14965
15250
|
|
|
14966
|
-
T['io.flow.internal.v0.enums.classification_scope'] = PropTypes.oneOf(['Item', 'Product', 'Bucket']);
|
|
14967
15251
|
T['io.flow.internal.v0.enums.harmonization_decision_source'] = PropTypes.oneOf(['human', 'system', 'legacy_model', 'enterprise_model', 'merchant']);
|
|
14968
15252
|
T['io.flow.internal.v0.enums.item_type'] = PropTypes.oneOf(['standard', 'multi_product']);
|
|
14969
15253
|
|
|
@@ -15581,6 +15865,25 @@ T['io.flow.internal.v0.models.guaranteed_shipping_publication'] = PropTypes.exac
|
|
|
15581
15865
|
status: T['io.flow.internal.v0.enums.guaranteed_shipping_publication_status'].isRequired,
|
|
15582
15866
|
});
|
|
15583
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
|
+
|
|
15584
15887
|
T['io.flow.internal.v0.models.guaranteed_shipping_calibration_lane_form'] = PropTypes.exact({
|
|
15585
15888
|
channel_id: PropTypes.string.isRequired,
|
|
15586
15889
|
organization_id: PropTypes.string.isRequired,
|
|
@@ -21515,9 +21818,12 @@ T['io.flow.internal.v0.models.restriction_item_review_summary'] = PropTypes.exac
|
|
|
21515
21818
|
});
|
|
21516
21819
|
|
|
21517
21820
|
T['io.flow.internal.v0.models.restriction_product_summary'] = PropTypes.exact({
|
|
21821
|
+
product_id: PropTypes.string,
|
|
21518
21822
|
name: PropTypes.string.isRequired,
|
|
21519
21823
|
restrictions: PropTypes.arrayOf(T['io.flow.internal.v0.models.restriction_item_review_summary']).isRequired,
|
|
21520
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,
|
|
21521
21827
|
});
|
|
21522
21828
|
|
|
21523
21829
|
T['io.flow.internal.v0.models.restriction_item_request_form'] = PropTypes.exact({
|
|
@@ -22516,6 +22822,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
22516
22822
|
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
22517
22823
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
22518
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']),
|
|
22519
22826
|
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
22520
22827
|
evaluation_mode: T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'].isRequired,
|
|
22521
22828
|
});
|
|
@@ -22537,6 +22844,7 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
22537
22844
|
attribute_names: PropTypes.arrayOf(PropTypes.string),
|
|
22538
22845
|
attribute_rule_conditions: T['io.flow.internal.v0.models.attribute_rule'],
|
|
22539
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']),
|
|
22540
22848
|
activation_status: T['io.flow.internal.v0.enums.restriction_rule_activation_status'].isRequired,
|
|
22541
22849
|
evaluation_mode: T['io.flow.internal.v0.enums.restriction_rule_evaluation_mode'].isRequired,
|
|
22542
22850
|
});
|
|
@@ -23632,6 +23940,7 @@ T['io.flow.sellability.v0.models.sellability_screening_form'] = PropTypes.exact(
|
|
|
23632
23940
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
23633
23941
|
inferred_taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
23634
23942
|
mode: T['io.flow.sellability.v0.enums.sellability_screening_mode'].isRequired,
|
|
23943
|
+
reprocess_policy: T['io.flow.sellability.v0.enums.sellability_reprocess_policy'],
|
|
23635
23944
|
catalog_size: PropTypes.number,
|
|
23636
23945
|
relative_ranking: PropTypes.number,
|
|
23637
23946
|
dry_run: PropTypes.bool,
|
|
@@ -24608,6 +24917,7 @@ T['io.flow.internal.v0.models.shipping_cost_summary'] = PropTypes.exact({
|
|
|
24608
24917
|
amount: T['io.flow.common.v0.models.money'].isRequired,
|
|
24609
24918
|
tax: T['io.flow.common.v0.models.money'].isRequired,
|
|
24610
24919
|
label_id: PropTypes.string,
|
|
24920
|
+
shipping_label: T['io.flow.label.v0.models.shipping_label_summary'],
|
|
24611
24921
|
base: T['io.flow.trueup.v0.models.label_base'],
|
|
24612
24922
|
surcharges: PropTypes.arrayOf(T['io.flow.trueup.v0.models.label_surcharge']),
|
|
24613
24923
|
});
|
|
@@ -24665,6 +24975,50 @@ T['io.flow.internal.v0.models.product_sellability_internal_form'] = PropTypes.ex
|
|
|
24665
24975
|
categories: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
24666
24976
|
});
|
|
24667
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
|
+
|
|
24668
25022
|
T['io.flow.internal.v0.models.preonboarding_classification_request'] = PropTypes.exact({
|
|
24669
25023
|
id: PropTypes.string.isRequired,
|
|
24670
25024
|
merchant_id: PropTypes.string.isRequired,
|
|
@@ -24848,7 +25202,7 @@ T['io.flow.internal.v0.models.guaranteed_shipping_published_output'] = PropTypes
|
|
|
24848
25202
|
outbound_shipping_cost_source_updated_at: PropTypes.number.isRequired,
|
|
24849
25203
|
average_order_value_source_updated_at: PropTypes.number.isRequired,
|
|
24850
25204
|
target_flat_rates_source_updated_at: PropTypes.number.isRequired,
|
|
24851
|
-
published_at: PropTypes.number,
|
|
25205
|
+
published_at: PropTypes.number.isRequired,
|
|
24852
25206
|
});
|
|
24853
25207
|
|
|
24854
25208
|
T['io.flow.internal.v0.models.guaranteed_shipping_published_output_upserted'] = PropTypes.exact({
|
|
@@ -25439,6 +25793,7 @@ T['io.flow.internal.v0.models.carrier_estimate'] = PropTypes.exact({
|
|
|
25439
25793
|
cost: T['io.flow.common.v0.models.money'].isRequired,
|
|
25440
25794
|
min_delivery_days: PropTypes.number,
|
|
25441
25795
|
max_delivery_days: PropTypes.number,
|
|
25796
|
+
model_diagnostics: PropTypes.string,
|
|
25442
25797
|
});
|
|
25443
25798
|
|
|
25444
25799
|
T['io.flow.internal.v0.models.outbound_shipping_cost'] = PropTypes.exact({
|
|
@@ -25543,6 +25898,7 @@ T['io.flow.internal.v0.models.average_order_value'] = PropTypes.exact({
|
|
|
25543
25898
|
updated_at: PropTypes.number.isRequired,
|
|
25544
25899
|
run_id: PropTypes.string.isRequired,
|
|
25545
25900
|
model_version: PropTypes.string.isRequired,
|
|
25901
|
+
model_diagnostics: PropTypes.string,
|
|
25546
25902
|
});
|
|
25547
25903
|
|
|
25548
25904
|
T['io.flow.internal.v0.models.average_order_value_upserted'] = PropTypes.exact({
|
|
@@ -25637,25 +25993,6 @@ T['io.flow.internal.v0.unions.calculator_stamp'] = PropTypes.oneOfType([
|
|
|
25637
25993
|
T['io.flow.internal.v0.models.calculation_step'],
|
|
25638
25994
|
]);
|
|
25639
25995
|
|
|
25640
|
-
T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'] = PropTypes.oneOf(['confirmed', 'voided']);
|
|
25641
|
-
|
|
25642
|
-
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'] = PropTypes.exact({
|
|
25643
|
-
id: PropTypes.string.isRequired,
|
|
25644
|
-
organization_id: PropTypes.string.isRequired,
|
|
25645
|
-
order_number: PropTypes.string.isRequired,
|
|
25646
|
-
guarantee_state: T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'].isRequired,
|
|
25647
|
-
label_id: PropTypes.string,
|
|
25648
|
-
notification_id: PropTypes.string,
|
|
25649
|
-
});
|
|
25650
|
-
|
|
25651
|
-
T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'] = PropTypes.exact({
|
|
25652
|
-
discriminator: PropTypes.oneOf(['adaptive_shipping_order_guarantee_upserted']).isRequired,
|
|
25653
|
-
event_id: PropTypes.string.isRequired,
|
|
25654
|
-
timestamp: PropTypes.string.isRequired,
|
|
25655
|
-
organization: PropTypes.string.isRequired,
|
|
25656
|
-
adaptive_shipping_order_guarantee: T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'].isRequired,
|
|
25657
|
-
});
|
|
25658
|
-
|
|
25659
25996
|
T['io.flow.internal.v0.enums.item_quantity_action'] = PropTypes.oneOf(['fulfillment_ship', 'fulfillment_cancel', 'fulfillment_generate_label']);
|
|
25660
25997
|
|
|
25661
25998
|
T['io.flow.internal.v0.models.action_quantity'] = PropTypes.exact({
|
|
@@ -25703,6 +26040,13 @@ T['io.flow.internal.v0.models.transaction_adjustment'] = PropTypes.exact({
|
|
|
25703
26040
|
details: T['io.flow.internal.v0.unions.adjustment_details'].isRequired,
|
|
25704
26041
|
});
|
|
25705
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
|
+
|
|
25706
26050
|
T['io.flow.internal.v0.models.return_trigger_reversal'] = PropTypes.exact({
|
|
25707
26051
|
discriminator: PropTypes.oneOf(['by_reversal']).isRequired,
|
|
25708
26052
|
reversal: T['io.flow.internal.v0.models.transaction_reference'].isRequired,
|
|
@@ -25747,6 +26091,7 @@ T['io.flow.internal.v0.models.return_trigger_refund'] = PropTypes.exact({
|
|
|
25747
26091
|
T['io.flow.internal.v0.unions.return_trigger'] = PropTypes.oneOfType([
|
|
25748
26092
|
T['io.flow.internal.v0.models.return_trigger_refund'],
|
|
25749
26093
|
T['io.flow.internal.v0.models.return_trigger_reversal'],
|
|
26094
|
+
T['io.flow.internal.v0.models.return_trigger_credit_refund'],
|
|
25750
26095
|
]);
|
|
25751
26096
|
|
|
25752
26097
|
T['io.flow.internal.v0.models.accounting_return_metadata'] = PropTypes.exact({
|
|
@@ -26669,6 +27014,12 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
|
|
|
26669
27014
|
name: PropTypes.string,
|
|
26670
27015
|
});
|
|
26671
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
|
+
|
|
26672
27023
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'] = PropTypes.exact({
|
|
26673
27024
|
discriminator: PropTypes.oneOf(['discount']).isRequired,
|
|
26674
27025
|
line_id: PropTypes.string,
|
|
@@ -26712,6 +27063,7 @@ T['io.flow.consumer.invoice.v0.unions.consumer_invoice_line'] = PropTypes.oneOfT
|
|
|
26712
27063
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_item'],
|
|
26713
27064
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_discount'],
|
|
26714
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'],
|
|
26715
27067
|
T['io.flow.consumer.invoice.v0.models.consumer_invoice_line_tip'],
|
|
26716
27068
|
]);
|
|
26717
27069
|
|
|
@@ -28115,6 +28467,7 @@ T['io.flow.internal.v0.models.order_refund_transaction'] = PropTypes.exact({
|
|
|
28115
28467
|
order_number: PropTypes.string.isRequired,
|
|
28116
28468
|
price: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
28117
28469
|
refunded_at: PropTypes.string,
|
|
28470
|
+
payment_type: T['io.flow.internal.v0.enums.refund_transaction_payment_type'],
|
|
28118
28471
|
});
|
|
28119
28472
|
|
|
28120
28473
|
T['io.flow.internal.v0.models.order_refund_transaction_upserted'] = PropTypes.exact({
|
|
@@ -28944,6 +29297,13 @@ T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_transaction'] = PropTypes.exac
|
|
|
28944
29297
|
created_at: PropTypes.string.isRequired,
|
|
28945
29298
|
});
|
|
28946
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
|
+
|
|
28947
29307
|
T['io.flow.internal.v0.models.merchant_fee_transaction'] = PropTypes.exact({
|
|
28948
29308
|
discriminator: PropTypes.oneOf(['merchant_fee_transaction']).isRequired,
|
|
28949
29309
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
@@ -29053,6 +29413,7 @@ T['io.flow.internal.v0.models.ge_revenue_share_transaction'] = PropTypes.exact({
|
|
|
29053
29413
|
discriminator: PropTypes.oneOf(['ge_revenue_share_transaction']).isRequired,
|
|
29054
29414
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
29055
29415
|
ge_revenue_share: T['io.flow.internal.v0.models.fee'].isRequired,
|
|
29416
|
+
capture_id: PropTypes.string.isRequired,
|
|
29056
29417
|
id: PropTypes.string.isRequired,
|
|
29057
29418
|
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
29058
29419
|
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
@@ -29063,6 +29424,13 @@ T['io.flow.internal.v0.models.ge_revenue_share_transaction'] = PropTypes.exact({
|
|
|
29063
29424
|
created_at: PropTypes.string.isRequired,
|
|
29064
29425
|
});
|
|
29065
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
|
+
|
|
29066
29434
|
T['io.flow.internal.v0.models.flat_rate_label_transaction'] = PropTypes.exact({
|
|
29067
29435
|
discriminator: PropTypes.oneOf(['flat_rate_label_transaction']).isRequired,
|
|
29068
29436
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
@@ -29494,6 +29862,12 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29494
29862
|
T['io.flow.internal.v0.models.order_transaction_deleted'],
|
|
29495
29863
|
T['io.flow.internal.v0.models.label_transaction_upserted'],
|
|
29496
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'],
|
|
29497
29871
|
T['io.flow.internal.v0.models.channel_billed_transaction_upserted'],
|
|
29498
29872
|
T['io.flow.internal.v0.models.channel_billed_transaction_deleted'],
|
|
29499
29873
|
T['io.flow.internal.v0.models.tax_transaction_upserted'],
|
|
@@ -29670,8 +30044,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29670
30044
|
T['io.flow.internal.v0.models.order_validation_deleted'],
|
|
29671
30045
|
T['io.flow.internal.v0.models.label_creation_job_upserted'],
|
|
29672
30046
|
T['io.flow.internal.v0.models.label_creation_job_deleted'],
|
|
29673
|
-
T['io.flow.internal.v0.models.
|
|
29674
|
-
T['io.flow.internal.v0.models.
|
|
30047
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee_upserted'],
|
|
30048
|
+
T['io.flow.internal.v0.models.guaranteed_shipping_order_guarantee_deleted'],
|
|
29675
30049
|
T['io.flow.internal.v0.models.label_tracking_summary_upserted'],
|
|
29676
30050
|
T['io.flow.internal.v0.models.label_tracking_summary_deleted'],
|
|
29677
30051
|
T['io.flow.internal.v0.models.logistics_capabilities_upserted'],
|
|
@@ -29822,6 +30196,14 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
29822
30196
|
T['io.flow.internal.v0.models.shopify_inventory_item_update_deleted'],
|
|
29823
30197
|
T['io.flow.internal.v0.models.shopify_inventory_item_delete_upserted'],
|
|
29824
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'],
|
|
29825
30207
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
29826
30208
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
29827
30209
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
@@ -29980,6 +30362,28 @@ T['io.flow.internal.v0.models.lab_project_settings'] = PropTypes.exact({
|
|
|
29980
30362
|
terms: T['io.flow.internal.v0.models.acceptance'],
|
|
29981
30363
|
});
|
|
29982
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
|
+
|
|
29983
30387
|
T['io.flow.internal.v0.enums.any_dangerous_goods'] = PropTypes.oneOf(['yes', 'no', 'i_dont_know']);
|
|
29984
30388
|
T['io.flow.internal.v0.enums.api_call_reference_id'] = PropTypes.oneOf(['duty_rates_data_event', 'integration_test', 'unit_test']);
|
|
29985
30389
|
|
|
@@ -30100,6 +30504,12 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30100
30504
|
'order_transaction_deleted',
|
|
30101
30505
|
'label_transaction_upserted',
|
|
30102
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',
|
|
30103
30513
|
'channel_billed_transaction_upserted',
|
|
30104
30514
|
'channel_billed_transaction_deleted',
|
|
30105
30515
|
'tax_transaction_upserted',
|
|
@@ -30276,8 +30686,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30276
30686
|
'order_validation_deleted',
|
|
30277
30687
|
'label_creation_job_upserted',
|
|
30278
30688
|
'label_creation_job_deleted',
|
|
30279
|
-
'
|
|
30280
|
-
'
|
|
30689
|
+
'guaranteed_shipping_order_guarantee_upserted',
|
|
30690
|
+
'guaranteed_shipping_order_guarantee_deleted',
|
|
30281
30691
|
'label_tracking_summary_upserted',
|
|
30282
30692
|
'label_tracking_summary_deleted',
|
|
30283
30693
|
'logistics_capabilities_upserted',
|
|
@@ -30428,6 +30838,14 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
30428
30838
|
'shopify_inventory_item_update_deleted',
|
|
30429
30839
|
'shopify_inventory_item_delete_upserted',
|
|
30430
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',
|
|
30431
30849
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
30432
30850
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
30433
30851
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -30753,11 +31171,19 @@ T['io.flow.internal.v0.models.cafe24_markets_webhook'] = PropTypes.exact({
|
|
|
30753
31171
|
placeholder: PropTypes.string,
|
|
30754
31172
|
});
|
|
30755
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
|
+
|
|
30756
31178
|
T['io.flow.internal.v0.models.calculator_organization_settings_form'] = PropTypes.exact({
|
|
30757
31179
|
default_country_of_origin: PropTypes.string,
|
|
30758
31180
|
default_hs_code: PropTypes.string,
|
|
30759
31181
|
});
|
|
30760
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
|
+
|
|
30761
31187
|
T['io.flow.internal.v0.models.call_record'] = PropTypes.exact({
|
|
30762
31188
|
id: PropTypes.string.isRequired,
|
|
30763
31189
|
request_body: PropTypes.string,
|
|
@@ -31433,6 +31859,10 @@ T['io.flow.internal.v0.models.shipping_lane'] = PropTypes.exact({
|
|
|
31433
31859
|
destination: PropTypes.string.isRequired,
|
|
31434
31860
|
});
|
|
31435
31861
|
|
|
31862
|
+
T['io.flow.internal.v0.models.shopify_markets_event'] = PropTypes.exact({
|
|
31863
|
+
placeholder: PropTypes.string,
|
|
31864
|
+
});
|
|
31865
|
+
|
|
31436
31866
|
T['io.flow.internal.v0.models.shopify_markets_queued_record'] = PropTypes.exact({
|
|
31437
31867
|
id: PropTypes.string.isRequired,
|
|
31438
31868
|
type: PropTypes.string.isRequired,
|
|
@@ -32034,6 +32464,10 @@ T['io.flow.shopify.markets.internal.v0.models.shipping_lane'] = PropTypes.exact(
|
|
|
32034
32464
|
destination: PropTypes.string.isRequired,
|
|
32035
32465
|
});
|
|
32036
32466
|
|
|
32467
|
+
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_event'] = PropTypes.exact({
|
|
32468
|
+
placeholder: PropTypes.string,
|
|
32469
|
+
});
|
|
32470
|
+
|
|
32037
32471
|
T['io.flow.shopify.markets.internal.v0.models.shopify_markets_queued_record'] = PropTypes.exact({
|
|
32038
32472
|
id: PropTypes.string.isRequired,
|
|
32039
32473
|
type: PropTypes.string.isRequired,
|
|
@@ -32872,10 +33306,6 @@ export const accountUpsertedV2 = T['io.flow.internal.v0.models.account_upserted_
|
|
|
32872
33306
|
export const accountingPendingOrderMetadata = T['io.flow.internal.v0.models.accounting_pending_order_metadata'];
|
|
32873
33307
|
export const accountingReturnMetadata = T['io.flow.internal.v0.models.accounting_return_metadata'];
|
|
32874
33308
|
export const actionQuantity = T['io.flow.internal.v0.models.action_quantity'];
|
|
32875
|
-
export const adaptiveShippingOrderGuarantee = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee'];
|
|
32876
|
-
export const adaptiveShippingOrderGuaranteeDeleted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_deleted'];
|
|
32877
|
-
export const adaptiveShippingOrderGuaranteeState = T['io.flow.internal.v0.enums.adaptive_shipping_order_guarantee_state'];
|
|
32878
|
-
export const adaptiveShippingOrderGuaranteeUpserted = T['io.flow.internal.v0.models.adaptive_shipping_order_guarantee_upserted'];
|
|
32879
33309
|
export const additionalImportTax = T['io.flow.internal.v0.models.additional_import_tax'];
|
|
32880
33310
|
export const adjustmentAmount = T['io.flow.internal.v0.unions.adjustment_amount'];
|
|
32881
33311
|
export const adjustmentAmountFixed = T['io.flow.internal.v0.models.adjustment_amount_fixed'];
|
|
@@ -32935,6 +33365,8 @@ export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_ref
|
|
|
32935
33365
|
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
32936
33366
|
export const agentReviewDetail = T['io.flow.internal.v0.models.agent_review_detail'];
|
|
32937
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'];
|
|
32938
33370
|
export const aiReviewBatchSubmitted = T['io.flow.internal.v0.models.ai_review_batch_submitted'];
|
|
32939
33371
|
export const aiReviewConsumer = T['io.flow.internal.v0.enums.ai_review_consumer'];
|
|
32940
33372
|
export const aiReviewContext = T['io.flow.internal.v0.unions.ai_review_context'];
|
|
@@ -32972,6 +33404,7 @@ export const authorizedChargeStatus = T['io.flow.internal.v0.models.authorized_c
|
|
|
32972
33404
|
export const authorizedLineItemCharge = T['io.flow.internal.v0.models.authorized_line_item_charge'];
|
|
32973
33405
|
export const authorizedOrderCharge = T['io.flow.internal.v0.unions.authorized_order_charge'];
|
|
32974
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'];
|
|
32975
33408
|
export const autoRestrictRule = T['io.flow.internal.v0.enums.auto_restrict_rule'];
|
|
32976
33409
|
export const autoReviewCriteria = T['io.flow.internal.v0.models.auto_review_criteria'];
|
|
32977
33410
|
export const averageOrderValue = T['io.flow.internal.v0.models.average_order_value'];
|
|
@@ -33078,8 +33511,10 @@ export const calculatorDtcePostBody = T['io.flow.internal.v0.models.calculator_d
|
|
|
33078
33511
|
export const calculatorDtceProduct = T['io.flow.internal.v0.models.calculator_dtce_product'];
|
|
33079
33512
|
export const calculatorEngine = T['io.flow.internal.v0.enums.calculator_engine'];
|
|
33080
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'];
|
|
33081
33515
|
export const calculatorOrganizationSettingsDeleted = T['io.flow.internal.v0.models.calculator_organization_settings_deleted'];
|
|
33082
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'];
|
|
33083
33518
|
export const calculatorOrganizationSettingsUpserted = T['io.flow.internal.v0.models.calculator_organization_settings_upserted'];
|
|
33084
33519
|
export const calculatorStamp = T['io.flow.internal.v0.unions.calculator_stamp'];
|
|
33085
33520
|
export const callRecord = T['io.flow.internal.v0.models.call_record'];
|
|
@@ -33637,7 +34072,9 @@ export const gabrielItemType = T['io.flow.internal.v0.enums.gabriel_item_type'];
|
|
|
33637
34072
|
export const gabrielItemUpserted = T['io.flow.internal.v0.models.gabriel_item_upserted'];
|
|
33638
34073
|
export const geIngestionFileStatus = T['io.flow.internal.v0.enums.ge_ingestion_file_status'];
|
|
33639
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'];
|
|
33640
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'];
|
|
33641
34078
|
export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
|
|
33642
34079
|
export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
|
|
33643
34080
|
export const generateLoadRate = T['io.flow.internal.v0.models.generate_load_rate'];
|
|
@@ -33662,6 +34099,10 @@ export const guaranteedShippingCalibratedOutputUpserted = T['io.flow.internal.v0
|
|
|
33662
34099
|
export const guaranteedShippingCalibration = T['io.flow.internal.v0.models.guaranteed_shipping_calibration'];
|
|
33663
34100
|
export const guaranteedShippingCalibrationForm = T['io.flow.internal.v0.models.guaranteed_shipping_calibration_form'];
|
|
33664
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'];
|
|
33665
34106
|
export const guaranteedShippingPublication = T['io.flow.internal.v0.models.guaranteed_shipping_publication'];
|
|
33666
34107
|
export const guaranteedShippingPublicationForm = T['io.flow.internal.v0.models.guaranteed_shipping_publication_form'];
|
|
33667
34108
|
export const guaranteedShippingPublicationLaneForm = T['io.flow.internal.v0.models.guaranteed_shipping_publication_lane_form'];
|
|
@@ -33922,7 +34363,9 @@ export const noLiabilityReasonCode = T['io.flow.internal.v0.enums.no_liability_r
|
|
|
33922
34363
|
export const nonChannelPaymentBankAccount = T['io.flow.internal.v0.models.non_channel_payment_bank_account'];
|
|
33923
34364
|
export const nonL4LTaxDutyFxFeeMetadata = T['io.flow.internal.v0.models.non_l4l_tax_duty_fx_fee_metadata'];
|
|
33924
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'];
|
|
33925
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'];
|
|
33926
34369
|
export const notification = T['io.flow.internal.v0.models.notification'];
|
|
33927
34370
|
export const onboardingAuditMessage = T['io.flow.internal.v0.models.onboarding_audit_message'];
|
|
33928
34371
|
export const onboardingAuditMessageLevel = T['io.flow.internal.v0.enums.onboarding_audit_message_level'];
|
|
@@ -34302,6 +34745,7 @@ export const recordReference = T['io.flow.internal.v0.models.record_reference'];
|
|
|
34302
34745
|
export const redirect = T['io.flow.internal.v0.models.redirect'];
|
|
34303
34746
|
export const redirectActionCompleted = T['io.flow.internal.v0.models.redirect_action_completed'];
|
|
34304
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'];
|
|
34305
34749
|
export const registeredExporterTariffEligibilityData = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_data'];
|
|
34306
34750
|
export const registeredExporterTariffEligibilityForm = T['io.flow.internal.v0.models.registered_exporter_tariff_eligibility_form'];
|
|
34307
34751
|
export const rejectionReason = T['io.flow.internal.v0.enums.rejection_reason'];
|
|
@@ -34449,6 +34893,7 @@ export const returnPolicyItemResultUpserted = T['io.flow.internal.v0.models.retu
|
|
|
34449
34893
|
export const returnPolicyUpserted = T['io.flow.internal.v0.models.return_policy_upserted'];
|
|
34450
34894
|
export const returnSummary = T['io.flow.internal.v0.models.return_summary'];
|
|
34451
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'];
|
|
34452
34897
|
export const returnTriggerRefund = T['io.flow.internal.v0.models.return_trigger_refund'];
|
|
34453
34898
|
export const returnTriggerReversal = T['io.flow.internal.v0.models.return_trigger_reversal'];
|
|
34454
34899
|
export const revenueRecord = T['io.flow.internal.v0.models.revenue_record'];
|
|
@@ -34533,9 +34978,11 @@ export const shopifyInventoryItemCreateUpserted = T['io.flow.internal.v0.models.
|
|
|
34533
34978
|
export const shopifyInventoryItemCreateWebhookEvent = T['io.flow.internal.v0.models.shopify_inventory_item_create_webhook_event'];
|
|
34534
34979
|
export const shopifyInventoryItemDeleteDeleted = T['io.flow.internal.v0.models.shopify_inventory_item_delete_deleted'];
|
|
34535
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'];
|
|
34536
34982
|
export const shopifyInventoryItemDeleteWebhookEvent = T['io.flow.internal.v0.models.shopify_inventory_item_delete_webhook_event'];
|
|
34537
34983
|
export const shopifyInventoryItemUpdateDeleted = T['io.flow.internal.v0.models.shopify_inventory_item_update_deleted'];
|
|
34538
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'];
|
|
34539
34986
|
export const shopifyInventoryItemUpdateWebhookEvent = T['io.flow.internal.v0.models.shopify_inventory_item_update_webhook_event'];
|
|
34540
34987
|
export const shopifyMarketsBestSellingProduct = T['io.flow.internal.v0.models.shopify_markets_best_selling_product'];
|
|
34541
34988
|
export const shopifyMarketsBestSellingProductDeleted = T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'];
|
|
@@ -34543,6 +34990,7 @@ export const shopifyMarketsBestSellingProductUpserted = T['io.flow.internal.v0.m
|
|
|
34543
34990
|
export const shopifyMarketsDangerousGoods = T['io.flow.internal.v0.enums.shopify_markets_dangerous_goods'];
|
|
34544
34991
|
export const shopifyMarketsDiscrepancy = T['io.flow.internal.v0.models.shopify_markets_discrepancy'];
|
|
34545
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'];
|
|
34546
34994
|
export const shopifyMarketsHtsNumberAvailable = T['io.flow.internal.v0.enums.shopify_markets_hts_number_available'];
|
|
34547
34995
|
export const shopifyMarketsIncorporationCountry = T['io.flow.internal.v0.models.shopify_markets_incorporation_country'];
|
|
34548
34996
|
export const shopifyMarketsInternalOrderMetrics = T['io.flow.internal.v0.models.shopify_markets_internal_order_metrics'];
|
|
@@ -34615,9 +35063,13 @@ export const shopifyProductBundleUpserted = T['io.flow.internal.v0.models.shopif
|
|
|
34615
35063
|
export const shopifyProductCreateDeleted = T['io.flow.internal.v0.models.shopify_product_create_deleted'];
|
|
34616
35064
|
export const shopifyProductCreateUpserted = T['io.flow.internal.v0.models.shopify_product_create_upserted'];
|
|
34617
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'];
|
|
34618
35069
|
export const shopifyProductDeleteDeleted = T['io.flow.internal.v0.models.shopify_product_delete_deleted'];
|
|
34619
35070
|
export const shopifyProductDeleteUpserted = T['io.flow.internal.v0.models.shopify_product_delete_upserted'];
|
|
34620
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'];
|
|
34621
35073
|
export const shopifyProductTaxonomyAttribute = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute'];
|
|
34622
35074
|
export const shopifyProductTaxonomyAttributeDeleted = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_deleted'];
|
|
34623
35075
|
export const shopifyProductTaxonomyAttributeUpserted = T['io.flow.internal.v0.models.shopify_product_taxonomy_attribute_upserted'];
|
|
@@ -34627,6 +35079,8 @@ export const shopifyProductTaxonomyAttributeValueUpserted = T['io.flow.internal.
|
|
|
34627
35079
|
export const shopifyProductUpdateDeleted = T['io.flow.internal.v0.models.shopify_product_update_deleted'];
|
|
34628
35080
|
export const shopifyProductUpdateUpserted = T['io.flow.internal.v0.models.shopify_product_update_upserted'];
|
|
34629
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'];
|
|
34630
35084
|
export const shopifyProductWrapper = T['io.flow.internal.v0.models.shopify_product_wrapper'];
|
|
34631
35085
|
export const shopifyRateCustomsDetail = T['io.flow.internal.v0.models.shopify_rate_customs_detail'];
|
|
34632
35086
|
export const shopifyRatePickupPoint = T['io.flow.internal.v0.models.shopify_rate_pickup_point'];
|
|
@@ -34822,7 +35276,9 @@ export const trackingUpserted = T['io.flow.internal.v0.models.tracking_upserted'
|
|
|
34822
35276
|
export const trackingWebhook = T['io.flow.internal.v0.models.tracking_webhook'];
|
|
34823
35277
|
export const transaction = T['io.flow.internal.v0.unions.transaction'];
|
|
34824
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'];
|
|
34825
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'];
|
|
34826
35282
|
export const transactionPostingMethod = T['io.flow.internal.v0.enums.transaction_posting_method'];
|
|
34827
35283
|
export const transactionReference = T['io.flow.internal.v0.models.transaction_reference'];
|
|
34828
35284
|
export const transactionStatement = T['io.flow.internal.v0.models.transaction_statement'];
|