@flowio/api-internal-prop-types 9.24.129 → 9.24.131
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 +1060 -77
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +1060 -77
- package/src/api-internal.js +1366 -301
package/src/api-internal.d.ts
CHANGED
|
@@ -853,6 +853,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
853
853
|
readonly 'supported_actions': io.flow.payment.gateway.v0.enums.PaymentActionType[];
|
|
854
854
|
readonly 'payment_capture_option'?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
855
855
|
readonly 'review'?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
|
|
856
|
+
readonly 'client_secret'?: string;
|
|
856
857
|
}
|
|
857
858
|
|
|
858
859
|
interface PaymentRequestCancellationReasonOrderMissing {
|
|
@@ -1095,6 +1096,47 @@ declare namespace io.flow.channel.v0.models {
|
|
|
1095
1096
|
}
|
|
1096
1097
|
}
|
|
1097
1098
|
|
|
1099
|
+
declare namespace io.flow.restrictions.v0.enums {
|
|
1100
|
+
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
1101
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
1102
|
+
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
declare namespace io.flow.restrictions.v0.models {
|
|
1106
|
+
interface CarrierRestrictions {
|
|
1107
|
+
readonly 'carrier': string;
|
|
1108
|
+
readonly 'regions': string[];
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
interface NeedsActionAttributes {
|
|
1112
|
+
readonly 'reason_code': string;
|
|
1113
|
+
readonly 'category_metafield_handles': string[];
|
|
1114
|
+
readonly 'require_msds'?: boolean;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
interface ProductRestrictionResult {
|
|
1118
|
+
readonly 'id': string;
|
|
1119
|
+
readonly 'product_id': string;
|
|
1120
|
+
readonly 'item_numbers': string[];
|
|
1121
|
+
readonly 'prohibited_regions': string[];
|
|
1122
|
+
readonly 'sellability_restricted_regions'?: string[];
|
|
1123
|
+
readonly 'reasons_per_region'?: io.flow.restrictions.v0.models.ReasonsPerRegion[];
|
|
1124
|
+
readonly 'review_status'?: io.flow.restrictions.v0.enums.ReviewStatus;
|
|
1125
|
+
readonly 'rules'?: string[];
|
|
1126
|
+
readonly 'updated_by'?: string;
|
|
1127
|
+
readonly 'product_restriction_id'?: string;
|
|
1128
|
+
readonly 'hs_code'?: string;
|
|
1129
|
+
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
1130
|
+
readonly 'needs_action_attributes'?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
interface ReasonsPerRegion {
|
|
1134
|
+
readonly 'region': string;
|
|
1135
|
+
readonly 'reasons': string[];
|
|
1136
|
+
readonly 'review_status': io.flow.restrictions.v0.enums.RestrictedReviewStatus;
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1098
1140
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
1099
1141
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
1100
1142
|
type DeliveryOptionCostDetailComponentKey = 'ratecard_base_cost' | 'ratecard_ddp_fee' | 'ratecard_fuel_surcharge' | 'ratecard_oversized_shipment_fee' | 'ratecard_rural_shipment_fee' | 'ratecard_emergency_situation_surcharge_fee' | 'ratecard_peak_surcharge_fee' | 'ratecard_duties_taxes_paid_surcharge_fee' | 'center_commercial_invoice_fee' | 'center_inbound_carton_fee' | 'center_outbound_carton_fee';
|
|
@@ -2005,7 +2047,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
2005
2047
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
2006
2048
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
2007
2049
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
2008
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
2050
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
2009
2051
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
2010
2052
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
2011
2053
|
type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
|
|
@@ -4365,6 +4407,7 @@ declare namespace io.flow.stripe.v0.unions {
|
|
|
4365
4407
|
}
|
|
4366
4408
|
|
|
4367
4409
|
declare namespace io.flow.label.v0.enums {
|
|
4410
|
+
type CommercialInvoiceMode = 'direct' | 'indirect';
|
|
4368
4411
|
type CostEstimateSource = 'flow' | 'channel';
|
|
4369
4412
|
type Direction = 'outbound' | 'return';
|
|
4370
4413
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
@@ -5679,6 +5722,14 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5679
5722
|
readonly 'shopify': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
5680
5723
|
readonly 'internal': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
5681
5724
|
readonly 'discrepancy_data': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
5725
|
+
readonly 'organization_metrics'?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
|
|
5726
|
+
}
|
|
5727
|
+
|
|
5728
|
+
interface ShopifyMarketsOrganizationOrderMetrics {
|
|
5729
|
+
readonly 'organization_id': string;
|
|
5730
|
+
readonly 'shopify_order_count': number;
|
|
5731
|
+
readonly 'internal_order_count': number;
|
|
5732
|
+
readonly 'discrepancy_count'?: number;
|
|
5682
5733
|
}
|
|
5683
5734
|
|
|
5684
5735
|
interface ShopifyMarketsQueuedRecord {
|
|
@@ -5806,6 +5857,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5806
5857
|
readonly 'initial_product_restrictions_synced_at'?: string;
|
|
5807
5858
|
}
|
|
5808
5859
|
|
|
5860
|
+
interface ShopifyTestOrder {
|
|
5861
|
+
readonly 'id': string;
|
|
5862
|
+
}
|
|
5863
|
+
|
|
5809
5864
|
interface ThirdPartyLogisticsPartner {
|
|
5810
5865
|
readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
|
|
5811
5866
|
readonly 'warehouse_url'?: string;
|
|
@@ -5821,6 +5876,249 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5821
5876
|
}
|
|
5822
5877
|
}
|
|
5823
5878
|
|
|
5879
|
+
declare namespace io.flow.consumer.invoice.v0.enums {
|
|
5880
|
+
type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
|
|
5881
|
+
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
5882
|
+
type ConsumerInvoiceDocumentType = 'pdf';
|
|
5883
|
+
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
5884
|
+
type TaxJurisdictionType = 'country' | 'province';
|
|
5885
|
+
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
5886
|
+
}
|
|
5887
|
+
|
|
5888
|
+
declare namespace io.flow.consumer.invoice.v0.models {
|
|
5889
|
+
interface B2BCreditMemo {
|
|
5890
|
+
readonly 'id': string;
|
|
5891
|
+
readonly 'number': string;
|
|
5892
|
+
readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5893
|
+
readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5894
|
+
readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5895
|
+
readonly 'date': string;
|
|
5896
|
+
readonly 'key': string;
|
|
5897
|
+
readonly 'invoice': io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
|
|
5898
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5899
|
+
readonly 'tax_lines'?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
5900
|
+
readonly 'tax'?: io.flow.common.v0.models.Money;
|
|
5901
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5902
|
+
readonly 'attributes': Record<string, string>;
|
|
5903
|
+
readonly 'b2b_invoice_type': io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
5904
|
+
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5905
|
+
readonly 'order'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5906
|
+
}
|
|
5907
|
+
|
|
5908
|
+
interface B2BInvoice {
|
|
5909
|
+
readonly 'id': string;
|
|
5910
|
+
readonly 'number': string;
|
|
5911
|
+
readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5912
|
+
readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5913
|
+
readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5914
|
+
readonly 'date': string;
|
|
5915
|
+
readonly 'key': string;
|
|
5916
|
+
readonly 'order': io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5917
|
+
readonly 'economic_title_location': io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
|
|
5918
|
+
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5919
|
+
readonly 'destination'?: io.flow.experience.v0.models.OrderAddress;
|
|
5920
|
+
readonly 'tax': io.flow.common.v0.models.Money;
|
|
5921
|
+
readonly 'tax_lines'?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
5922
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5923
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5924
|
+
readonly 'attributes': Record<string, string>;
|
|
5925
|
+
readonly 'estimated_delivery_date'?: string;
|
|
5926
|
+
readonly 'b2b_invoice_type': io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
5927
|
+
}
|
|
5928
|
+
|
|
5929
|
+
interface B2BInvoiceReference {
|
|
5930
|
+
readonly 'id': string;
|
|
5931
|
+
readonly 'key': string;
|
|
5932
|
+
readonly 'number': string;
|
|
5933
|
+
}
|
|
5934
|
+
|
|
5935
|
+
interface ConsumerInvoice {
|
|
5936
|
+
readonly 'id': string;
|
|
5937
|
+
readonly 'number': string;
|
|
5938
|
+
readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5939
|
+
readonly 'date': string;
|
|
5940
|
+
readonly 'key': string;
|
|
5941
|
+
readonly 'order': io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5942
|
+
readonly 'entity': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5943
|
+
readonly 'payments': io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
5944
|
+
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5945
|
+
readonly 'destination': io.flow.experience.v0.models.OrderAddress;
|
|
5946
|
+
readonly 'billing_address'?: io.flow.common.v0.models.BillingAddress;
|
|
5947
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5948
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5949
|
+
readonly 'attributes': Record<string, string>;
|
|
5950
|
+
readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
5951
|
+
readonly 'customer_type'?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
|
|
5952
|
+
readonly 'estimated_delivery_date'?: string;
|
|
5953
|
+
}
|
|
5954
|
+
|
|
5955
|
+
interface ConsumerInvoiceCenterReference {
|
|
5956
|
+
readonly 'id': string;
|
|
5957
|
+
readonly 'key': string;
|
|
5958
|
+
readonly 'name': string;
|
|
5959
|
+
readonly 'address': io.flow.common.v0.models.Address;
|
|
5960
|
+
}
|
|
5961
|
+
|
|
5962
|
+
interface ConsumerInvoiceDocument {
|
|
5963
|
+
readonly 'type': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType;
|
|
5964
|
+
readonly 'language': string;
|
|
5965
|
+
readonly 'url': string;
|
|
5966
|
+
}
|
|
5967
|
+
|
|
5968
|
+
interface ConsumerInvoiceForm {
|
|
5969
|
+
readonly 'order_number': string;
|
|
5970
|
+
readonly 'attributes'?: Record<string, string>;
|
|
5971
|
+
}
|
|
5972
|
+
|
|
5973
|
+
interface ConsumerInvoiceFormByOrder {
|
|
5974
|
+
readonly 'attributes'?: Record<string, string>;
|
|
5975
|
+
}
|
|
5976
|
+
|
|
5977
|
+
interface ConsumerInvoiceLevy {
|
|
5978
|
+
readonly 'rate': number;
|
|
5979
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
5980
|
+
}
|
|
5981
|
+
|
|
5982
|
+
interface ConsumerInvoiceLevyForm {
|
|
5983
|
+
readonly 'rate': number;
|
|
5984
|
+
readonly 'amount': number;
|
|
5985
|
+
}
|
|
5986
|
+
|
|
5987
|
+
interface ConsumerInvoiceLineDiscount {
|
|
5988
|
+
readonly 'discriminator': 'discount';
|
|
5989
|
+
readonly 'line_id'?: string;
|
|
5990
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
5991
|
+
}
|
|
5992
|
+
|
|
5993
|
+
interface ConsumerInvoiceLineDiscountForm {
|
|
5994
|
+
readonly 'discriminator': 'discount';
|
|
5995
|
+
readonly 'price': number;
|
|
5996
|
+
}
|
|
5997
|
+
|
|
5998
|
+
interface ConsumerInvoiceLineItem {
|
|
5999
|
+
readonly 'discriminator': 'item';
|
|
6000
|
+
readonly 'line_id'?: string;
|
|
6001
|
+
readonly 'item': io.flow.common.v0.models.ItemReference;
|
|
6002
|
+
readonly 'description': string;
|
|
6003
|
+
readonly 'quantity': number;
|
|
6004
|
+
readonly 'unit_price': io.flow.common.v0.models.Price;
|
|
6005
|
+
readonly 'unit_discount'?: io.flow.common.v0.models.Price;
|
|
6006
|
+
readonly 'unit_tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6007
|
+
readonly 'unit_duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6008
|
+
}
|
|
6009
|
+
|
|
6010
|
+
interface ConsumerInvoiceLineItemForm {
|
|
6011
|
+
readonly 'discriminator': 'item';
|
|
6012
|
+
readonly 'item_number': string;
|
|
6013
|
+
readonly 'quantity': number;
|
|
6014
|
+
readonly 'unit_price': number;
|
|
6015
|
+
readonly 'unit_discount'?: number;
|
|
6016
|
+
readonly 'unit_tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6017
|
+
readonly 'unit_duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6018
|
+
}
|
|
6019
|
+
|
|
6020
|
+
interface ConsumerInvoiceLineShipping {
|
|
6021
|
+
readonly 'discriminator': 'shipping';
|
|
6022
|
+
readonly 'line_id'?: string;
|
|
6023
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
6024
|
+
readonly 'discount'?: io.flow.common.v0.models.Price;
|
|
6025
|
+
readonly 'tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6026
|
+
readonly 'duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6027
|
+
}
|
|
6028
|
+
|
|
6029
|
+
interface ConsumerInvoiceLineShippingForm {
|
|
6030
|
+
readonly 'discriminator': 'shipping';
|
|
6031
|
+
readonly 'price': number;
|
|
6032
|
+
readonly 'discount'?: number;
|
|
6033
|
+
readonly 'tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6034
|
+
readonly 'duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6035
|
+
}
|
|
6036
|
+
|
|
6037
|
+
interface ConsumerInvoiceLineTip {
|
|
6038
|
+
readonly 'discriminator': 'tip';
|
|
6039
|
+
readonly 'line_id'?: string;
|
|
6040
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
6041
|
+
readonly 'tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6042
|
+
}
|
|
6043
|
+
|
|
6044
|
+
interface ConsumerInvoiceLineTipForm {
|
|
6045
|
+
readonly 'discriminator': 'tip';
|
|
6046
|
+
readonly 'price': number;
|
|
6047
|
+
readonly 'tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6048
|
+
}
|
|
6049
|
+
|
|
6050
|
+
interface ConsumerInvoiceOrderSummary {
|
|
6051
|
+
readonly 'id': string;
|
|
6052
|
+
readonly 'number': string;
|
|
6053
|
+
readonly 'submitted_at': string;
|
|
6054
|
+
}
|
|
6055
|
+
|
|
6056
|
+
interface ConsumerInvoicePayment {
|
|
6057
|
+
readonly 'date': string;
|
|
6058
|
+
readonly 'description': string;
|
|
6059
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
6060
|
+
readonly 'billing_address'?: io.flow.common.v0.models.BillingAddress;
|
|
6061
|
+
}
|
|
6062
|
+
|
|
6063
|
+
interface ConsumerInvoiceReference {
|
|
6064
|
+
readonly 'id': string;
|
|
6065
|
+
readonly 'key': string;
|
|
6066
|
+
readonly 'number': string;
|
|
6067
|
+
}
|
|
6068
|
+
|
|
6069
|
+
interface CreditMemo {
|
|
6070
|
+
readonly 'id': string;
|
|
6071
|
+
readonly 'number'?: string;
|
|
6072
|
+
readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
6073
|
+
readonly 'date': string;
|
|
6074
|
+
readonly 'key': string;
|
|
6075
|
+
readonly 'invoice': io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference;
|
|
6076
|
+
readonly 'entity': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
6077
|
+
readonly 'payments': io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
6078
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
6079
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
6080
|
+
readonly 'attributes': Record<string, string>;
|
|
6081
|
+
readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
6082
|
+
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
6083
|
+
readonly 'order'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
6084
|
+
}
|
|
6085
|
+
|
|
6086
|
+
interface CreditMemoForm {
|
|
6087
|
+
readonly 'refund_id'?: string;
|
|
6088
|
+
readonly 'refund_key'?: string;
|
|
6089
|
+
readonly 'refund_identifier'?: string;
|
|
6090
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
|
|
6091
|
+
readonly 'attributes'?: Record<string, string>;
|
|
6092
|
+
}
|
|
6093
|
+
|
|
6094
|
+
interface InvoiceExport {
|
|
6095
|
+
readonly 'id': string;
|
|
6096
|
+
}
|
|
6097
|
+
|
|
6098
|
+
interface InvoiceExportForm {
|
|
6099
|
+
readonly 'date_from'?: string;
|
|
6100
|
+
readonly 'date_to'?: string;
|
|
6101
|
+
}
|
|
6102
|
+
|
|
6103
|
+
interface InvoiceTaxLine {
|
|
6104
|
+
readonly 'line_id': string;
|
|
6105
|
+
readonly 'tax_breakdown': io.flow.consumer.invoice.v0.models.TaxBreakdown[];
|
|
6106
|
+
}
|
|
6107
|
+
|
|
6108
|
+
interface TaxBreakdown {
|
|
6109
|
+
readonly 'label': string;
|
|
6110
|
+
readonly 'calculated_tax': io.flow.common.v0.models.Money;
|
|
6111
|
+
readonly 'rate': number;
|
|
6112
|
+
readonly 'line_total': io.flow.common.v0.models.Money;
|
|
6113
|
+
readonly 'jurisdiction_type': io.flow.consumer.invoice.v0.enums.TaxJurisdictionType;
|
|
6114
|
+
}
|
|
6115
|
+
}
|
|
6116
|
+
|
|
6117
|
+
declare namespace io.flow.consumer.invoice.v0.unions {
|
|
6118
|
+
type ConsumerInvoiceLine = (io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTip);
|
|
6119
|
+
type ConsumerInvoiceLineForm = (io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTipForm);
|
|
6120
|
+
}
|
|
6121
|
+
|
|
5824
6122
|
declare namespace io.flow.adyen.v0.enums {
|
|
5825
6123
|
type Channel = 'web';
|
|
5826
6124
|
type Contract = 'RECURRING';
|
|
@@ -7616,6 +7914,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7616
7914
|
readonly 'tags'?: string;
|
|
7617
7915
|
readonly 'tax_lines': io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
7618
7916
|
readonly 'taxes_included': boolean;
|
|
7917
|
+
readonly 'test'?: boolean;
|
|
7619
7918
|
readonly 'token'?: string;
|
|
7620
7919
|
readonly 'total_weight'?: number;
|
|
7621
7920
|
readonly 'updated_at'?: string;
|
|
@@ -7628,6 +7927,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7628
7927
|
readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
|
|
7629
7928
|
readonly 'merchant_of_record_app_id'?: number;
|
|
7630
7929
|
readonly 'total_shipping_price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7930
|
+
readonly 'current_shipping_price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7631
7931
|
readonly 'total_tip_received'?: string;
|
|
7632
7932
|
}
|
|
7633
7933
|
|
|
@@ -8160,7 +8460,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
8160
8460
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
8161
8461
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
8162
8462
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
8163
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
8463
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
|
|
8164
8464
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
8165
8465
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
8166
8466
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -8212,6 +8512,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8212
8512
|
readonly 'order_updated_at'?: string;
|
|
8213
8513
|
readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
8214
8514
|
readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
8515
|
+
readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
8215
8516
|
}
|
|
8216
8517
|
|
|
8217
8518
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -8691,6 +8992,8 @@ declare namespace io.flow.common.v0.models {
|
|
|
8691
8992
|
interface MerchantOfRecordEntityRegistration {
|
|
8692
8993
|
readonly 'number': string;
|
|
8693
8994
|
readonly 'country': string;
|
|
8995
|
+
readonly 'province_number'?: string;
|
|
8996
|
+
readonly 'province'?: string;
|
|
8694
8997
|
}
|
|
8695
8998
|
|
|
8696
8999
|
interface Money {
|
|
@@ -9133,10 +9436,26 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
9133
9436
|
readonly 'timestamp': string;
|
|
9134
9437
|
readonly 'shopify_product_taxonomy_attribute_value': io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
9135
9438
|
}
|
|
9439
|
+
|
|
9440
|
+
interface ShopifyTestOrderDeleted {
|
|
9441
|
+
readonly 'discriminator': 'shopify_test_order_deleted';
|
|
9442
|
+
readonly 'event_id': string;
|
|
9443
|
+
readonly 'timestamp': string;
|
|
9444
|
+
readonly 'organization': string;
|
|
9445
|
+
readonly 'id': string;
|
|
9446
|
+
}
|
|
9447
|
+
|
|
9448
|
+
interface ShopifyTestOrderUpserted {
|
|
9449
|
+
readonly 'discriminator': 'shopify_test_order_upserted';
|
|
9450
|
+
readonly 'event_id': string;
|
|
9451
|
+
readonly 'timestamp': string;
|
|
9452
|
+
readonly 'organization': string;
|
|
9453
|
+
readonly 'shopify_test_order': io.flow.shopify.markets.internal.v0.models.ShopifyTestOrder;
|
|
9454
|
+
}
|
|
9136
9455
|
}
|
|
9137
9456
|
|
|
9138
9457
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
9139
|
-
type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted);
|
|
9458
|
+
type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted);
|
|
9140
9459
|
}
|
|
9141
9460
|
|
|
9142
9461
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -9161,6 +9480,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
9161
9480
|
type OrganizationPaymentMethodTag = 'deny';
|
|
9162
9481
|
type PaymentMethodRuleContentKey = 'description';
|
|
9163
9482
|
type PriceFacetBoundary = 'min' | 'max';
|
|
9483
|
+
type PricingType = 'inclusive_pricing';
|
|
9164
9484
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
9165
9485
|
}
|
|
9166
9486
|
|
|
@@ -9782,6 +10102,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
9782
10102
|
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
9783
10103
|
readonly 'edits'?: io.flow.experience.v0.models.EditSummary[];
|
|
9784
10104
|
readonly 'rates'?: io.flow.experience.v0.models.OrderRate[];
|
|
10105
|
+
readonly 'pricing_type'?: io.flow.experience.v0.enums.PricingType;
|
|
9785
10106
|
}
|
|
9786
10107
|
|
|
9787
10108
|
interface OrderAddress {
|
|
@@ -10344,6 +10665,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10344
10665
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
10345
10666
|
readonly 'origin_region'?: io.flow.ratecard.v0.models.RatecardRegionReference;
|
|
10346
10667
|
readonly 'destination_region'?: io.flow.ratecard.v0.models.RatecardRegionReference;
|
|
10668
|
+
readonly 'destination_regions'?: io.flow.ratecard.v0.models.RatecardRegionReference[];
|
|
10347
10669
|
readonly 'interval_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10348
10670
|
}
|
|
10349
10671
|
|
|
@@ -10548,6 +10870,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10548
10870
|
readonly 'center_id'?: string;
|
|
10549
10871
|
readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
|
|
10550
10872
|
readonly 'duties_owed'?: io.flow.common.v0.models.Money;
|
|
10873
|
+
readonly 'commercial_invoice_mode'?: io.flow.label.v0.enums.CommercialInvoiceMode;
|
|
10551
10874
|
}
|
|
10552
10875
|
|
|
10553
10876
|
interface RatecardEstimateSummaryForm {
|
|
@@ -10767,6 +11090,43 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10767
11090
|
readonly 'from': number;
|
|
10768
11091
|
readonly 'to': number;
|
|
10769
11092
|
}
|
|
11093
|
+
|
|
11094
|
+
interface ShippingRateEstimate {
|
|
11095
|
+
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
11096
|
+
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
11097
|
+
readonly 'shipping_date_time': string;
|
|
11098
|
+
readonly 'services': string[];
|
|
11099
|
+
readonly 'available': io.flow.ratecard.v0.models.ShippingRateEstimateAvailable[];
|
|
11100
|
+
readonly 'unavailable'?: io.flow.ratecard.v0.models.ShippingRateEstimateUnavailable[];
|
|
11101
|
+
}
|
|
11102
|
+
|
|
11103
|
+
interface ShippingRateEstimateAvailable {
|
|
11104
|
+
readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
11105
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
11106
|
+
readonly 'shipment_window': io.flow.ratecard.v0.models.ShipmentWindow;
|
|
11107
|
+
readonly 'total_amount': io.flow.common.v0.models.Money;
|
|
11108
|
+
readonly 'base_amount': io.flow.common.v0.models.Money;
|
|
11109
|
+
readonly 'fees': io.flow.ratecard.v0.unions.RatecardFee[];
|
|
11110
|
+
readonly 'dimensional_weight'?: io.flow.common.v0.models.Measurement;
|
|
11111
|
+
readonly 'gravitational_weight'?: io.flow.common.v0.models.Measurement;
|
|
11112
|
+
readonly 'weight_break'?: number;
|
|
11113
|
+
}
|
|
11114
|
+
|
|
11115
|
+
interface ShippingRateEstimateRequest {
|
|
11116
|
+
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
11117
|
+
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
11118
|
+
readonly 'package_dimensions': io.flow.common.v0.models.Dimension;
|
|
11119
|
+
readonly 'shipping_date_time': string;
|
|
11120
|
+
readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
|
|
11121
|
+
readonly 'duties_owed'?: io.flow.common.v0.models.Money;
|
|
11122
|
+
readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
|
|
11123
|
+
readonly 'line_items'?: io.flow.common.v0.models.LineItemForm[];
|
|
11124
|
+
}
|
|
11125
|
+
|
|
11126
|
+
interface ShippingRateEstimateUnavailable {
|
|
11127
|
+
readonly 'service': string;
|
|
11128
|
+
readonly 'reason': string;
|
|
11129
|
+
}
|
|
10770
11130
|
}
|
|
10771
11131
|
|
|
10772
11132
|
declare namespace io.flow.ratecard.v0.unions {
|
|
@@ -11026,6 +11386,35 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
11026
11386
|
}
|
|
11027
11387
|
}
|
|
11028
11388
|
|
|
11389
|
+
declare namespace io.flow.channel.shopify.v0.enums {
|
|
11390
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
11391
|
+
}
|
|
11392
|
+
|
|
11393
|
+
declare namespace io.flow.channel.shopify.v0.models {
|
|
11394
|
+
interface ChannelShopifyOrderState {
|
|
11395
|
+
readonly 'id': string;
|
|
11396
|
+
readonly 'shopify_order_summary': io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
11397
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
11398
|
+
readonly 'reasons'?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
11399
|
+
readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
11400
|
+
}
|
|
11401
|
+
|
|
11402
|
+
interface ChannelShopifyOrderStateReason {
|
|
11403
|
+
readonly 'code': io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
11404
|
+
readonly 'message': string;
|
|
11405
|
+
}
|
|
11406
|
+
|
|
11407
|
+
interface ChannelShopifyOrderSummary {
|
|
11408
|
+
readonly 'order_id': number;
|
|
11409
|
+
readonly 'shop_id': number;
|
|
11410
|
+
}
|
|
11411
|
+
|
|
11412
|
+
interface ExternalOrderSummary {
|
|
11413
|
+
readonly 'id': string;
|
|
11414
|
+
readonly 'edit_ids': string[];
|
|
11415
|
+
}
|
|
11416
|
+
}
|
|
11417
|
+
|
|
11029
11418
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
11030
11419
|
interface Company {
|
|
11031
11420
|
readonly 'discriminator': 'company';
|
|
@@ -11588,6 +11977,77 @@ declare namespace io.flow.merchant.onboarding.v0.enums {
|
|
|
11588
11977
|
}
|
|
11589
11978
|
|
|
11590
11979
|
declare namespace io.flow.merchant.onboarding.v0.models {
|
|
11980
|
+
interface CommonMerchantApplication {
|
|
11981
|
+
readonly 'discriminator': 'common_merchant_application';
|
|
11982
|
+
readonly 'id': string;
|
|
11983
|
+
readonly 'organization_id': string;
|
|
11984
|
+
readonly 'organization_reference': io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
|
|
11985
|
+
readonly 'status': io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
11986
|
+
readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
11987
|
+
readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
11988
|
+
readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
11989
|
+
readonly 'business_url'?: string;
|
|
11990
|
+
readonly 'business_description'?: string;
|
|
11991
|
+
readonly 'business_address'?: io.flow.common.v0.models.Address;
|
|
11992
|
+
readonly 'refund_percentage'?: number;
|
|
11993
|
+
readonly 'chargeback_percentage'?: number;
|
|
11994
|
+
readonly 'beneficiary_details'?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
11995
|
+
readonly 'other_trade_sector'?: string;
|
|
11996
|
+
readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
11997
|
+
readonly 'center_address'?: io.flow.common.v0.models.Address;
|
|
11998
|
+
readonly 'average_order_weight'?: number;
|
|
11999
|
+
readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
12000
|
+
readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
|
|
12001
|
+
readonly 'monthly_average'?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
12002
|
+
readonly 'default_country_of_origin'?: string;
|
|
12003
|
+
readonly 'rate_card': string;
|
|
12004
|
+
readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
12005
|
+
readonly 'created_at': string;
|
|
12006
|
+
readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
|
|
12007
|
+
readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
|
|
12008
|
+
readonly 'average_order_value'?: io.flow.common.v0.models.Money;
|
|
12009
|
+
readonly 'mcc_codes'?: number[];
|
|
12010
|
+
}
|
|
12011
|
+
|
|
12012
|
+
interface CommonMerchantApplicationForm {
|
|
12013
|
+
readonly 'discriminator': 'common_merchant_application_form';
|
|
12014
|
+
readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
12015
|
+
readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
12016
|
+
readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
12017
|
+
readonly 'business_url'?: string;
|
|
12018
|
+
readonly 'business_description'?: string;
|
|
12019
|
+
readonly 'business_address'?: io.flow.common.v0.models.Address;
|
|
12020
|
+
readonly 'refund_percentage'?: number;
|
|
12021
|
+
readonly 'chargeback_percentage'?: number;
|
|
12022
|
+
readonly 'beneficiary_details'?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
12023
|
+
readonly 'other_trade_sector'?: string;
|
|
12024
|
+
readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
12025
|
+
readonly 'center_address'?: io.flow.common.v0.models.Address;
|
|
12026
|
+
readonly 'average_order_weight'?: number;
|
|
12027
|
+
readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
12028
|
+
readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
|
|
12029
|
+
readonly 'monthly_average_volume_amount'?: number;
|
|
12030
|
+
readonly 'monthly_average_volume_currency'?: string;
|
|
12031
|
+
readonly 'monthly_average_number_transactions'?: number;
|
|
12032
|
+
readonly 'default_country_of_origin'?: string;
|
|
12033
|
+
readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
12034
|
+
readonly 'rate_card'?: string;
|
|
12035
|
+
readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
|
|
12036
|
+
readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
|
|
12037
|
+
readonly 'average_order_value'?: io.flow.common.v0.models.Money;
|
|
12038
|
+
readonly 'mcc_codes'?: number[];
|
|
12039
|
+
}
|
|
12040
|
+
|
|
12041
|
+
interface CommonMerchantApplicationPutForm {
|
|
12042
|
+
readonly 'discriminator': 'common_merchant_application_put_form';
|
|
12043
|
+
readonly 'status'?: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
12044
|
+
}
|
|
12045
|
+
|
|
12046
|
+
interface CommonMerchantApplicationsSummary {
|
|
12047
|
+
readonly 'discriminator': 'common_merchant_applications_summary';
|
|
12048
|
+
readonly 'total': number;
|
|
12049
|
+
}
|
|
12050
|
+
|
|
11591
12051
|
interface IndirectTax {
|
|
11592
12052
|
readonly 'number'?: string;
|
|
11593
12053
|
readonly 'id'?: string;
|
|
@@ -11604,6 +12064,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11604
12064
|
readonly 'region'?: io.flow.merchant.onboarding.v0.enums.RegionType;
|
|
11605
12065
|
readonly 'region_value'?: string;
|
|
11606
12066
|
readonly 'category_code'?: string;
|
|
12067
|
+
readonly 'description'?: string;
|
|
11607
12068
|
}
|
|
11608
12069
|
|
|
11609
12070
|
interface MerchantOnboardingAddress {
|
|
@@ -11615,6 +12076,17 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11615
12076
|
readonly 'country'?: string;
|
|
11616
12077
|
}
|
|
11617
12078
|
|
|
12079
|
+
interface MerchantOnboardingBeneficiaryDetails {
|
|
12080
|
+
readonly 'name'?: string;
|
|
12081
|
+
readonly 'address'?: io.flow.common.v0.models.Address;
|
|
12082
|
+
readonly 'phone'?: string;
|
|
12083
|
+
readonly 'email'?: string;
|
|
12084
|
+
readonly 'bank_account_number'?: string;
|
|
12085
|
+
readonly 'bank_routing_number'?: string;
|
|
12086
|
+
readonly 'bank_name'?: string;
|
|
12087
|
+
readonly 'bank_address'?: io.flow.common.v0.models.Address;
|
|
12088
|
+
}
|
|
12089
|
+
|
|
11618
12090
|
interface MonthlyAverage {
|
|
11619
12091
|
readonly 'volume'?: io.flow.merchant.onboarding.v0.models.MonthlyAverageVolume;
|
|
11620
12092
|
readonly 'number_transactions'?: number;
|
|
@@ -11679,6 +12151,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11679
12151
|
readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
11680
12152
|
readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
11681
12153
|
readonly 'average_order_weight'?: number;
|
|
12154
|
+
readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11682
12155
|
readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
|
|
11683
12156
|
readonly 'monthly_average'?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
11684
12157
|
readonly 'default_country_of_origin'?: string;
|
|
@@ -11712,6 +12185,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11712
12185
|
readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
11713
12186
|
readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
11714
12187
|
readonly 'average_order_weight'?: number;
|
|
12188
|
+
readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11715
12189
|
readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
|
|
11716
12190
|
readonly 'monthly_average_volume_amount'?: number;
|
|
11717
12191
|
readonly 'monthly_average_volume_currency'?: string;
|
|
@@ -11752,10 +12226,10 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11752
12226
|
}
|
|
11753
12227
|
|
|
11754
12228
|
declare namespace io.flow.merchant.onboarding.v0.unions {
|
|
11755
|
-
type MerchantApplication = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication);
|
|
11756
|
-
type MerchantApplicationForm = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm);
|
|
11757
|
-
type MerchantApplicationPutForm = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm);
|
|
11758
|
-
type MerchantApplicationsSummary = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary);
|
|
12229
|
+
type MerchantApplication = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication | io.flow.merchant.onboarding.v0.models.CommonMerchantApplication);
|
|
12230
|
+
type MerchantApplicationForm = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationForm);
|
|
12231
|
+
type MerchantApplicationPutForm = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationPutForm);
|
|
12232
|
+
type MerchantApplicationsSummary = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationsSummary);
|
|
11759
12233
|
}
|
|
11760
12234
|
|
|
11761
12235
|
declare namespace io.flow.catalog.v0.enums {
|
|
@@ -12391,10 +12865,11 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
12391
12865
|
type PayoutAttachmentType = 'transactions';
|
|
12392
12866
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
12393
12867
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
12394
|
-
type StatementAttachmentType = 'csv';
|
|
12395
|
-
type
|
|
12396
|
-
type
|
|
12397
|
-
type
|
|
12868
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
12869
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12870
|
+
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
12871
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund';
|
|
12872
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
12398
12873
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
12399
12874
|
}
|
|
12400
12875
|
|
|
@@ -12656,6 +13131,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12656
13131
|
readonly 'created_at': string;
|
|
12657
13132
|
}
|
|
12658
13133
|
|
|
13134
|
+
interface StatementStatusForm {
|
|
13135
|
+
readonly 'code': io.flow.billing.v0.enums.StatementStatusCode;
|
|
13136
|
+
readonly 'failure_reason'?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
13137
|
+
}
|
|
13138
|
+
|
|
12659
13139
|
interface Transaction {
|
|
12660
13140
|
readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
12661
13141
|
readonly 'id': string;
|
|
@@ -13252,6 +13732,9 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
13252
13732
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
13253
13733
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
13254
13734
|
type SellabilityRequestStatus = 'commit';
|
|
13735
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
13736
|
+
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
13737
|
+
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
13255
13738
|
}
|
|
13256
13739
|
|
|
13257
13740
|
declare namespace io.flow.sellability.v0.models {
|
|
@@ -13261,10 +13744,11 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13261
13744
|
readonly 'product_id'?: string;
|
|
13262
13745
|
readonly 'request_id': string;
|
|
13263
13746
|
readonly 'hs6_code': string;
|
|
13264
|
-
readonly 'restricted_regions': io.flow.sellability.v0.models.
|
|
13747
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
13265
13748
|
}
|
|
13266
13749
|
|
|
13267
13750
|
interface ProductSellabilityForm {
|
|
13751
|
+
readonly 'discriminator': 'product_sellability_form';
|
|
13268
13752
|
readonly 'shop_id': string;
|
|
13269
13753
|
readonly 'product_id'?: string;
|
|
13270
13754
|
readonly 'name': string;
|
|
@@ -13275,12 +13759,76 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13275
13759
|
readonly 'dry_run'?: boolean;
|
|
13276
13760
|
}
|
|
13277
13761
|
|
|
13762
|
+
interface ProductSellabilityResult {
|
|
13763
|
+
readonly 'merchant_id'?: string;
|
|
13764
|
+
readonly 'product_id': string;
|
|
13765
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
13766
|
+
readonly 'restricted_reasons': io.flow.sellability.v0.models.SellabilityRestrictedReason[];
|
|
13767
|
+
readonly 'needs_action_attributes'?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
|
|
13768
|
+
readonly 'request_id'?: string;
|
|
13769
|
+
readonly 'hs6_code'?: string;
|
|
13770
|
+
}
|
|
13771
|
+
|
|
13278
13772
|
interface SellabilityError {
|
|
13279
13773
|
readonly 'discriminator': 'sellability_error';
|
|
13280
13774
|
readonly 'code': io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
13281
13775
|
readonly 'messages': string[];
|
|
13282
13776
|
}
|
|
13283
13777
|
|
|
13778
|
+
interface SellabilityNeedsActionAttributes {
|
|
13779
|
+
readonly 'reason_code': string;
|
|
13780
|
+
readonly 'category_metafield_handles': string[];
|
|
13781
|
+
readonly 'require_msds'?: boolean;
|
|
13782
|
+
}
|
|
13783
|
+
|
|
13784
|
+
interface SellabilityReasonWithRegions {
|
|
13785
|
+
readonly 'reason': string;
|
|
13786
|
+
readonly 'regions': string[];
|
|
13787
|
+
}
|
|
13788
|
+
|
|
13789
|
+
interface SellabilityRegionResult {
|
|
13790
|
+
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13791
|
+
readonly 'regions': string[];
|
|
13792
|
+
}
|
|
13793
|
+
|
|
13794
|
+
interface SellabilityRegionWithReasons {
|
|
13795
|
+
readonly 'region': string;
|
|
13796
|
+
readonly 'reasons': string[];
|
|
13797
|
+
}
|
|
13798
|
+
|
|
13799
|
+
interface SellabilityRestrictedReason {
|
|
13800
|
+
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13801
|
+
readonly 'reasons_with_regions': io.flow.sellability.v0.models.SellabilityReasonWithRegions[];
|
|
13802
|
+
}
|
|
13803
|
+
|
|
13804
|
+
interface SellabilityRestrictedRegion {
|
|
13805
|
+
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13806
|
+
readonly 'regions': string[];
|
|
13807
|
+
}
|
|
13808
|
+
|
|
13809
|
+
interface SellabilityScreening {
|
|
13810
|
+
readonly 'discriminator': 'sellability_screening';
|
|
13811
|
+
readonly 'product_sellability_result'?: io.flow.sellability.v0.models.ProductSellabilityResult;
|
|
13812
|
+
readonly 'request_id': string;
|
|
13813
|
+
readonly 'status': io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
13814
|
+
readonly 'error_code'?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
13815
|
+
readonly 'error_message'?: string;
|
|
13816
|
+
}
|
|
13817
|
+
|
|
13818
|
+
interface SellabilityScreeningForm {
|
|
13819
|
+
readonly 'discriminator': 'sellability_screening_form';
|
|
13820
|
+
readonly 'merchant_id': string;
|
|
13821
|
+
readonly 'product_id': string;
|
|
13822
|
+
readonly 'name': string;
|
|
13823
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
13824
|
+
readonly 'description': string;
|
|
13825
|
+
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13826
|
+
readonly 'mode': io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
13827
|
+
readonly 'catalog_size'?: number;
|
|
13828
|
+
readonly 'relative_ranking'?: number;
|
|
13829
|
+
readonly 'dry_run'?: boolean;
|
|
13830
|
+
}
|
|
13831
|
+
|
|
13284
13832
|
interface SellablilityRegionResult {
|
|
13285
13833
|
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13286
13834
|
readonly 'regions': string[];
|
|
@@ -13288,7 +13836,8 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13288
13836
|
}
|
|
13289
13837
|
|
|
13290
13838
|
declare namespace io.flow.sellability.v0.unions {
|
|
13291
|
-
type
|
|
13839
|
+
type SellabilityRequest = (io.flow.sellability.v0.models.ProductSellabilityForm | io.flow.sellability.v0.models.SellabilityScreeningForm);
|
|
13840
|
+
type SellabilityResponse = (io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError | io.flow.sellability.v0.models.SellabilityScreening);
|
|
13292
13841
|
}
|
|
13293
13842
|
|
|
13294
13843
|
declare namespace io.flow.currency.v0.models {
|
|
@@ -13426,6 +13975,22 @@ declare namespace io.flow.organization.v0.models {
|
|
|
13426
13975
|
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
13427
13976
|
}
|
|
13428
13977
|
|
|
13978
|
+
interface OrganizationTaxRegistration {
|
|
13979
|
+
readonly 'id': string;
|
|
13980
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
|
|
13981
|
+
readonly 'address': io.flow.common.v0.models.BillingAddress;
|
|
13982
|
+
readonly 'registration': io.flow.organization.v0.models.TaxRegistrationDetail;
|
|
13983
|
+
readonly 'self_billing_agreement': io.flow.organization.v0.models.SelfBillingAgreement;
|
|
13984
|
+
}
|
|
13985
|
+
|
|
13986
|
+
interface OrganizationTaxRegistrationForm {
|
|
13987
|
+
readonly 'tax_number': string;
|
|
13988
|
+
readonly 'country': string;
|
|
13989
|
+
readonly 'province'?: string;
|
|
13990
|
+
readonly 'self_billing_agreement_effective_at': string;
|
|
13991
|
+
readonly 'self_billing_agreement_expires_at'?: string;
|
|
13992
|
+
}
|
|
13993
|
+
|
|
13429
13994
|
interface OrganizationVersion {
|
|
13430
13995
|
readonly 'id': string;
|
|
13431
13996
|
readonly 'timestamp': string;
|
|
@@ -13442,6 +14007,18 @@ declare namespace io.flow.organization.v0.models {
|
|
|
13442
14007
|
interface RegionSettingForm {
|
|
13443
14008
|
readonly 'status': io.flow.common.v0.enums.AvailabilityStatus;
|
|
13444
14009
|
}
|
|
14010
|
+
|
|
14011
|
+
interface SelfBillingAgreement {
|
|
14012
|
+
readonly 'effective_at': string;
|
|
14013
|
+
readonly 'expires_at': string;
|
|
14014
|
+
}
|
|
14015
|
+
|
|
14016
|
+
interface TaxRegistrationDetail {
|
|
14017
|
+
readonly 'tax_number': string;
|
|
14018
|
+
readonly 'country': string;
|
|
14019
|
+
readonly 'tax_code': string;
|
|
14020
|
+
readonly 'province'?: string;
|
|
14021
|
+
}
|
|
13445
14022
|
}
|
|
13446
14023
|
|
|
13447
14024
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
@@ -13469,6 +14046,18 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
13469
14046
|
readonly 'iban': string;
|
|
13470
14047
|
}
|
|
13471
14048
|
|
|
14049
|
+
interface BankAccountInfoKor {
|
|
14050
|
+
readonly 'discriminator': 'kor';
|
|
14051
|
+
readonly 'name'?: string;
|
|
14052
|
+
readonly 'address'?: io.flow.common.v0.models.Address;
|
|
14053
|
+
readonly 'phone'?: string;
|
|
14054
|
+
readonly 'email'?: string;
|
|
14055
|
+
readonly 'bank_account_number': string;
|
|
14056
|
+
readonly 'bank_routing_number'?: string;
|
|
14057
|
+
readonly 'bank_name'?: string;
|
|
14058
|
+
readonly 'bank_address'?: io.flow.common.v0.models.Address;
|
|
14059
|
+
}
|
|
14060
|
+
|
|
13472
14061
|
interface BankAccountInfoUsa {
|
|
13473
14062
|
readonly 'discriminator': 'usa';
|
|
13474
14063
|
readonly 'routing_number': string;
|
|
@@ -13477,7 +14066,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
13477
14066
|
}
|
|
13478
14067
|
|
|
13479
14068
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
13480
|
-
type BankAccountInfo = (io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta);
|
|
14069
|
+
type BankAccountInfo = (io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor);
|
|
13481
14070
|
}
|
|
13482
14071
|
|
|
13483
14072
|
declare namespace io.flow.internal.v0.enums {
|
|
@@ -13487,12 +14076,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13487
14076
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
13488
14077
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
13489
14078
|
type AldoItemType = 'physical' | 'digital';
|
|
14079
|
+
type AmruthaItemType = 'physical' | 'digital';
|
|
13490
14080
|
type AnirbanItemType = 'physical' | 'digital';
|
|
13491
14081
|
type AnshItemType = 'physical' | 'digital';
|
|
13492
14082
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
13493
14083
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
13494
14084
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
13495
14085
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95' | 'prr-36e1603f56e54eb889792637c29eed40' | 'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e' | 'prr-ec2f3d608b7e43a49de88ac40e6b50a8' | 'prr-04ed078c39ca4447b171f767d71a481d' | 'prr-bb664a76d6d64a17843e720e6ccd401a' | 'prr-8ce63afcd48641eb9d44e04117348a96' | 'prr-76544617791b4ce8af96b3a7879474c6' | 'prr-566cc67167944bc4bd08167aa9c0beba' | 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
14086
|
+
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
|
|
14087
|
+
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
13496
14088
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
13497
14089
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
13498
14090
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
@@ -13500,7 +14092,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13500
14092
|
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio' | 'ge_revenue_share_standard_transactions_count' | 'ge_revenue_share_standard_transactions_total' | 'ge_revenue_share_standard_transactions_percentage' | 'ge_revenue_share_shopify_plus_transactions_count' | 'ge_revenue_share_shopify_plus_transactions_total' | 'ge_revenue_share_shopify_plus_transactions_percentage' | 'non_l4l_tax_duty_fx_transactions_count' | 'non_l4l_tax_duty_fx_transactions_total' | 'non_l4l_tax_duty_fx_transactions_percentage' | 'sp_adjustment_transactions_count' | 'sp_adjustment_transactions_total' | 'sp_billable_label_transactions_count' | 'sp_billable_label_transactions_count_for_unique_orders' | 'sp_billable_label_transactions_total' | 'capture_transactions_standard_count' | 'capture_transactions_standard_total' | 'capture_transactions_shopify_plus_count' | 'capture_transactions_shopify_plus_total' | 'sp_capture_transactions_count' | 'sp_capture_transactions_total' | 'sp_carrier_charge_transactions_count' | 'sp_carrier_charge_transactions_total' | 'sp_channel_transactions_count' | 'sp_channel_transactions_total' | 'sp_duty_transactions_count' | 'sp_duty_transactions_total' | 'sp_manual_transactions_count' | 'sp_manual_transactions_total' | 'sp_refund_transactions_count' | 'sp_refund_transactions_total' | 'sp_reversal_transactions_count' | 'sp_reversal_transactions_total' | 'sp_revenue_share_label_transactions_count' | 'sp_revenue_share_label_transactions_count_for_unique_orders' | 'sp_revenue_share_label_transactions_total' | 'sp_tax_transactions_count' | 'sp_tax_transactions_total' | 'sp_transfer_transactions_count' | 'sp_transfer_transactions_total' | 'sp_trueup_transactions_count' | 'sp_trueup_transactions_total';
|
|
13501
14093
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
13502
14094
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13503
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund';
|
|
14095
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund';
|
|
13504
14096
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
13505
14097
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13506
14098
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -13514,7 +14106,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13514
14106
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
13515
14107
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
13516
14108
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
13517
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
14109
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
|
|
13518
14110
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
13519
14111
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
13520
14112
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
@@ -13531,7 +14123,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13531
14123
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
13532
14124
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
13533
14125
|
type ClassificationErrorCode = 'generic_error';
|
|
13534
|
-
type
|
|
14126
|
+
type ClassificationFailureReason = 'low_confidence' | 'timeout';
|
|
14127
|
+
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
13535
14128
|
type ClassificationScope = 'Item' | 'Product';
|
|
13536
14129
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
13537
14130
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
@@ -13568,7 +14161,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13568
14161
|
type EmptyAttribute = 'irrelevant';
|
|
13569
14162
|
type ErpFileType = 'vendor';
|
|
13570
14163
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
13571
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14164
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'anirban_item_upserted' | 'anirban_item_deleted' | 'sarvesh_item_upserted' | 'sarvesh_item_deleted' | 'hosein_item_upserted' | 'hosein_item_deleted' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13572
14165
|
type ExperienceImportType = 'experience_with_settings';
|
|
13573
14166
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13574
14167
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13581,12 +14174,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13581
14174
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
13582
14175
|
type FraudProviderStatus = 'active' | 'archived';
|
|
13583
14176
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
14177
|
+
type GabrielItemType = 'physical' | 'digital';
|
|
13584
14178
|
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
13585
14179
|
type GeRevenueShareTransactionType = 'adjustment' | 'reversal' | 'revenue_share';
|
|
13586
14180
|
type GoogleAnalyticsPlugin = 'ec';
|
|
13587
14181
|
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
13588
14182
|
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
13589
14183
|
type HoseinItemType = 'physical' | 'digital';
|
|
14184
|
+
type Hs6CodeSource = 'sellability' | 'classification' | 'human';
|
|
13590
14185
|
type HttpMethod = 'get' | 'post';
|
|
13591
14186
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
13592
14187
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -13605,13 +14200,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13605
14200
|
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
13606
14201
|
type LabelRequestResultState = 'success' | 'failure';
|
|
13607
14202
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
14203
|
+
type LedgerReportType = 'periodic_mor_jurisdiction_report';
|
|
14204
|
+
type LedgerReportUrlType = 'sharepoint' | 's3';
|
|
13608
14205
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
13609
14206
|
type LogisticsCapability = 'logistics_address_correction';
|
|
13610
14207
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
13611
14208
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13612
14209
|
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback';
|
|
13613
14210
|
type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
13614
|
-
type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands';
|
|
14211
|
+
type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands' | 'uk_global_e_canada' | 'uk_global_e_netherlands' | 'uk_global_e_united_states' | 'ca_global_e_united_kingdom' | 'ca_global_e_netherlands' | 'ca_global_e_united_states';
|
|
13615
14212
|
type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
|
|
13616
14213
|
type MixedBagWeight = '0' | '1' | '2';
|
|
13617
14214
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
@@ -13620,7 +14217,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13620
14217
|
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
13621
14218
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
13622
14219
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
13623
|
-
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | '
|
|
14220
|
+
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
13624
14221
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13625
14222
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13626
14223
|
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_reject' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
@@ -13651,6 +14248,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13651
14248
|
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
13652
14249
|
type PrateekItemType = 'physical' | 'digital';
|
|
13653
14250
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
14251
|
+
type PreonboardingClassificationDecision = 'Accept' | 'Reject';
|
|
14252
|
+
type PreonboardingClassificationPlatform = 'FlowOnboarding';
|
|
14253
|
+
type PreonboardingClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
14254
|
+
type PreonboardingRequestStatus = 'pending' | 'completed' | 'failed' | 'discarded';
|
|
13654
14255
|
type PriceSelector = 'minimum' | 'maximum';
|
|
13655
14256
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
13656
14257
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
@@ -13665,7 +14266,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13665
14266
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
13666
14267
|
type ReportPaymentType = 'credit' | 'debit';
|
|
13667
14268
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
13668
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
14269
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
13669
14270
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
13670
14271
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
13671
14272
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -13675,7 +14276,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13675
14276
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
13676
14277
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
13677
14278
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
13678
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
|
|
14279
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa';
|
|
13679
14280
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
13680
14281
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
13681
14282
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -13707,7 +14308,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13707
14308
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
13708
14309
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
13709
14310
|
type TariffEligibilityType = 'rex';
|
|
13710
|
-
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
14311
|
+
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions';
|
|
13711
14312
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
13712
14313
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
13713
14314
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
@@ -14421,6 +15022,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14421
15022
|
readonly 'added_on': string;
|
|
14422
15023
|
}
|
|
14423
15024
|
|
|
15025
|
+
interface AldoItemDeleted {
|
|
15026
|
+
readonly 'discriminator': 'aldo_item_deleted';
|
|
15027
|
+
readonly 'event_id': string;
|
|
15028
|
+
readonly 'timestamp': string;
|
|
15029
|
+
readonly 'id': string;
|
|
15030
|
+
}
|
|
15031
|
+
|
|
14424
15032
|
interface AldoItemForm {
|
|
14425
15033
|
readonly 'number': string;
|
|
14426
15034
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -14429,6 +15037,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14429
15037
|
readonly 'added_on': string;
|
|
14430
15038
|
}
|
|
14431
15039
|
|
|
15040
|
+
interface AldoItemUpserted {
|
|
15041
|
+
readonly 'discriminator': 'aldo_item_upserted';
|
|
15042
|
+
readonly 'event_id': string;
|
|
15043
|
+
readonly 'timestamp': string;
|
|
15044
|
+
readonly 'item': io.flow.internal.v0.models.AldoItem;
|
|
15045
|
+
}
|
|
15046
|
+
|
|
14432
15047
|
interface AllItemsExport {
|
|
14433
15048
|
readonly 'discriminator': 'all_items_export';
|
|
14434
15049
|
readonly 'event_id': string;
|
|
@@ -14451,6 +15066,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14451
15066
|
readonly 'labels': Record<string, string[]>;
|
|
14452
15067
|
}
|
|
14453
15068
|
|
|
15069
|
+
interface AmruthaItem {
|
|
15070
|
+
readonly 'id': string;
|
|
15071
|
+
readonly 'number': string;
|
|
15072
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
15073
|
+
readonly 'description'?: string;
|
|
15074
|
+
readonly 'type': io.flow.internal.v0.enums.AmruthaItemType;
|
|
15075
|
+
readonly 'added_on': string;
|
|
15076
|
+
}
|
|
15077
|
+
|
|
15078
|
+
interface AmruthaItemForm {
|
|
15079
|
+
readonly 'number': string;
|
|
15080
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
15081
|
+
readonly 'description'?: string;
|
|
15082
|
+
readonly 'type': io.flow.internal.v0.enums.AmruthaItemType;
|
|
15083
|
+
readonly 'added_on': string;
|
|
15084
|
+
}
|
|
15085
|
+
|
|
14454
15086
|
interface AnirbanItem {
|
|
14455
15087
|
readonly 'id': string;
|
|
14456
15088
|
readonly 'number': string;
|
|
@@ -14460,6 +15092,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14460
15092
|
readonly 'added_on': string;
|
|
14461
15093
|
}
|
|
14462
15094
|
|
|
15095
|
+
interface AnirbanItemDeleted {
|
|
15096
|
+
readonly 'discriminator': 'anirban_item_deleted';
|
|
15097
|
+
readonly 'event_id': string;
|
|
15098
|
+
readonly 'timestamp': string;
|
|
15099
|
+
readonly 'id': string;
|
|
15100
|
+
}
|
|
15101
|
+
|
|
14463
15102
|
interface AnirbanItemForm {
|
|
14464
15103
|
readonly 'number': string;
|
|
14465
15104
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -14468,6 +15107,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14468
15107
|
readonly 'added_on': string;
|
|
14469
15108
|
}
|
|
14470
15109
|
|
|
15110
|
+
interface AnirbanItemUpserted {
|
|
15111
|
+
readonly 'discriminator': 'anirban_item_upserted';
|
|
15112
|
+
readonly 'event_id': string;
|
|
15113
|
+
readonly 'timestamp': string;
|
|
15114
|
+
readonly 'item': io.flow.internal.v0.models.AnirbanItem;
|
|
15115
|
+
}
|
|
15116
|
+
|
|
14471
15117
|
interface AnshItem {
|
|
14472
15118
|
readonly 'id': string;
|
|
14473
15119
|
readonly 'number': string;
|
|
@@ -14477,6 +15123,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14477
15123
|
readonly 'added_on': string;
|
|
14478
15124
|
}
|
|
14479
15125
|
|
|
15126
|
+
interface AnshItemDeleted {
|
|
15127
|
+
readonly 'discriminator': 'ansh_item_deleted';
|
|
15128
|
+
readonly 'event_id': string;
|
|
15129
|
+
readonly 'timestamp': string;
|
|
15130
|
+
readonly 'id': string;
|
|
15131
|
+
}
|
|
15132
|
+
|
|
14480
15133
|
interface AnshItemForm {
|
|
14481
15134
|
readonly 'number': string;
|
|
14482
15135
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -14485,6 +15138,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14485
15138
|
readonly 'added_on': string;
|
|
14486
15139
|
}
|
|
14487
15140
|
|
|
15141
|
+
interface AnshItemUpserted {
|
|
15142
|
+
readonly 'discriminator': 'ansh_item_upserted';
|
|
15143
|
+
readonly 'event_id': string;
|
|
15144
|
+
readonly 'timestamp': string;
|
|
15145
|
+
readonly 'item': io.flow.internal.v0.models.AnshItem;
|
|
15146
|
+
}
|
|
15147
|
+
|
|
14488
15148
|
interface ApplePayAuthorizationPayload {
|
|
14489
15149
|
readonly 'discriminator': 'apple_pay_authorization_payload';
|
|
14490
15150
|
readonly 'apple_pay_token': string;
|
|
@@ -14588,6 +15248,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14588
15248
|
readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
14589
15249
|
}
|
|
14590
15250
|
|
|
15251
|
+
interface B2BTaxLedger {
|
|
15252
|
+
readonly 'id': string;
|
|
15253
|
+
readonly 'total_amount': io.flow.internal.v0.models.TaxTypeTotal;
|
|
15254
|
+
readonly 'tax_amount': io.flow.common.v0.models.Money;
|
|
15255
|
+
readonly 'tax_type': io.flow.consumer.invoice.v0.enums.TaxType;
|
|
15256
|
+
readonly 'tax_rate': number;
|
|
15257
|
+
readonly 'tax_rate_type': io.flow.internal.v0.enums.B2BTaxRateType;
|
|
15258
|
+
readonly 'organization_id': string;
|
|
15259
|
+
readonly 'organization_country': string;
|
|
15260
|
+
readonly 'organization_province'?: string;
|
|
15261
|
+
readonly 'mor_tax_number': string;
|
|
15262
|
+
readonly 'mor_country': string;
|
|
15263
|
+
readonly 'mor_province'?: string;
|
|
15264
|
+
readonly 'document_id': string;
|
|
15265
|
+
readonly 'document_type': io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
15266
|
+
readonly 'document_date': string;
|
|
15267
|
+
readonly 'ledger_report_id'?: string;
|
|
15268
|
+
}
|
|
15269
|
+
|
|
15270
|
+
interface B2BTaxLedgerForm {
|
|
15271
|
+
readonly 'total_amount': io.flow.internal.v0.models.TaxTypeTotal;
|
|
15272
|
+
readonly 'tax_amount': io.flow.common.v0.models.Money;
|
|
15273
|
+
readonly 'tax_type': io.flow.consumer.invoice.v0.enums.TaxType;
|
|
15274
|
+
readonly 'tax_rate': number;
|
|
15275
|
+
readonly 'tax_rate_type': io.flow.internal.v0.enums.B2BTaxRateType;
|
|
15276
|
+
readonly 'organization_id': string;
|
|
15277
|
+
readonly 'organization_country': string;
|
|
15278
|
+
readonly 'organization_province'?: string;
|
|
15279
|
+
readonly 'mor_tax_number': string;
|
|
15280
|
+
readonly 'mor_country': string;
|
|
15281
|
+
readonly 'mor_province'?: string;
|
|
15282
|
+
readonly 'document_id': string;
|
|
15283
|
+
readonly 'document_type': io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
15284
|
+
readonly 'document_date': string;
|
|
15285
|
+
readonly 'ledger_report_id'?: string;
|
|
15286
|
+
}
|
|
15287
|
+
|
|
14591
15288
|
interface BankAccount {
|
|
14592
15289
|
readonly 'status': io.flow.internal.v0.enums.BankAccountStatus;
|
|
14593
15290
|
readonly 'hold_created_at'?: string;
|
|
@@ -14894,6 +15591,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14894
15591
|
readonly 'non_l4l_tax_duty_fx': io.flow.common.v0.models.Price;
|
|
14895
15592
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
14896
15593
|
readonly 'tax_refund': io.flow.common.v0.models.Price;
|
|
15594
|
+
readonly 'b2b_tax': io.flow.common.v0.models.Price;
|
|
15595
|
+
readonly 'b2b_tax_refund': io.flow.common.v0.models.Price;
|
|
14897
15596
|
}
|
|
14898
15597
|
|
|
14899
15598
|
interface BillingStatementUpserted {
|
|
@@ -15011,6 +15710,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15011
15710
|
readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
15012
15711
|
}
|
|
15013
15712
|
|
|
15713
|
+
interface Cafe24MarketsWebhook {
|
|
15714
|
+
readonly 'placeholder'?: any/*json*/;
|
|
15715
|
+
}
|
|
15716
|
+
|
|
15014
15717
|
interface CalculatedTaxAmount {
|
|
15015
15718
|
readonly 'discriminator': 'calculated_tax_amount';
|
|
15016
15719
|
readonly 'amount': number;
|
|
@@ -15611,6 +16314,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15611
16314
|
readonly 'order_updated_at'?: string;
|
|
15612
16315
|
readonly 'order_edit_summary'?: io.flow.internal.v0.models.OrderEditSummary;
|
|
15613
16316
|
readonly 'payment_source'?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
16317
|
+
readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
15614
16318
|
}
|
|
15615
16319
|
|
|
15616
16320
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -17501,10 +18205,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17501
18205
|
readonly 'region'?: string;
|
|
17502
18206
|
}
|
|
17503
18207
|
|
|
17504
|
-
interface FeatureIdReference {
|
|
17505
|
-
readonly 'id': string;
|
|
17506
|
-
}
|
|
17507
|
-
|
|
17508
18208
|
interface FeatureReference {
|
|
17509
18209
|
readonly 'id': string;
|
|
17510
18210
|
readonly 'key': string;
|
|
@@ -18203,6 +18903,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18203
18903
|
readonly 'fulfilled_at': string;
|
|
18204
18904
|
readonly 'sequence_number': number;
|
|
18205
18905
|
readonly 'completes_order': boolean;
|
|
18906
|
+
readonly 'trigger'?: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
18206
18907
|
}
|
|
18207
18908
|
|
|
18208
18909
|
interface FulfillmentStatusUpserted {
|
|
@@ -18285,6 +18986,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18285
18986
|
readonly 'transaction_created_at': string;
|
|
18286
18987
|
}
|
|
18287
18988
|
|
|
18989
|
+
interface GabrielItem {
|
|
18990
|
+
readonly 'id': string;
|
|
18991
|
+
readonly 'number': string;
|
|
18992
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
18993
|
+
readonly 'description'?: string;
|
|
18994
|
+
readonly 'type': io.flow.internal.v0.enums.GabrielItemType;
|
|
18995
|
+
readonly 'added_on': string;
|
|
18996
|
+
}
|
|
18997
|
+
|
|
18998
|
+
interface GabrielItemDeleted {
|
|
18999
|
+
readonly 'discriminator': 'gabriel_item_deleted';
|
|
19000
|
+
readonly 'event_id': string;
|
|
19001
|
+
readonly 'timestamp': string;
|
|
19002
|
+
readonly 'id': string;
|
|
19003
|
+
}
|
|
19004
|
+
|
|
19005
|
+
interface GabrielItemForm {
|
|
19006
|
+
readonly 'number': string;
|
|
19007
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
19008
|
+
readonly 'description'?: string;
|
|
19009
|
+
readonly 'type': io.flow.internal.v0.enums.GabrielItemType;
|
|
19010
|
+
readonly 'added_on': string;
|
|
19011
|
+
}
|
|
19012
|
+
|
|
19013
|
+
interface GabrielItemUpserted {
|
|
19014
|
+
readonly 'discriminator': 'gabriel_item_upserted';
|
|
19015
|
+
readonly 'event_id': string;
|
|
19016
|
+
readonly 'timestamp': string;
|
|
19017
|
+
readonly 'item': io.flow.internal.v0.models.GabrielItem;
|
|
19018
|
+
}
|
|
19019
|
+
|
|
18288
19020
|
interface GeRevenueShareTransaction {
|
|
18289
19021
|
readonly 'discriminator': 'ge_revenue_share_transaction';
|
|
18290
19022
|
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -18484,6 +19216,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18484
19216
|
readonly 'added_on': string;
|
|
18485
19217
|
}
|
|
18486
19218
|
|
|
19219
|
+
interface HoseinItemDeleted {
|
|
19220
|
+
readonly 'discriminator': 'hosein_item_deleted';
|
|
19221
|
+
readonly 'event_id': string;
|
|
19222
|
+
readonly 'timestamp': string;
|
|
19223
|
+
readonly 'id': string;
|
|
19224
|
+
}
|
|
19225
|
+
|
|
18487
19226
|
interface HoseinItemForm {
|
|
18488
19227
|
readonly 'number': string;
|
|
18489
19228
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -18492,6 +19231,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18492
19231
|
readonly 'added_on': string;
|
|
18493
19232
|
}
|
|
18494
19233
|
|
|
19234
|
+
interface HoseinItemUpserted {
|
|
19235
|
+
readonly 'discriminator': 'hosein_item_upserted';
|
|
19236
|
+
readonly 'event_id': string;
|
|
19237
|
+
readonly 'timestamp': string;
|
|
19238
|
+
readonly 'item': io.flow.internal.v0.models.HoseinItem;
|
|
19239
|
+
}
|
|
19240
|
+
|
|
18495
19241
|
interface Hs6 {
|
|
18496
19242
|
readonly 'code': string;
|
|
18497
19243
|
readonly 'description': string;
|
|
@@ -18716,8 +19462,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18716
19462
|
readonly 'customs_value': number;
|
|
18717
19463
|
readonly 'total_value': number;
|
|
18718
19464
|
readonly 'usa_exporter_identifier_number_if_value_over_threshold'?: string;
|
|
18719
|
-
readonly 'feature_israel_notes_import_duty_and_taxes_due': boolean;
|
|
18720
|
-
readonly 'feature_new_export_declaration': boolean;
|
|
18721
19465
|
}
|
|
18722
19466
|
|
|
18723
19467
|
interface InvoiceDataLineItem {
|
|
@@ -18728,7 +19472,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18728
19472
|
readonly 'tariff_code': string;
|
|
18729
19473
|
readonly 'country_of_origin': string;
|
|
18730
19474
|
readonly 'display_country_of_origin': string;
|
|
18731
|
-
readonly '
|
|
19475
|
+
readonly 'remitter': io.flow.internal.v0.enums.TaxParty;
|
|
18732
19476
|
readonly 'gst_paid_text': string;
|
|
18733
19477
|
readonly 'unit_price': number;
|
|
18734
19478
|
readonly 'vat_price': number;
|
|
@@ -19209,6 +19953,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19209
19953
|
readonly 'service_id'?: string;
|
|
19210
19954
|
readonly 'errors': string[];
|
|
19211
19955
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
19956
|
+
readonly 'origin'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
19957
|
+
readonly 'destination'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
19212
19958
|
}
|
|
19213
19959
|
|
|
19214
19960
|
interface LabelRequestErrorDeleted {
|
|
@@ -19374,6 +20120,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19374
20120
|
readonly 'errors': string[];
|
|
19375
20121
|
}
|
|
19376
20122
|
|
|
20123
|
+
interface LedgerReport {
|
|
20124
|
+
readonly 'id': string;
|
|
20125
|
+
readonly 'mor_tax_number': string;
|
|
20126
|
+
readonly 'jurisdiction': string;
|
|
20127
|
+
readonly 'start_date': string;
|
|
20128
|
+
readonly 'end_date': string;
|
|
20129
|
+
readonly 'report_type': io.flow.internal.v0.enums.LedgerReportType;
|
|
20130
|
+
readonly 'urls': io.flow.internal.v0.models.LedgerReportUrl[];
|
|
20131
|
+
}
|
|
20132
|
+
|
|
20133
|
+
interface LedgerReportUrl {
|
|
20134
|
+
readonly 'url': string;
|
|
20135
|
+
readonly 'type': io.flow.internal.v0.enums.LedgerReportUrlType;
|
|
20136
|
+
}
|
|
20137
|
+
|
|
19377
20138
|
interface LevyRateSummary {
|
|
19378
20139
|
readonly 'id': string;
|
|
19379
20140
|
readonly 'number': string;
|
|
@@ -19918,6 +20679,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19918
20679
|
readonly 'added_on': string;
|
|
19919
20680
|
}
|
|
19920
20681
|
|
|
20682
|
+
interface NiallItemDeleted {
|
|
20683
|
+
readonly 'discriminator': 'niall_item_deleted';
|
|
20684
|
+
readonly 'event_id': string;
|
|
20685
|
+
readonly 'timestamp': string;
|
|
20686
|
+
readonly 'id': string;
|
|
20687
|
+
}
|
|
20688
|
+
|
|
19921
20689
|
interface NiallItemForm {
|
|
19922
20690
|
readonly 'number': string;
|
|
19923
20691
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -19926,6 +20694,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19926
20694
|
readonly 'added_on': string;
|
|
19927
20695
|
}
|
|
19928
20696
|
|
|
20697
|
+
interface NiallItemUpserted {
|
|
20698
|
+
readonly 'discriminator': 'niall_item_upserted';
|
|
20699
|
+
readonly 'event_id': string;
|
|
20700
|
+
readonly 'timestamp': string;
|
|
20701
|
+
readonly 'item': io.flow.internal.v0.models.NiallItem;
|
|
20702
|
+
}
|
|
20703
|
+
|
|
19929
20704
|
interface NoCalculatedTaxAmount {
|
|
19930
20705
|
readonly 'discriminator': 'no_calculated_tax_amount';
|
|
19931
20706
|
readonly 'amount': number;
|
|
@@ -20007,6 +20782,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20007
20782
|
readonly 'health_score'?: number;
|
|
20008
20783
|
readonly 'audit_result'?: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
20009
20784
|
readonly 'blocked_since'?: string;
|
|
20785
|
+
readonly 'onboarding_segment'?: string;
|
|
20010
20786
|
}
|
|
20011
20787
|
|
|
20012
20788
|
interface OnboardingStateForm {
|
|
@@ -20452,27 +21228,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20452
21228
|
readonly 'attachments': io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
20453
21229
|
}
|
|
20454
21230
|
|
|
20455
|
-
interface OrganizationBooleanValue {
|
|
20456
|
-
readonly 'id': string;
|
|
20457
|
-
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
20458
|
-
readonly 'feature': io.flow.internal.v0.models.FeatureIdReference;
|
|
20459
|
-
readonly 'value': boolean;
|
|
20460
|
-
}
|
|
20461
|
-
|
|
20462
|
-
interface OrganizationBooleanValueDeleted {
|
|
20463
|
-
readonly 'discriminator': 'organization_boolean_value_deleted';
|
|
20464
|
-
readonly 'event_id': string;
|
|
20465
|
-
readonly 'timestamp': string;
|
|
20466
|
-
readonly 'value': io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
20467
|
-
}
|
|
20468
|
-
|
|
20469
|
-
interface OrganizationBooleanValueUpserted {
|
|
20470
|
-
readonly 'discriminator': 'organization_boolean_value_upserted';
|
|
20471
|
-
readonly 'event_id': string;
|
|
20472
|
-
readonly 'timestamp': string;
|
|
20473
|
-
readonly 'value': io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
20474
|
-
}
|
|
20475
|
-
|
|
20476
21231
|
interface OrganizationBusinessEntity {
|
|
20477
21232
|
readonly 'id': string;
|
|
20478
21233
|
readonly 'name': string;
|
|
@@ -21072,6 +21827,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21072
21827
|
interface PaymentIs {
|
|
21073
21828
|
readonly 'lvg': boolean;
|
|
21074
21829
|
readonly 'manual': boolean;
|
|
21830
|
+
readonly 'managed_pricing'?: boolean;
|
|
21075
21831
|
}
|
|
21076
21832
|
|
|
21077
21833
|
interface PaymentMethodDetail {
|
|
@@ -21531,6 +22287,76 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21531
22287
|
readonly 'item': string;
|
|
21532
22288
|
}
|
|
21533
22289
|
|
|
22290
|
+
interface PreonboardingClassificationRabbitmqEnvelope {
|
|
22291
|
+
readonly 'messageType': string[];
|
|
22292
|
+
readonly 'message': io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage;
|
|
22293
|
+
}
|
|
22294
|
+
|
|
22295
|
+
interface PreonboardingClassificationRabbitmqMessage {
|
|
22296
|
+
readonly 'MerchantId': string;
|
|
22297
|
+
readonly 'ProductName': string;
|
|
22298
|
+
readonly 'ProductDescription': string;
|
|
22299
|
+
readonly 'ProductIdInternal': string;
|
|
22300
|
+
readonly 'ProductIdExternal': string;
|
|
22301
|
+
readonly 'ProductGroupCode'?: string;
|
|
22302
|
+
readonly 'ProductUrl'?: string;
|
|
22303
|
+
readonly 'ProductImage'?: string;
|
|
22304
|
+
readonly 'ProductAttributes': Record<string, string>;
|
|
22305
|
+
readonly 'Categories'?: string[];
|
|
22306
|
+
readonly 'PlatformId': io.flow.internal.v0.enums.PreonboardingClassificationPlatform;
|
|
22307
|
+
}
|
|
22308
|
+
|
|
22309
|
+
interface PreonboardingClassificationRequest {
|
|
22310
|
+
readonly 'id': string;
|
|
22311
|
+
readonly 'merchant_id': string;
|
|
22312
|
+
readonly 'product_id': string;
|
|
22313
|
+
readonly 'channel': string;
|
|
22314
|
+
readonly 'request_id': string;
|
|
22315
|
+
readonly 'status': io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
22316
|
+
readonly 'name': string;
|
|
22317
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
22318
|
+
readonly 'description': string;
|
|
22319
|
+
readonly 'relative_ranking': number;
|
|
22320
|
+
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22321
|
+
readonly 'fingerprint': string;
|
|
22322
|
+
}
|
|
22323
|
+
|
|
22324
|
+
interface PreonboardingClassificationResult {
|
|
22325
|
+
readonly 'id': string;
|
|
22326
|
+
readonly 'merchant_id': string;
|
|
22327
|
+
readonly 'product_id': string;
|
|
22328
|
+
readonly 'channel': string;
|
|
22329
|
+
readonly 'hs6_code'?: string;
|
|
22330
|
+
readonly 'probability'?: number;
|
|
22331
|
+
readonly 'classification_decision': io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
22332
|
+
readonly 'classification_type': io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
22333
|
+
}
|
|
22334
|
+
|
|
22335
|
+
interface PreonboardingMerchant {
|
|
22336
|
+
readonly 'merchant_id': string;
|
|
22337
|
+
readonly 'channel': string;
|
|
22338
|
+
readonly 'catalog_size': number;
|
|
22339
|
+
readonly 'processed_product_count': number;
|
|
22340
|
+
readonly 'last_request': string;
|
|
22341
|
+
}
|
|
22342
|
+
|
|
22343
|
+
interface PreonboardingSellabilityResult {
|
|
22344
|
+
readonly 'merchant_id': string;
|
|
22345
|
+
readonly 'product_id': string;
|
|
22346
|
+
readonly 'channel': string;
|
|
22347
|
+
readonly 'request_id': string;
|
|
22348
|
+
readonly 'status': io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
22349
|
+
readonly 'error_code'?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
22350
|
+
readonly 'hs6_code'?: string;
|
|
22351
|
+
readonly 'hs6_code_source'?: io.flow.internal.v0.enums.Hs6CodeSource;
|
|
22352
|
+
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
22353
|
+
readonly 'rule_ids'?: string[];
|
|
22354
|
+
readonly 'matching_positive_keywords'?: string[];
|
|
22355
|
+
readonly 'classification_failure_reason'?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
22356
|
+
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22357
|
+
readonly 'fingerprint': string;
|
|
22358
|
+
}
|
|
22359
|
+
|
|
21534
22360
|
interface PriceInclusivity {
|
|
21535
22361
|
readonly 'tax'?: boolean;
|
|
21536
22362
|
readonly 'duty'?: boolean;
|
|
@@ -21783,7 +22609,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21783
22609
|
readonly 'product_id'?: string;
|
|
21784
22610
|
readonly 'request_id': string;
|
|
21785
22611
|
readonly 'hs6_code': string;
|
|
21786
|
-
readonly 'restricted_regions': io.flow.sellability.v0.models.
|
|
22612
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
21787
22613
|
readonly 'rule_ids': string[];
|
|
21788
22614
|
}
|
|
21789
22615
|
|
|
@@ -21796,7 +22622,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21796
22622
|
}
|
|
21797
22623
|
|
|
21798
22624
|
interface ProductSellabilityInternalResult {
|
|
21799
|
-
readonly 'restricted_regions': io.flow.sellability.v0.models.
|
|
22625
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
21800
22626
|
readonly 'rule_ids': string[];
|
|
21801
22627
|
}
|
|
21802
22628
|
|
|
@@ -21806,7 +22632,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21806
22632
|
readonly 'request_id': string;
|
|
21807
22633
|
readonly 'hs6_code': string;
|
|
21808
22634
|
readonly 'restricted_regions'?: string[];
|
|
21809
|
-
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.
|
|
22635
|
+
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
21810
22636
|
readonly 'rule_ids'?: string[];
|
|
21811
22637
|
readonly 'taxonomy_category'?: string;
|
|
21812
22638
|
}
|
|
@@ -21842,6 +22668,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21842
22668
|
readonly 'shipping_notification_id': string;
|
|
21843
22669
|
}
|
|
21844
22670
|
|
|
22671
|
+
interface ProofOfPostingSynthetic {
|
|
22672
|
+
readonly 'discriminator': 'synthetic';
|
|
22673
|
+
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
22674
|
+
readonly 'created_at': string;
|
|
22675
|
+
}
|
|
22676
|
+
|
|
21845
22677
|
interface ProofOfPostingTimeElapsed {
|
|
21846
22678
|
readonly 'discriminator': 'time_elapsed';
|
|
21847
22679
|
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -22321,6 +23153,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22321
23153
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
22322
23154
|
}
|
|
22323
23155
|
|
|
23156
|
+
interface ReportAmountRange {
|
|
23157
|
+
readonly 'min'?: number;
|
|
23158
|
+
readonly 'max'?: number;
|
|
23159
|
+
}
|
|
23160
|
+
|
|
22324
23161
|
interface ReportBankAccount {
|
|
22325
23162
|
readonly 'id'?: string;
|
|
22326
23163
|
readonly 'last4'?: string;
|
|
@@ -22345,6 +23182,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22345
23182
|
interface ReportFilter {
|
|
22346
23183
|
readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
22347
23184
|
readonly 'order_payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
23185
|
+
readonly 'amount_range'?: io.flow.internal.v0.models.ReportAmountRange;
|
|
22348
23186
|
}
|
|
22349
23187
|
|
|
22350
23188
|
interface ReportForm {
|
|
@@ -22783,7 +23621,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22783
23621
|
interface RestrictionOrganization {
|
|
22784
23622
|
readonly 'id': string;
|
|
22785
23623
|
readonly 'name': string;
|
|
22786
|
-
readonly 'environment': io.flow.
|
|
23624
|
+
readonly 'environment': io.flow.restrictions.v0.enums.RestrictionEnvironment;
|
|
22787
23625
|
readonly 'url'?: string;
|
|
22788
23626
|
readonly 'approval_status'?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
22789
23627
|
readonly 'screening_status'?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
@@ -22834,7 +23672,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22834
23672
|
interface RestrictionOrganizationSummary {
|
|
22835
23673
|
readonly 'id': string;
|
|
22836
23674
|
readonly 'name': string;
|
|
22837
|
-
readonly 'environment': io.flow.
|
|
23675
|
+
readonly 'environment': io.flow.restrictions.v0.enums.RestrictionEnvironment;
|
|
22838
23676
|
readonly 'source': io.flow.internal.v0.enums.OrganizationSource;
|
|
22839
23677
|
}
|
|
22840
23678
|
|
|
@@ -22902,7 +23740,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22902
23740
|
readonly 'attribute_names'?: string[];
|
|
22903
23741
|
readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
|
|
22904
23742
|
readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
22905
|
-
readonly 'activation_status'
|
|
23743
|
+
readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
22906
23744
|
}
|
|
22907
23745
|
|
|
22908
23746
|
interface RestrictionRuleDecisionForm {
|
|
@@ -22963,7 +23801,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22963
23801
|
readonly 'attribute_names'?: string[];
|
|
22964
23802
|
readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
|
|
22965
23803
|
readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
22966
|
-
readonly 'activation_status'
|
|
23804
|
+
readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
22967
23805
|
}
|
|
22968
23806
|
|
|
22969
23807
|
interface RestrictionRuleLaneExemption {
|
|
@@ -23027,23 +23865,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23027
23865
|
readonly 'oldest_pv_product_date_transacting': string;
|
|
23028
23866
|
readonly 'oldest_pc_product_date_setup_complete': string;
|
|
23029
23867
|
readonly 'oldest_pc_product_date_transacting': string;
|
|
23030
|
-
readonly 'num_orgs_setup_complete_prs': number;
|
|
23031
|
-
readonly 'num_products_setup_complete_prs': number;
|
|
23032
|
-
readonly 'num_orgs_transacting_prs': number;
|
|
23033
|
-
readonly 'num_products_transacting_prs': number;
|
|
23034
|
-
readonly 'oldest_pr_product_date_setup_complete': string;
|
|
23035
|
-
readonly 'oldest_pr_date_transacting': string;
|
|
23036
23868
|
readonly 'percent_products_reviewed_transacting'?: number;
|
|
23037
23869
|
readonly 'num_pv_inflow_net_new': number;
|
|
23038
23870
|
readonly 'num_pv_outflow_human_decisions': number;
|
|
23039
23871
|
readonly 'num_pv_outflow_auto_review_decisions': number;
|
|
23040
23872
|
readonly 'num_pv_outflow_side_effect_decisions': number;
|
|
23041
|
-
readonly 'num_pr_inflow_net_new': number;
|
|
23042
|
-
readonly 'num_pr_outflow_human_decisions': number;
|
|
23043
|
-
readonly 'num_pr_outflow_auto_review_decisions': number;
|
|
23044
|
-
readonly 'num_pr_outflow_side_effect_decisions': number;
|
|
23045
23873
|
readonly 'num_pending_decisions_transacting': number;
|
|
23046
|
-
readonly 'oldest_insufficient_details_pv_onboarding'?: string;
|
|
23047
23874
|
readonly 'oldest_insufficient_details_pv_active'?: string;
|
|
23048
23875
|
readonly 'oldest_insufficient_details_pv_transacting'?: string;
|
|
23049
23876
|
readonly 'num_products_with_fs_result'?: number;
|
|
@@ -23196,6 +24023,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23196
24023
|
readonly 'added_on': string;
|
|
23197
24024
|
}
|
|
23198
24025
|
|
|
24026
|
+
interface RohanItemDeleted {
|
|
24027
|
+
readonly 'discriminator': 'rohan_item_deleted';
|
|
24028
|
+
readonly 'event_id': string;
|
|
24029
|
+
readonly 'timestamp': string;
|
|
24030
|
+
readonly 'id': string;
|
|
24031
|
+
}
|
|
24032
|
+
|
|
23199
24033
|
interface RohanItemForm {
|
|
23200
24034
|
readonly 'number': string;
|
|
23201
24035
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -23204,6 +24038,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23204
24038
|
readonly 'added_on': string;
|
|
23205
24039
|
}
|
|
23206
24040
|
|
|
24041
|
+
interface RohanItemUpserted {
|
|
24042
|
+
readonly 'discriminator': 'rohan_item_upserted';
|
|
24043
|
+
readonly 'event_id': string;
|
|
24044
|
+
readonly 'timestamp': string;
|
|
24045
|
+
readonly 'item': io.flow.internal.v0.models.RohanItem;
|
|
24046
|
+
}
|
|
24047
|
+
|
|
23207
24048
|
interface RoutingAccount {
|
|
23208
24049
|
readonly 'discriminator': 'routing_account';
|
|
23209
24050
|
readonly 'processor': io.flow.internal.v0.enums.Processor;
|
|
@@ -23257,6 +24098,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23257
24098
|
readonly 'added_on': string;
|
|
23258
24099
|
}
|
|
23259
24100
|
|
|
24101
|
+
interface SarveshItemDeleted {
|
|
24102
|
+
readonly 'discriminator': 'sarvesh_item_deleted';
|
|
24103
|
+
readonly 'event_id': string;
|
|
24104
|
+
readonly 'timestamp': string;
|
|
24105
|
+
readonly 'id': string;
|
|
24106
|
+
}
|
|
24107
|
+
|
|
23260
24108
|
interface SarveshItemForm {
|
|
23261
24109
|
readonly 'number': string;
|
|
23262
24110
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -23265,6 +24113,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23265
24113
|
readonly 'added_on': string;
|
|
23266
24114
|
}
|
|
23267
24115
|
|
|
24116
|
+
interface SarveshItemUpserted {
|
|
24117
|
+
readonly 'discriminator': 'sarvesh_item_upserted';
|
|
24118
|
+
readonly 'event_id': string;
|
|
24119
|
+
readonly 'timestamp': string;
|
|
24120
|
+
readonly 'item': io.flow.internal.v0.models.SarveshItem;
|
|
24121
|
+
}
|
|
24122
|
+
|
|
23268
24123
|
interface ScheduledPayment {
|
|
23269
24124
|
readonly 'payment': io.flow.internal.v0.models.ReportPayment;
|
|
23270
24125
|
readonly 'bank_account': io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -23364,9 +24219,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23364
24219
|
readonly 'status': io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
23365
24220
|
readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
23366
24221
|
readonly 'current_rule_ids'?: string[];
|
|
23367
|
-
readonly 'current_restricted_regions'?: io.flow.sellability.v0.models.
|
|
24222
|
+
readonly 'current_restricted_regions'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
23368
24223
|
readonly 'merchant_rule_ids'?: string[];
|
|
23369
|
-
readonly 'merchant_restricted_regions'?: io.flow.sellability.v0.models.
|
|
24224
|
+
readonly 'merchant_restricted_regions'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
23370
24225
|
readonly 'current_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
23371
24226
|
readonly 'merchant_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
23372
24227
|
}
|
|
@@ -23418,6 +24273,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23418
24273
|
readonly 'customer_price': number;
|
|
23419
24274
|
}
|
|
23420
24275
|
|
|
24276
|
+
interface ShippingRateEstimateAvailableInternal {
|
|
24277
|
+
readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
24278
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
24279
|
+
readonly 'shipment_window': io.flow.ratecard.v0.models.ShipmentWindow;
|
|
24280
|
+
readonly 'total_amount': io.flow.common.v0.models.Money;
|
|
24281
|
+
readonly 'base_amount': io.flow.common.v0.models.Money;
|
|
24282
|
+
readonly 'fees': io.flow.ratecard.v0.unions.RatecardFee[];
|
|
24283
|
+
readonly 'dimensional_weight'?: io.flow.common.v0.models.Measurement;
|
|
24284
|
+
readonly 'gravitational_weight'?: io.flow.common.v0.models.Measurement;
|
|
24285
|
+
readonly 'weight_break'?: number;
|
|
24286
|
+
readonly 'ratecard_id'?: string;
|
|
24287
|
+
readonly 'lane_id'?: string;
|
|
24288
|
+
readonly 'rate_level_key'?: string;
|
|
24289
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
24290
|
+
readonly 'glbe_proposition_name'?: string;
|
|
24291
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
24292
|
+
readonly 'distance_unit_of_measurement'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
24293
|
+
readonly 'weight_unit_of_measurement'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
24294
|
+
}
|
|
24295
|
+
|
|
24296
|
+
interface ShippingRateEstimateInternal {
|
|
24297
|
+
readonly 'channel_id': string;
|
|
24298
|
+
readonly 'organization_id': string;
|
|
24299
|
+
readonly 'service': string;
|
|
24300
|
+
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
24301
|
+
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
24302
|
+
readonly 'shipping_date_time': string;
|
|
24303
|
+
readonly 'available': io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal[];
|
|
24304
|
+
}
|
|
24305
|
+
|
|
24306
|
+
interface ShippingRateEstimateRequestInternal {
|
|
24307
|
+
readonly 'channel_id': string;
|
|
24308
|
+
readonly 'organization_id': string;
|
|
24309
|
+
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
24310
|
+
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
24311
|
+
readonly 'package_dimensions': io.flow.common.v0.models.Dimension;
|
|
24312
|
+
readonly 'shipping_date_time': string;
|
|
24313
|
+
readonly 'service': string;
|
|
24314
|
+
readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
|
|
24315
|
+
readonly 'duties_owed'?: io.flow.common.v0.models.Money;
|
|
24316
|
+
readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
|
|
24317
|
+
readonly 'line_items'?: io.flow.common.v0.models.LineItemForm[];
|
|
24318
|
+
readonly 'include_unpublished'?: boolean;
|
|
24319
|
+
}
|
|
24320
|
+
|
|
23421
24321
|
interface ShopifyCatalogPublication {
|
|
23422
24322
|
readonly 'owner': io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
23423
24323
|
}
|
|
@@ -23664,6 +24564,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23664
24564
|
readonly 'shopify': io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
23665
24565
|
readonly 'internal': io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
23666
24566
|
readonly 'discrepancy_data': io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
24567
|
+
readonly 'organization_metrics'?: io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
|
|
24568
|
+
}
|
|
24569
|
+
|
|
24570
|
+
interface ShopifyMarketsOrganizationOrderMetrics {
|
|
24571
|
+
readonly 'organization_id': string;
|
|
24572
|
+
readonly 'shopify_order_count': number;
|
|
24573
|
+
readonly 'internal_order_count': number;
|
|
24574
|
+
readonly 'discrepancy_count'?: number;
|
|
23667
24575
|
}
|
|
23668
24576
|
|
|
23669
24577
|
interface ShopifyMarketsQueuedRecord {
|
|
@@ -24138,8 +25046,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24138
25046
|
readonly 'auto_correct': boolean;
|
|
24139
25047
|
}
|
|
24140
25048
|
|
|
25049
|
+
interface ShopifyTestOrder {
|
|
25050
|
+
readonly 'id': string;
|
|
25051
|
+
}
|
|
25052
|
+
|
|
25053
|
+
interface ShopifyTestOrderDeleted {
|
|
25054
|
+
readonly 'discriminator': 'shopify_test_order_deleted';
|
|
25055
|
+
readonly 'event_id': string;
|
|
25056
|
+
readonly 'timestamp': string;
|
|
25057
|
+
readonly 'organization': string;
|
|
25058
|
+
readonly 'id': string;
|
|
25059
|
+
}
|
|
25060
|
+
|
|
25061
|
+
interface ShopifyTestOrderUpserted {
|
|
25062
|
+
readonly 'discriminator': 'shopify_test_order_upserted';
|
|
25063
|
+
readonly 'event_id': string;
|
|
25064
|
+
readonly 'timestamp': string;
|
|
25065
|
+
readonly 'organization': string;
|
|
25066
|
+
readonly 'shopify_test_order': io.flow.internal.v0.models.ShopifyTestOrder;
|
|
25067
|
+
}
|
|
25068
|
+
|
|
24141
25069
|
interface ShopperBreakdown {
|
|
24142
25070
|
readonly 'product': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
25071
|
+
readonly 'product_purchase_price'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24143
25072
|
readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24144
25073
|
readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24145
25074
|
readonly 'discount': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -24496,6 +25425,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24496
25425
|
readonly 'mor_fees'?: number;
|
|
24497
25426
|
readonly 'mor_foreign_exchange_fees'?: number;
|
|
24498
25427
|
readonly 'sp_processing_fees'?: number;
|
|
25428
|
+
readonly 'mor_fees_tax'?: number;
|
|
24499
25429
|
}
|
|
24500
25430
|
|
|
24501
25431
|
interface StripeConnectReportRecordTransferMetadata {
|
|
@@ -24877,6 +25807,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24877
25807
|
readonly 'tax_transaction': io.flow.internal.v0.models.TaxTransaction;
|
|
24878
25808
|
}
|
|
24879
25809
|
|
|
25810
|
+
interface TaxTypeTotal {
|
|
25811
|
+
readonly 'value': io.flow.common.v0.models.Money;
|
|
25812
|
+
}
|
|
25813
|
+
|
|
24880
25814
|
interface TaxonomyAlignmentCheckResult {
|
|
24881
25815
|
readonly 'status': io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
24882
25816
|
readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
@@ -25618,7 +26552,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25618
26552
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25619
26553
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25620
26554
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25621
|
-
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26555
|
+
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.AnirbanItemUpserted | io.flow.internal.v0.models.AnirbanItemDeleted | io.flow.internal.v0.models.SarveshItemUpserted | io.flow.internal.v0.models.SarveshItemDeleted | io.flow.internal.v0.models.HoseinItemUpserted | io.flow.internal.v0.models.HoseinItemDeleted | io.flow.internal.v0.models.NiallItemUpserted | io.flow.internal.v0.models.NiallItemDeleted | io.flow.internal.v0.models.RohanItemUpserted | io.flow.internal.v0.models.RohanItemDeleted | io.flow.internal.v0.models.AldoItemUpserted | io.flow.internal.v0.models.AldoItemDeleted | io.flow.internal.v0.models.AnshItemUpserted | io.flow.internal.v0.models.AnshItemDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
25622
26556
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25623
26557
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25624
26558
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -25651,7 +26585,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25651
26585
|
type ProcessorMerchantForm = (io.flow.internal.v0.models.StripeMerchantForm);
|
|
25652
26586
|
type ProcessorMerchantModificationForm = (io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm);
|
|
25653
26587
|
type ProcessorMerchantPutForm = (io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm);
|
|
25654
|
-
type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment | io.flow.internal.v0.models.ProofOfPostingTimeElapsed);
|
|
26588
|
+
type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment | io.flow.internal.v0.models.ProofOfPostingTimeElapsed | io.flow.internal.v0.models.ProofOfPostingSynthetic);
|
|
25655
26589
|
type RestrictionAttributeRuleCondition = (io.flow.internal.v0.models.RestrictionAttributeConditionSingle | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple);
|
|
25656
26590
|
type ReturnTrigger = (io.flow.internal.v0.models.ReturnTriggerRefund | io.flow.internal.v0.models.ReturnTriggerReversal);
|
|
25657
26591
|
type RoutingEntity = (io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant);
|
|
@@ -25675,12 +26609,15 @@ export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.Accoun
|
|
|
25675
26609
|
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
25676
26610
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
25677
26611
|
export const aldoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AldoItemType>;
|
|
26612
|
+
export const amruthaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AmruthaItemType>;
|
|
25678
26613
|
export const anirbanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnirbanItemType>;
|
|
25679
26614
|
export const anshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnshItemType>;
|
|
25680
26615
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
25681
26616
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
25682
26617
|
export const applicablePreferentialRate: PropTypes.Requireable<io.flow.internal.v0.enums.ApplicablePreferentialRate>;
|
|
25683
26618
|
export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
|
|
26619
|
+
export const b2BTaxLedgerDocumentType: PropTypes.Requireable<io.flow.internal.v0.enums.B2BTaxLedgerDocumentType>;
|
|
26620
|
+
export const b2BTaxRateType: PropTypes.Requireable<io.flow.internal.v0.enums.B2BTaxRateType>;
|
|
25684
26621
|
export const bankAccountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BankAccountStatus>;
|
|
25685
26622
|
export const bankPaymentPromiseCompletedMethod: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod>;
|
|
25686
26623
|
export const bankPaymentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentStatusCode>;
|
|
@@ -25719,6 +26656,7 @@ export const checkoutShippingMethodPromptBehavior: PropTypes.Requireable<io.flow
|
|
|
25719
26656
|
export const checkoutUrlType: PropTypes.Requireable<io.flow.internal.v0.enums.CheckoutUrlType>;
|
|
25720
26657
|
export const classificationDecision: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationDecision>;
|
|
25721
26658
|
export const classificationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationErrorCode>;
|
|
26659
|
+
export const classificationFailureReason: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationFailureReason>;
|
|
25722
26660
|
export const classificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationPlatform>;
|
|
25723
26661
|
export const classificationScope: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationScope>;
|
|
25724
26662
|
export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationType>;
|
|
@@ -25769,12 +26707,14 @@ export const fileType: PropTypes.Requireable<io.flow.internal.v0.enums.FileType>
|
|
|
25769
26707
|
export const fraudProvider: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProvider>;
|
|
25770
26708
|
export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProviderStatus>;
|
|
25771
26709
|
export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.FraudReviewResponsibleParty>;
|
|
26710
|
+
export const gabrielItemType: PropTypes.Requireable<io.flow.internal.v0.enums.GabrielItemType>;
|
|
25772
26711
|
export const geIngestionFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.GeIngestionFileStatus>;
|
|
25773
26712
|
export const geRevenueShareTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.GeRevenueShareTransactionType>;
|
|
25774
26713
|
export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
|
|
25775
26714
|
export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
|
|
25776
26715
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
25777
26716
|
export const hoseinItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HoseinItemType>;
|
|
26717
|
+
export const hs6CodeSource: PropTypes.Requireable<io.flow.internal.v0.enums.Hs6CodeSource>;
|
|
25778
26718
|
export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
|
|
25779
26719
|
export const internalPaymentEntityType: PropTypes.Requireable<io.flow.internal.v0.enums.InternalPaymentEntityType>;
|
|
25780
26720
|
export const itemClassificationAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationAction>;
|
|
@@ -25793,6 +26733,8 @@ export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.f
|
|
|
25793
26733
|
export const labelRequestResultOrganizationType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultOrganizationType>;
|
|
25794
26734
|
export const labelRequestResultState: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultState>;
|
|
25795
26735
|
export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
|
|
26736
|
+
export const ledgerReportType: PropTypes.Requireable<io.flow.internal.v0.enums.LedgerReportType>;
|
|
26737
|
+
export const ledgerReportUrlType: PropTypes.Requireable<io.flow.internal.v0.enums.LedgerReportUrlType>;
|
|
25796
26738
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
25797
26739
|
export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsCapability>;
|
|
25798
26740
|
export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
|
|
@@ -25839,6 +26781,10 @@ export const paymentTerm: PropTypes.Requireable<io.flow.internal.v0.enums.Paymen
|
|
|
25839
26781
|
export const pendingRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.PendingRecordType>;
|
|
25840
26782
|
export const prateekItemType: PropTypes.Requireable<io.flow.internal.v0.enums.PrateekItemType>;
|
|
25841
26783
|
export const preferredBillingSchedule: PropTypes.Requireable<io.flow.internal.v0.enums.PreferredBillingSchedule>;
|
|
26784
|
+
export const preonboardingClassificationDecision: PropTypes.Requireable<io.flow.internal.v0.enums.PreonboardingClassificationDecision>;
|
|
26785
|
+
export const preonboardingClassificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.PreonboardingClassificationPlatform>;
|
|
26786
|
+
export const preonboardingClassificationType: PropTypes.Requireable<io.flow.internal.v0.enums.PreonboardingClassificationType>;
|
|
26787
|
+
export const preonboardingRequestStatus: PropTypes.Requireable<io.flow.internal.v0.enums.PreonboardingRequestStatus>;
|
|
25842
26788
|
export const priceSelector: PropTypes.Requireable<io.flow.internal.v0.enums.PriceSelector>;
|
|
25843
26789
|
export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessingTransactionType>;
|
|
25844
26790
|
export const processor: PropTypes.Requireable<io.flow.internal.v0.enums.Processor>;
|
|
@@ -25994,15 +26940,23 @@ export const afterpayRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
25994
26940
|
export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundUpserted>;
|
|
25995
26941
|
export const aftershipWebhook: PropTypes.Requireable<io.flow.internal.v0.models.AftershipWebhook>;
|
|
25996
26942
|
export const aldoItem: PropTypes.Requireable<io.flow.internal.v0.models.AldoItem>;
|
|
26943
|
+
export const aldoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemDeleted>;
|
|
25997
26944
|
export const aldoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemForm>;
|
|
26945
|
+
export const aldoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemUpserted>;
|
|
25998
26946
|
export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
|
|
25999
26947
|
export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
|
|
26000
26948
|
export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
|
|
26001
26949
|
export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
|
|
26950
|
+
export const amruthaItem: PropTypes.Requireable<io.flow.internal.v0.models.AmruthaItem>;
|
|
26951
|
+
export const amruthaItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AmruthaItemForm>;
|
|
26002
26952
|
export const anirbanItem: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItem>;
|
|
26953
|
+
export const anirbanItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemDeleted>;
|
|
26003
26954
|
export const anirbanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemForm>;
|
|
26955
|
+
export const anirbanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemUpserted>;
|
|
26004
26956
|
export const anshItem: PropTypes.Requireable<io.flow.internal.v0.models.AnshItem>;
|
|
26957
|
+
export const anshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemDeleted>;
|
|
26005
26958
|
export const anshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemForm>;
|
|
26959
|
+
export const anshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemUpserted>;
|
|
26006
26960
|
export const applePayAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.ApplePayAuthorizationPayload>;
|
|
26007
26961
|
export const applyAtValueForm: PropTypes.Requireable<io.flow.internal.v0.models.ApplyAtValueForm>;
|
|
26008
26962
|
export const attemptStatistics: PropTypes.Requireable<io.flow.internal.v0.models.AttemptStatistics>;
|
|
@@ -26019,6 +26973,8 @@ export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
26019
26973
|
export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
|
|
26020
26974
|
export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
|
|
26021
26975
|
export const autoReviewCriteria: PropTypes.Requireable<io.flow.internal.v0.models.AutoReviewCriteria>;
|
|
26976
|
+
export const b2BTaxLedger: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxLedger>;
|
|
26977
|
+
export const b2BTaxLedgerForm: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxLedgerForm>;
|
|
26022
26978
|
export const bankAccount: PropTypes.Requireable<io.flow.internal.v0.models.BankAccount>;
|
|
26023
26979
|
export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
|
|
26024
26980
|
export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
|
|
@@ -26076,6 +27032,7 @@ export const brickWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
26076
27032
|
export const brickWebhookEventResponse: PropTypes.Requireable<io.flow.internal.v0.models.BrickWebhookEventResponse>;
|
|
26077
27033
|
export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
|
|
26078
27034
|
export const bulkDutyUpdateValidationError: PropTypes.Requireable<io.flow.internal.v0.models.BulkDutyUpdateValidationError>;
|
|
27035
|
+
export const cafe24MarketsWebhook: PropTypes.Requireable<io.flow.internal.v0.models.Cafe24MarketsWebhook>;
|
|
26079
27036
|
export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
|
|
26080
27037
|
export const calculationStampingLineItem: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingLineItem>;
|
|
26081
27038
|
export const calculationStampingShippingLine: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingShippingLine>;
|
|
@@ -26391,7 +27348,6 @@ export const featureContextForm: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
26391
27348
|
export const featureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FeatureDeleted>;
|
|
26392
27349
|
export const featureForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureForm>;
|
|
26393
27350
|
export const featureGeoForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureGeoForm>;
|
|
26394
|
-
export const featureIdReference: PropTypes.Requireable<io.flow.internal.v0.models.FeatureIdReference>;
|
|
26395
27351
|
export const featureReference: PropTypes.Requireable<io.flow.internal.v0.models.FeatureReference>;
|
|
26396
27352
|
export const featureReleaseForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureReleaseForm>;
|
|
26397
27353
|
export const featureStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureStatusForm>;
|
|
@@ -26492,6 +27448,10 @@ export const fxRevenueRecognitionOrder: PropTypes.Requireable<io.flow.internal.v
|
|
|
26492
27448
|
export const fxRevenueRecognitionOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionOrganization>;
|
|
26493
27449
|
export const fxRevenueRecognitionRate: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionRate>;
|
|
26494
27450
|
export const fxRevenueRecognitionSource: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionSource>;
|
|
27451
|
+
export const gabrielItem: PropTypes.Requireable<io.flow.internal.v0.models.GabrielItem>;
|
|
27452
|
+
export const gabrielItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GabrielItemDeleted>;
|
|
27453
|
+
export const gabrielItemForm: PropTypes.Requireable<io.flow.internal.v0.models.GabrielItemForm>;
|
|
27454
|
+
export const gabrielItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GabrielItemUpserted>;
|
|
26495
27455
|
export const geRevenueShareTransaction: PropTypes.Requireable<io.flow.internal.v0.models.GeRevenueShareTransaction>;
|
|
26496
27456
|
export const generateLoadMultipleOrgs: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadMultipleOrgs>;
|
|
26497
27457
|
export const generateLoadSingleOrg: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadSingleOrg>;
|
|
@@ -26520,7 +27480,9 @@ export const harmonizationUnclassifiedStatistics: PropTypes.Requireable<io.flow.
|
|
|
26520
27480
|
export const harmonizeFullyRequestV2: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizeFullyRequestV2>;
|
|
26521
27481
|
export const harmonizedItemsHs6Export: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizedItemsHs6Export>;
|
|
26522
27482
|
export const hoseinItem: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItem>;
|
|
27483
|
+
export const hoseinItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemDeleted>;
|
|
26523
27484
|
export const hoseinItemForm: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemForm>;
|
|
27485
|
+
export const hoseinItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemUpserted>;
|
|
26524
27486
|
export const hs6: PropTypes.Requireable<io.flow.internal.v0.models.Hs6>;
|
|
26525
27487
|
export const hs6Metadata: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Metadata>;
|
|
26526
27488
|
export const importCompleted: PropTypes.Requireable<io.flow.internal.v0.models.ImportCompleted>;
|
|
@@ -26625,6 +27587,8 @@ export const labelsPrediction: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
26625
27587
|
export const landedCostItem: PropTypes.Requireable<io.flow.internal.v0.models.LandedCostItem>;
|
|
26626
27588
|
export const landmark: PropTypes.Requireable<io.flow.internal.v0.models.Landmark>;
|
|
26627
27589
|
export const lastFailureSummary: PropTypes.Requireable<io.flow.internal.v0.models.LastFailureSummary>;
|
|
27590
|
+
export const ledgerReport: PropTypes.Requireable<io.flow.internal.v0.models.LedgerReport>;
|
|
27591
|
+
export const ledgerReportUrl: PropTypes.Requireable<io.flow.internal.v0.models.LedgerReportUrl>;
|
|
26628
27592
|
export const levyRateSummary: PropTypes.Requireable<io.flow.internal.v0.models.LevyRateSummary>;
|
|
26629
27593
|
export const levyRateSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LevyRateSummaryUpserted>;
|
|
26630
27594
|
export const liability: PropTypes.Requireable<io.flow.internal.v0.models.Liability>;
|
|
@@ -26694,7 +27658,9 @@ export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
26694
27658
|
export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
|
|
26695
27659
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
26696
27660
|
export const niallItem: PropTypes.Requireable<io.flow.internal.v0.models.NiallItem>;
|
|
27661
|
+
export const niallItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemDeleted>;
|
|
26697
27662
|
export const niallItemForm: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemForm>;
|
|
27663
|
+
export const niallItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemUpserted>;
|
|
26698
27664
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
26699
27665
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
26700
27666
|
export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
|
|
@@ -26762,9 +27728,6 @@ export const organizationAccountUpsertedV2: PropTypes.Requireable<io.flow.intern
|
|
|
26762
27728
|
export const organizationBankAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBankAccountDeleted>;
|
|
26763
27729
|
export const organizationBankAccountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBankAccountUpserted>;
|
|
26764
27730
|
export const organizationBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBillingStatement>;
|
|
26765
|
-
export const organizationBooleanValue: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValue>;
|
|
26766
|
-
export const organizationBooleanValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValueDeleted>;
|
|
26767
|
-
export const organizationBooleanValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValueUpserted>;
|
|
26768
27731
|
export const organizationBusinessEntity: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntity>;
|
|
26769
27732
|
export const organizationBusinessEntityDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntityDeleted>;
|
|
26770
27733
|
export const organizationBusinessEntityUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntityUpserted>;
|
|
@@ -26900,6 +27863,12 @@ export const platformFeePercentageTier: PropTypes.Requireable<io.flow.internal.v
|
|
|
26900
27863
|
export const prateekItem: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItem>;
|
|
26901
27864
|
export const prateekItemForm: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItemForm>;
|
|
26902
27865
|
export const prediction: PropTypes.Requireable<io.flow.internal.v0.models.Prediction>;
|
|
27866
|
+
export const preonboardingClassificationRabbitmqEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationRabbitmqEnvelope>;
|
|
27867
|
+
export const preonboardingClassificationRabbitmqMessage: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage>;
|
|
27868
|
+
export const preonboardingClassificationRequest: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationRequest>;
|
|
27869
|
+
export const preonboardingClassificationResult: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationResult>;
|
|
27870
|
+
export const preonboardingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingMerchant>;
|
|
27871
|
+
export const preonboardingSellabilityResult: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingSellabilityResult>;
|
|
26903
27872
|
export const priceInclusivity: PropTypes.Requireable<io.flow.internal.v0.models.PriceInclusivity>;
|
|
26904
27873
|
export const prioritizedCenterReference: PropTypes.Requireable<io.flow.internal.v0.models.PrioritizedCenterReference>;
|
|
26905
27874
|
export const processingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransaction>;
|
|
@@ -26939,6 +27908,7 @@ export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26939
27908
|
export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
|
|
26940
27909
|
export const proofOfPostingOrderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment>;
|
|
26941
27910
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
27911
|
+
export const proofOfPostingSynthetic: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingSynthetic>;
|
|
26942
27912
|
export const proofOfPostingTimeElapsed: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingTimeElapsed>;
|
|
26943
27913
|
export const pspDistribution: PropTypes.Requireable<io.flow.internal.v0.models.PspDistribution>;
|
|
26944
27914
|
export const pspRoutingDistribution: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistribution>;
|
|
@@ -27006,6 +27976,7 @@ export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.f
|
|
|
27006
27976
|
export const remittanceResponsibility: PropTypes.Requireable<io.flow.internal.v0.models.RemittanceResponsibility>;
|
|
27007
27977
|
export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
|
|
27008
27978
|
export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
|
|
27979
|
+
export const reportAmountRange: PropTypes.Requireable<io.flow.internal.v0.models.ReportAmountRange>;
|
|
27009
27980
|
export const reportBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccount>;
|
|
27010
27981
|
export const reportBankAccountCleartext: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccountCleartext>;
|
|
27011
27982
|
export const reportFile: PropTypes.Requireable<io.flow.internal.v0.models.ReportFile>;
|
|
@@ -27109,7 +28080,9 @@ export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.Rev
|
|
|
27109
28080
|
export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
|
|
27110
28081
|
export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
|
|
27111
28082
|
export const rohanItem: PropTypes.Requireable<io.flow.internal.v0.models.RohanItem>;
|
|
28083
|
+
export const rohanItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemDeleted>;
|
|
27112
28084
|
export const rohanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemForm>;
|
|
28085
|
+
export const rohanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemUpserted>;
|
|
27113
28086
|
export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
|
|
27114
28087
|
export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
|
|
27115
28088
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|
|
@@ -27117,7 +28090,9 @@ export const salesPaymentRecord: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
27117
28090
|
export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
|
|
27118
28091
|
export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
|
|
27119
28092
|
export const sarveshItem: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItem>;
|
|
28093
|
+
export const sarveshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemDeleted>;
|
|
27120
28094
|
export const sarveshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemForm>;
|
|
28095
|
+
export const sarveshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemUpserted>;
|
|
27121
28096
|
export const scheduledPayment: PropTypes.Requireable<io.flow.internal.v0.models.ScheduledPayment>;
|
|
27122
28097
|
export const screen: PropTypes.Requireable<io.flow.internal.v0.models.Screen>;
|
|
27123
28098
|
export const screenForm: PropTypes.Requireable<io.flow.internal.v0.models.ScreenForm>;
|
|
@@ -27139,6 +28114,9 @@ export const shipmentCostSummary: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27139
28114
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
27140
28115
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
27141
28116
|
export const shippingPricing: PropTypes.Requireable<io.flow.internal.v0.models.ShippingPricing>;
|
|
28117
|
+
export const shippingRateEstimateAvailableInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal>;
|
|
28118
|
+
export const shippingRateEstimateInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateInternal>;
|
|
28119
|
+
export const shippingRateEstimateRequestInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateRequestInternal>;
|
|
27142
28120
|
export const shopifyCatalogPublication: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCatalogPublication>;
|
|
27143
28121
|
export const shopifyChannelOrganizationToken: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationToken>;
|
|
27144
28122
|
export const shopifyChannelOrganizationTokens: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationTokens>;
|
|
@@ -27175,6 +28153,7 @@ export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.
|
|
|
27175
28153
|
export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
|
|
27176
28154
|
export const shopifyMarketsOrderVersionWithShopId: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId>;
|
|
27177
28155
|
export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
|
|
28156
|
+
export const shopifyMarketsOrganizationOrderMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics>;
|
|
27178
28157
|
export const shopifyMarketsQueuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord>;
|
|
27179
28158
|
export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
|
|
27180
28159
|
export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
|
|
@@ -27242,6 +28221,9 @@ export const shopifyStoreDetail: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
27242
28221
|
export const shopifyStripeEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStripeEvent>;
|
|
27243
28222
|
export const shopifyTaxonomyAlignmentConfig: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig>;
|
|
27244
28223
|
export const shopifyTaxonomyAlignmentConfigForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm>;
|
|
28224
|
+
export const shopifyTestOrder: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTestOrder>;
|
|
28225
|
+
export const shopifyTestOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTestOrderDeleted>;
|
|
28226
|
+
export const shopifyTestOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTestOrderUpserted>;
|
|
27245
28227
|
export const shopperBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.ShopperBreakdown>;
|
|
27246
28228
|
export const shopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFees>;
|
|
27247
28229
|
export const shopperFreight: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFreight>;
|
|
@@ -27326,6 +28308,7 @@ export const taxRemittanceTransactionUpserted: PropTypes.Requireable<io.flow.int
|
|
|
27326
28308
|
export const taxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransaction>;
|
|
27327
28309
|
export const taxTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionDeleted>;
|
|
27328
28310
|
export const taxTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionUpserted>;
|
|
28311
|
+
export const taxTypeTotal: PropTypes.Requireable<io.flow.internal.v0.models.TaxTypeTotal>;
|
|
27329
28312
|
export const taxonomyAlignmentCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyAlignmentCheckResult>;
|
|
27330
28313
|
export const taxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategory>;
|
|
27331
28314
|
export const taxonomyCategoryHs6Ref: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategoryHs6Ref>;
|