@flowio/api-internal-prop-types 9.24.128 → 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 +1033 -95
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +1033 -95
- package/src/api-internal.js +1296 -281
package/src/api-internal.d.ts
CHANGED
|
@@ -853,6 +853,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
853
853
|
readonly 'supported_actions': io.flow.payment.gateway.v0.enums.PaymentActionType[];
|
|
854
854
|
readonly 'payment_capture_option'?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
855
855
|
readonly 'review'?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
|
|
856
|
+
readonly 'client_secret'?: string;
|
|
856
857
|
}
|
|
857
858
|
|
|
858
859
|
interface PaymentRequestCancellationReasonOrderMissing {
|
|
@@ -1095,6 +1096,47 @@ declare namespace io.flow.channel.v0.models {
|
|
|
1095
1096
|
}
|
|
1096
1097
|
}
|
|
1097
1098
|
|
|
1099
|
+
declare namespace io.flow.restrictions.v0.enums {
|
|
1100
|
+
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
1101
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
1102
|
+
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
declare namespace io.flow.restrictions.v0.models {
|
|
1106
|
+
interface CarrierRestrictions {
|
|
1107
|
+
readonly 'carrier': string;
|
|
1108
|
+
readonly 'regions': string[];
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
interface NeedsActionAttributes {
|
|
1112
|
+
readonly 'reason_code': string;
|
|
1113
|
+
readonly 'category_metafield_handles': string[];
|
|
1114
|
+
readonly 'require_msds'?: boolean;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
interface ProductRestrictionResult {
|
|
1118
|
+
readonly 'id': string;
|
|
1119
|
+
readonly 'product_id': string;
|
|
1120
|
+
readonly 'item_numbers': string[];
|
|
1121
|
+
readonly 'prohibited_regions': string[];
|
|
1122
|
+
readonly 'sellability_restricted_regions'?: string[];
|
|
1123
|
+
readonly 'reasons_per_region'?: io.flow.restrictions.v0.models.ReasonsPerRegion[];
|
|
1124
|
+
readonly 'review_status'?: io.flow.restrictions.v0.enums.ReviewStatus;
|
|
1125
|
+
readonly 'rules'?: string[];
|
|
1126
|
+
readonly 'updated_by'?: string;
|
|
1127
|
+
readonly 'product_restriction_id'?: string;
|
|
1128
|
+
readonly 'hs_code'?: string;
|
|
1129
|
+
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
1130
|
+
readonly 'needs_action_attributes'?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
interface ReasonsPerRegion {
|
|
1134
|
+
readonly 'region': string;
|
|
1135
|
+
readonly 'reasons': string[];
|
|
1136
|
+
readonly 'review_status': io.flow.restrictions.v0.enums.RestrictedReviewStatus;
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1098
1140
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
1099
1141
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
1100
1142
|
type DeliveryOptionCostDetailComponentKey = 'ratecard_base_cost' | 'ratecard_ddp_fee' | 'ratecard_fuel_surcharge' | 'ratecard_oversized_shipment_fee' | 'ratecard_rural_shipment_fee' | 'ratecard_emergency_situation_surcharge_fee' | 'ratecard_peak_surcharge_fee' | 'ratecard_duties_taxes_paid_surcharge_fee' | 'center_commercial_invoice_fee' | 'center_inbound_carton_fee' | 'center_outbound_carton_fee';
|
|
@@ -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 {
|
|
@@ -8237,9 +8533,9 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8237
8533
|
readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
8238
8534
|
}
|
|
8239
8535
|
|
|
8240
|
-
interface
|
|
8536
|
+
interface ChannelOrganizationDomains {
|
|
8241
8537
|
readonly 'internal': string;
|
|
8242
|
-
readonly '
|
|
8538
|
+
readonly 'external': string;
|
|
8243
8539
|
}
|
|
8244
8540
|
|
|
8245
8541
|
interface ChannelOrganizationInstallation {
|
|
@@ -8253,7 +8549,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8253
8549
|
}
|
|
8254
8550
|
|
|
8255
8551
|
interface ChannelOrganizationMetadata {
|
|
8256
|
-
readonly 'domain': io.flow.channel.internal.v0.models.
|
|
8552
|
+
readonly 'domain': io.flow.channel.internal.v0.models.ChannelOrganizationDomains;
|
|
8257
8553
|
readonly 'token': string;
|
|
8258
8554
|
}
|
|
8259
8555
|
|
|
@@ -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;
|
|
@@ -12754,6 +13211,25 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12754
13211
|
interface TransactionMetadataTaxDuty {
|
|
12755
13212
|
readonly 'discriminator': 'transaction_tax_duty';
|
|
12756
13213
|
readonly 'reason_code': io.flow.billing.v0.enums.TaxDutyTransactionReasonCode;
|
|
13214
|
+
readonly 'local_currency'?: string;
|
|
13215
|
+
readonly 'actual'?: io.flow.billing.v0.models.TransactionMetadataTaxDutyActual;
|
|
13216
|
+
readonly 'estimate'?: io.flow.billing.v0.models.TransactionMetadataTaxDutyEstimate;
|
|
13217
|
+
readonly 'delta'?: io.flow.billing.v0.models.TransactionMetadataTaxDutyDelta;
|
|
13218
|
+
}
|
|
13219
|
+
|
|
13220
|
+
interface TransactionMetadataTaxDutyActual {
|
|
13221
|
+
readonly 'base'?: number;
|
|
13222
|
+
readonly 'local'?: number;
|
|
13223
|
+
}
|
|
13224
|
+
|
|
13225
|
+
interface TransactionMetadataTaxDutyDelta {
|
|
13226
|
+
readonly 'base'?: number;
|
|
13227
|
+
readonly 'local'?: number;
|
|
13228
|
+
}
|
|
13229
|
+
|
|
13230
|
+
interface TransactionMetadataTaxDutyEstimate {
|
|
13231
|
+
readonly 'base'?: number;
|
|
13232
|
+
readonly 'local'?: number;
|
|
12757
13233
|
}
|
|
12758
13234
|
|
|
12759
13235
|
interface TransactionMetadataTrueup {
|
|
@@ -13233,6 +13709,9 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
13233
13709
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
13234
13710
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
13235
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';
|
|
13236
13715
|
}
|
|
13237
13716
|
|
|
13238
13717
|
declare namespace io.flow.sellability.v0.models {
|
|
@@ -13241,27 +13720,80 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13241
13720
|
readonly 'shop_id': string;
|
|
13242
13721
|
readonly 'product_id'?: string;
|
|
13243
13722
|
readonly 'request_id': string;
|
|
13244
|
-
readonly 'hs6_code': string;
|
|
13245
|
-
readonly 'restricted_regions': io.flow.sellability.v0.models.
|
|
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
|
+
}
|
|
13773
|
+
|
|
13774
|
+
interface SellabilityScreening {
|
|
13775
|
+
readonly 'discriminator': 'sellability_screening';
|
|
13776
|
+
readonly 'sellability_result'?: io.flow.sellability.v0.models.ProductSellabilityResult;
|
|
13777
|
+
readonly 'request_id': string;
|
|
13778
|
+
readonly 'status': io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
13779
|
+
readonly 'error_code'?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
13780
|
+
readonly 'error_message'?: string;
|
|
13246
13781
|
}
|
|
13247
13782
|
|
|
13248
|
-
interface
|
|
13249
|
-
readonly '
|
|
13250
|
-
readonly '
|
|
13783
|
+
interface SellabilityScreeningForm {
|
|
13784
|
+
readonly 'discriminator': 'sellability_screening_form';
|
|
13785
|
+
readonly 'merchant_id': string;
|
|
13786
|
+
readonly 'product_id': string;
|
|
13251
13787
|
readonly 'name': string;
|
|
13252
13788
|
readonly 'price': io.flow.common.v0.models.Money;
|
|
13253
13789
|
readonly 'description': string;
|
|
13254
13790
|
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13255
|
-
readonly '
|
|
13791
|
+
readonly 'mode': io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
13792
|
+
readonly 'catalog_size'?: number;
|
|
13793
|
+
readonly 'relative_ranking'?: number;
|
|
13256
13794
|
readonly 'dry_run'?: boolean;
|
|
13257
13795
|
}
|
|
13258
13796
|
|
|
13259
|
-
interface SellabilityError {
|
|
13260
|
-
readonly 'discriminator': 'sellability_error';
|
|
13261
|
-
readonly 'code': io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
13262
|
-
readonly 'messages': string[];
|
|
13263
|
-
}
|
|
13264
|
-
|
|
13265
13797
|
interface SellablilityRegionResult {
|
|
13266
13798
|
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13267
13799
|
readonly 'regions': string[];
|
|
@@ -13269,7 +13801,8 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13269
13801
|
}
|
|
13270
13802
|
|
|
13271
13803
|
declare namespace io.flow.sellability.v0.unions {
|
|
13272
|
-
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);
|
|
13273
13806
|
}
|
|
13274
13807
|
|
|
13275
13808
|
declare namespace io.flow.currency.v0.models {
|
|
@@ -13407,6 +13940,22 @@ declare namespace io.flow.organization.v0.models {
|
|
|
13407
13940
|
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
13408
13941
|
}
|
|
13409
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
|
+
|
|
13410
13959
|
interface OrganizationVersion {
|
|
13411
13960
|
readonly 'id': string;
|
|
13412
13961
|
readonly 'timestamp': string;
|
|
@@ -13423,6 +13972,18 @@ declare namespace io.flow.organization.v0.models {
|
|
|
13423
13972
|
interface RegionSettingForm {
|
|
13424
13973
|
readonly 'status': io.flow.common.v0.enums.AvailabilityStatus;
|
|
13425
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
|
+
}
|
|
13426
13987
|
}
|
|
13427
13988
|
|
|
13428
13989
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
@@ -13474,6 +14035,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13474
14035
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
13475
14036
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
13476
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';
|
|
13477
14040
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
13478
14041
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
13479
14042
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
@@ -13481,7 +14044,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13481
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';
|
|
13482
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';
|
|
13483
14046
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13484
|
-
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';
|
|
13485
14048
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
13486
14049
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13487
14050
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -13495,7 +14058,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13495
14058
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
13496
14059
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
13497
14060
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
13498
|
-
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';
|
|
13499
14062
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
13500
14063
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
13501
14064
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
@@ -13503,7 +14066,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13503
14066
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing' | 'order';
|
|
13504
14067
|
type ChapterCheckStatus = 'apparel_like' | 'similar' | 'does_not_match';
|
|
13505
14068
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
13506
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge' | 'peak_surcharge';
|
|
14069
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge' | 'peak_surcharge' | 'fuel_surcharge' | 'delivery_area_surcharge';
|
|
13507
14070
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
13508
14071
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
13509
14072
|
type CheckoutAssetType = 'stylesheet' | 'javascript';
|
|
@@ -13512,7 +14075,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13512
14075
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
13513
14076
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
13514
14077
|
type ClassificationErrorCode = 'generic_error';
|
|
13515
|
-
type
|
|
14078
|
+
type ClassificationFailureReason = 'low_confidence' | 'timeout';
|
|
14079
|
+
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
13516
14080
|
type ClassificationScope = 'Item' | 'Product';
|
|
13517
14081
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
13518
14082
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
@@ -13549,7 +14113,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13549
14113
|
type EmptyAttribute = 'irrelevant';
|
|
13550
14114
|
type ErpFileType = 'vendor';
|
|
13551
14115
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
13552
|
-
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';
|
|
13553
14117
|
type ExperienceImportType = 'experience_with_settings';
|
|
13554
14118
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13555
14119
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13562,12 +14126,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13562
14126
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
13563
14127
|
type FraudProviderStatus = 'active' | 'archived';
|
|
13564
14128
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
14129
|
+
type GabrielItemType = 'physical' | 'digital';
|
|
13565
14130
|
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
13566
14131
|
type GeRevenueShareTransactionType = 'adjustment' | 'reversal' | 'revenue_share';
|
|
13567
14132
|
type GoogleAnalyticsPlugin = 'ec';
|
|
13568
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';
|
|
13569
14134
|
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
13570
14135
|
type HoseinItemType = 'physical' | 'digital';
|
|
14136
|
+
type Hs6CodeSource = 'sellability' | 'classification' | 'human';
|
|
13571
14137
|
type HttpMethod = 'get' | 'post';
|
|
13572
14138
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
13573
14139
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -13586,13 +14152,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13586
14152
|
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
13587
14153
|
type LabelRequestResultState = 'success' | 'failure';
|
|
13588
14154
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
14155
|
+
type LedgerReportType = 'periodic_mor_jurisdiction_report';
|
|
14156
|
+
type LedgerReportUrlType = 'sharepoint' | 's3';
|
|
13589
14157
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
13590
14158
|
type LogisticsCapability = 'logistics_address_correction';
|
|
13591
14159
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
13592
14160
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13593
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';
|
|
13594
14162
|
type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
13595
|
-
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';
|
|
13596
14164
|
type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
|
|
13597
14165
|
type MixedBagWeight = '0' | '1' | '2';
|
|
13598
14166
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
@@ -13601,7 +14169,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13601
14169
|
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
13602
14170
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
13603
14171
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
13604
|
-
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';
|
|
13605
14173
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13606
14174
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13607
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';
|
|
@@ -13622,7 +14190,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13622
14190
|
type OrganizationRestrictionReviewType = 'all_pending' | 'pending_verification';
|
|
13623
14191
|
type OrganizationRestrictionRiskLevel = '5' | '15';
|
|
13624
14192
|
type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
|
|
13625
|
-
type OrganizationSource = '
|
|
14193
|
+
type OrganizationSource = 'smb' | 'enterprise';
|
|
13626
14194
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
13627
14195
|
type Owner = 'flow' | 'organization';
|
|
13628
14196
|
type PaymentShortUrlDiscriminator = 'adyen_3ds2';
|
|
@@ -13632,6 +14200,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13632
14200
|
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
13633
14201
|
type PrateekItemType = 'physical' | 'digital';
|
|
13634
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';
|
|
13635
14207
|
type PriceSelector = 'minimum' | 'maximum';
|
|
13636
14208
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
13637
14209
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
@@ -13646,7 +14218,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13646
14218
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
13647
14219
|
type ReportPaymentType = 'credit' | 'debit';
|
|
13648
14220
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
13649
|
-
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';
|
|
13650
14222
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
13651
14223
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
13652
14224
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -13656,8 +14228,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13656
14228
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
13657
14229
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
13658
14230
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
13659
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
|
|
13660
|
-
type RestrictionOrganizationSource = '
|
|
14231
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa';
|
|
14232
|
+
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
13661
14233
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
13662
14234
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
13663
14235
|
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
@@ -13688,7 +14260,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13688
14260
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
13689
14261
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
13690
14262
|
type TariffEligibilityType = 'rex';
|
|
13691
|
-
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';
|
|
13692
14264
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
13693
14265
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
13694
14266
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
@@ -14402,6 +14974,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14402
14974
|
readonly 'added_on': string;
|
|
14403
14975
|
}
|
|
14404
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
|
+
|
|
14405
14984
|
interface AldoItemForm {
|
|
14406
14985
|
readonly 'number': string;
|
|
14407
14986
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -14410,6 +14989,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14410
14989
|
readonly 'added_on': string;
|
|
14411
14990
|
}
|
|
14412
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
|
+
|
|
14413
14999
|
interface AllItemsExport {
|
|
14414
15000
|
readonly 'discriminator': 'all_items_export';
|
|
14415
15001
|
readonly 'event_id': string;
|
|
@@ -14441,6 +15027,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14441
15027
|
readonly 'added_on': string;
|
|
14442
15028
|
}
|
|
14443
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
|
+
|
|
14444
15037
|
interface AnirbanItemForm {
|
|
14445
15038
|
readonly 'number': string;
|
|
14446
15039
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -14449,6 +15042,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14449
15042
|
readonly 'added_on': string;
|
|
14450
15043
|
}
|
|
14451
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
|
+
|
|
14452
15052
|
interface AnshItem {
|
|
14453
15053
|
readonly 'id': string;
|
|
14454
15054
|
readonly 'number': string;
|
|
@@ -14458,6 +15058,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14458
15058
|
readonly 'added_on': string;
|
|
14459
15059
|
}
|
|
14460
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
|
+
|
|
14461
15068
|
interface AnshItemForm {
|
|
14462
15069
|
readonly 'number': string;
|
|
14463
15070
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -14466,6 +15073,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14466
15073
|
readonly 'added_on': string;
|
|
14467
15074
|
}
|
|
14468
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
|
+
|
|
14469
15083
|
interface ApplePayAuthorizationPayload {
|
|
14470
15084
|
readonly 'discriminator': 'apple_pay_authorization_payload';
|
|
14471
15085
|
readonly 'apple_pay_token': string;
|
|
@@ -14491,6 +15105,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14491
15105
|
interface AttributeRule {
|
|
14492
15106
|
readonly 'restriction_attribute_rules': io.flow.internal.v0.models.RestrictionAttributeRule[];
|
|
14493
15107
|
readonly 'default_result'?: io.flow.internal.v0.enums.RestrictionAttributeResult;
|
|
15108
|
+
readonly 'require_msds'?: boolean;
|
|
14494
15109
|
}
|
|
14495
15110
|
|
|
14496
15111
|
interface AuthenticationForm {
|
|
@@ -14568,6 +15183,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14568
15183
|
readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
14569
15184
|
}
|
|
14570
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
|
+
|
|
14571
15223
|
interface BankAccount {
|
|
14572
15224
|
readonly 'status': io.flow.internal.v0.enums.BankAccountStatus;
|
|
14573
15225
|
readonly 'hold_created_at'?: string;
|
|
@@ -14874,6 +15526,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14874
15526
|
readonly 'non_l4l_tax_duty_fx': io.flow.common.v0.models.Price;
|
|
14875
15527
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
14876
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;
|
|
14877
15531
|
}
|
|
14878
15532
|
|
|
14879
15533
|
interface BillingStatementUpserted {
|
|
@@ -14991,6 +15645,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14991
15645
|
readonly 'next_action_from': io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
14992
15646
|
}
|
|
14993
15647
|
|
|
15648
|
+
interface Cafe24MarketsWebhook {
|
|
15649
|
+
readonly 'placeholder'?: any/*json*/;
|
|
15650
|
+
}
|
|
15651
|
+
|
|
14994
15652
|
interface CalculatedTaxAmount {
|
|
14995
15653
|
readonly 'discriminator': 'calculated_tax_amount';
|
|
14996
15654
|
readonly 'amount': number;
|
|
@@ -15591,6 +16249,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15591
16249
|
readonly 'order_updated_at'?: string;
|
|
15592
16250
|
readonly 'order_edit_summary'?: io.flow.internal.v0.models.OrderEditSummary;
|
|
15593
16251
|
readonly 'payment_source'?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
16252
|
+
readonly 'external_order_summary'?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
15594
16253
|
}
|
|
15595
16254
|
|
|
15596
16255
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -15672,9 +16331,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15672
16331
|
readonly 'channel_order_summary': io.flow.internal.v0.models.ChannelOrderSummary;
|
|
15673
16332
|
}
|
|
15674
16333
|
|
|
15675
|
-
interface
|
|
16334
|
+
interface ChannelOrganizationDomains {
|
|
15676
16335
|
readonly 'internal': string;
|
|
15677
|
-
readonly '
|
|
16336
|
+
readonly 'external': string;
|
|
15678
16337
|
}
|
|
15679
16338
|
|
|
15680
16339
|
interface ChannelOrganizationIdentifier {
|
|
@@ -15710,7 +16369,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15710
16369
|
}
|
|
15711
16370
|
|
|
15712
16371
|
interface ChannelOrganizationMetadata {
|
|
15713
|
-
readonly 'domain': io.flow.internal.v0.models.
|
|
16372
|
+
readonly 'domain': io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
15714
16373
|
readonly 'token': string;
|
|
15715
16374
|
}
|
|
15716
16375
|
|
|
@@ -15772,6 +16431,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15772
16431
|
readonly 'timestamp'?: string;
|
|
15773
16432
|
}
|
|
15774
16433
|
|
|
16434
|
+
interface ChannelShop {
|
|
16435
|
+
readonly 'id': string;
|
|
16436
|
+
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
16437
|
+
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
16438
|
+
readonly 'external_id': string;
|
|
16439
|
+
readonly 'name': string;
|
|
16440
|
+
readonly 'domains': io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
16441
|
+
}
|
|
16442
|
+
|
|
16443
|
+
interface ChannelShopForm {
|
|
16444
|
+
readonly 'channel_id': string;
|
|
16445
|
+
readonly 'external_id': string;
|
|
16446
|
+
readonly 'name': string;
|
|
16447
|
+
readonly 'domains': io.flow.internal.v0.models.ChannelOrganizationDomains;
|
|
16448
|
+
readonly 'tokens': io.flow.internal.v0.models.Tokens;
|
|
16449
|
+
}
|
|
16450
|
+
|
|
15775
16451
|
interface ChannelTransaction {
|
|
15776
16452
|
readonly 'discriminator': 'channel_transaction';
|
|
15777
16453
|
readonly 'transaction': io.flow.internal.v0.models.TransactionReference;
|
|
@@ -17464,10 +18140,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17464
18140
|
readonly 'region'?: string;
|
|
17465
18141
|
}
|
|
17466
18142
|
|
|
17467
|
-
interface FeatureIdReference {
|
|
17468
|
-
readonly 'id': string;
|
|
17469
|
-
}
|
|
17470
|
-
|
|
17471
18143
|
interface FeatureReference {
|
|
17472
18144
|
readonly 'id': string;
|
|
17473
18145
|
readonly 'key': string;
|
|
@@ -18166,6 +18838,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18166
18838
|
readonly 'fulfilled_at': string;
|
|
18167
18839
|
readonly 'sequence_number': number;
|
|
18168
18840
|
readonly 'completes_order': boolean;
|
|
18841
|
+
readonly 'trigger'?: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
18169
18842
|
}
|
|
18170
18843
|
|
|
18171
18844
|
interface FulfillmentStatusUpserted {
|
|
@@ -18248,6 +18921,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18248
18921
|
readonly 'transaction_created_at': string;
|
|
18249
18922
|
}
|
|
18250
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
|
+
|
|
18251
18955
|
interface GeRevenueShareTransaction {
|
|
18252
18956
|
readonly 'discriminator': 'ge_revenue_share_transaction';
|
|
18253
18957
|
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -18447,6 +19151,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18447
19151
|
readonly 'added_on': string;
|
|
18448
19152
|
}
|
|
18449
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
|
+
|
|
18450
19161
|
interface HoseinItemForm {
|
|
18451
19162
|
readonly 'number': string;
|
|
18452
19163
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -18455,6 +19166,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18455
19166
|
readonly 'added_on': string;
|
|
18456
19167
|
}
|
|
18457
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
|
+
|
|
18458
19176
|
interface Hs6 {
|
|
18459
19177
|
readonly 'code': string;
|
|
18460
19178
|
readonly 'description': string;
|
|
@@ -18679,8 +19397,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18679
19397
|
readonly 'customs_value': number;
|
|
18680
19398
|
readonly 'total_value': number;
|
|
18681
19399
|
readonly 'usa_exporter_identifier_number_if_value_over_threshold'?: string;
|
|
18682
|
-
readonly 'feature_israel_notes_import_duty_and_taxes_due': boolean;
|
|
18683
|
-
readonly 'feature_new_export_declaration': boolean;
|
|
18684
19400
|
}
|
|
18685
19401
|
|
|
18686
19402
|
interface InvoiceDataLineItem {
|
|
@@ -18691,7 +19407,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18691
19407
|
readonly 'tariff_code': string;
|
|
18692
19408
|
readonly 'country_of_origin': string;
|
|
18693
19409
|
readonly 'display_country_of_origin': string;
|
|
18694
|
-
readonly '
|
|
19410
|
+
readonly 'remitter': io.flow.internal.v0.enums.TaxParty;
|
|
18695
19411
|
readonly 'gst_paid_text': string;
|
|
18696
19412
|
readonly 'unit_price': number;
|
|
18697
19413
|
readonly 'vat_price': number;
|
|
@@ -19172,6 +19888,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19172
19888
|
readonly 'service_id'?: string;
|
|
19173
19889
|
readonly 'errors': string[];
|
|
19174
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;
|
|
19175
19893
|
}
|
|
19176
19894
|
|
|
19177
19895
|
interface LabelRequestErrorDeleted {
|
|
@@ -19337,6 +20055,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19337
20055
|
readonly 'errors': string[];
|
|
19338
20056
|
}
|
|
19339
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
|
+
|
|
19340
20073
|
interface LevyRateSummary {
|
|
19341
20074
|
readonly 'id': string;
|
|
19342
20075
|
readonly 'number': string;
|
|
@@ -19881,6 +20614,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19881
20614
|
readonly 'added_on': string;
|
|
19882
20615
|
}
|
|
19883
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
|
+
|
|
19884
20624
|
interface NiallItemForm {
|
|
19885
20625
|
readonly 'number': string;
|
|
19886
20626
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -19889,6 +20629,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19889
20629
|
readonly 'added_on': string;
|
|
19890
20630
|
}
|
|
19891
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
|
+
|
|
19892
20639
|
interface NoCalculatedTaxAmount {
|
|
19893
20640
|
readonly 'discriminator': 'no_calculated_tax_amount';
|
|
19894
20641
|
readonly 'amount': number;
|
|
@@ -19970,6 +20717,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19970
20717
|
readonly 'health_score'?: number;
|
|
19971
20718
|
readonly 'audit_result'?: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
19972
20719
|
readonly 'blocked_since'?: string;
|
|
20720
|
+
readonly 'onboarding_segment'?: string;
|
|
19973
20721
|
}
|
|
19974
20722
|
|
|
19975
20723
|
interface OnboardingStateForm {
|
|
@@ -20415,27 +21163,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20415
21163
|
readonly 'attachments': io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
20416
21164
|
}
|
|
20417
21165
|
|
|
20418
|
-
interface OrganizationBooleanValue {
|
|
20419
|
-
readonly 'id': string;
|
|
20420
|
-
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
20421
|
-
readonly 'feature': io.flow.internal.v0.models.FeatureIdReference;
|
|
20422
|
-
readonly 'value': boolean;
|
|
20423
|
-
}
|
|
20424
|
-
|
|
20425
|
-
interface OrganizationBooleanValueDeleted {
|
|
20426
|
-
readonly 'discriminator': 'organization_boolean_value_deleted';
|
|
20427
|
-
readonly 'event_id': string;
|
|
20428
|
-
readonly 'timestamp': string;
|
|
20429
|
-
readonly 'value': io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
20430
|
-
}
|
|
20431
|
-
|
|
20432
|
-
interface OrganizationBooleanValueUpserted {
|
|
20433
|
-
readonly 'discriminator': 'organization_boolean_value_upserted';
|
|
20434
|
-
readonly 'event_id': string;
|
|
20435
|
-
readonly 'timestamp': string;
|
|
20436
|
-
readonly 'value': io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
20437
|
-
}
|
|
20438
|
-
|
|
20439
21166
|
interface OrganizationBusinessEntity {
|
|
20440
21167
|
readonly 'id': string;
|
|
20441
21168
|
readonly 'name': string;
|
|
@@ -21035,6 +21762,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21035
21762
|
interface PaymentIs {
|
|
21036
21763
|
readonly 'lvg': boolean;
|
|
21037
21764
|
readonly 'manual': boolean;
|
|
21765
|
+
readonly 'managed_pricing'?: boolean;
|
|
21038
21766
|
}
|
|
21039
21767
|
|
|
21040
21768
|
interface PaymentMethodDetail {
|
|
@@ -21494,6 +22222,76 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21494
22222
|
readonly 'item': string;
|
|
21495
22223
|
}
|
|
21496
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
|
+
|
|
21497
22295
|
interface PriceInclusivity {
|
|
21498
22296
|
readonly 'tax'?: boolean;
|
|
21499
22297
|
readonly 'duty'?: boolean;
|
|
@@ -21746,7 +22544,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21746
22544
|
readonly 'product_id'?: string;
|
|
21747
22545
|
readonly 'request_id': string;
|
|
21748
22546
|
readonly 'hs6_code': string;
|
|
21749
|
-
readonly 'restricted_regions': io.flow.sellability.v0.models.
|
|
22547
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
21750
22548
|
readonly 'rule_ids': string[];
|
|
21751
22549
|
}
|
|
21752
22550
|
|
|
@@ -21759,7 +22557,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21759
22557
|
}
|
|
21760
22558
|
|
|
21761
22559
|
interface ProductSellabilityInternalResult {
|
|
21762
|
-
readonly 'restricted_regions': io.flow.sellability.v0.models.
|
|
22560
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
21763
22561
|
readonly 'rule_ids': string[];
|
|
21764
22562
|
}
|
|
21765
22563
|
|
|
@@ -21769,7 +22567,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21769
22567
|
readonly 'request_id': string;
|
|
21770
22568
|
readonly 'hs6_code': string;
|
|
21771
22569
|
readonly 'restricted_regions'?: string[];
|
|
21772
|
-
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.
|
|
22570
|
+
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
21773
22571
|
readonly 'rule_ids'?: string[];
|
|
21774
22572
|
readonly 'taxonomy_category'?: string;
|
|
21775
22573
|
}
|
|
@@ -21805,6 +22603,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21805
22603
|
readonly 'shipping_notification_id': string;
|
|
21806
22604
|
}
|
|
21807
22605
|
|
|
22606
|
+
interface ProofOfPostingSynthetic {
|
|
22607
|
+
readonly 'discriminator': 'synthetic';
|
|
22608
|
+
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
22609
|
+
readonly 'created_at': string;
|
|
22610
|
+
}
|
|
22611
|
+
|
|
21808
22612
|
interface ProofOfPostingTimeElapsed {
|
|
21809
22613
|
readonly 'discriminator': 'time_elapsed';
|
|
21810
22614
|
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -22284,6 +23088,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22284
23088
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
22285
23089
|
}
|
|
22286
23090
|
|
|
23091
|
+
interface ReportAmountRange {
|
|
23092
|
+
readonly 'min'?: number;
|
|
23093
|
+
readonly 'max'?: number;
|
|
23094
|
+
}
|
|
23095
|
+
|
|
22287
23096
|
interface ReportBankAccount {
|
|
22288
23097
|
readonly 'id'?: string;
|
|
22289
23098
|
readonly 'last4'?: string;
|
|
@@ -22308,6 +23117,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22308
23117
|
interface ReportFilter {
|
|
22309
23118
|
readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
22310
23119
|
readonly 'order_payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
23120
|
+
readonly 'amount_range'?: io.flow.internal.v0.models.ReportAmountRange;
|
|
22311
23121
|
}
|
|
22312
23122
|
|
|
22313
23123
|
interface ReportForm {
|
|
@@ -22746,7 +23556,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22746
23556
|
interface RestrictionOrganization {
|
|
22747
23557
|
readonly 'id': string;
|
|
22748
23558
|
readonly 'name': string;
|
|
22749
|
-
readonly 'environment': io.flow.
|
|
23559
|
+
readonly 'environment': io.flow.restrictions.v0.enums.RestrictionEnvironment;
|
|
22750
23560
|
readonly 'url'?: string;
|
|
22751
23561
|
readonly 'approval_status'?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
22752
23562
|
readonly 'screening_status'?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
@@ -22797,7 +23607,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22797
23607
|
interface RestrictionOrganizationSummary {
|
|
22798
23608
|
readonly 'id': string;
|
|
22799
23609
|
readonly 'name': string;
|
|
22800
|
-
readonly 'environment': io.flow.
|
|
23610
|
+
readonly 'environment': io.flow.restrictions.v0.enums.RestrictionEnvironment;
|
|
22801
23611
|
readonly 'source': io.flow.internal.v0.enums.OrganizationSource;
|
|
22802
23612
|
}
|
|
22803
23613
|
|
|
@@ -22865,7 +23675,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22865
23675
|
readonly 'attribute_names'?: string[];
|
|
22866
23676
|
readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
|
|
22867
23677
|
readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
22868
|
-
readonly 'activation_status'
|
|
23678
|
+
readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
22869
23679
|
}
|
|
22870
23680
|
|
|
22871
23681
|
interface RestrictionRuleDecisionForm {
|
|
@@ -22926,7 +23736,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22926
23736
|
readonly 'attribute_names'?: string[];
|
|
22927
23737
|
readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
|
|
22928
23738
|
readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
22929
|
-
readonly 'activation_status'
|
|
23739
|
+
readonly 'activation_status': io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
22930
23740
|
}
|
|
22931
23741
|
|
|
22932
23742
|
interface RestrictionRuleLaneExemption {
|
|
@@ -22990,23 +23800,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22990
23800
|
readonly 'oldest_pv_product_date_transacting': string;
|
|
22991
23801
|
readonly 'oldest_pc_product_date_setup_complete': string;
|
|
22992
23802
|
readonly 'oldest_pc_product_date_transacting': string;
|
|
22993
|
-
readonly 'num_orgs_setup_complete_prs': number;
|
|
22994
|
-
readonly 'num_products_setup_complete_prs': number;
|
|
22995
|
-
readonly 'num_orgs_transacting_prs': number;
|
|
22996
|
-
readonly 'num_products_transacting_prs': number;
|
|
22997
|
-
readonly 'oldest_pr_product_date_setup_complete': string;
|
|
22998
|
-
readonly 'oldest_pr_date_transacting': string;
|
|
22999
23803
|
readonly 'percent_products_reviewed_transacting'?: number;
|
|
23000
23804
|
readonly 'num_pv_inflow_net_new': number;
|
|
23001
23805
|
readonly 'num_pv_outflow_human_decisions': number;
|
|
23002
23806
|
readonly 'num_pv_outflow_auto_review_decisions': number;
|
|
23003
23807
|
readonly 'num_pv_outflow_side_effect_decisions': number;
|
|
23004
|
-
readonly 'num_pr_inflow_net_new': number;
|
|
23005
|
-
readonly 'num_pr_outflow_human_decisions': number;
|
|
23006
|
-
readonly 'num_pr_outflow_auto_review_decisions': number;
|
|
23007
|
-
readonly 'num_pr_outflow_side_effect_decisions': number;
|
|
23008
23808
|
readonly 'num_pending_decisions_transacting': number;
|
|
23009
|
-
readonly 'oldest_insufficient_details_pv_onboarding'?: string;
|
|
23010
23809
|
readonly 'oldest_insufficient_details_pv_active'?: string;
|
|
23011
23810
|
readonly 'oldest_insufficient_details_pv_transacting'?: string;
|
|
23012
23811
|
readonly 'num_products_with_fs_result'?: number;
|
|
@@ -23159,6 +23958,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23159
23958
|
readonly 'added_on': string;
|
|
23160
23959
|
}
|
|
23161
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
|
+
|
|
23162
23968
|
interface RohanItemForm {
|
|
23163
23969
|
readonly 'number': string;
|
|
23164
23970
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -23167,6 +23973,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23167
23973
|
readonly 'added_on': string;
|
|
23168
23974
|
}
|
|
23169
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
|
+
|
|
23170
23983
|
interface RoutingAccount {
|
|
23171
23984
|
readonly 'discriminator': 'routing_account';
|
|
23172
23985
|
readonly 'processor': io.flow.internal.v0.enums.Processor;
|
|
@@ -23193,6 +24006,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23193
24006
|
readonly 'order_total': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23194
24007
|
readonly 'shopper_breakdown': io.flow.internal.v0.models.ShopperBreakdown;
|
|
23195
24008
|
readonly 'payment': io.flow.internal.v0.models.ReportingPayment;
|
|
24009
|
+
readonly 'tax'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24010
|
+
readonly 'duty'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23196
24011
|
readonly 'fees': io.flow.internal.v0.models.ReportingFees;
|
|
23197
24012
|
readonly 'conversion_rate': io.flow.internal.v0.models.ReportingConversionRates;
|
|
23198
24013
|
readonly 'payment_is': io.flow.internal.v0.models.PaymentIs;
|
|
@@ -23218,6 +24033,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23218
24033
|
readonly 'added_on': string;
|
|
23219
24034
|
}
|
|
23220
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
|
+
|
|
23221
24043
|
interface SarveshItemForm {
|
|
23222
24044
|
readonly 'number': string;
|
|
23223
24045
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -23226,6 +24048,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23226
24048
|
readonly 'added_on': string;
|
|
23227
24049
|
}
|
|
23228
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
|
+
|
|
23229
24058
|
interface ScheduledPayment {
|
|
23230
24059
|
readonly 'payment': io.flow.internal.v0.models.ReportPayment;
|
|
23231
24060
|
readonly 'bank_account': io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -23325,9 +24154,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23325
24154
|
readonly 'status': io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
23326
24155
|
readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
23327
24156
|
readonly 'current_rule_ids'?: string[];
|
|
23328
|
-
readonly 'current_restricted_regions'?: io.flow.sellability.v0.models.
|
|
24157
|
+
readonly 'current_restricted_regions'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
23329
24158
|
readonly 'merchant_rule_ids'?: string[];
|
|
23330
|
-
readonly 'merchant_restricted_regions'?: io.flow.sellability.v0.models.
|
|
24159
|
+
readonly 'merchant_restricted_regions'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
23331
24160
|
readonly 'current_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
23332
24161
|
readonly 'merchant_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
23333
24162
|
}
|
|
@@ -23379,6 +24208,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23379
24208
|
readonly 'customer_price': number;
|
|
23380
24209
|
}
|
|
23381
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
|
+
|
|
23382
24256
|
interface ShopifyCatalogPublication {
|
|
23383
24257
|
readonly 'owner': io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
23384
24258
|
}
|
|
@@ -23625,6 +24499,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23625
24499
|
readonly 'shopify': io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
23626
24500
|
readonly 'internal': io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
23627
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;
|
|
23628
24510
|
}
|
|
23629
24511
|
|
|
23630
24512
|
interface ShopifyMarketsQueuedRecord {
|
|
@@ -24101,6 +24983,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24101
24983
|
|
|
24102
24984
|
interface ShopperBreakdown {
|
|
24103
24985
|
readonly 'product': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24986
|
+
readonly 'product_purchase_price'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24104
24987
|
readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24105
24988
|
readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24106
24989
|
readonly 'discount': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -24838,6 +25721,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24838
25721
|
readonly 'tax_transaction': io.flow.internal.v0.models.TaxTransaction;
|
|
24839
25722
|
}
|
|
24840
25723
|
|
|
25724
|
+
interface TaxTypeTotal {
|
|
25725
|
+
readonly 'value': io.flow.common.v0.models.Money;
|
|
25726
|
+
}
|
|
25727
|
+
|
|
24841
25728
|
interface TaxonomyAlignmentCheckResult {
|
|
24842
25729
|
readonly 'status': io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
24843
25730
|
readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
@@ -24968,6 +25855,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24968
25855
|
readonly 'timezone': string;
|
|
24969
25856
|
}
|
|
24970
25857
|
|
|
25858
|
+
interface Tokens {
|
|
25859
|
+
readonly 'webhook_signature_verification': string;
|
|
25860
|
+
readonly 'api': string;
|
|
25861
|
+
}
|
|
25862
|
+
|
|
24971
25863
|
interface TrackingAssuranceAnalysis {
|
|
24972
25864
|
readonly 'id': string;
|
|
24973
25865
|
readonly 'job_id': string;
|
|
@@ -25574,7 +26466,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25574
26466
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25575
26467
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25576
26468
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25577
|
-
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);
|
|
25578
26470
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25579
26471
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25580
26472
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -25607,7 +26499,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25607
26499
|
type ProcessorMerchantForm = (io.flow.internal.v0.models.StripeMerchantForm);
|
|
25608
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);
|
|
25609
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);
|
|
25610
|
-
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);
|
|
25611
26503
|
type RestrictionAttributeRuleCondition = (io.flow.internal.v0.models.RestrictionAttributeConditionSingle | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple);
|
|
25612
26504
|
type ReturnTrigger = (io.flow.internal.v0.models.ReturnTriggerRefund | io.flow.internal.v0.models.ReturnTriggerReversal);
|
|
25613
26505
|
type RoutingEntity = (io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant);
|
|
@@ -25637,6 +26529,8 @@ export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.
|
|
|
25637
26529
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
25638
26530
|
export const applicablePreferentialRate: PropTypes.Requireable<io.flow.internal.v0.enums.ApplicablePreferentialRate>;
|
|
25639
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>;
|
|
25640
26534
|
export const bankAccountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BankAccountStatus>;
|
|
25641
26535
|
export const bankPaymentPromiseCompletedMethod: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod>;
|
|
25642
26536
|
export const bankPaymentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentStatusCode>;
|
|
@@ -25675,6 +26569,7 @@ export const checkoutShippingMethodPromptBehavior: PropTypes.Requireable<io.flow
|
|
|
25675
26569
|
export const checkoutUrlType: PropTypes.Requireable<io.flow.internal.v0.enums.CheckoutUrlType>;
|
|
25676
26570
|
export const classificationDecision: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationDecision>;
|
|
25677
26571
|
export const classificationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationErrorCode>;
|
|
26572
|
+
export const classificationFailureReason: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationFailureReason>;
|
|
25678
26573
|
export const classificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationPlatform>;
|
|
25679
26574
|
export const classificationScope: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationScope>;
|
|
25680
26575
|
export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationType>;
|
|
@@ -25725,12 +26620,14 @@ export const fileType: PropTypes.Requireable<io.flow.internal.v0.enums.FileType>
|
|
|
25725
26620
|
export const fraudProvider: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProvider>;
|
|
25726
26621
|
export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProviderStatus>;
|
|
25727
26622
|
export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.FraudReviewResponsibleParty>;
|
|
26623
|
+
export const gabrielItemType: PropTypes.Requireable<io.flow.internal.v0.enums.GabrielItemType>;
|
|
25728
26624
|
export const geIngestionFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.GeIngestionFileStatus>;
|
|
25729
26625
|
export const geRevenueShareTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.GeRevenueShareTransactionType>;
|
|
25730
26626
|
export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
|
|
25731
26627
|
export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
|
|
25732
26628
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
25733
26629
|
export const hoseinItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HoseinItemType>;
|
|
26630
|
+
export const hs6CodeSource: PropTypes.Requireable<io.flow.internal.v0.enums.Hs6CodeSource>;
|
|
25734
26631
|
export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
|
|
25735
26632
|
export const internalPaymentEntityType: PropTypes.Requireable<io.flow.internal.v0.enums.InternalPaymentEntityType>;
|
|
25736
26633
|
export const itemClassificationAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationAction>;
|
|
@@ -25749,6 +26646,8 @@ export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.f
|
|
|
25749
26646
|
export const labelRequestResultOrganizationType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultOrganizationType>;
|
|
25750
26647
|
export const labelRequestResultState: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultState>;
|
|
25751
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>;
|
|
25752
26651
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
25753
26652
|
export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsCapability>;
|
|
25754
26653
|
export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
|
|
@@ -25795,6 +26694,10 @@ export const paymentTerm: PropTypes.Requireable<io.flow.internal.v0.enums.Paymen
|
|
|
25795
26694
|
export const pendingRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.PendingRecordType>;
|
|
25796
26695
|
export const prateekItemType: PropTypes.Requireable<io.flow.internal.v0.enums.PrateekItemType>;
|
|
25797
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>;
|
|
25798
26701
|
export const priceSelector: PropTypes.Requireable<io.flow.internal.v0.enums.PriceSelector>;
|
|
25799
26702
|
export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessingTransactionType>;
|
|
25800
26703
|
export const processor: PropTypes.Requireable<io.flow.internal.v0.enums.Processor>;
|
|
@@ -25950,15 +26853,21 @@ export const afterpayRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
25950
26853
|
export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundUpserted>;
|
|
25951
26854
|
export const aftershipWebhook: PropTypes.Requireable<io.flow.internal.v0.models.AftershipWebhook>;
|
|
25952
26855
|
export const aldoItem: PropTypes.Requireable<io.flow.internal.v0.models.AldoItem>;
|
|
26856
|
+
export const aldoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemDeleted>;
|
|
25953
26857
|
export const aldoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemForm>;
|
|
26858
|
+
export const aldoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemUpserted>;
|
|
25954
26859
|
export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
|
|
25955
26860
|
export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
|
|
25956
26861
|
export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
|
|
25957
26862
|
export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
|
|
25958
26863
|
export const anirbanItem: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItem>;
|
|
26864
|
+
export const anirbanItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemDeleted>;
|
|
25959
26865
|
export const anirbanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemForm>;
|
|
26866
|
+
export const anirbanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemUpserted>;
|
|
25960
26867
|
export const anshItem: PropTypes.Requireable<io.flow.internal.v0.models.AnshItem>;
|
|
26868
|
+
export const anshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemDeleted>;
|
|
25961
26869
|
export const anshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemForm>;
|
|
26870
|
+
export const anshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemUpserted>;
|
|
25962
26871
|
export const applePayAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.ApplePayAuthorizationPayload>;
|
|
25963
26872
|
export const applyAtValueForm: PropTypes.Requireable<io.flow.internal.v0.models.ApplyAtValueForm>;
|
|
25964
26873
|
export const attemptStatistics: PropTypes.Requireable<io.flow.internal.v0.models.AttemptStatistics>;
|
|
@@ -25975,6 +26884,8 @@ export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
25975
26884
|
export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
|
|
25976
26885
|
export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
|
|
25977
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>;
|
|
25978
26889
|
export const bankAccount: PropTypes.Requireable<io.flow.internal.v0.models.BankAccount>;
|
|
25979
26890
|
export const bankAccountReference: PropTypes.Requireable<io.flow.internal.v0.models.BankAccountReference>;
|
|
25980
26891
|
export const bankPayment: PropTypes.Requireable<io.flow.internal.v0.models.BankPayment>;
|
|
@@ -26032,6 +26943,7 @@ export const brickWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
26032
26943
|
export const brickWebhookEventResponse: PropTypes.Requireable<io.flow.internal.v0.models.BrickWebhookEventResponse>;
|
|
26033
26944
|
export const bulkClassificationAction: PropTypes.Requireable<io.flow.internal.v0.models.BulkClassificationAction>;
|
|
26034
26945
|
export const bulkDutyUpdateValidationError: PropTypes.Requireable<io.flow.internal.v0.models.BulkDutyUpdateValidationError>;
|
|
26946
|
+
export const cafe24MarketsWebhook: PropTypes.Requireable<io.flow.internal.v0.models.Cafe24MarketsWebhook>;
|
|
26035
26947
|
export const calculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.CalculatedTaxAmount>;
|
|
26036
26948
|
export const calculationStampingLineItem: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingLineItem>;
|
|
26037
26949
|
export const calculationStampingShippingLine: PropTypes.Requireable<io.flow.internal.v0.models.CalculationStampingShippingLine>;
|
|
@@ -26117,7 +27029,7 @@ export const channelOrderSummary: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26117
27029
|
export const channelOrderSummaryDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryDeleted>;
|
|
26118
27030
|
export const channelOrderSummaryFulfillmentDetails: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails>;
|
|
26119
27031
|
export const channelOrderSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderSummaryUpserted>;
|
|
26120
|
-
export const
|
|
27032
|
+
export const channelOrganizationDomains: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationDomains>;
|
|
26121
27033
|
export const channelOrganizationIdentifier: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifier>;
|
|
26122
27034
|
export const channelOrganizationIdentifierDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted>;
|
|
26123
27035
|
export const channelOrganizationIdentifierUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted>;
|
|
@@ -26135,6 +27047,8 @@ export const channelOrganizationToken: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26135
27047
|
export const channelOrganizationTokenBody: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationTokenBody>;
|
|
26136
27048
|
export const channelRateMetadataIdentity: PropTypes.Requireable<io.flow.internal.v0.models.ChannelRateMetadataIdentity>;
|
|
26137
27049
|
export const channelRateMetadataRate: PropTypes.Requireable<io.flow.internal.v0.models.ChannelRateMetadataRate>;
|
|
27050
|
+
export const channelShop: PropTypes.Requireable<io.flow.internal.v0.models.ChannelShop>;
|
|
27051
|
+
export const channelShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelShopForm>;
|
|
26138
27052
|
export const channelTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransaction>;
|
|
26139
27053
|
export const channelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionDeleted>;
|
|
26140
27054
|
export const channelTransactionRate: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionRate>;
|
|
@@ -26345,7 +27259,6 @@ export const featureContextForm: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
26345
27259
|
export const featureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FeatureDeleted>;
|
|
26346
27260
|
export const featureForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureForm>;
|
|
26347
27261
|
export const featureGeoForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureGeoForm>;
|
|
26348
|
-
export const featureIdReference: PropTypes.Requireable<io.flow.internal.v0.models.FeatureIdReference>;
|
|
26349
27262
|
export const featureReference: PropTypes.Requireable<io.flow.internal.v0.models.FeatureReference>;
|
|
26350
27263
|
export const featureReleaseForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureReleaseForm>;
|
|
26351
27264
|
export const featureStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureStatusForm>;
|
|
@@ -26446,6 +27359,10 @@ export const fxRevenueRecognitionOrder: PropTypes.Requireable<io.flow.internal.v
|
|
|
26446
27359
|
export const fxRevenueRecognitionOrganization: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionOrganization>;
|
|
26447
27360
|
export const fxRevenueRecognitionRate: PropTypes.Requireable<io.flow.internal.v0.models.FxRevenueRecognitionRate>;
|
|
26448
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>;
|
|
26449
27366
|
export const geRevenueShareTransaction: PropTypes.Requireable<io.flow.internal.v0.models.GeRevenueShareTransaction>;
|
|
26450
27367
|
export const generateLoadMultipleOrgs: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadMultipleOrgs>;
|
|
26451
27368
|
export const generateLoadSingleOrg: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadSingleOrg>;
|
|
@@ -26474,7 +27391,9 @@ export const harmonizationUnclassifiedStatistics: PropTypes.Requireable<io.flow.
|
|
|
26474
27391
|
export const harmonizeFullyRequestV2: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizeFullyRequestV2>;
|
|
26475
27392
|
export const harmonizedItemsHs6Export: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizedItemsHs6Export>;
|
|
26476
27393
|
export const hoseinItem: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItem>;
|
|
27394
|
+
export const hoseinItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemDeleted>;
|
|
26477
27395
|
export const hoseinItemForm: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemForm>;
|
|
27396
|
+
export const hoseinItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemUpserted>;
|
|
26478
27397
|
export const hs6: PropTypes.Requireable<io.flow.internal.v0.models.Hs6>;
|
|
26479
27398
|
export const hs6Metadata: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Metadata>;
|
|
26480
27399
|
export const importCompleted: PropTypes.Requireable<io.flow.internal.v0.models.ImportCompleted>;
|
|
@@ -26579,6 +27498,8 @@ export const labelsPrediction: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
26579
27498
|
export const landedCostItem: PropTypes.Requireable<io.flow.internal.v0.models.LandedCostItem>;
|
|
26580
27499
|
export const landmark: PropTypes.Requireable<io.flow.internal.v0.models.Landmark>;
|
|
26581
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>;
|
|
26582
27503
|
export const levyRateSummary: PropTypes.Requireable<io.flow.internal.v0.models.LevyRateSummary>;
|
|
26583
27504
|
export const levyRateSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LevyRateSummaryUpserted>;
|
|
26584
27505
|
export const liability: PropTypes.Requireable<io.flow.internal.v0.models.Liability>;
|
|
@@ -26648,7 +27569,9 @@ export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
26648
27569
|
export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
|
|
26649
27570
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
26650
27571
|
export const niallItem: PropTypes.Requireable<io.flow.internal.v0.models.NiallItem>;
|
|
27572
|
+
export const niallItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemDeleted>;
|
|
26651
27573
|
export const niallItemForm: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemForm>;
|
|
27574
|
+
export const niallItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemUpserted>;
|
|
26652
27575
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
26653
27576
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
26654
27577
|
export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
|
|
@@ -26716,9 +27639,6 @@ export const organizationAccountUpsertedV2: PropTypes.Requireable<io.flow.intern
|
|
|
26716
27639
|
export const organizationBankAccountDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBankAccountDeleted>;
|
|
26717
27640
|
export const organizationBankAccountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBankAccountUpserted>;
|
|
26718
27641
|
export const organizationBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBillingStatement>;
|
|
26719
|
-
export const organizationBooleanValue: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValue>;
|
|
26720
|
-
export const organizationBooleanValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValueDeleted>;
|
|
26721
|
-
export const organizationBooleanValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBooleanValueUpserted>;
|
|
26722
27642
|
export const organizationBusinessEntity: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntity>;
|
|
26723
27643
|
export const organizationBusinessEntityDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntityDeleted>;
|
|
26724
27644
|
export const organizationBusinessEntityUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationBusinessEntityUpserted>;
|
|
@@ -26854,6 +27774,12 @@ export const platformFeePercentageTier: PropTypes.Requireable<io.flow.internal.v
|
|
|
26854
27774
|
export const prateekItem: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItem>;
|
|
26855
27775
|
export const prateekItemForm: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItemForm>;
|
|
26856
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>;
|
|
26857
27783
|
export const priceInclusivity: PropTypes.Requireable<io.flow.internal.v0.models.PriceInclusivity>;
|
|
26858
27784
|
export const prioritizedCenterReference: PropTypes.Requireable<io.flow.internal.v0.models.PrioritizedCenterReference>;
|
|
26859
27785
|
export const processingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransaction>;
|
|
@@ -26893,6 +27819,7 @@ export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26893
27819
|
export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
|
|
26894
27820
|
export const proofOfPostingOrderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment>;
|
|
26895
27821
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
27822
|
+
export const proofOfPostingSynthetic: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingSynthetic>;
|
|
26896
27823
|
export const proofOfPostingTimeElapsed: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingTimeElapsed>;
|
|
26897
27824
|
export const pspDistribution: PropTypes.Requireable<io.flow.internal.v0.models.PspDistribution>;
|
|
26898
27825
|
export const pspRoutingDistribution: PropTypes.Requireable<io.flow.internal.v0.models.PspRoutingDistribution>;
|
|
@@ -26960,6 +27887,7 @@ export const registeredExporterTariffEligibilityForm: PropTypes.Requireable<io.f
|
|
|
26960
27887
|
export const remittanceResponsibility: PropTypes.Requireable<io.flow.internal.v0.models.RemittanceResponsibility>;
|
|
26961
27888
|
export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
|
|
26962
27889
|
export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
|
|
27890
|
+
export const reportAmountRange: PropTypes.Requireable<io.flow.internal.v0.models.ReportAmountRange>;
|
|
26963
27891
|
export const reportBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccount>;
|
|
26964
27892
|
export const reportBankAccountCleartext: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccountCleartext>;
|
|
26965
27893
|
export const reportFile: PropTypes.Requireable<io.flow.internal.v0.models.ReportFile>;
|
|
@@ -27063,7 +27991,9 @@ export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.Rev
|
|
|
27063
27991
|
export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
|
|
27064
27992
|
export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
|
|
27065
27993
|
export const rohanItem: PropTypes.Requireable<io.flow.internal.v0.models.RohanItem>;
|
|
27994
|
+
export const rohanItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemDeleted>;
|
|
27066
27995
|
export const rohanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemForm>;
|
|
27996
|
+
export const rohanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemUpserted>;
|
|
27067
27997
|
export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
|
|
27068
27998
|
export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
|
|
27069
27999
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|
|
@@ -27071,7 +28001,9 @@ export const salesPaymentRecord: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
27071
28001
|
export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
|
|
27072
28002
|
export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
|
|
27073
28003
|
export const sarveshItem: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItem>;
|
|
28004
|
+
export const sarveshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemDeleted>;
|
|
27074
28005
|
export const sarveshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemForm>;
|
|
28006
|
+
export const sarveshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemUpserted>;
|
|
27075
28007
|
export const scheduledPayment: PropTypes.Requireable<io.flow.internal.v0.models.ScheduledPayment>;
|
|
27076
28008
|
export const screen: PropTypes.Requireable<io.flow.internal.v0.models.Screen>;
|
|
27077
28009
|
export const screenForm: PropTypes.Requireable<io.flow.internal.v0.models.ScreenForm>;
|
|
@@ -27093,6 +28025,9 @@ export const shipmentCostSummary: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27093
28025
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
27094
28026
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
27095
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>;
|
|
27096
28031
|
export const shopifyCatalogPublication: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCatalogPublication>;
|
|
27097
28032
|
export const shopifyChannelOrganizationToken: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationToken>;
|
|
27098
28033
|
export const shopifyChannelOrganizationTokens: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationTokens>;
|
|
@@ -27129,6 +28064,7 @@ export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.
|
|
|
27129
28064
|
export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
|
|
27130
28065
|
export const shopifyMarketsOrderVersionWithShopId: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId>;
|
|
27131
28066
|
export const shopifyMarketsOrdersMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics>;
|
|
28067
|
+
export const shopifyMarketsOrganizationOrderMetrics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics>;
|
|
27132
28068
|
export const shopifyMarketsQueuedRecord: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsQueuedRecord>;
|
|
27133
28069
|
export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
|
|
27134
28070
|
export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
|
|
@@ -27280,6 +28216,7 @@ export const taxRemittanceTransactionUpserted: PropTypes.Requireable<io.flow.int
|
|
|
27280
28216
|
export const taxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransaction>;
|
|
27281
28217
|
export const taxTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionDeleted>;
|
|
27282
28218
|
export const taxTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionUpserted>;
|
|
28219
|
+
export const taxTypeTotal: PropTypes.Requireable<io.flow.internal.v0.models.TaxTypeTotal>;
|
|
27283
28220
|
export const taxonomyAlignmentCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyAlignmentCheckResult>;
|
|
27284
28221
|
export const taxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategory>;
|
|
27285
28222
|
export const taxonomyCategoryHs6Ref: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategoryHs6Ref>;
|
|
@@ -27300,6 +28237,7 @@ export const timeToClassifyAggregatedUpserted: PropTypes.Requireable<io.flow.int
|
|
|
27300
28237
|
export const timeToClassifyDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TimeToClassifyDeleted>;
|
|
27301
28238
|
export const timeToClassifyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TimeToClassifyUpserted>;
|
|
27302
28239
|
export const timeWithTimezone: PropTypes.Requireable<io.flow.internal.v0.models.TimeWithTimezone>;
|
|
28240
|
+
export const tokens: PropTypes.Requireable<io.flow.internal.v0.models.Tokens>;
|
|
27303
28241
|
export const trackingAssuranceAnalysis: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysis>;
|
|
27304
28242
|
export const trackingAssuranceAnalysisDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted>;
|
|
27305
28243
|
export const trackingAssuranceAnalysisUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted>;
|