@flowio/api-internal-prop-types 9.24.129 → 9.24.130
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 +986 -95
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +986 -95
- package/src/api-internal.js +1247 -281
package/lib/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';
|
|
@@ -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 {
|
|
@@ -5821,6 +5872,249 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5821
5872
|
}
|
|
5822
5873
|
}
|
|
5823
5874
|
|
|
5875
|
+
declare namespace io.flow.consumer.invoice.v0.enums {
|
|
5876
|
+
type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
|
|
5877
|
+
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
5878
|
+
type ConsumerInvoiceDocumentType = 'pdf';
|
|
5879
|
+
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
5880
|
+
type TaxJurisdictionType = 'country' | 'province';
|
|
5881
|
+
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
5882
|
+
}
|
|
5883
|
+
|
|
5884
|
+
declare namespace io.flow.consumer.invoice.v0.models {
|
|
5885
|
+
interface B2BCreditMemo {
|
|
5886
|
+
readonly 'id': string;
|
|
5887
|
+
readonly 'number': string;
|
|
5888
|
+
readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5889
|
+
readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5890
|
+
readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5891
|
+
readonly 'date': string;
|
|
5892
|
+
readonly 'key': string;
|
|
5893
|
+
readonly 'invoice': io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
|
|
5894
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5895
|
+
readonly 'tax_lines'?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
5896
|
+
readonly 'tax'?: io.flow.common.v0.models.Money;
|
|
5897
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5898
|
+
readonly 'attributes': Record<string, string>;
|
|
5899
|
+
readonly 'b2b_invoice_type': io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
5900
|
+
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5901
|
+
readonly 'order'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5902
|
+
}
|
|
5903
|
+
|
|
5904
|
+
interface B2BInvoice {
|
|
5905
|
+
readonly 'id': string;
|
|
5906
|
+
readonly 'number': string;
|
|
5907
|
+
readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5908
|
+
readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5909
|
+
readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5910
|
+
readonly 'date': string;
|
|
5911
|
+
readonly 'key': string;
|
|
5912
|
+
readonly 'order': io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5913
|
+
readonly 'economic_title_location': io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
|
|
5914
|
+
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5915
|
+
readonly 'destination'?: io.flow.experience.v0.models.OrderAddress;
|
|
5916
|
+
readonly 'tax': io.flow.common.v0.models.Money;
|
|
5917
|
+
readonly 'tax_lines'?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
5918
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5919
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5920
|
+
readonly 'attributes': Record<string, string>;
|
|
5921
|
+
readonly 'estimated_delivery_date'?: string;
|
|
5922
|
+
readonly 'b2b_invoice_type': io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
5923
|
+
}
|
|
5924
|
+
|
|
5925
|
+
interface B2BInvoiceReference {
|
|
5926
|
+
readonly 'id': string;
|
|
5927
|
+
readonly 'key': string;
|
|
5928
|
+
readonly 'number': string;
|
|
5929
|
+
}
|
|
5930
|
+
|
|
5931
|
+
interface ConsumerInvoice {
|
|
5932
|
+
readonly 'id': string;
|
|
5933
|
+
readonly 'number': string;
|
|
5934
|
+
readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5935
|
+
readonly 'date': string;
|
|
5936
|
+
readonly 'key': string;
|
|
5937
|
+
readonly 'order': io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5938
|
+
readonly 'entity': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5939
|
+
readonly 'payments': io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
5940
|
+
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5941
|
+
readonly 'destination': io.flow.experience.v0.models.OrderAddress;
|
|
5942
|
+
readonly 'billing_address'?: io.flow.common.v0.models.BillingAddress;
|
|
5943
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5944
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5945
|
+
readonly 'attributes': Record<string, string>;
|
|
5946
|
+
readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
5947
|
+
readonly 'customer_type'?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
|
|
5948
|
+
readonly 'estimated_delivery_date'?: string;
|
|
5949
|
+
}
|
|
5950
|
+
|
|
5951
|
+
interface ConsumerInvoiceCenterReference {
|
|
5952
|
+
readonly 'id': string;
|
|
5953
|
+
readonly 'key': string;
|
|
5954
|
+
readonly 'name': string;
|
|
5955
|
+
readonly 'address': io.flow.common.v0.models.Address;
|
|
5956
|
+
}
|
|
5957
|
+
|
|
5958
|
+
interface ConsumerInvoiceDocument {
|
|
5959
|
+
readonly 'type': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType;
|
|
5960
|
+
readonly 'language': string;
|
|
5961
|
+
readonly 'url': string;
|
|
5962
|
+
}
|
|
5963
|
+
|
|
5964
|
+
interface ConsumerInvoiceForm {
|
|
5965
|
+
readonly 'order_number': string;
|
|
5966
|
+
readonly 'attributes'?: Record<string, string>;
|
|
5967
|
+
}
|
|
5968
|
+
|
|
5969
|
+
interface ConsumerInvoiceFormByOrder {
|
|
5970
|
+
readonly 'attributes'?: Record<string, string>;
|
|
5971
|
+
}
|
|
5972
|
+
|
|
5973
|
+
interface ConsumerInvoiceLevy {
|
|
5974
|
+
readonly 'rate': number;
|
|
5975
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
5976
|
+
}
|
|
5977
|
+
|
|
5978
|
+
interface ConsumerInvoiceLevyForm {
|
|
5979
|
+
readonly 'rate': number;
|
|
5980
|
+
readonly 'amount': number;
|
|
5981
|
+
}
|
|
5982
|
+
|
|
5983
|
+
interface ConsumerInvoiceLineDiscount {
|
|
5984
|
+
readonly 'discriminator': 'discount';
|
|
5985
|
+
readonly 'line_id'?: string;
|
|
5986
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
5987
|
+
}
|
|
5988
|
+
|
|
5989
|
+
interface ConsumerInvoiceLineDiscountForm {
|
|
5990
|
+
readonly 'discriminator': 'discount';
|
|
5991
|
+
readonly 'price': number;
|
|
5992
|
+
}
|
|
5993
|
+
|
|
5994
|
+
interface ConsumerInvoiceLineItem {
|
|
5995
|
+
readonly 'discriminator': 'item';
|
|
5996
|
+
readonly 'line_id'?: string;
|
|
5997
|
+
readonly 'item': io.flow.common.v0.models.ItemReference;
|
|
5998
|
+
readonly 'description': string;
|
|
5999
|
+
readonly 'quantity': number;
|
|
6000
|
+
readonly 'unit_price': io.flow.common.v0.models.Price;
|
|
6001
|
+
readonly 'unit_discount'?: io.flow.common.v0.models.Price;
|
|
6002
|
+
readonly 'unit_tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6003
|
+
readonly 'unit_duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6004
|
+
}
|
|
6005
|
+
|
|
6006
|
+
interface ConsumerInvoiceLineItemForm {
|
|
6007
|
+
readonly 'discriminator': 'item';
|
|
6008
|
+
readonly 'item_number': string;
|
|
6009
|
+
readonly 'quantity': number;
|
|
6010
|
+
readonly 'unit_price': number;
|
|
6011
|
+
readonly 'unit_discount'?: number;
|
|
6012
|
+
readonly 'unit_tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6013
|
+
readonly 'unit_duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6014
|
+
}
|
|
6015
|
+
|
|
6016
|
+
interface ConsumerInvoiceLineShipping {
|
|
6017
|
+
readonly 'discriminator': 'shipping';
|
|
6018
|
+
readonly 'line_id'?: string;
|
|
6019
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
6020
|
+
readonly 'discount'?: io.flow.common.v0.models.Price;
|
|
6021
|
+
readonly 'tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6022
|
+
readonly 'duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6023
|
+
}
|
|
6024
|
+
|
|
6025
|
+
interface ConsumerInvoiceLineShippingForm {
|
|
6026
|
+
readonly 'discriminator': 'shipping';
|
|
6027
|
+
readonly 'price': number;
|
|
6028
|
+
readonly 'discount'?: number;
|
|
6029
|
+
readonly 'tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6030
|
+
readonly 'duty'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6031
|
+
}
|
|
6032
|
+
|
|
6033
|
+
interface ConsumerInvoiceLineTip {
|
|
6034
|
+
readonly 'discriminator': 'tip';
|
|
6035
|
+
readonly 'line_id'?: string;
|
|
6036
|
+
readonly 'price': io.flow.common.v0.models.Price;
|
|
6037
|
+
readonly 'tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
6038
|
+
}
|
|
6039
|
+
|
|
6040
|
+
interface ConsumerInvoiceLineTipForm {
|
|
6041
|
+
readonly 'discriminator': 'tip';
|
|
6042
|
+
readonly 'price': number;
|
|
6043
|
+
readonly 'tax'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
6044
|
+
}
|
|
6045
|
+
|
|
6046
|
+
interface ConsumerInvoiceOrderSummary {
|
|
6047
|
+
readonly 'id': string;
|
|
6048
|
+
readonly 'number': string;
|
|
6049
|
+
readonly 'submitted_at': string;
|
|
6050
|
+
}
|
|
6051
|
+
|
|
6052
|
+
interface ConsumerInvoicePayment {
|
|
6053
|
+
readonly 'date': string;
|
|
6054
|
+
readonly 'description': string;
|
|
6055
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
6056
|
+
readonly 'billing_address'?: io.flow.common.v0.models.BillingAddress;
|
|
6057
|
+
}
|
|
6058
|
+
|
|
6059
|
+
interface ConsumerInvoiceReference {
|
|
6060
|
+
readonly 'id': string;
|
|
6061
|
+
readonly 'key': string;
|
|
6062
|
+
readonly 'number': string;
|
|
6063
|
+
}
|
|
6064
|
+
|
|
6065
|
+
interface CreditMemo {
|
|
6066
|
+
readonly 'id': string;
|
|
6067
|
+
readonly 'number'?: string;
|
|
6068
|
+
readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
6069
|
+
readonly 'date': string;
|
|
6070
|
+
readonly 'key': string;
|
|
6071
|
+
readonly 'invoice': io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference;
|
|
6072
|
+
readonly 'entity': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
6073
|
+
readonly 'payments': io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
6074
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
6075
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
6076
|
+
readonly 'attributes': Record<string, string>;
|
|
6077
|
+
readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
6078
|
+
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
6079
|
+
readonly 'order'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
6080
|
+
}
|
|
6081
|
+
|
|
6082
|
+
interface CreditMemoForm {
|
|
6083
|
+
readonly 'refund_id'?: string;
|
|
6084
|
+
readonly 'refund_key'?: string;
|
|
6085
|
+
readonly 'refund_identifier'?: string;
|
|
6086
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
|
|
6087
|
+
readonly 'attributes'?: Record<string, string>;
|
|
6088
|
+
}
|
|
6089
|
+
|
|
6090
|
+
interface InvoiceExport {
|
|
6091
|
+
readonly 'id': string;
|
|
6092
|
+
}
|
|
6093
|
+
|
|
6094
|
+
interface InvoiceExportForm {
|
|
6095
|
+
readonly 'date_from'?: string;
|
|
6096
|
+
readonly 'date_to'?: string;
|
|
6097
|
+
}
|
|
6098
|
+
|
|
6099
|
+
interface InvoiceTaxLine {
|
|
6100
|
+
readonly 'line_id': string;
|
|
6101
|
+
readonly 'tax_breakdown': io.flow.consumer.invoice.v0.models.TaxBreakdown[];
|
|
6102
|
+
}
|
|
6103
|
+
|
|
6104
|
+
interface TaxBreakdown {
|
|
6105
|
+
readonly 'label': string;
|
|
6106
|
+
readonly 'calculated_tax': io.flow.common.v0.models.Money;
|
|
6107
|
+
readonly 'rate': number;
|
|
6108
|
+
readonly 'line_total': io.flow.common.v0.models.Money;
|
|
6109
|
+
readonly 'jurisdiction_type': io.flow.consumer.invoice.v0.enums.TaxJurisdictionType;
|
|
6110
|
+
}
|
|
6111
|
+
}
|
|
6112
|
+
|
|
6113
|
+
declare namespace io.flow.consumer.invoice.v0.unions {
|
|
6114
|
+
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);
|
|
6115
|
+
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);
|
|
6116
|
+
}
|
|
6117
|
+
|
|
5824
6118
|
declare namespace io.flow.adyen.v0.enums {
|
|
5825
6119
|
type Channel = 'web';
|
|
5826
6120
|
type Contract = 'RECURRING';
|
|
@@ -7628,6 +7922,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7628
7922
|
readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
|
|
7629
7923
|
readonly 'merchant_of_record_app_id'?: number;
|
|
7630
7924
|
readonly 'total_shipping_price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7925
|
+
readonly 'current_shipping_price_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7631
7926
|
readonly 'total_tip_received'?: string;
|
|
7632
7927
|
}
|
|
7633
7928
|
|
|
@@ -8160,7 +8455,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
8160
8455
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
8161
8456
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
8162
8457
|
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';
|
|
8458
|
+
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
8459
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
8165
8460
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
8166
8461
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -8212,6 +8507,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8212
8507
|
readonly 'order_updated_at'?: string;
|
|
8213
8508
|
readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
8214
8509
|
readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
8510
|
+
readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
8215
8511
|
}
|
|
8216
8512
|
|
|
8217
8513
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -8691,6 +8987,8 @@ declare namespace io.flow.common.v0.models {
|
|
|
8691
8987
|
interface MerchantOfRecordEntityRegistration {
|
|
8692
8988
|
readonly 'number': string;
|
|
8693
8989
|
readonly 'country': string;
|
|
8990
|
+
readonly 'province_number'?: string;
|
|
8991
|
+
readonly 'province'?: string;
|
|
8694
8992
|
}
|
|
8695
8993
|
|
|
8696
8994
|
interface Money {
|
|
@@ -10344,6 +10642,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10344
10642
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
10345
10643
|
readonly 'origin_region'?: io.flow.ratecard.v0.models.RatecardRegionReference;
|
|
10346
10644
|
readonly 'destination_region'?: io.flow.ratecard.v0.models.RatecardRegionReference;
|
|
10645
|
+
readonly 'destination_regions'?: io.flow.ratecard.v0.models.RatecardRegionReference[];
|
|
10347
10646
|
readonly 'interval_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10348
10647
|
}
|
|
10349
10648
|
|
|
@@ -10548,6 +10847,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10548
10847
|
readonly 'center_id'?: string;
|
|
10549
10848
|
readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
|
|
10550
10849
|
readonly 'duties_owed'?: io.flow.common.v0.models.Money;
|
|
10850
|
+
readonly 'commercial_invoice_mode'?: io.flow.label.v0.enums.CommercialInvoiceMode;
|
|
10551
10851
|
}
|
|
10552
10852
|
|
|
10553
10853
|
interface RatecardEstimateSummaryForm {
|
|
@@ -10767,6 +11067,43 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10767
11067
|
readonly 'from': number;
|
|
10768
11068
|
readonly 'to': number;
|
|
10769
11069
|
}
|
|
11070
|
+
|
|
11071
|
+
interface ShippingRateEstimate {
|
|
11072
|
+
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
11073
|
+
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
11074
|
+
readonly 'shipping_date_time': string;
|
|
11075
|
+
readonly 'services': string[];
|
|
11076
|
+
readonly 'available': io.flow.ratecard.v0.models.ShippingRateEstimateAvailable[];
|
|
11077
|
+
readonly 'unavailable'?: io.flow.ratecard.v0.models.ShippingRateEstimateUnavailable[];
|
|
11078
|
+
}
|
|
11079
|
+
|
|
11080
|
+
interface ShippingRateEstimateAvailable {
|
|
11081
|
+
readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
11082
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
11083
|
+
readonly 'shipment_window': io.flow.ratecard.v0.models.ShipmentWindow;
|
|
11084
|
+
readonly 'total_amount': io.flow.common.v0.models.Money;
|
|
11085
|
+
readonly 'base_amount': io.flow.common.v0.models.Money;
|
|
11086
|
+
readonly 'fees': io.flow.ratecard.v0.unions.RatecardFee[];
|
|
11087
|
+
readonly 'dimensional_weight'?: io.flow.common.v0.models.Measurement;
|
|
11088
|
+
readonly 'gravitational_weight'?: io.flow.common.v0.models.Measurement;
|
|
11089
|
+
readonly 'weight_break'?: number;
|
|
11090
|
+
}
|
|
11091
|
+
|
|
11092
|
+
interface ShippingRateEstimateRequest {
|
|
11093
|
+
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
11094
|
+
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
11095
|
+
readonly 'package_dimensions': io.flow.common.v0.models.Dimension;
|
|
11096
|
+
readonly 'shipping_date_time': string;
|
|
11097
|
+
readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
|
|
11098
|
+
readonly 'duties_owed'?: io.flow.common.v0.models.Money;
|
|
11099
|
+
readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
|
|
11100
|
+
readonly 'line_items'?: io.flow.common.v0.models.LineItemForm[];
|
|
11101
|
+
}
|
|
11102
|
+
|
|
11103
|
+
interface ShippingRateEstimateUnavailable {
|
|
11104
|
+
readonly 'service': string;
|
|
11105
|
+
readonly 'reason': string;
|
|
11106
|
+
}
|
|
10770
11107
|
}
|
|
10771
11108
|
|
|
10772
11109
|
declare namespace io.flow.ratecard.v0.unions {
|
|
@@ -11026,6 +11363,35 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
11026
11363
|
}
|
|
11027
11364
|
}
|
|
11028
11365
|
|
|
11366
|
+
declare namespace io.flow.channel.shopify.v0.enums {
|
|
11367
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
11368
|
+
}
|
|
11369
|
+
|
|
11370
|
+
declare namespace io.flow.channel.shopify.v0.models {
|
|
11371
|
+
interface ChannelShopifyOrderState {
|
|
11372
|
+
readonly 'id': string;
|
|
11373
|
+
readonly 'shopify_order_summary': io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
11374
|
+
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
11375
|
+
readonly 'reasons'?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
11376
|
+
readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
11377
|
+
}
|
|
11378
|
+
|
|
11379
|
+
interface ChannelShopifyOrderStateReason {
|
|
11380
|
+
readonly 'code': io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
11381
|
+
readonly 'message': string;
|
|
11382
|
+
}
|
|
11383
|
+
|
|
11384
|
+
interface ChannelShopifyOrderSummary {
|
|
11385
|
+
readonly 'order_id': number;
|
|
11386
|
+
readonly 'shop_id': number;
|
|
11387
|
+
}
|
|
11388
|
+
|
|
11389
|
+
interface ExternalOrderSummary {
|
|
11390
|
+
readonly 'id': string;
|
|
11391
|
+
readonly 'edit_ids': string[];
|
|
11392
|
+
}
|
|
11393
|
+
}
|
|
11394
|
+
|
|
11029
11395
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
11030
11396
|
interface Company {
|
|
11031
11397
|
readonly 'discriminator': 'company';
|
|
@@ -11588,6 +11954,77 @@ declare namespace io.flow.merchant.onboarding.v0.enums {
|
|
|
11588
11954
|
}
|
|
11589
11955
|
|
|
11590
11956
|
declare namespace io.flow.merchant.onboarding.v0.models {
|
|
11957
|
+
interface CommonMerchantApplication {
|
|
11958
|
+
readonly 'discriminator': 'common_merchant_application';
|
|
11959
|
+
readonly 'id': string;
|
|
11960
|
+
readonly 'organization_id': string;
|
|
11961
|
+
readonly 'organization_reference': io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
|
|
11962
|
+
readonly 'status': io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
11963
|
+
readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
11964
|
+
readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
11965
|
+
readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
11966
|
+
readonly 'business_url'?: string;
|
|
11967
|
+
readonly 'business_description'?: string;
|
|
11968
|
+
readonly 'business_address'?: io.flow.common.v0.models.Address;
|
|
11969
|
+
readonly 'refund_percentage'?: number;
|
|
11970
|
+
readonly 'chargeback_percentage'?: number;
|
|
11971
|
+
readonly 'beneficiary_details'?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
11972
|
+
readonly 'other_trade_sector'?: string;
|
|
11973
|
+
readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
11974
|
+
readonly 'center_address'?: io.flow.common.v0.models.Address;
|
|
11975
|
+
readonly 'average_order_weight'?: number;
|
|
11976
|
+
readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11977
|
+
readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
|
|
11978
|
+
readonly 'monthly_average'?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
11979
|
+
readonly 'default_country_of_origin'?: string;
|
|
11980
|
+
readonly 'rate_card': string;
|
|
11981
|
+
readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
11982
|
+
readonly 'created_at': string;
|
|
11983
|
+
readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
|
|
11984
|
+
readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
|
|
11985
|
+
readonly 'average_order_value'?: io.flow.common.v0.models.Money;
|
|
11986
|
+
readonly 'mcc_codes'?: number[];
|
|
11987
|
+
}
|
|
11988
|
+
|
|
11989
|
+
interface CommonMerchantApplicationForm {
|
|
11990
|
+
readonly 'discriminator': 'common_merchant_application_form';
|
|
11991
|
+
readonly 'company'?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
11992
|
+
readonly 'indirect_tax'?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
11993
|
+
readonly 'ultimate_beneficiary_owner'?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
11994
|
+
readonly 'business_url'?: string;
|
|
11995
|
+
readonly 'business_description'?: string;
|
|
11996
|
+
readonly 'business_address'?: io.flow.common.v0.models.Address;
|
|
11997
|
+
readonly 'refund_percentage'?: number;
|
|
11998
|
+
readonly 'chargeback_percentage'?: number;
|
|
11999
|
+
readonly 'beneficiary_details'?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
12000
|
+
readonly 'other_trade_sector'?: string;
|
|
12001
|
+
readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
12002
|
+
readonly 'center_address'?: io.flow.common.v0.models.Address;
|
|
12003
|
+
readonly 'average_order_weight'?: number;
|
|
12004
|
+
readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
12005
|
+
readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
|
|
12006
|
+
readonly 'monthly_average_volume_amount'?: number;
|
|
12007
|
+
readonly 'monthly_average_volume_currency'?: string;
|
|
12008
|
+
readonly 'monthly_average_number_transactions'?: number;
|
|
12009
|
+
readonly 'default_country_of_origin'?: string;
|
|
12010
|
+
readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
12011
|
+
readonly 'rate_card'?: string;
|
|
12012
|
+
readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
|
|
12013
|
+
readonly 'last_month_xborder_gmv'?: io.flow.common.v0.models.Money;
|
|
12014
|
+
readonly 'average_order_value'?: io.flow.common.v0.models.Money;
|
|
12015
|
+
readonly 'mcc_codes'?: number[];
|
|
12016
|
+
}
|
|
12017
|
+
|
|
12018
|
+
interface CommonMerchantApplicationPutForm {
|
|
12019
|
+
readonly 'discriminator': 'common_merchant_application_put_form';
|
|
12020
|
+
readonly 'status'?: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
12021
|
+
}
|
|
12022
|
+
|
|
12023
|
+
interface CommonMerchantApplicationsSummary {
|
|
12024
|
+
readonly 'discriminator': 'common_merchant_applications_summary';
|
|
12025
|
+
readonly 'total': number;
|
|
12026
|
+
}
|
|
12027
|
+
|
|
11591
12028
|
interface IndirectTax {
|
|
11592
12029
|
readonly 'number'?: string;
|
|
11593
12030
|
readonly 'id'?: string;
|
|
@@ -11604,6 +12041,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11604
12041
|
readonly 'region'?: io.flow.merchant.onboarding.v0.enums.RegionType;
|
|
11605
12042
|
readonly 'region_value'?: string;
|
|
11606
12043
|
readonly 'category_code'?: string;
|
|
12044
|
+
readonly 'description'?: string;
|
|
11607
12045
|
}
|
|
11608
12046
|
|
|
11609
12047
|
interface MerchantOnboardingAddress {
|
|
@@ -11615,6 +12053,17 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11615
12053
|
readonly 'country'?: string;
|
|
11616
12054
|
}
|
|
11617
12055
|
|
|
12056
|
+
interface MerchantOnboardingBeneficiaryDetails {
|
|
12057
|
+
readonly 'name'?: string;
|
|
12058
|
+
readonly 'address'?: io.flow.common.v0.models.Address;
|
|
12059
|
+
readonly 'phone'?: string;
|
|
12060
|
+
readonly 'email'?: string;
|
|
12061
|
+
readonly 'bank_account_number'?: string;
|
|
12062
|
+
readonly 'bank_routing_number'?: string;
|
|
12063
|
+
readonly 'bank_name'?: string;
|
|
12064
|
+
readonly 'bank_address'?: io.flow.common.v0.models.Address;
|
|
12065
|
+
}
|
|
12066
|
+
|
|
11618
12067
|
interface MonthlyAverage {
|
|
11619
12068
|
readonly 'volume'?: io.flow.merchant.onboarding.v0.models.MonthlyAverageVolume;
|
|
11620
12069
|
readonly 'number_transactions'?: number;
|
|
@@ -11679,6 +12128,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11679
12128
|
readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
11680
12129
|
readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
11681
12130
|
readonly 'average_order_weight'?: number;
|
|
12131
|
+
readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11682
12132
|
readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
|
|
11683
12133
|
readonly 'monthly_average'?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
11684
12134
|
readonly 'default_country_of_origin'?: string;
|
|
@@ -11712,6 +12162,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11712
12162
|
readonly 'third_party_logistics_partners'?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
11713
12163
|
readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
11714
12164
|
readonly 'average_order_weight'?: number;
|
|
12165
|
+
readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11715
12166
|
readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
|
|
11716
12167
|
readonly 'monthly_average_volume_amount'?: number;
|
|
11717
12168
|
readonly 'monthly_average_volume_currency'?: string;
|
|
@@ -11752,10 +12203,10 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11752
12203
|
}
|
|
11753
12204
|
|
|
11754
12205
|
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);
|
|
12206
|
+
type MerchantApplication = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication | io.flow.merchant.onboarding.v0.models.CommonMerchantApplication);
|
|
12207
|
+
type MerchantApplicationForm = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationForm);
|
|
12208
|
+
type MerchantApplicationPutForm = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationPutForm);
|
|
12209
|
+
type MerchantApplicationsSummary = (io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationsSummary);
|
|
11759
12210
|
}
|
|
11760
12211
|
|
|
11761
12212
|
declare namespace io.flow.catalog.v0.enums {
|
|
@@ -12391,10 +12842,11 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
12391
12842
|
type PayoutAttachmentType = 'transactions';
|
|
12392
12843
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
12393
12844
|
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
|
|
12845
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
12846
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12847
|
+
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';
|
|
12848
|
+
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';
|
|
12849
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
12398
12850
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
12399
12851
|
}
|
|
12400
12852
|
|
|
@@ -12656,6 +13108,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12656
13108
|
readonly 'created_at': string;
|
|
12657
13109
|
}
|
|
12658
13110
|
|
|
13111
|
+
interface StatementStatusForm {
|
|
13112
|
+
readonly 'code': io.flow.billing.v0.enums.StatementStatusCode;
|
|
13113
|
+
readonly 'failure_reason'?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
13114
|
+
}
|
|
13115
|
+
|
|
12659
13116
|
interface Transaction {
|
|
12660
13117
|
readonly 'statement'?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
12661
13118
|
readonly 'id': string;
|
|
@@ -13248,39 +13705,95 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
13248
13705
|
type FraudOrderReference = (io.flow.fraud.v0.models.FraudFlowOrderReference | io.flow.fraud.v0.models.FraudPaymentRequestReference);
|
|
13249
13706
|
}
|
|
13250
13707
|
|
|
13251
|
-
declare namespace io.flow.sellability.v0.enums {
|
|
13252
|
-
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
13253
|
-
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
13254
|
-
type SellabilityRequestStatus = 'commit';
|
|
13255
|
-
|
|
13708
|
+
declare namespace io.flow.sellability.v0.enums {
|
|
13709
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
13710
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
13711
|
+
type SellabilityRequestStatus = 'commit';
|
|
13712
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
13713
|
+
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
13714
|
+
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
13715
|
+
}
|
|
13716
|
+
|
|
13717
|
+
declare namespace io.flow.sellability.v0.models {
|
|
13718
|
+
interface ProductSellability {
|
|
13719
|
+
readonly 'discriminator': 'product_sellability';
|
|
13720
|
+
readonly 'shop_id': string;
|
|
13721
|
+
readonly 'product_id'?: string;
|
|
13722
|
+
readonly 'request_id': string;
|
|
13723
|
+
readonly 'hs6_code': string;
|
|
13724
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
13725
|
+
}
|
|
13726
|
+
|
|
13727
|
+
interface ProductSellabilityForm {
|
|
13728
|
+
readonly 'discriminator': 'product_sellability_form';
|
|
13729
|
+
readonly 'shop_id': string;
|
|
13730
|
+
readonly 'product_id'?: string;
|
|
13731
|
+
readonly 'name': string;
|
|
13732
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
13733
|
+
readonly 'description': string;
|
|
13734
|
+
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13735
|
+
readonly 'status'?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
13736
|
+
readonly 'dry_run'?: boolean;
|
|
13737
|
+
}
|
|
13738
|
+
|
|
13739
|
+
interface ProductSellabilityResult {
|
|
13740
|
+
readonly 'merchant_id'?: string;
|
|
13741
|
+
readonly 'product_id': string;
|
|
13742
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
13743
|
+
readonly 'needs_action_attributes'?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
|
|
13744
|
+
readonly 'request_id'?: string;
|
|
13745
|
+
}
|
|
13746
|
+
|
|
13747
|
+
interface SellabilityError {
|
|
13748
|
+
readonly 'discriminator': 'sellability_error';
|
|
13749
|
+
readonly 'code': io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
13750
|
+
readonly 'messages': string[];
|
|
13751
|
+
}
|
|
13752
|
+
|
|
13753
|
+
interface SellabilityNeedsActionAttributes {
|
|
13754
|
+
readonly 'reason_code': string;
|
|
13755
|
+
readonly 'category_metafield_handles': string[];
|
|
13756
|
+
readonly 'require_msds'?: boolean;
|
|
13757
|
+
}
|
|
13758
|
+
|
|
13759
|
+
interface SellabilityRegionResult {
|
|
13760
|
+
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13761
|
+
readonly 'regions': string[];
|
|
13762
|
+
}
|
|
13763
|
+
|
|
13764
|
+
interface SellabilityRegionWithReasons {
|
|
13765
|
+
readonly 'region': string;
|
|
13766
|
+
readonly 'reasons': string[];
|
|
13767
|
+
}
|
|
13768
|
+
|
|
13769
|
+
interface SellabilityRestrictedRegion {
|
|
13770
|
+
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13771
|
+
readonly 'regions_with_reasons': io.flow.sellability.v0.models.SellabilityRegionWithReasons[];
|
|
13772
|
+
}
|
|
13256
13773
|
|
|
13257
|
-
|
|
13258
|
-
|
|
13259
|
-
readonly '
|
|
13260
|
-
readonly 'shop_id': string;
|
|
13261
|
-
readonly 'product_id'?: string;
|
|
13774
|
+
interface SellabilityScreening {
|
|
13775
|
+
readonly 'discriminator': 'sellability_screening';
|
|
13776
|
+
readonly 'sellability_result'?: io.flow.sellability.v0.models.ProductSellabilityResult;
|
|
13262
13777
|
readonly 'request_id': string;
|
|
13263
|
-
readonly '
|
|
13264
|
-
readonly '
|
|
13778
|
+
readonly 'status': io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
13779
|
+
readonly 'error_code'?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
13780
|
+
readonly 'error_message'?: string;
|
|
13265
13781
|
}
|
|
13266
13782
|
|
|
13267
|
-
interface
|
|
13268
|
-
readonly '
|
|
13269
|
-
readonly '
|
|
13783
|
+
interface SellabilityScreeningForm {
|
|
13784
|
+
readonly 'discriminator': 'sellability_screening_form';
|
|
13785
|
+
readonly 'merchant_id': string;
|
|
13786
|
+
readonly 'product_id': string;
|
|
13270
13787
|
readonly 'name': string;
|
|
13271
13788
|
readonly 'price': io.flow.common.v0.models.Money;
|
|
13272
13789
|
readonly 'description': string;
|
|
13273
13790
|
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13274
|
-
readonly '
|
|
13791
|
+
readonly 'mode': io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
13792
|
+
readonly 'catalog_size'?: number;
|
|
13793
|
+
readonly 'relative_ranking'?: number;
|
|
13275
13794
|
readonly 'dry_run'?: boolean;
|
|
13276
13795
|
}
|
|
13277
13796
|
|
|
13278
|
-
interface SellabilityError {
|
|
13279
|
-
readonly 'discriminator': 'sellability_error';
|
|
13280
|
-
readonly 'code': io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
13281
|
-
readonly 'messages': string[];
|
|
13282
|
-
}
|
|
13283
|
-
|
|
13284
13797
|
interface SellablilityRegionResult {
|
|
13285
13798
|
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13286
13799
|
readonly 'regions': string[];
|
|
@@ -13288,7 +13801,8 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13288
13801
|
}
|
|
13289
13802
|
|
|
13290
13803
|
declare namespace io.flow.sellability.v0.unions {
|
|
13291
|
-
type
|
|
13804
|
+
type SellabilityRequest = (io.flow.sellability.v0.models.ProductSellabilityForm | io.flow.sellability.v0.models.SellabilityScreeningForm);
|
|
13805
|
+
type SellabilityResponse = (io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError | io.flow.sellability.v0.models.SellabilityScreening);
|
|
13292
13806
|
}
|
|
13293
13807
|
|
|
13294
13808
|
declare namespace io.flow.currency.v0.models {
|
|
@@ -13426,6 +13940,22 @@ declare namespace io.flow.organization.v0.models {
|
|
|
13426
13940
|
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
13427
13941
|
}
|
|
13428
13942
|
|
|
13943
|
+
interface OrganizationTaxRegistration {
|
|
13944
|
+
readonly 'id': string;
|
|
13945
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationSummary;
|
|
13946
|
+
readonly 'address': io.flow.common.v0.models.BillingAddress;
|
|
13947
|
+
readonly 'registration': io.flow.organization.v0.models.TaxRegistrationDetail;
|
|
13948
|
+
readonly 'self_billing_agreement': io.flow.organization.v0.models.SelfBillingAgreement;
|
|
13949
|
+
}
|
|
13950
|
+
|
|
13951
|
+
interface OrganizationTaxRegistrationForm {
|
|
13952
|
+
readonly 'tax_number': string;
|
|
13953
|
+
readonly 'country': string;
|
|
13954
|
+
readonly 'province'?: string;
|
|
13955
|
+
readonly 'self_billing_agreement_effective_at': string;
|
|
13956
|
+
readonly 'self_billing_agreement_expires_at'?: string;
|
|
13957
|
+
}
|
|
13958
|
+
|
|
13429
13959
|
interface OrganizationVersion {
|
|
13430
13960
|
readonly 'id': string;
|
|
13431
13961
|
readonly 'timestamp': string;
|
|
@@ -13442,6 +13972,18 @@ declare namespace io.flow.organization.v0.models {
|
|
|
13442
13972
|
interface RegionSettingForm {
|
|
13443
13973
|
readonly 'status': io.flow.common.v0.enums.AvailabilityStatus;
|
|
13444
13974
|
}
|
|
13975
|
+
|
|
13976
|
+
interface SelfBillingAgreement {
|
|
13977
|
+
readonly 'effective_at': string;
|
|
13978
|
+
readonly 'expires_at': string;
|
|
13979
|
+
}
|
|
13980
|
+
|
|
13981
|
+
interface TaxRegistrationDetail {
|
|
13982
|
+
readonly 'tax_number': string;
|
|
13983
|
+
readonly 'country': string;
|
|
13984
|
+
readonly 'tax_code': string;
|
|
13985
|
+
readonly 'province'?: string;
|
|
13986
|
+
}
|
|
13445
13987
|
}
|
|
13446
13988
|
|
|
13447
13989
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
@@ -13493,6 +14035,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13493
14035
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
13494
14036
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
13495
14037
|
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';
|
|
14038
|
+
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
|
|
14039
|
+
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
13496
14040
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
13497
14041
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
13498
14042
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
@@ -13500,7 +14044,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13500
14044
|
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
14045
|
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
14046
|
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';
|
|
14047
|
+
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
14048
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
13505
14049
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13506
14050
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -13514,7 +14058,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13514
14058
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
13515
14059
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
13516
14060
|
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';
|
|
14061
|
+
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
14062
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
13519
14063
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
13520
14064
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
@@ -13531,7 +14075,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13531
14075
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
13532
14076
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
13533
14077
|
type ClassificationErrorCode = 'generic_error';
|
|
13534
|
-
type
|
|
14078
|
+
type ClassificationFailureReason = 'low_confidence' | 'timeout';
|
|
14079
|
+
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
13535
14080
|
type ClassificationScope = 'Item' | 'Product';
|
|
13536
14081
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
13537
14082
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
@@ -13568,7 +14113,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13568
14113
|
type EmptyAttribute = 'irrelevant';
|
|
13569
14114
|
type ErpFileType = 'vendor';
|
|
13570
14115
|
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';
|
|
14116
|
+
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_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
14117
|
type ExperienceImportType = 'experience_with_settings';
|
|
13573
14118
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13574
14119
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13581,12 +14126,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13581
14126
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
13582
14127
|
type FraudProviderStatus = 'active' | 'archived';
|
|
13583
14128
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
14129
|
+
type GabrielItemType = 'physical' | 'digital';
|
|
13584
14130
|
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
13585
14131
|
type GeRevenueShareTransactionType = 'adjustment' | 'reversal' | 'revenue_share';
|
|
13586
14132
|
type GoogleAnalyticsPlugin = 'ec';
|
|
13587
14133
|
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
14134
|
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
13589
14135
|
type HoseinItemType = 'physical' | 'digital';
|
|
14136
|
+
type Hs6CodeSource = 'sellability' | 'classification' | 'human';
|
|
13590
14137
|
type HttpMethod = 'get' | 'post';
|
|
13591
14138
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
13592
14139
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -13605,13 +14152,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13605
14152
|
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
13606
14153
|
type LabelRequestResultState = 'success' | 'failure';
|
|
13607
14154
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
14155
|
+
type LedgerReportType = 'periodic_mor_jurisdiction_report';
|
|
14156
|
+
type LedgerReportUrlType = 'sharepoint' | 's3';
|
|
13608
14157
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
13609
14158
|
type LogisticsCapability = 'logistics_address_correction';
|
|
13610
14159
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
13611
14160
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13612
14161
|
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
14162
|
type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
13614
|
-
type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands';
|
|
14163
|
+
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
14164
|
type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
|
|
13616
14165
|
type MixedBagWeight = '0' | '1' | '2';
|
|
13617
14166
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
@@ -13620,7 +14169,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13620
14169
|
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
13621
14170
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
13622
14171
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
13623
|
-
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | '
|
|
14172
|
+
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
13624
14173
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13625
14174
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13626
14175
|
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 +14200,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13651
14200
|
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
13652
14201
|
type PrateekItemType = 'physical' | 'digital';
|
|
13653
14202
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
14203
|
+
type PreonboardingClassificationDecision = 'Accept' | 'Reject';
|
|
14204
|
+
type PreonboardingClassificationPlatform = 'FlowOnboarding';
|
|
14205
|
+
type PreonboardingClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
14206
|
+
type PreonboardingRequestStatus = 'pending' | 'completed' | 'failed' | 'discarded';
|
|
13654
14207
|
type PriceSelector = 'minimum' | 'maximum';
|
|
13655
14208
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
13656
14209
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
@@ -13665,7 +14218,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13665
14218
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
13666
14219
|
type ReportPaymentType = 'credit' | 'debit';
|
|
13667
14220
|
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';
|
|
14221
|
+
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
14222
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
13670
14223
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
13671
14224
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -13675,7 +14228,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13675
14228
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
13676
14229
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
13677
14230
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
13678
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
|
|
14231
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa';
|
|
13679
14232
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
13680
14233
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
13681
14234
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -13707,7 +14260,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13707
14260
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
13708
14261
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
13709
14262
|
type TariffEligibilityType = 'rex';
|
|
13710
|
-
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
14263
|
+
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions';
|
|
13711
14264
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
13712
14265
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
13713
14266
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
@@ -14421,6 +14974,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14421
14974
|
readonly 'added_on': string;
|
|
14422
14975
|
}
|
|
14423
14976
|
|
|
14977
|
+
interface AldoItemDeleted {
|
|
14978
|
+
readonly 'discriminator': 'aldo_item_deleted';
|
|
14979
|
+
readonly 'event_id': string;
|
|
14980
|
+
readonly 'timestamp': string;
|
|
14981
|
+
readonly 'id': string;
|
|
14982
|
+
}
|
|
14983
|
+
|
|
14424
14984
|
interface AldoItemForm {
|
|
14425
14985
|
readonly 'number': string;
|
|
14426
14986
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -14429,6 +14989,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14429
14989
|
readonly 'added_on': string;
|
|
14430
14990
|
}
|
|
14431
14991
|
|
|
14992
|
+
interface AldoItemUpserted {
|
|
14993
|
+
readonly 'discriminator': 'aldo_item_upserted';
|
|
14994
|
+
readonly 'event_id': string;
|
|
14995
|
+
readonly 'timestamp': string;
|
|
14996
|
+
readonly 'item': io.flow.internal.v0.models.AldoItem;
|
|
14997
|
+
}
|
|
14998
|
+
|
|
14432
14999
|
interface AllItemsExport {
|
|
14433
15000
|
readonly 'discriminator': 'all_items_export';
|
|
14434
15001
|
readonly 'event_id': string;
|
|
@@ -14460,6 +15027,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14460
15027
|
readonly 'added_on': string;
|
|
14461
15028
|
}
|
|
14462
15029
|
|
|
15030
|
+
interface AnirbanItemDeleted {
|
|
15031
|
+
readonly 'discriminator': 'anirban_item_deleted';
|
|
15032
|
+
readonly 'event_id': string;
|
|
15033
|
+
readonly 'timestamp': string;
|
|
15034
|
+
readonly 'id': string;
|
|
15035
|
+
}
|
|
15036
|
+
|
|
14463
15037
|
interface AnirbanItemForm {
|
|
14464
15038
|
readonly 'number': string;
|
|
14465
15039
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -14468,6 +15042,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14468
15042
|
readonly 'added_on': string;
|
|
14469
15043
|
}
|
|
14470
15044
|
|
|
15045
|
+
interface AnirbanItemUpserted {
|
|
15046
|
+
readonly 'discriminator': 'anirban_item_upserted';
|
|
15047
|
+
readonly 'event_id': string;
|
|
15048
|
+
readonly 'timestamp': string;
|
|
15049
|
+
readonly 'item': io.flow.internal.v0.models.AnirbanItem;
|
|
15050
|
+
}
|
|
15051
|
+
|
|
14471
15052
|
interface AnshItem {
|
|
14472
15053
|
readonly 'id': string;
|
|
14473
15054
|
readonly 'number': string;
|
|
@@ -14477,6 +15058,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14477
15058
|
readonly 'added_on': string;
|
|
14478
15059
|
}
|
|
14479
15060
|
|
|
15061
|
+
interface AnshItemDeleted {
|
|
15062
|
+
readonly 'discriminator': 'ansh_item_deleted';
|
|
15063
|
+
readonly 'event_id': string;
|
|
15064
|
+
readonly 'timestamp': string;
|
|
15065
|
+
readonly 'id': string;
|
|
15066
|
+
}
|
|
15067
|
+
|
|
14480
15068
|
interface AnshItemForm {
|
|
14481
15069
|
readonly 'number': string;
|
|
14482
15070
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -14485,6 +15073,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14485
15073
|
readonly 'added_on': string;
|
|
14486
15074
|
}
|
|
14487
15075
|
|
|
15076
|
+
interface AnshItemUpserted {
|
|
15077
|
+
readonly 'discriminator': 'ansh_item_upserted';
|
|
15078
|
+
readonly 'event_id': string;
|
|
15079
|
+
readonly 'timestamp': string;
|
|
15080
|
+
readonly 'item': io.flow.internal.v0.models.AnshItem;
|
|
15081
|
+
}
|
|
15082
|
+
|
|
14488
15083
|
interface ApplePayAuthorizationPayload {
|
|
14489
15084
|
readonly 'discriminator': 'apple_pay_authorization_payload';
|
|
14490
15085
|
readonly 'apple_pay_token': string;
|
|
@@ -14588,6 +15183,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14588
15183
|
readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
14589
15184
|
}
|
|
14590
15185
|
|
|
15186
|
+
interface B2BTaxLedger {
|
|
15187
|
+
readonly 'id': string;
|
|
15188
|
+
readonly 'total_amount': io.flow.internal.v0.models.TaxTypeTotal;
|
|
15189
|
+
readonly 'tax_amount': io.flow.common.v0.models.Money;
|
|
15190
|
+
readonly 'tax_type': io.flow.consumer.invoice.v0.enums.TaxType;
|
|
15191
|
+
readonly 'tax_rate': number;
|
|
15192
|
+
readonly 'tax_rate_type': io.flow.internal.v0.enums.B2BTaxRateType;
|
|
15193
|
+
readonly 'organization_id': string;
|
|
15194
|
+
readonly 'organization_country': string;
|
|
15195
|
+
readonly 'organization_province'?: string;
|
|
15196
|
+
readonly 'mor_tax_number': string;
|
|
15197
|
+
readonly 'mor_country': string;
|
|
15198
|
+
readonly 'mor_province'?: string;
|
|
15199
|
+
readonly 'document_id': string;
|
|
15200
|
+
readonly 'document_type': io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
15201
|
+
readonly 'document_date': string;
|
|
15202
|
+
readonly 'ledger_report_id'?: string;
|
|
15203
|
+
}
|
|
15204
|
+
|
|
15205
|
+
interface B2BTaxLedgerForm {
|
|
15206
|
+
readonly 'total_amount': io.flow.internal.v0.models.TaxTypeTotal;
|
|
15207
|
+
readonly 'tax_amount': io.flow.common.v0.models.Money;
|
|
15208
|
+
readonly 'tax_type': io.flow.consumer.invoice.v0.enums.TaxType;
|
|
15209
|
+
readonly 'tax_rate': number;
|
|
15210
|
+
readonly 'tax_rate_type': io.flow.internal.v0.enums.B2BTaxRateType;
|
|
15211
|
+
readonly 'organization_id': string;
|
|
15212
|
+
readonly 'organization_country': string;
|
|
15213
|
+
readonly 'organization_province'?: string;
|
|
15214
|
+
readonly 'mor_tax_number': string;
|
|
15215
|
+
readonly 'mor_country': string;
|
|
15216
|
+
readonly 'mor_province'?: string;
|
|
15217
|
+
readonly 'document_id': string;
|
|
15218
|
+
readonly 'document_type': io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
15219
|
+
readonly 'document_date': string;
|
|
15220
|
+
readonly 'ledger_report_id'?: string;
|
|
15221
|
+
}
|
|
15222
|
+
|
|
14591
15223
|
interface BankAccount {
|
|
14592
15224
|
readonly 'status': io.flow.internal.v0.enums.BankAccountStatus;
|
|
14593
15225
|
readonly 'hold_created_at'?: string;
|
|
@@ -14894,6 +15526,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14894
15526
|
readonly 'non_l4l_tax_duty_fx': io.flow.common.v0.models.Price;
|
|
14895
15527
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
14896
15528
|
readonly 'tax_refund': io.flow.common.v0.models.Price;
|
|
15529
|
+
readonly 'b2b_tax': io.flow.common.v0.models.Price;
|
|
15530
|
+
readonly 'b2b_tax_refund': io.flow.common.v0.models.Price;
|
|
14897
15531
|
}
|
|
14898
15532
|
|
|
14899
15533
|
interface BillingStatementUpserted {
|
|
@@ -15011,6 +15645,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15011
15645
|
readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
15012
15646
|
}
|
|
15013
15647
|
|
|
15648
|
+
interface Cafe24MarketsWebhook {
|
|
15649
|
+
readonly 'placeholder'?: any/*json*/;
|
|
15650
|
+
}
|
|
15651
|
+
|
|
15014
15652
|
interface CalculatedTaxAmount {
|
|
15015
15653
|
readonly 'discriminator': 'calculated_tax_amount';
|
|
15016
15654
|
readonly 'amount': number;
|
|
@@ -15611,6 +16249,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15611
16249
|
readonly 'order_updated_at'?: string;
|
|
15612
16250
|
readonly 'order_edit_summary'?: io.flow.internal.v0.models.OrderEditSummary;
|
|
15613
16251
|
readonly 'payment_source'?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
16252
|
+
readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
15614
16253
|
}
|
|
15615
16254
|
|
|
15616
16255
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -17501,10 +18140,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17501
18140
|
readonly 'region'?: string;
|
|
17502
18141
|
}
|
|
17503
18142
|
|
|
17504
|
-
interface FeatureIdReference {
|
|
17505
|
-
readonly 'id': string;
|
|
17506
|
-
}
|
|
17507
|
-
|
|
17508
18143
|
interface FeatureReference {
|
|
17509
18144
|
readonly 'id': string;
|
|
17510
18145
|
readonly 'key': string;
|
|
@@ -18203,6 +18838,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18203
18838
|
readonly 'fulfilled_at': string;
|
|
18204
18839
|
readonly 'sequence_number': number;
|
|
18205
18840
|
readonly 'completes_order': boolean;
|
|
18841
|
+
readonly 'trigger'?: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
18206
18842
|
}
|
|
18207
18843
|
|
|
18208
18844
|
interface FulfillmentStatusUpserted {
|
|
@@ -18285,6 +18921,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18285
18921
|
readonly 'transaction_created_at': string;
|
|
18286
18922
|
}
|
|
18287
18923
|
|
|
18924
|
+
interface GabrielItem {
|
|
18925
|
+
readonly 'id': string;
|
|
18926
|
+
readonly 'number': string;
|
|
18927
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
18928
|
+
readonly 'description'?: string;
|
|
18929
|
+
readonly 'type': io.flow.internal.v0.enums.GabrielItemType;
|
|
18930
|
+
readonly 'added_on': string;
|
|
18931
|
+
}
|
|
18932
|
+
|
|
18933
|
+
interface GabrielItemDeleted {
|
|
18934
|
+
readonly 'discriminator': 'gabriel_item_deleted';
|
|
18935
|
+
readonly 'event_id': string;
|
|
18936
|
+
readonly 'timestamp': string;
|
|
18937
|
+
readonly 'id': string;
|
|
18938
|
+
}
|
|
18939
|
+
|
|
18940
|
+
interface GabrielItemForm {
|
|
18941
|
+
readonly 'number': string;
|
|
18942
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
18943
|
+
readonly 'description'?: string;
|
|
18944
|
+
readonly 'type': io.flow.internal.v0.enums.GabrielItemType;
|
|
18945
|
+
readonly 'added_on': string;
|
|
18946
|
+
}
|
|
18947
|
+
|
|
18948
|
+
interface GabrielItemUpserted {
|
|
18949
|
+
readonly 'discriminator': 'gabriel_item_upserted';
|
|
18950
|
+
readonly 'event_id': string;
|
|
18951
|
+
readonly 'timestamp': string;
|
|
18952
|
+
readonly 'item': io.flow.internal.v0.models.GabrielItem;
|
|
18953
|
+
}
|
|
18954
|
+
|
|
18288
18955
|
interface GeRevenueShareTransaction {
|
|
18289
18956
|
readonly 'discriminator': 'ge_revenue_share_transaction';
|
|
18290
18957
|
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -18484,6 +19151,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18484
19151
|
readonly 'added_on': string;
|
|
18485
19152
|
}
|
|
18486
19153
|
|
|
19154
|
+
interface HoseinItemDeleted {
|
|
19155
|
+
readonly 'discriminator': 'hosein_item_deleted';
|
|
19156
|
+
readonly 'event_id': string;
|
|
19157
|
+
readonly 'timestamp': string;
|
|
19158
|
+
readonly 'id': string;
|
|
19159
|
+
}
|
|
19160
|
+
|
|
18487
19161
|
interface HoseinItemForm {
|
|
18488
19162
|
readonly 'number': string;
|
|
18489
19163
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -18492,6 +19166,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18492
19166
|
readonly 'added_on': string;
|
|
18493
19167
|
}
|
|
18494
19168
|
|
|
19169
|
+
interface HoseinItemUpserted {
|
|
19170
|
+
readonly 'discriminator': 'hosein_item_upserted';
|
|
19171
|
+
readonly 'event_id': string;
|
|
19172
|
+
readonly 'timestamp': string;
|
|
19173
|
+
readonly 'item': io.flow.internal.v0.models.HoseinItem;
|
|
19174
|
+
}
|
|
19175
|
+
|
|
18495
19176
|
interface Hs6 {
|
|
18496
19177
|
readonly 'code': string;
|
|
18497
19178
|
readonly 'description': string;
|
|
@@ -18716,8 +19397,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18716
19397
|
readonly 'customs_value': number;
|
|
18717
19398
|
readonly 'total_value': number;
|
|
18718
19399
|
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
19400
|
}
|
|
18722
19401
|
|
|
18723
19402
|
interface InvoiceDataLineItem {
|
|
@@ -18728,7 +19407,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18728
19407
|
readonly 'tariff_code': string;
|
|
18729
19408
|
readonly 'country_of_origin': string;
|
|
18730
19409
|
readonly 'display_country_of_origin': string;
|
|
18731
|
-
readonly '
|
|
19410
|
+
readonly 'remitter': io.flow.internal.v0.enums.TaxParty;
|
|
18732
19411
|
readonly 'gst_paid_text': string;
|
|
18733
19412
|
readonly 'unit_price': number;
|
|
18734
19413
|
readonly 'vat_price': number;
|
|
@@ -19209,6 +19888,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19209
19888
|
readonly 'service_id'?: string;
|
|
19210
19889
|
readonly 'errors': string[];
|
|
19211
19890
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
19891
|
+
readonly 'origin'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
19892
|
+
readonly 'destination'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
19212
19893
|
}
|
|
19213
19894
|
|
|
19214
19895
|
interface LabelRequestErrorDeleted {
|
|
@@ -19374,6 +20055,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19374
20055
|
readonly 'errors': string[];
|
|
19375
20056
|
}
|
|
19376
20057
|
|
|
20058
|
+
interface LedgerReport {
|
|
20059
|
+
readonly 'id': string;
|
|
20060
|
+
readonly 'mor_tax_number': string;
|
|
20061
|
+
readonly 'jurisdiction': string;
|
|
20062
|
+
readonly 'start_date': string;
|
|
20063
|
+
readonly 'end_date': string;
|
|
20064
|
+
readonly 'report_type': io.flow.internal.v0.enums.LedgerReportType;
|
|
20065
|
+
readonly 'urls': io.flow.internal.v0.models.LedgerReportUrl[];
|
|
20066
|
+
}
|
|
20067
|
+
|
|
20068
|
+
interface LedgerReportUrl {
|
|
20069
|
+
readonly 'url': string;
|
|
20070
|
+
readonly 'type': io.flow.internal.v0.enums.LedgerReportUrlType;
|
|
20071
|
+
}
|
|
20072
|
+
|
|
19377
20073
|
interface LevyRateSummary {
|
|
19378
20074
|
readonly 'id': string;
|
|
19379
20075
|
readonly 'number': string;
|
|
@@ -19918,6 +20614,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19918
20614
|
readonly 'added_on': string;
|
|
19919
20615
|
}
|
|
19920
20616
|
|
|
20617
|
+
interface NiallItemDeleted {
|
|
20618
|
+
readonly 'discriminator': 'niall_item_deleted';
|
|
20619
|
+
readonly 'event_id': string;
|
|
20620
|
+
readonly 'timestamp': string;
|
|
20621
|
+
readonly 'id': string;
|
|
20622
|
+
}
|
|
20623
|
+
|
|
19921
20624
|
interface NiallItemForm {
|
|
19922
20625
|
readonly 'number': string;
|
|
19923
20626
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -19926,6 +20629,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19926
20629
|
readonly 'added_on': string;
|
|
19927
20630
|
}
|
|
19928
20631
|
|
|
20632
|
+
interface NiallItemUpserted {
|
|
20633
|
+
readonly 'discriminator': 'niall_item_upserted';
|
|
20634
|
+
readonly 'event_id': string;
|
|
20635
|
+
readonly 'timestamp': string;
|
|
20636
|
+
readonly 'item': io.flow.internal.v0.models.NiallItem;
|
|
20637
|
+
}
|
|
20638
|
+
|
|
19929
20639
|
interface NoCalculatedTaxAmount {
|
|
19930
20640
|
readonly 'discriminator': 'no_calculated_tax_amount';
|
|
19931
20641
|
readonly 'amount': number;
|
|
@@ -20007,6 +20717,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20007
20717
|
readonly 'health_score'?: number;
|
|
20008
20718
|
readonly 'audit_result'?: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
20009
20719
|
readonly 'blocked_since'?: string;
|
|
20720
|
+
readonly 'onboarding_segment'?: string;
|
|
20010
20721
|
}
|
|
20011
20722
|
|
|
20012
20723
|
interface OnboardingStateForm {
|
|
@@ -20452,27 +21163,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20452
21163
|
readonly 'attachments': io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
20453
21164
|
}
|
|
20454
21165
|
|
|
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
21166
|
interface OrganizationBusinessEntity {
|
|
20477
21167
|
readonly 'id': string;
|
|
20478
21168
|
readonly 'name': string;
|
|
@@ -21072,6 +21762,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21072
21762
|
interface PaymentIs {
|
|
21073
21763
|
readonly 'lvg': boolean;
|
|
21074
21764
|
readonly 'manual': boolean;
|
|
21765
|
+
readonly 'managed_pricing'?: boolean;
|
|
21075
21766
|
}
|
|
21076
21767
|
|
|
21077
21768
|
interface PaymentMethodDetail {
|
|
@@ -21531,6 +22222,76 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21531
22222
|
readonly 'item': string;
|
|
21532
22223
|
}
|
|
21533
22224
|
|
|
22225
|
+
interface PreonboardingClassificationRabbitmqEnvelope {
|
|
22226
|
+
readonly 'messageType': string[];
|
|
22227
|
+
readonly 'message': io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage;
|
|
22228
|
+
}
|
|
22229
|
+
|
|
22230
|
+
interface PreonboardingClassificationRabbitmqMessage {
|
|
22231
|
+
readonly 'MerchantId': string;
|
|
22232
|
+
readonly 'ProductName': string;
|
|
22233
|
+
readonly 'ProductDescription': string;
|
|
22234
|
+
readonly 'ProductIdInternal': string;
|
|
22235
|
+
readonly 'ProductIdExternal': string;
|
|
22236
|
+
readonly 'ProductGroupCode'?: string;
|
|
22237
|
+
readonly 'ProductUrl'?: string;
|
|
22238
|
+
readonly 'ProductImage'?: string;
|
|
22239
|
+
readonly 'ProductAttributes': Record<string, string>;
|
|
22240
|
+
readonly 'Categories'?: string[];
|
|
22241
|
+
readonly 'PlatformId': io.flow.internal.v0.enums.PreonboardingClassificationPlatform;
|
|
22242
|
+
}
|
|
22243
|
+
|
|
22244
|
+
interface PreonboardingClassificationRequest {
|
|
22245
|
+
readonly 'id': string;
|
|
22246
|
+
readonly 'merchant_id': string;
|
|
22247
|
+
readonly 'product_id': string;
|
|
22248
|
+
readonly 'channel': string;
|
|
22249
|
+
readonly 'request_id': string;
|
|
22250
|
+
readonly 'status': io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
22251
|
+
readonly 'name': string;
|
|
22252
|
+
readonly 'price': io.flow.common.v0.models.Money;
|
|
22253
|
+
readonly 'description': string;
|
|
22254
|
+
readonly 'relative_ranking': number;
|
|
22255
|
+
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22256
|
+
readonly 'fingerprint': string;
|
|
22257
|
+
}
|
|
22258
|
+
|
|
22259
|
+
interface PreonboardingClassificationResult {
|
|
22260
|
+
readonly 'id': string;
|
|
22261
|
+
readonly 'merchant_id': string;
|
|
22262
|
+
readonly 'product_id': string;
|
|
22263
|
+
readonly 'channel': string;
|
|
22264
|
+
readonly 'hs6_code'?: string;
|
|
22265
|
+
readonly 'probability'?: number;
|
|
22266
|
+
readonly 'classification_decision': io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
22267
|
+
readonly 'classification_type': io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
22268
|
+
}
|
|
22269
|
+
|
|
22270
|
+
interface PreonboardingMerchant {
|
|
22271
|
+
readonly 'merchant_id': string;
|
|
22272
|
+
readonly 'channel': string;
|
|
22273
|
+
readonly 'catalog_size': number;
|
|
22274
|
+
readonly 'processed_product_count': number;
|
|
22275
|
+
readonly 'last_request': string;
|
|
22276
|
+
}
|
|
22277
|
+
|
|
22278
|
+
interface PreonboardingSellabilityResult {
|
|
22279
|
+
readonly 'merchant_id': string;
|
|
22280
|
+
readonly 'product_id': string;
|
|
22281
|
+
readonly 'channel': string;
|
|
22282
|
+
readonly 'request_id': string;
|
|
22283
|
+
readonly 'status': io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
22284
|
+
readonly 'error_code'?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
22285
|
+
readonly 'hs6_code'?: string;
|
|
22286
|
+
readonly 'hs6_code_source'?: io.flow.internal.v0.enums.Hs6CodeSource;
|
|
22287
|
+
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
22288
|
+
readonly 'rule_ids'?: string[];
|
|
22289
|
+
readonly 'matching_positive_keywords'?: string[];
|
|
22290
|
+
readonly 'classification_failure_reason'?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
22291
|
+
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22292
|
+
readonly 'fingerprint': string;
|
|
22293
|
+
}
|
|
22294
|
+
|
|
21534
22295
|
interface PriceInclusivity {
|
|
21535
22296
|
readonly 'tax'?: boolean;
|
|
21536
22297
|
readonly 'duty'?: boolean;
|
|
@@ -21783,7 +22544,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21783
22544
|
readonly 'product_id'?: string;
|
|
21784
22545
|
readonly 'request_id': string;
|
|
21785
22546
|
readonly 'hs6_code': string;
|
|
21786
|
-
readonly 'restricted_regions': io.flow.sellability.v0.models.
|
|
22547
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
21787
22548
|
readonly 'rule_ids': string[];
|
|
21788
22549
|
}
|
|
21789
22550
|
|
|
@@ -21796,7 +22557,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21796
22557
|
}
|
|
21797
22558
|
|
|
21798
22559
|
interface ProductSellabilityInternalResult {
|
|
21799
|
-
readonly 'restricted_regions': io.flow.sellability.v0.models.
|
|
22560
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
21800
22561
|
readonly 'rule_ids': string[];
|
|
21801
22562
|
}
|
|
21802
22563
|
|
|
@@ -21806,7 +22567,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21806
22567
|
readonly 'request_id': string;
|
|
21807
22568
|
readonly 'hs6_code': string;
|
|
21808
22569
|
readonly 'restricted_regions'?: string[];
|
|
21809
|
-
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.
|
|
22570
|
+
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
21810
22571
|
readonly 'rule_ids'?: string[];
|
|
21811
22572
|
readonly 'taxonomy_category'?: string;
|
|
21812
22573
|
}
|
|
@@ -21842,6 +22603,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21842
22603
|
readonly 'shipping_notification_id': string;
|
|
21843
22604
|
}
|
|
21844
22605
|
|
|
22606
|
+
interface ProofOfPostingSynthetic {
|
|
22607
|
+
readonly 'discriminator': 'synthetic';
|
|
22608
|
+
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
22609
|
+
readonly 'created_at': string;
|
|
22610
|
+
}
|
|
22611
|
+
|
|
21845
22612
|
interface ProofOfPostingTimeElapsed {
|
|
21846
22613
|
readonly 'discriminator': 'time_elapsed';
|
|
21847
22614
|
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -22321,6 +23088,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22321
23088
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
22322
23089
|
}
|
|
22323
23090
|
|
|
23091
|
+
interface ReportAmountRange {
|
|
23092
|
+
readonly 'min'?: number;
|
|
23093
|
+
readonly 'max'?: number;
|
|
23094
|
+
}
|
|
23095
|
+
|
|
22324
23096
|
interface ReportBankAccount {
|
|
22325
23097
|
readonly 'id'?: string;
|
|
22326
23098
|
readonly 'last4'?: string;
|
|
@@ -22345,6 +23117,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22345
23117
|
interface ReportFilter {
|
|
22346
23118
|
readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
22347
23119
|
readonly 'order_payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
23120
|
+
readonly 'amount_range'?: io.flow.internal.v0.models.ReportAmountRange;
|
|
22348
23121
|
}
|
|
22349
23122
|
|
|
22350
23123
|
interface ReportForm {
|
|
@@ -22783,7 +23556,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22783
23556
|
interface RestrictionOrganization {
|
|
22784
23557
|
readonly 'id': string;
|
|
22785
23558
|
readonly 'name': string;
|
|
22786
|
-
readonly 'environment': io.flow.
|
|
23559
|
+
readonly 'environment': io.flow.restrictions.v0.enums.RestrictionEnvironment;
|
|
22787
23560
|
readonly 'url'?: string;
|
|
22788
23561
|
readonly 'approval_status'?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
22789
23562
|
readonly 'screening_status'?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
@@ -22834,7 +23607,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22834
23607
|
interface RestrictionOrganizationSummary {
|
|
22835
23608
|
readonly 'id': string;
|
|
22836
23609
|
readonly 'name': string;
|
|
22837
|
-
readonly 'environment': io.flow.
|
|
23610
|
+
readonly 'environment': io.flow.restrictions.v0.enums.RestrictionEnvironment;
|
|
22838
23611
|
readonly 'source': io.flow.internal.v0.enums.OrganizationSource;
|
|
22839
23612
|
}
|
|
22840
23613
|
|
|
@@ -22902,7 +23675,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22902
23675
|
readonly 'attribute_names'?: string[];
|
|
22903
23676
|
readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
|
|
22904
23677
|
readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
22905
|
-
readonly 'activation_status'
|
|
23678
|
+
readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
22906
23679
|
}
|
|
22907
23680
|
|
|
22908
23681
|
interface RestrictionRuleDecisionForm {
|
|
@@ -22963,7 +23736,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22963
23736
|
readonly 'attribute_names'?: string[];
|
|
22964
23737
|
readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
|
|
22965
23738
|
readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
22966
|
-
readonly 'activation_status'
|
|
23739
|
+
readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
22967
23740
|
}
|
|
22968
23741
|
|
|
22969
23742
|
interface RestrictionRuleLaneExemption {
|
|
@@ -23027,23 +23800,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23027
23800
|
readonly 'oldest_pv_product_date_transacting': string;
|
|
23028
23801
|
readonly 'oldest_pc_product_date_setup_complete': string;
|
|
23029
23802
|
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
23803
|
readonly 'percent_products_reviewed_transacting'?: number;
|
|
23037
23804
|
readonly 'num_pv_inflow_net_new': number;
|
|
23038
23805
|
readonly 'num_pv_outflow_human_decisions': number;
|
|
23039
23806
|
readonly 'num_pv_outflow_auto_review_decisions': number;
|
|
23040
23807
|
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
23808
|
readonly 'num_pending_decisions_transacting': number;
|
|
23046
|
-
readonly 'oldest_insufficient_details_pv_onboarding'?: string;
|
|
23047
23809
|
readonly 'oldest_insufficient_details_pv_active'?: string;
|
|
23048
23810
|
readonly 'oldest_insufficient_details_pv_transacting'?: string;
|
|
23049
23811
|
readonly 'num_products_with_fs_result'?: number;
|
|
@@ -23196,6 +23958,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23196
23958
|
readonly 'added_on': string;
|
|
23197
23959
|
}
|
|
23198
23960
|
|
|
23961
|
+
interface RohanItemDeleted {
|
|
23962
|
+
readonly 'discriminator': 'rohan_item_deleted';
|
|
23963
|
+
readonly 'event_id': string;
|
|
23964
|
+
readonly 'timestamp': string;
|
|
23965
|
+
readonly 'id': string;
|
|
23966
|
+
}
|
|
23967
|
+
|
|
23199
23968
|
interface RohanItemForm {
|
|
23200
23969
|
readonly 'number': string;
|
|
23201
23970
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -23204,6 +23973,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23204
23973
|
readonly 'added_on': string;
|
|
23205
23974
|
}
|
|
23206
23975
|
|
|
23976
|
+
interface RohanItemUpserted {
|
|
23977
|
+
readonly 'discriminator': 'rohan_item_upserted';
|
|
23978
|
+
readonly 'event_id': string;
|
|
23979
|
+
readonly 'timestamp': string;
|
|
23980
|
+
readonly 'item': io.flow.internal.v0.models.RohanItem;
|
|
23981
|
+
}
|
|
23982
|
+
|
|
23207
23983
|
interface RoutingAccount {
|
|
23208
23984
|
readonly 'discriminator': 'routing_account';
|
|
23209
23985
|
readonly 'processor': io.flow.internal.v0.enums.Processor;
|
|
@@ -23257,6 +24033,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23257
24033
|
readonly 'added_on': string;
|
|
23258
24034
|
}
|
|
23259
24035
|
|
|
24036
|
+
interface SarveshItemDeleted {
|
|
24037
|
+
readonly 'discriminator': 'sarvesh_item_deleted';
|
|
24038
|
+
readonly 'event_id': string;
|
|
24039
|
+
readonly 'timestamp': string;
|
|
24040
|
+
readonly 'id': string;
|
|
24041
|
+
}
|
|
24042
|
+
|
|
23260
24043
|
interface SarveshItemForm {
|
|
23261
24044
|
readonly 'number': string;
|
|
23262
24045
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -23265,6 +24048,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23265
24048
|
readonly 'added_on': string;
|
|
23266
24049
|
}
|
|
23267
24050
|
|
|
24051
|
+
interface SarveshItemUpserted {
|
|
24052
|
+
readonly 'discriminator': 'sarvesh_item_upserted';
|
|
24053
|
+
readonly 'event_id': string;
|
|
24054
|
+
readonly 'timestamp': string;
|
|
24055
|
+
readonly 'item': io.flow.internal.v0.models.SarveshItem;
|
|
24056
|
+
}
|
|
24057
|
+
|
|
23268
24058
|
interface ScheduledPayment {
|
|
23269
24059
|
readonly 'payment': io.flow.internal.v0.models.ReportPayment;
|
|
23270
24060
|
readonly 'bank_account': io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -23364,9 +24154,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23364
24154
|
readonly 'status': io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
23365
24155
|
readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
23366
24156
|
readonly 'current_rule_ids'?: string[];
|
|
23367
|
-
readonly 'current_restricted_regions'?: io.flow.sellability.v0.models.
|
|
24157
|
+
readonly 'current_restricted_regions'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
23368
24158
|
readonly 'merchant_rule_ids'?: string[];
|
|
23369
|
-
readonly 'merchant_restricted_regions'?: io.flow.sellability.v0.models.
|
|
24159
|
+
readonly 'merchant_restricted_regions'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
23370
24160
|
readonly 'current_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
23371
24161
|
readonly 'merchant_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
23372
24162
|
}
|
|
@@ -23418,6 +24208,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23418
24208
|
readonly 'customer_price': number;
|
|
23419
24209
|
}
|
|
23420
24210
|
|
|
24211
|
+
interface ShippingRateEstimateAvailableInternal {
|
|
24212
|
+
readonly 'service': io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
24213
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
24214
|
+
readonly 'shipment_window': io.flow.ratecard.v0.models.ShipmentWindow;
|
|
24215
|
+
readonly 'total_amount': io.flow.common.v0.models.Money;
|
|
24216
|
+
readonly 'base_amount': io.flow.common.v0.models.Money;
|
|
24217
|
+
readonly 'fees': io.flow.ratecard.v0.unions.RatecardFee[];
|
|
24218
|
+
readonly 'dimensional_weight'?: io.flow.common.v0.models.Measurement;
|
|
24219
|
+
readonly 'gravitational_weight'?: io.flow.common.v0.models.Measurement;
|
|
24220
|
+
readonly 'weight_break'?: number;
|
|
24221
|
+
readonly 'ratecard_id'?: string;
|
|
24222
|
+
readonly 'lane_id'?: string;
|
|
24223
|
+
readonly 'rate_level_key'?: string;
|
|
24224
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
24225
|
+
readonly 'glbe_proposition_name'?: string;
|
|
24226
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
24227
|
+
readonly 'distance_unit_of_measurement'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
24228
|
+
readonly 'weight_unit_of_measurement'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
24229
|
+
}
|
|
24230
|
+
|
|
24231
|
+
interface ShippingRateEstimateInternal {
|
|
24232
|
+
readonly 'channel_id': string;
|
|
24233
|
+
readonly 'organization_id': string;
|
|
24234
|
+
readonly 'service': string;
|
|
24235
|
+
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
24236
|
+
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
24237
|
+
readonly 'shipping_date_time': string;
|
|
24238
|
+
readonly 'available': io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal[];
|
|
24239
|
+
}
|
|
24240
|
+
|
|
24241
|
+
interface ShippingRateEstimateRequestInternal {
|
|
24242
|
+
readonly 'channel_id': string;
|
|
24243
|
+
readonly 'organization_id': string;
|
|
24244
|
+
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
24245
|
+
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
24246
|
+
readonly 'package_dimensions': io.flow.common.v0.models.Dimension;
|
|
24247
|
+
readonly 'shipping_date_time': string;
|
|
24248
|
+
readonly 'service': string;
|
|
24249
|
+
readonly 'delivered_duty'?: io.flow.common.v0.enums.DeliveredDuty;
|
|
24250
|
+
readonly 'duties_owed'?: io.flow.common.v0.models.Money;
|
|
24251
|
+
readonly 'taxes_owed'?: io.flow.common.v0.models.Money;
|
|
24252
|
+
readonly 'line_items'?: io.flow.common.v0.models.LineItemForm[];
|
|
24253
|
+
readonly 'include_unpublished'?: boolean;
|
|
24254
|
+
}
|
|
24255
|
+
|
|
23421
24256
|
interface ShopifyCatalogPublication {
|
|
23422
24257
|
readonly 'owner': io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
23423
24258
|
}
|
|
@@ -23664,6 +24499,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23664
24499
|
readonly 'shopify': io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
23665
24500
|
readonly 'internal': io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
23666
24501
|
readonly 'discrepancy_data': io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
24502
|
+
readonly 'organization_metrics'?: io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
|
|
24503
|
+
}
|
|
24504
|
+
|
|
24505
|
+
interface ShopifyMarketsOrganizationOrderMetrics {
|
|
24506
|
+
readonly 'organization_id': string;
|
|
24507
|
+
readonly 'shopify_order_count': number;
|
|
24508
|
+
readonly 'internal_order_count': number;
|
|
24509
|
+
readonly 'discrepancy_count'?: number;
|
|
23667
24510
|
}
|
|
23668
24511
|
|
|
23669
24512
|
interface ShopifyMarketsQueuedRecord {
|
|
@@ -24140,6 +24983,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24140
24983
|
|
|
24141
24984
|
interface ShopperBreakdown {
|
|
24142
24985
|
readonly 'product': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24986
|
+
readonly 'product_purchase_price'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24143
24987
|
readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24144
24988
|
readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24145
24989
|
readonly 'discount': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -24877,6 +25721,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24877
25721
|
readonly 'tax_transaction': io.flow.internal.v0.models.TaxTransaction;
|
|
24878
25722
|
}
|
|
24879
25723
|
|
|
25724
|
+
interface TaxTypeTotal {
|
|
25725
|
+
readonly 'value': io.flow.common.v0.models.Money;
|
|
25726
|
+
}
|
|
25727
|
+
|
|
24880
25728
|
interface TaxonomyAlignmentCheckResult {
|
|
24881
25729
|
readonly 'status': io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
24882
25730
|
readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
@@ -25618,7 +26466,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25618
26466
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25619
26467
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25620
26468
|
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);
|
|
26469
|
+
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.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
26470
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25623
26471
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25624
26472
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -25651,7 +26499,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25651
26499
|
type ProcessorMerchantForm = (io.flow.internal.v0.models.StripeMerchantForm);
|
|
25652
26500
|
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
26501
|
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);
|
|
26502
|
+
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
26503
|
type RestrictionAttributeRuleCondition = (io.flow.internal.v0.models.RestrictionAttributeConditionSingle | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple);
|
|
25656
26504
|
type ReturnTrigger = (io.flow.internal.v0.models.ReturnTriggerRefund | io.flow.internal.v0.models.ReturnTriggerReversal);
|
|
25657
26505
|
type RoutingEntity = (io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant);
|
|
@@ -25681,6 +26529,8 @@ export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.
|
|
|
25681
26529
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
25682
26530
|
export const applicablePreferentialRate: PropTypes.Requireable<io.flow.internal.v0.enums.ApplicablePreferentialRate>;
|
|
25683
26531
|
export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
|
|
26532
|
+
export const b2BTaxLedgerDocumentType: PropTypes.Requireable<io.flow.internal.v0.enums.B2BTaxLedgerDocumentType>;
|
|
26533
|
+
export const b2BTaxRateType: PropTypes.Requireable<io.flow.internal.v0.enums.B2BTaxRateType>;
|
|
25684
26534
|
export const bankAccountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BankAccountStatus>;
|
|
25685
26535
|
export const bankPaymentPromiseCompletedMethod: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod>;
|
|
25686
26536
|
export const bankPaymentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentStatusCode>;
|
|
@@ -25719,6 +26569,7 @@ export const checkoutShippingMethodPromptBehavior: PropTypes.Requireable<io.flow
|
|
|
25719
26569
|
export const checkoutUrlType: PropTypes.Requireable<io.flow.internal.v0.enums.CheckoutUrlType>;
|
|
25720
26570
|
export const classificationDecision: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationDecision>;
|
|
25721
26571
|
export const classificationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationErrorCode>;
|
|
26572
|
+
export const classificationFailureReason: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationFailureReason>;
|
|
25722
26573
|
export const classificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationPlatform>;
|
|
25723
26574
|
export const classificationScope: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationScope>;
|
|
25724
26575
|
export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationType>;
|
|
@@ -25769,12 +26620,14 @@ export const fileType: PropTypes.Requireable<io.flow.internal.v0.enums.FileType>
|
|
|
25769
26620
|
export const fraudProvider: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProvider>;
|
|
25770
26621
|
export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProviderStatus>;
|
|
25771
26622
|
export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.FraudReviewResponsibleParty>;
|
|
26623
|
+
export const gabrielItemType: PropTypes.Requireable<io.flow.internal.v0.enums.GabrielItemType>;
|
|
25772
26624
|
export const geIngestionFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.GeIngestionFileStatus>;
|
|
25773
26625
|
export const geRevenueShareTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.GeRevenueShareTransactionType>;
|
|
25774
26626
|
export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
|
|
25775
26627
|
export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
|
|
25776
26628
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
25777
26629
|
export const hoseinItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HoseinItemType>;
|
|
26630
|
+
export const hs6CodeSource: PropTypes.Requireable<io.flow.internal.v0.enums.Hs6CodeSource>;
|
|
25778
26631
|
export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
|
|
25779
26632
|
export const internalPaymentEntityType: PropTypes.Requireable<io.flow.internal.v0.enums.InternalPaymentEntityType>;
|
|
25780
26633
|
export const itemClassificationAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationAction>;
|
|
@@ -25793,6 +26646,8 @@ export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.f
|
|
|
25793
26646
|
export const labelRequestResultOrganizationType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultOrganizationType>;
|
|
25794
26647
|
export const labelRequestResultState: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultState>;
|
|
25795
26648
|
export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
|
|
26649
|
+
export const ledgerReportType: PropTypes.Requireable<io.flow.internal.v0.enums.LedgerReportType>;
|
|
26650
|
+
export const ledgerReportUrlType: PropTypes.Requireable<io.flow.internal.v0.enums.LedgerReportUrlType>;
|
|
25796
26651
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
25797
26652
|
export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsCapability>;
|
|
25798
26653
|
export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
|
|
@@ -25839,6 +26694,10 @@ export const paymentTerm: PropTypes.Requireable<io.flow.internal.v0.enums.Paymen
|
|
|
25839
26694
|
export const pendingRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.PendingRecordType>;
|
|
25840
26695
|
export const prateekItemType: PropTypes.Requireable<io.flow.internal.v0.enums.PrateekItemType>;
|
|
25841
26696
|
export const preferredBillingSchedule: PropTypes.Requireable<io.flow.internal.v0.enums.PreferredBillingSchedule>;
|
|
26697
|
+
export const preonboardingClassificationDecision: PropTypes.Requireable<io.flow.internal.v0.enums.PreonboardingClassificationDecision>;
|
|
26698
|
+
export const preonboardingClassificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.PreonboardingClassificationPlatform>;
|
|
26699
|
+
export const preonboardingClassificationType: PropTypes.Requireable<io.flow.internal.v0.enums.PreonboardingClassificationType>;
|
|
26700
|
+
export const preonboardingRequestStatus: PropTypes.Requireable<io.flow.internal.v0.enums.PreonboardingRequestStatus>;
|
|
25842
26701
|
export const priceSelector: PropTypes.Requireable<io.flow.internal.v0.enums.PriceSelector>;
|
|
25843
26702
|
export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessingTransactionType>;
|
|
25844
26703
|
export const processor: PropTypes.Requireable<io.flow.internal.v0.enums.Processor>;
|
|
@@ -25994,15 +26853,21 @@ export const afterpayRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
25994
26853
|
export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundUpserted>;
|
|
25995
26854
|
export const aftershipWebhook: PropTypes.Requireable<io.flow.internal.v0.models.AftershipWebhook>;
|
|
25996
26855
|
export const aldoItem: PropTypes.Requireable<io.flow.internal.v0.models.AldoItem>;
|
|
26856
|
+
export const aldoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemDeleted>;
|
|
25997
26857
|
export const aldoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemForm>;
|
|
26858
|
+
export const aldoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemUpserted>;
|
|
25998
26859
|
export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
|
|
25999
26860
|
export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
|
|
26000
26861
|
export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
|
|
26001
26862
|
export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
|
|
26002
26863
|
export const anirbanItem: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItem>;
|
|
26864
|
+
export const anirbanItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemDeleted>;
|
|
26003
26865
|
export const anirbanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemForm>;
|
|
26866
|
+
export const anirbanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemUpserted>;
|
|
26004
26867
|
export const anshItem: PropTypes.Requireable<io.flow.internal.v0.models.AnshItem>;
|
|
26868
|
+
export const anshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemDeleted>;
|
|
26005
26869
|
export const anshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemForm>;
|
|
26870
|
+
export const anshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemUpserted>;
|
|
26006
26871
|
export const applePayAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.ApplePayAuthorizationPayload>;
|
|
26007
26872
|
export const applyAtValueForm: PropTypes.Requireable<io.flow.internal.v0.models.ApplyAtValueForm>;
|
|
26008
26873
|
export const attemptStatistics: PropTypes.Requireable<io.flow.internal.v0.models.AttemptStatistics>;
|
|
@@ -26019,6 +26884,8 @@ export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
26019
26884
|
export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
|
|
26020
26885
|
export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
|
|
26021
26886
|
export const autoReviewCriteria: PropTypes.Requireable<io.flow.internal.v0.models.AutoReviewCriteria>;
|
|
26887
|
+
export const b2BTaxLedger: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxLedger>;
|
|
26888
|
+
export const b2BTaxLedgerForm: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxLedgerForm>;
|
|
26022
26889
|
export const bankAccount: PropTypes.Requireable<io.flow.internal.v0.models.BankAccount>;
|
|
26023
26890
|
export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
|
|
26024
26891
|
export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
|
|
@@ -26076,6 +26943,7 @@ export const brickWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
26076
26943
|
export const brickWebhookEventResponse: PropTypes.Requireable<io.flow.internal.v0.models.BrickWebhookEventResponse>;
|
|
26077
26944
|
export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
|
|
26078
26945
|
export const bulkDutyUpdateValidationError: PropTypes.Requireable<io.flow.internal.v0.models.BulkDutyUpdateValidationError>;
|
|
26946
|
+
export const cafe24MarketsWebhook: PropTypes.Requireable<io.flow.internal.v0.models.Cafe24MarketsWebhook>;
|
|
26079
26947
|
export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
|
|
26080
26948
|
export const calculationStampingLineItem: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingLineItem>;
|
|
26081
26949
|
export const calculationStampingShippingLine: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingShippingLine>;
|
|
@@ -26391,7 +27259,6 @@ export const featureContextForm: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
26391
27259
|
export const featureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FeatureDeleted>;
|
|
26392
27260
|
export const featureForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureForm>;
|
|
26393
27261
|
export const featureGeoForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureGeoForm>;
|
|
26394
|
-
export const featureIdReference: PropTypes.Requireable<io.flow.internal.v0.models.FeatureIdReference>;
|
|
26395
27262
|
export const featureReference: PropTypes.Requireable<io.flow.internal.v0.models.FeatureReference>;
|
|
26396
27263
|
export const featureReleaseForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureReleaseForm>;
|
|
26397
27264
|
export const featureStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureStatusForm>;
|
|
@@ -26492,6 +27359,10 @@ export const fxRevenueRecognitionOrder: PropTypes.Requireable<io.flow.internal.v
|
|
|
26492
27359
|
export const fxRevenueRecognitionOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionOrganization>;
|
|
26493
27360
|
export const fxRevenueRecognitionRate: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionRate>;
|
|
26494
27361
|
export const fxRevenueRecognitionSource: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionSource>;
|
|
27362
|
+
export const gabrielItem: PropTypes.Requireable<io.flow.internal.v0.models.GabrielItem>;
|
|
27363
|
+
export const gabrielItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GabrielItemDeleted>;
|
|
27364
|
+
export const gabrielItemForm: PropTypes.Requireable<io.flow.internal.v0.models.GabrielItemForm>;
|
|
27365
|
+
export const gabrielItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GabrielItemUpserted>;
|
|
26495
27366
|
export const geRevenueShareTransaction: PropTypes.Requireable<io.flow.internal.v0.models.GeRevenueShareTransaction>;
|
|
26496
27367
|
export const generateLoadMultipleOrgs: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadMultipleOrgs>;
|
|
26497
27368
|
export const generateLoadSingleOrg: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadSingleOrg>;
|
|
@@ -26520,7 +27391,9 @@ export const harmonizationUnclassifiedStatistics: PropTypes.Requireable<io.flow.
|
|
|
26520
27391
|
export const harmonizeFullyRequestV2: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizeFullyRequestV2>;
|
|
26521
27392
|
export const harmonizedItemsHs6Export: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizedItemsHs6Export>;
|
|
26522
27393
|
export const hoseinItem: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItem>;
|
|
27394
|
+
export const hoseinItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemDeleted>;
|
|
26523
27395
|
export const hoseinItemForm: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemForm>;
|
|
27396
|
+
export const hoseinItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemUpserted>;
|
|
26524
27397
|
export const hs6: PropTypes.Requireable<io.flow.internal.v0.models.Hs6>;
|
|
26525
27398
|
export const hs6Metadata: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Metadata>;
|
|
26526
27399
|
export const importCompleted: PropTypes.Requireable<io.flow.internal.v0.models.ImportCompleted>;
|
|
@@ -26625,6 +27498,8 @@ export const labelsPrediction: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
26625
27498
|
export const landedCostItem: PropTypes.Requireable<io.flow.internal.v0.models.LandedCostItem>;
|
|
26626
27499
|
export const landmark: PropTypes.Requireable<io.flow.internal.v0.models.Landmark>;
|
|
26627
27500
|
export const lastFailureSummary: PropTypes.Requireable<io.flow.internal.v0.models.LastFailureSummary>;
|
|
27501
|
+
export const ledgerReport: PropTypes.Requireable<io.flow.internal.v0.models.LedgerReport>;
|
|
27502
|
+
export const ledgerReportUrl: PropTypes.Requireable<io.flow.internal.v0.models.LedgerReportUrl>;
|
|
26628
27503
|
export const levyRateSummary: PropTypes.Requireable<io.flow.internal.v0.models.LevyRateSummary>;
|
|
26629
27504
|
export const levyRateSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LevyRateSummaryUpserted>;
|
|
26630
27505
|
export const liability: PropTypes.Requireable<io.flow.internal.v0.models.Liability>;
|
|
@@ -26694,7 +27569,9 @@ export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
26694
27569
|
export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
|
|
26695
27570
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
26696
27571
|
export const niallItem: PropTypes.Requireable<io.flow.internal.v0.models.NiallItem>;
|
|
27572
|
+
export const niallItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemDeleted>;
|
|
26697
27573
|
export const niallItemForm: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemForm>;
|
|
27574
|
+
export const niallItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemUpserted>;
|
|
26698
27575
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
26699
27576
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
26700
27577
|
export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
|
|
@@ -26762,9 +27639,6 @@ export const organizationAccountUpsertedV2: PropTypes.Requireable<io.flow.intern
|
|
|
26762
27639
|
export const organizationBankAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBankAccountDeleted>;
|
|
26763
27640
|
export const organizationBankAccountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBankAccountUpserted>;
|
|
26764
27641
|
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
27642
|
export const organizationBusinessEntity: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntity>;
|
|
26769
27643
|
export const organizationBusinessEntityDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntityDeleted>;
|
|
26770
27644
|
export const organizationBusinessEntityUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntityUpserted>;
|
|
@@ -26900,6 +27774,12 @@ export const platformFeePercentageTier: PropTypes.Requireable<io.flow.internal.v
|
|
|
26900
27774
|
export const prateekItem: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItem>;
|
|
26901
27775
|
export const prateekItemForm: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItemForm>;
|
|
26902
27776
|
export const prediction: PropTypes.Requireable<io.flow.internal.v0.models.Prediction>;
|
|
27777
|
+
export const preonboardingClassificationRabbitmqEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationRabbitmqEnvelope>;
|
|
27778
|
+
export const preonboardingClassificationRabbitmqMessage: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage>;
|
|
27779
|
+
export const preonboardingClassificationRequest: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationRequest>;
|
|
27780
|
+
export const preonboardingClassificationResult: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationResult>;
|
|
27781
|
+
export const preonboardingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingMerchant>;
|
|
27782
|
+
export const preonboardingSellabilityResult: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingSellabilityResult>;
|
|
26903
27783
|
export const priceInclusivity: PropTypes.Requireable<io.flow.internal.v0.models.PriceInclusivity>;
|
|
26904
27784
|
export const prioritizedCenterReference: PropTypes.Requireable<io.flow.internal.v0.models.PrioritizedCenterReference>;
|
|
26905
27785
|
export const processingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransaction>;
|
|
@@ -26939,6 +27819,7 @@ export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26939
27819
|
export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
|
|
26940
27820
|
export const proofOfPostingOrderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment>;
|
|
26941
27821
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
27822
|
+
export const proofOfPostingSynthetic: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingSynthetic>;
|
|
26942
27823
|
export const proofOfPostingTimeElapsed: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingTimeElapsed>;
|
|
26943
27824
|
export const pspDistribution: PropTypes.Requireable<io.flow.internal.v0.models.PspDistribution>;
|
|
26944
27825
|
export const pspRoutingDistribution: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistribution>;
|
|
@@ -27006,6 +27887,7 @@ export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.f
|
|
|
27006
27887
|
export const remittanceResponsibility: PropTypes.Requireable<io.flow.internal.v0.models.RemittanceResponsibility>;
|
|
27007
27888
|
export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
|
|
27008
27889
|
export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
|
|
27890
|
+
export const reportAmountRange: PropTypes.Requireable<io.flow.internal.v0.models.ReportAmountRange>;
|
|
27009
27891
|
export const reportBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccount>;
|
|
27010
27892
|
export const reportBankAccountCleartext: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccountCleartext>;
|
|
27011
27893
|
export const reportFile: PropTypes.Requireable<io.flow.internal.v0.models.ReportFile>;
|
|
@@ -27109,7 +27991,9 @@ export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.Rev
|
|
|
27109
27991
|
export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
|
|
27110
27992
|
export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
|
|
27111
27993
|
export const rohanItem: PropTypes.Requireable<io.flow.internal.v0.models.RohanItem>;
|
|
27994
|
+
export const rohanItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemDeleted>;
|
|
27112
27995
|
export const rohanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemForm>;
|
|
27996
|
+
export const rohanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemUpserted>;
|
|
27113
27997
|
export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
|
|
27114
27998
|
export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
|
|
27115
27999
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|
|
@@ -27117,7 +28001,9 @@ export const salesPaymentRecord: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
27117
28001
|
export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
|
|
27118
28002
|
export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
|
|
27119
28003
|
export const sarveshItem: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItem>;
|
|
28004
|
+
export const sarveshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemDeleted>;
|
|
27120
28005
|
export const sarveshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemForm>;
|
|
28006
|
+
export const sarveshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemUpserted>;
|
|
27121
28007
|
export const scheduledPayment: PropTypes.Requireable<io.flow.internal.v0.models.ScheduledPayment>;
|
|
27122
28008
|
export const screen: PropTypes.Requireable<io.flow.internal.v0.models.Screen>;
|
|
27123
28009
|
export const screenForm: PropTypes.Requireable<io.flow.internal.v0.models.ScreenForm>;
|
|
@@ -27139,6 +28025,9 @@ export const shipmentCostSummary: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27139
28025
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
27140
28026
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
27141
28027
|
export const shippingPricing: PropTypes.Requireable<io.flow.internal.v0.models.ShippingPricing>;
|
|
28028
|
+
export const shippingRateEstimateAvailableInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal>;
|
|
28029
|
+
export const shippingRateEstimateInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateInternal>;
|
|
28030
|
+
export const shippingRateEstimateRequestInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateRequestInternal>;
|
|
27142
28031
|
export const shopifyCatalogPublication: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCatalogPublication>;
|
|
27143
28032
|
export const shopifyChannelOrganizationToken: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationToken>;
|
|
27144
28033
|
export const shopifyChannelOrganizationTokens: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationTokens>;
|
|
@@ -27175,6 +28064,7 @@ export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.
|
|
|
27175
28064
|
export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
|
|
27176
28065
|
export const shopifyMarketsOrderVersionWithShopId: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId>;
|
|
27177
28066
|
export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
|
|
28067
|
+
export const shopifyMarketsOrganizationOrderMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics>;
|
|
27178
28068
|
export const shopifyMarketsQueuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord>;
|
|
27179
28069
|
export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
|
|
27180
28070
|
export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
|
|
@@ -27326,6 +28216,7 @@ export const taxRemittanceTransactionUpserted: PropTypes.Requireable<io.flow.int
|
|
|
27326
28216
|
export const taxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransaction>;
|
|
27327
28217
|
export const taxTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionDeleted>;
|
|
27328
28218
|
export const taxTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionUpserted>;
|
|
28219
|
+
export const taxTypeTotal: PropTypes.Requireable<io.flow.internal.v0.models.TaxTypeTotal>;
|
|
27329
28220
|
export const taxonomyAlignmentCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyAlignmentCheckResult>;
|
|
27330
28221
|
export const taxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategory>;
|
|
27331
28222
|
export const taxonomyCategoryHs6Ref: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategoryHs6Ref>;
|