@flowio/api-internal-prop-types 9.24.137 → 9.24.138
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 +365 -144
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +365 -144
- package/src/api-internal.js +634 -375
package/lib/api-internal.d.ts
CHANGED
|
@@ -1098,6 +1098,8 @@ declare namespace io.flow.channel.v0.models {
|
|
|
1098
1098
|
|
|
1099
1099
|
declare namespace io.flow.restrictions.v0.enums {
|
|
1100
1100
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
1101
|
+
type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
|
|
1102
|
+
type RestrictionDecisionReason = 'manual_dispute';
|
|
1101
1103
|
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
1102
1104
|
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
1103
1105
|
}
|
|
@@ -1139,6 +1141,18 @@ declare namespace io.flow.restrictions.v0.models {
|
|
|
1139
1141
|
readonly 'reasons': string[];
|
|
1140
1142
|
readonly 'review_status': io.flow.restrictions.v0.enums.RestrictedReviewStatus;
|
|
1141
1143
|
}
|
|
1144
|
+
|
|
1145
|
+
interface RestrictionDecisionsForm {
|
|
1146
|
+
readonly 'organization_id': string;
|
|
1147
|
+
readonly 'rule_decisions': io.flow.restrictions.v0.models.RestrictionRuleDecisionForm[];
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
interface RestrictionRuleDecisionForm {
|
|
1151
|
+
readonly 'product_id': string;
|
|
1152
|
+
readonly 'reason_code': string;
|
|
1153
|
+
readonly 'decision': io.flow.restrictions.v0.enums.RestrictionDecision;
|
|
1154
|
+
readonly 'decision_reason': io.flow.restrictions.v0.enums.RestrictionDecisionReason;
|
|
1155
|
+
}
|
|
1142
1156
|
}
|
|
1143
1157
|
|
|
1144
1158
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
@@ -4587,6 +4601,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4587
4601
|
readonly 'id'?: string;
|
|
4588
4602
|
readonly 'ratecard': io.flow.label.v0.models.ShippingLabelRatecardSummary;
|
|
4589
4603
|
readonly 'weight_break'?: number;
|
|
4604
|
+
readonly 'dim_factor'?: number;
|
|
4590
4605
|
}
|
|
4591
4606
|
|
|
4592
4607
|
interface ShippingLabelPackage {
|
|
@@ -5685,12 +5700,6 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5685
5700
|
readonly 'destination': string;
|
|
5686
5701
|
}
|
|
5687
5702
|
|
|
5688
|
-
interface ShopifyAdaptivePricingCoefficients {
|
|
5689
|
-
readonly 'id': string;
|
|
5690
|
-
readonly 'organization_id': string;
|
|
5691
|
-
readonly 'destination_coefficients': io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
5692
|
-
}
|
|
5693
|
-
|
|
5694
5703
|
interface ShopifyHs10Code {
|
|
5695
5704
|
readonly 'country_code'?: string;
|
|
5696
5705
|
readonly 'code': string;
|
|
@@ -5811,6 +5820,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5811
5820
|
interface ShopifyMerchantMarketCountry {
|
|
5812
5821
|
readonly 'code': string;
|
|
5813
5822
|
readonly 'actively_managing': boolean;
|
|
5823
|
+
readonly 'enabled': boolean;
|
|
5814
5824
|
}
|
|
5815
5825
|
|
|
5816
5826
|
interface ShopifyMerchantMarkets {
|
|
@@ -5931,6 +5941,42 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5931
5941
|
readonly 'voids_b2b_invoice'?: boolean;
|
|
5932
5942
|
}
|
|
5933
5943
|
|
|
5944
|
+
interface B2BCreditNote {
|
|
5945
|
+
readonly 'id': string;
|
|
5946
|
+
readonly 'number': string;
|
|
5947
|
+
readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5948
|
+
readonly 'date': string;
|
|
5949
|
+
readonly 'key': string;
|
|
5950
|
+
readonly 'debit_note': io.flow.consumer.invoice.v0.models.B2BDebitNoteReference;
|
|
5951
|
+
readonly 'order'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5952
|
+
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5953
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5954
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5955
|
+
readonly 'attributes': Record<string, string>;
|
|
5956
|
+
readonly 'voids_b2b_debit_note'?: boolean;
|
|
5957
|
+
}
|
|
5958
|
+
|
|
5959
|
+
interface B2BDebitNote {
|
|
5960
|
+
readonly 'id': string;
|
|
5961
|
+
readonly 'number': string;
|
|
5962
|
+
readonly 'buyer': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5963
|
+
readonly 'seller': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5964
|
+
readonly 'status': io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5965
|
+
readonly 'date': string;
|
|
5966
|
+
readonly 'key': string;
|
|
5967
|
+
readonly 'order': io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5968
|
+
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5969
|
+
readonly 'lines': io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5970
|
+
readonly 'documents': io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5971
|
+
readonly 'attributes': Record<string, string>;
|
|
5972
|
+
}
|
|
5973
|
+
|
|
5974
|
+
interface B2BDebitNoteReference {
|
|
5975
|
+
readonly 'id': string;
|
|
5976
|
+
readonly 'key': string;
|
|
5977
|
+
readonly 'number': string;
|
|
5978
|
+
}
|
|
5979
|
+
|
|
5934
5980
|
interface B2BInvoice {
|
|
5935
5981
|
readonly 'id': string;
|
|
5936
5982
|
readonly 'number': string;
|
|
@@ -7762,8 +7808,8 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7762
7808
|
readonly 'shop': io.flow.shopify.markets.v0.models.Shop;
|
|
7763
7809
|
}
|
|
7764
7810
|
|
|
7765
|
-
interface
|
|
7766
|
-
readonly '
|
|
7811
|
+
interface ShopifyAdaptivePricingDestination {
|
|
7812
|
+
readonly 'country_code': string;
|
|
7767
7813
|
readonly 'updated_at': string;
|
|
7768
7814
|
readonly 'tax_and_duty_coefficient': string;
|
|
7769
7815
|
readonly 'fees_coefficient': string;
|
|
@@ -7773,6 +7819,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7773
7819
|
readonly 'adaptive_shipping_enabled': boolean;
|
|
7774
7820
|
}
|
|
7775
7821
|
|
|
7822
|
+
interface ShopifyAdaptivePricingDestinationsWrapper {
|
|
7823
|
+
readonly 'destinations': io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestination[];
|
|
7824
|
+
}
|
|
7825
|
+
|
|
7776
7826
|
interface ShopifyAppliedDiscount {
|
|
7777
7827
|
readonly 'title'?: string;
|
|
7778
7828
|
readonly 'description'?: string;
|
|
@@ -9112,6 +9162,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
9112
9162
|
readonly 'created_at'?: string;
|
|
9113
9163
|
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
9114
9164
|
readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
|
|
9165
|
+
readonly 'channel'?: io.flow.common.v0.models.ChannelReference;
|
|
9115
9166
|
}
|
|
9116
9167
|
|
|
9117
9168
|
interface OrganizationDefaults {
|
|
@@ -9125,6 +9176,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
9125
9176
|
interface OrganizationReference {
|
|
9126
9177
|
readonly 'discriminator': 'organization_reference';
|
|
9127
9178
|
readonly 'id': string;
|
|
9179
|
+
readonly 'channel'?: io.flow.common.v0.models.ChannelReference;
|
|
9128
9180
|
}
|
|
9129
9181
|
|
|
9130
9182
|
interface OrganizationSummary {
|
|
@@ -9300,22 +9352,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
9300
9352
|
readonly 'order_tax_and_duty_inclusivity_setting': io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
9301
9353
|
}
|
|
9302
9354
|
|
|
9303
|
-
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
9304
|
-
readonly 'discriminator': 'shopify_adaptive_pricing_coefficients_deleted';
|
|
9305
|
-
readonly 'event_id': string;
|
|
9306
|
-
readonly 'timestamp': string;
|
|
9307
|
-
readonly 'organization': string;
|
|
9308
|
-
readonly 'id': string;
|
|
9309
|
-
}
|
|
9310
|
-
|
|
9311
|
-
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
9312
|
-
readonly 'discriminator': 'shopify_adaptive_pricing_coefficients_upserted';
|
|
9313
|
-
readonly 'event_id': string;
|
|
9314
|
-
readonly 'timestamp': string;
|
|
9315
|
-
readonly 'organization': string;
|
|
9316
|
-
readonly 'shopify_adaptive_pricing_coefficients': io.flow.shopify.markets.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
9317
|
-
}
|
|
9318
|
-
|
|
9319
9355
|
interface ShopifyIncotermIncludes {
|
|
9320
9356
|
readonly 'duties': boolean;
|
|
9321
9357
|
readonly 'taxes': boolean;
|
|
@@ -9553,7 +9589,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
9553
9589
|
}
|
|
9554
9590
|
|
|
9555
9591
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
9556
|
-
type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.
|
|
9592
|
+
type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted);
|
|
9557
9593
|
}
|
|
9558
9594
|
|
|
9559
9595
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -10873,6 +10909,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10873
10909
|
interface LaneSummary {
|
|
10874
10910
|
readonly 'id': string;
|
|
10875
10911
|
readonly 'ratecard': io.flow.ratecard.v0.models.RatecardSummary;
|
|
10912
|
+
readonly 'dim_factor': number;
|
|
10876
10913
|
}
|
|
10877
10914
|
|
|
10878
10915
|
interface LargePackageServiceFee {
|
|
@@ -10948,6 +10985,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10948
10985
|
readonly 'glbe_shipping_method_id'?: string;
|
|
10949
10986
|
readonly 'glbe_proposition_name'?: string;
|
|
10950
10987
|
readonly 'channel_revenue_share_percentage'?: number;
|
|
10988
|
+
readonly 'channel_id'?: string;
|
|
10951
10989
|
}
|
|
10952
10990
|
|
|
10953
10991
|
interface RatecardCarrierSummary {
|
|
@@ -11050,6 +11088,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11050
11088
|
readonly 'glbe_shipping_method_id'?: string;
|
|
11051
11089
|
readonly 'glbe_proposition_name'?: string;
|
|
11052
11090
|
readonly 'channel_revenue_share_percentage'?: number;
|
|
11091
|
+
readonly 'channel_id'?: string;
|
|
11053
11092
|
readonly 'data'?: io.flow.ratecard.v0.models.RatecardData;
|
|
11054
11093
|
}
|
|
11055
11094
|
|
|
@@ -11085,20 +11124,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11085
11124
|
readonly 'distance_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11086
11125
|
}
|
|
11087
11126
|
|
|
11088
|
-
interface RatecardLaneImportForm {
|
|
11089
|
-
readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
11090
|
-
readonly 'service': string;
|
|
11091
|
-
readonly 'currency': string;
|
|
11092
|
-
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
11093
|
-
readonly 'origin': io.flow.common.v0.models.Zone;
|
|
11094
|
-
readonly 'destination': io.flow.common.v0.models.Zone;
|
|
11095
|
-
readonly 'shipment_window': io.flow.ratecard.v0.models.ShipmentWindow;
|
|
11096
|
-
readonly 'dim_factor': number;
|
|
11097
|
-
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11098
|
-
readonly 'distance_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11099
|
-
readonly 'rates': io.flow.ratecard.v0.models.RatecardRateForm[];
|
|
11100
|
-
}
|
|
11101
|
-
|
|
11102
11127
|
interface RatecardLaneVersion {
|
|
11103
11128
|
readonly 'id': string;
|
|
11104
11129
|
readonly 'timestamp': string;
|
|
@@ -11106,14 +11131,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11106
11131
|
readonly 'ratecard_lane': io.flow.ratecard.v0.models.RatecardLane;
|
|
11107
11132
|
}
|
|
11108
11133
|
|
|
11109
|
-
interface RatecardLanesImportRequestData {
|
|
11110
|
-
readonly 'id': string;
|
|
11111
|
-
readonly 'source_url': string;
|
|
11112
|
-
readonly 'filename'?: string;
|
|
11113
|
-
}
|
|
11114
|
-
|
|
11115
11134
|
interface RatecardRate {
|
|
11116
|
-
readonly 'id': string;
|
|
11117
11135
|
readonly 'amount': number;
|
|
11118
11136
|
readonly 'weight': number;
|
|
11119
11137
|
}
|
|
@@ -11123,13 +11141,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11123
11141
|
readonly 'weight': number;
|
|
11124
11142
|
}
|
|
11125
11143
|
|
|
11126
|
-
interface RatecardRateVersion {
|
|
11127
|
-
readonly 'id': string;
|
|
11128
|
-
readonly 'timestamp': string;
|
|
11129
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
11130
|
-
readonly 'ratecard_rate': io.flow.ratecard.v0.models.RatecardRate;
|
|
11131
|
-
}
|
|
11132
|
-
|
|
11133
11144
|
interface RatecardReference {
|
|
11134
11145
|
readonly 'id': string;
|
|
11135
11146
|
}
|
|
@@ -12339,6 +12350,7 @@ declare namespace io.flow.merchant.onboarding.v0.unions {
|
|
|
12339
12350
|
declare namespace io.flow.catalog.v0.enums {
|
|
12340
12351
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
12341
12352
|
type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
|
|
12353
|
+
type CpscAttribute = 'certification_id' | 'citation_codes' | 'manufactured_date' | 'manufactured_location' | 'product_test_date' | 'test_lab_name' | 'point_of_contact' | 'certification_version' | 'certification_product_id' | 'certificate_type' | 'lab_type' | 'taxonomy_reference';
|
|
12342
12354
|
type FulfillmentMethodType = 'fulfillment_method';
|
|
12343
12355
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
12344
12356
|
type ImageTag = 'thumbnail' | 'checkout';
|
|
@@ -12970,9 +12982,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
12970
12982
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
12971
12983
|
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';
|
|
12972
12984
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
12973
|
-
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12985
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
12974
12986
|
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' | 'order_cancellation_without_capture';
|
|
12975
|
-
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' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
|
|
12987
|
+
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' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label' | 'flat_rate_label_subsidy';
|
|
12976
12988
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
12977
12989
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
12978
12990
|
}
|
|
@@ -13176,6 +13188,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13176
13188
|
readonly 'reason': io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
13177
13189
|
}
|
|
13178
13190
|
|
|
13191
|
+
interface PayoutStatusPaid {
|
|
13192
|
+
readonly 'code': 'paid';
|
|
13193
|
+
readonly 'timestamp': string;
|
|
13194
|
+
}
|
|
13195
|
+
|
|
13179
13196
|
interface PayoutStatusScheduled {
|
|
13180
13197
|
readonly 'code': 'scheduled';
|
|
13181
13198
|
readonly 'placeholder'?: string;
|
|
@@ -13346,6 +13363,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13346
13363
|
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
13347
13364
|
readonly 'carrier': io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
13348
13365
|
readonly 'revenue_share_percentage'?: number;
|
|
13366
|
+
readonly 'actual'?: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
13349
13367
|
}
|
|
13350
13368
|
|
|
13351
13369
|
interface TransactionMetadataShippingLabelCarrier {
|
|
@@ -13473,7 +13491,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13473
13491
|
|
|
13474
13492
|
declare namespace io.flow.billing.v0.unions {
|
|
13475
13493
|
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
13476
|
-
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
13494
|
+
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed | io.flow.billing.v0.models.PayoutStatusPaid);
|
|
13477
13495
|
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
13478
13496
|
type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction | io.flow.billing.v0.models.TransactionMetadataTaxDuty | io.flow.billing.v0.models.TransactionMetadataMerchantFee | io.flow.billing.v0.models.TransactionMetadataFlatRateLabel);
|
|
13479
13497
|
}
|
|
@@ -13961,6 +13979,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13961
13979
|
readonly 'price': io.flow.common.v0.models.Money;
|
|
13962
13980
|
readonly 'description': string;
|
|
13963
13981
|
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13982
|
+
readonly 'inferred_taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13964
13983
|
readonly 'mode': io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
13965
13984
|
readonly 'catalog_size'?: number;
|
|
13966
13985
|
readonly 'relative_ranking'?: number;
|
|
@@ -14127,6 +14146,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
14127
14146
|
readonly 'province'?: string;
|
|
14128
14147
|
readonly 'self_billing_agreement_effective_at': string;
|
|
14129
14148
|
readonly 'self_billing_agreement_expires_at'?: string;
|
|
14149
|
+
readonly 'legal_name'?: string;
|
|
14130
14150
|
}
|
|
14131
14151
|
|
|
14132
14152
|
interface OrganizationVersion {
|
|
@@ -14156,6 +14176,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
14156
14176
|
readonly 'country': string;
|
|
14157
14177
|
readonly 'tax_code': string;
|
|
14158
14178
|
readonly 'province'?: string;
|
|
14179
|
+
readonly 'legal_name'?: string;
|
|
14159
14180
|
}
|
|
14160
14181
|
}
|
|
14161
14182
|
|
|
@@ -14186,18 +14207,6 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14186
14207
|
|
|
14187
14208
|
interface BankAccountInfoKor {
|
|
14188
14209
|
readonly 'discriminator': 'kor';
|
|
14189
|
-
readonly 'name'?: string;
|
|
14190
|
-
readonly 'address'?: io.flow.common.v0.models.Address;
|
|
14191
|
-
readonly 'phone'?: string;
|
|
14192
|
-
readonly 'email'?: string;
|
|
14193
|
-
readonly 'bank_account_number': string;
|
|
14194
|
-
readonly 'bank_routing_number'?: string;
|
|
14195
|
-
readonly 'bank_name'?: string;
|
|
14196
|
-
readonly 'bank_address'?: io.flow.common.v0.models.Address;
|
|
14197
|
-
}
|
|
14198
|
-
|
|
14199
|
-
interface BankAccountInfoKorV2 {
|
|
14200
|
-
readonly 'discriminator': 'kor_v2';
|
|
14201
14210
|
readonly 'name': string;
|
|
14202
14211
|
readonly 'bank_account_number': string;
|
|
14203
14212
|
readonly 'bank_routing_number': string;
|
|
@@ -14212,7 +14221,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14212
14221
|
}
|
|
14213
14222
|
|
|
14214
14223
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
14215
|
-
type BankAccountInfo = (io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
14224
|
+
type BankAccountInfo = (io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor);
|
|
14216
14225
|
}
|
|
14217
14226
|
|
|
14218
14227
|
declare namespace io.flow.internal.v0.enums {
|
|
@@ -14229,18 +14238,18 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14229
14238
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
14230
14239
|
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
14231
14240
|
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';
|
|
14232
|
-
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
14241
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order' | 'settings';
|
|
14233
14242
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
14234
14243
|
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo' | 'mor_invoice' | 'mor_credit_memo' | 'label_invoice' | 'label_credit_memo';
|
|
14235
14244
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
14236
14245
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
14237
14246
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
14238
|
-
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
14247
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
14239
14248
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
14240
14249
|
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';
|
|
14241
14250
|
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';
|
|
14242
14251
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
14243
|
-
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' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
|
|
14252
|
+
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' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label' | 'flat_rate_label_subsidy';
|
|
14244
14253
|
type BojanaItemType = 'physical' | 'digital';
|
|
14245
14254
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
14246
14255
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -14284,6 +14293,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14284
14293
|
type ComplianceType = 'weee';
|
|
14285
14294
|
type ConnectReportPaymentTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
|
|
14286
14295
|
type ConnectReportTransferTransferType = 'ManagedMarketsChargeCredit' | 'ManagedMarketsDisputeWonAmountCredit' | 'ManagedMarketsDutiesAndTaxesAdjustmentCredit';
|
|
14296
|
+
type CpscCertificateType = 'GCC' | 'CPC';
|
|
14297
|
+
type CpscFileType = 'GeRegistered' | 'PreRegistered';
|
|
14298
|
+
type CpscLabType = 'ITL' | 'LAB' | 'NOL';
|
|
14299
|
+
type CpscLotNumberAssignedBy = 'Seller' | 'Manufacturer';
|
|
14300
|
+
type CpscPointOfContactType = 'Importer' | 'Manufacturer' | 'Laboratory' | 'Broker' | 'Other';
|
|
14301
|
+
type CpscPrimaryProductIdType = 'GTIN' | 'UPC' | 'SKU' | 'Model Number' | 'Serial Number' | 'Registered Number' | 'Alternate Identifier';
|
|
14302
|
+
type CpscYesNo = 'Y' | 'N';
|
|
14287
14303
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
14288
14304
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
14289
14305
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -14312,7 +14328,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14312
14328
|
type EmptyAttribute = 'irrelevant';
|
|
14313
14329
|
type ErpFileType = 'vendor';
|
|
14314
14330
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
14315
|
-
type EventType = 'adaptive_shipping_rate_upserted' | 'adaptive_shipping_rate_deleted' | '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' | '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' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | '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' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_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' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_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' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | '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' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_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' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_adaptive_pricing_coefficients_upserted' | 'shopify_adaptive_pricing_coefficients_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_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' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_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';
|
|
14331
|
+
type EventType = 'adaptive_pricing_coefficient_upserted' | 'adaptive_pricing_coefficient_deleted' | 'adaptive_pricing_update_upserted' | 'adaptive_pricing_update_deleted' | 'adaptive_shipping_rate_upserted' | 'adaptive_shipping_rate_deleted' | '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' | 'sales_payment_record_upserted' | 'sales_payment_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_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' | 'channel_shop_statistics_upserted' | 'channel_shop_statistics_deleted' | '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' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | 'flat_rate_label_reversal_upserted' | 'flat_rate_label_reversal_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' | 'guaranteed_shipping_published_output_upserted' | 'guaranteed_shipping_published_output_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' | 'adaptive_shipping_order_guarantee_upserted' | 'adaptive_shipping_order_guarantee_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' | 'preonboarding_sellability_result_inserted' | 'preonboarding_sellability_result_updated' | 'preonboarding_sellability_result_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'product_sellability_result_inserted' | 'product_sellability_result_updated' | 'product_sellability_result_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_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' | 'restrictions_athena_dailyops_pc_pv_upserted' | 'restrictions_athena_dailyops_pc_pv_deleted' | 'restrictions_athena_dailyops_fs_upserted' | 'restrictions_athena_dailyops_fs_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' | 'preonboarding_merchant_upserted' | 'preonboarding_merchant_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_merchant_markets_upserted' | 'shopify_merchant_markets_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' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | 'raveena_item_upserted' | 'raveena_item_deleted' | 'mahesh_item_upserted' | 'mahesh_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';
|
|
14316
14332
|
type ExperienceImportType = 'experience_with_settings';
|
|
14317
14333
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14318
14334
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14322,7 +14338,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14322
14338
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
14323
14339
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
14324
14340
|
type FileType = 'pdf';
|
|
14325
|
-
type
|
|
14341
|
+
type FlatRateLabelGuaranteeStatus = 'active' | 'void';
|
|
14342
|
+
type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee' | 'subsidy';
|
|
14326
14343
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
14327
14344
|
type FraudProviderStatus = 'active' | 'archived';
|
|
14328
14345
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
@@ -14428,7 +14445,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14428
14445
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
14429
14446
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
14430
14447
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
14431
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'cafe24' | 'cafe24-sandbox';
|
|
14448
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'globale' | 'globale-sandbox' | 'cafe24' | 'cafe24-sandbox';
|
|
14432
14449
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
14433
14450
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
14434
14451
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -14744,13 +14761,41 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14744
14761
|
readonly 'quantity': number;
|
|
14745
14762
|
}
|
|
14746
14763
|
|
|
14764
|
+
interface AdaptivePricingCoefficient {
|
|
14765
|
+
readonly 'coefficients_updated_at': number;
|
|
14766
|
+
readonly 'channel_id': string;
|
|
14767
|
+
readonly 'organization_id': string;
|
|
14768
|
+
readonly 'destination_country': string;
|
|
14769
|
+
readonly 'tax_and_duty_coefficient': number;
|
|
14770
|
+
readonly 'fees_coefficient': number;
|
|
14771
|
+
readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
|
|
14772
|
+
readonly 'created_at': number;
|
|
14773
|
+
}
|
|
14774
|
+
|
|
14775
|
+
interface AdaptivePricingCoefficientDeleted {
|
|
14776
|
+
readonly 'discriminator': 'adaptive_pricing_coefficient_deleted';
|
|
14777
|
+
readonly 'event_id': string;
|
|
14778
|
+
readonly 'timestamp': string;
|
|
14779
|
+
readonly 'organization': string;
|
|
14780
|
+
readonly 'channel_id': string;
|
|
14781
|
+
readonly 'id': string;
|
|
14782
|
+
}
|
|
14783
|
+
|
|
14784
|
+
interface AdaptivePricingCoefficientUpserted {
|
|
14785
|
+
readonly 'discriminator': 'adaptive_pricing_coefficient_upserted';
|
|
14786
|
+
readonly 'event_id': string;
|
|
14787
|
+
readonly 'timestamp': string;
|
|
14788
|
+
readonly 'organization': string;
|
|
14789
|
+
readonly 'channel_id': string;
|
|
14790
|
+
readonly 'adaptive_pricing_coefficient': io.flow.internal.v0.models.AdaptivePricingCoefficient;
|
|
14791
|
+
}
|
|
14792
|
+
|
|
14747
14793
|
interface AdaptivePricingDestinationUpdate {
|
|
14748
|
-
readonly '
|
|
14794
|
+
readonly 'country': string;
|
|
14749
14795
|
readonly 'updated_at': string;
|
|
14750
14796
|
readonly 'tax_and_duty_coefficient': number;
|
|
14751
14797
|
readonly 'fees_coefficient': number;
|
|
14752
|
-
readonly '
|
|
14753
|
-
readonly 'merchant_subsidy_currency': string;
|
|
14798
|
+
readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
|
|
14754
14799
|
}
|
|
14755
14800
|
|
|
14756
14801
|
interface AdaptivePricingUpdate {
|
|
@@ -14759,6 +14804,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14759
14804
|
readonly 'destination_updates': io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
14760
14805
|
}
|
|
14761
14806
|
|
|
14807
|
+
interface AdaptivePricingUpdateDeleted {
|
|
14808
|
+
readonly 'discriminator': 'adaptive_pricing_update_deleted';
|
|
14809
|
+
readonly 'event_id': string;
|
|
14810
|
+
readonly 'timestamp': string;
|
|
14811
|
+
readonly 'organization': string;
|
|
14812
|
+
readonly 'channel_id': string;
|
|
14813
|
+
readonly 'id': string;
|
|
14814
|
+
}
|
|
14815
|
+
|
|
14816
|
+
interface AdaptivePricingUpdateUpserted {
|
|
14817
|
+
readonly 'discriminator': 'adaptive_pricing_update_upserted';
|
|
14818
|
+
readonly 'event_id': string;
|
|
14819
|
+
readonly 'timestamp': string;
|
|
14820
|
+
readonly 'organization': string;
|
|
14821
|
+
readonly 'channel_id': string;
|
|
14822
|
+
readonly 'adaptive_pricing_update': io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
14823
|
+
}
|
|
14824
|
+
|
|
14762
14825
|
interface AdaptiveShippingOrderGuarantee {
|
|
14763
14826
|
readonly 'id': string;
|
|
14764
14827
|
readonly 'organization_id': string;
|
|
@@ -15502,6 +15565,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15502
15565
|
readonly 'expected_delivery_by'?: string;
|
|
15503
15566
|
readonly 'attributes'?: Record<string, string>;
|
|
15504
15567
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
15568
|
+
readonly 'created_at'?: string;
|
|
15569
|
+
readonly 'failed_on'?: string;
|
|
15505
15570
|
}
|
|
15506
15571
|
|
|
15507
15572
|
interface BankPaymentDeletedV2 {
|
|
@@ -15793,6 +15858,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15793
15858
|
readonly 'b2b_fee_mor_tax': io.flow.common.v0.models.Price;
|
|
15794
15859
|
readonly 'b2b_fee_shipping_tax': io.flow.common.v0.models.Price;
|
|
15795
15860
|
readonly 'flat_rate_label': io.flow.common.v0.models.Price;
|
|
15861
|
+
readonly 'flat_rate_label_subsidy': io.flow.common.v0.models.Price;
|
|
15796
15862
|
}
|
|
15797
15863
|
|
|
15798
15864
|
interface BillingStatementUpserted {
|
|
@@ -17287,6 +17353,93 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17287
17353
|
readonly 'product_harmonization': io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
17288
17354
|
}
|
|
17289
17355
|
|
|
17356
|
+
interface CpscProductRegistration {
|
|
17357
|
+
readonly 'product_update': boolean;
|
|
17358
|
+
readonly 'current_version_id'?: string;
|
|
17359
|
+
readonly 'new_version_id': string;
|
|
17360
|
+
readonly 'primary_product_id': string;
|
|
17361
|
+
readonly 'primary_product_id_type': io.flow.internal.v0.enums.CpscPrimaryProductIdType;
|
|
17362
|
+
readonly 'gtin'?: string;
|
|
17363
|
+
readonly 'upc'?: string;
|
|
17364
|
+
readonly 'sku'?: string;
|
|
17365
|
+
readonly 'model_number'?: string;
|
|
17366
|
+
readonly 'serial_number'?: string;
|
|
17367
|
+
readonly 'registered_number'?: string;
|
|
17368
|
+
readonly 'alternate_identifier'?: string;
|
|
17369
|
+
readonly 'certificate_type': io.flow.internal.v0.enums.CpscCertificateType;
|
|
17370
|
+
readonly 'product_name': string;
|
|
17371
|
+
readonly 'trade_brand_name'?: string;
|
|
17372
|
+
readonly 'product_description'?: string;
|
|
17373
|
+
readonly 'product_color'?: string;
|
|
17374
|
+
readonly 'product_style'?: string;
|
|
17375
|
+
readonly 'manufacturer_is_new'?: io.flow.internal.v0.enums.CpscYesNo;
|
|
17376
|
+
readonly 'manufacturer_gln'?: string;
|
|
17377
|
+
readonly 'manufacturer_alternate_id'?: string;
|
|
17378
|
+
readonly 'manufacturer_name'?: string;
|
|
17379
|
+
readonly 'small_batch_manufacturer_cpsc_id'?: string;
|
|
17380
|
+
readonly 'manufacturer_address_line_1'?: string;
|
|
17381
|
+
readonly 'manufacturer_address_line_2'?: string;
|
|
17382
|
+
readonly 'manufacturer_apt_suite_number'?: string;
|
|
17383
|
+
readonly 'manufacturer_city'?: string;
|
|
17384
|
+
readonly 'manufacturer_state_province'?: string;
|
|
17385
|
+
readonly 'manufacturer_country'?: string;
|
|
17386
|
+
readonly 'manufacturer_zip_postal_code'?: string;
|
|
17387
|
+
readonly 'manufacturer_phone'?: string;
|
|
17388
|
+
readonly 'manufacturer_email'?: string;
|
|
17389
|
+
readonly 'manufacture_date': string;
|
|
17390
|
+
readonly 'production_start_date'?: string;
|
|
17391
|
+
readonly 'production_end_date'?: string;
|
|
17392
|
+
readonly 'lot_number'?: string;
|
|
17393
|
+
readonly 'lot_number_assigned_by'?: io.flow.internal.v0.enums.CpscLotNumberAssignedBy;
|
|
17394
|
+
readonly 'lab_1_type': io.flow.internal.v0.enums.CpscLabType;
|
|
17395
|
+
readonly 'lab_1_is_new'?: io.flow.internal.v0.enums.CpscYesNo;
|
|
17396
|
+
readonly 'lab_1_cpsc_id'?: string;
|
|
17397
|
+
readonly 'lab_1_alternate_id'?: string;
|
|
17398
|
+
readonly 'lab_1_gln'?: string;
|
|
17399
|
+
readonly 'lab_1_name'?: string;
|
|
17400
|
+
readonly 'lab_1_address_line_1'?: string;
|
|
17401
|
+
readonly 'lab_1_address_line_2'?: string;
|
|
17402
|
+
readonly 'lab_1_apt_suite_number'?: string;
|
|
17403
|
+
readonly 'lab_1_city'?: string;
|
|
17404
|
+
readonly 'lab_1_state_province'?: string;
|
|
17405
|
+
readonly 'lab_1_country'?: string;
|
|
17406
|
+
readonly 'lab_1_zip_postal_code'?: string;
|
|
17407
|
+
readonly 'lab_1_phone'?: string;
|
|
17408
|
+
readonly 'lab_1_email'?: string;
|
|
17409
|
+
readonly 'lab_1_citation_codes': string;
|
|
17410
|
+
readonly 'lab_1_test_report_id'?: string;
|
|
17411
|
+
readonly 'lab_1_test_url'?: string;
|
|
17412
|
+
readonly 'lab_1_test_report_access_key'?: string;
|
|
17413
|
+
readonly 'lab_1_is_component'?: boolean;
|
|
17414
|
+
readonly 'lab_1_component_description'?: string;
|
|
17415
|
+
readonly 'last_test_date'?: string;
|
|
17416
|
+
readonly 'poc_for_test_records': io.flow.internal.v0.enums.CpscPointOfContactType;
|
|
17417
|
+
readonly 'poc_is_new'?: io.flow.internal.v0.enums.CpscYesNo;
|
|
17418
|
+
readonly 'poc_alternate_id'?: string;
|
|
17419
|
+
readonly 'poc_gln'?: string;
|
|
17420
|
+
readonly 'poc_name'?: string;
|
|
17421
|
+
readonly 'poc_address_line_1'?: string;
|
|
17422
|
+
readonly 'poc_address_line_2'?: string;
|
|
17423
|
+
readonly 'poc_apt_suite_number'?: string;
|
|
17424
|
+
readonly 'poc_city'?: string;
|
|
17425
|
+
readonly 'poc_state_province'?: string;
|
|
17426
|
+
readonly 'poc_country'?: string;
|
|
17427
|
+
readonly 'poc_zip_postal_code'?: string;
|
|
17428
|
+
readonly 'poc_phone'?: string;
|
|
17429
|
+
readonly 'poc_email'?: string;
|
|
17430
|
+
}
|
|
17431
|
+
|
|
17432
|
+
interface CpscQueueEnvelope {
|
|
17433
|
+
readonly 'messageType': string[];
|
|
17434
|
+
readonly 'message': io.flow.internal.v0.models.CpscQueueMessage;
|
|
17435
|
+
}
|
|
17436
|
+
|
|
17437
|
+
interface CpscQueueMessage {
|
|
17438
|
+
readonly 'filePath': string;
|
|
17439
|
+
readonly 'merchantId': string;
|
|
17440
|
+
readonly 'fileType': io.flow.internal.v0.enums.CpscFileType;
|
|
17441
|
+
}
|
|
17442
|
+
|
|
17290
17443
|
interface CryptoAccount {
|
|
17291
17444
|
readonly 'discriminator': 'crypto_account';
|
|
17292
17445
|
readonly 'id': string;
|
|
@@ -18581,6 +18734,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18581
18734
|
readonly 'transfer'?: io.flow.internal.v0.models.Fee;
|
|
18582
18735
|
readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
|
|
18583
18736
|
readonly 'sp'?: io.flow.internal.v0.models.Fee;
|
|
18737
|
+
readonly 'revenue_share'?: io.flow.internal.v0.models.Fee;
|
|
18584
18738
|
}
|
|
18585
18739
|
|
|
18586
18740
|
interface FinanceBankAccount {
|
|
@@ -19441,6 +19595,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19441
19595
|
readonly 'tracker_id': string;
|
|
19442
19596
|
}
|
|
19443
19597
|
|
|
19598
|
+
interface GuaranteedShippingPublishedOutput {
|
|
19599
|
+
readonly 'id': string;
|
|
19600
|
+
readonly 'organization_id': string;
|
|
19601
|
+
readonly 'channel_id': string;
|
|
19602
|
+
readonly 'destination_country': string;
|
|
19603
|
+
readonly 'coefficient': number;
|
|
19604
|
+
readonly 'flat_rates': io.flow.internal.v0.models.FlatRate[];
|
|
19605
|
+
readonly 'inputs_updated_at': number;
|
|
19606
|
+
}
|
|
19607
|
+
|
|
19608
|
+
interface GuaranteedShippingPublishedOutputDeleted {
|
|
19609
|
+
readonly 'discriminator': 'guaranteed_shipping_published_output_deleted';
|
|
19610
|
+
readonly 'event_id': string;
|
|
19611
|
+
readonly 'timestamp': string;
|
|
19612
|
+
readonly 'organization': string;
|
|
19613
|
+
readonly 'id': string;
|
|
19614
|
+
}
|
|
19615
|
+
|
|
19616
|
+
interface GuaranteedShippingPublishedOutputUpserted {
|
|
19617
|
+
readonly 'discriminator': 'guaranteed_shipping_published_output_upserted';
|
|
19618
|
+
readonly 'event_id': string;
|
|
19619
|
+
readonly 'timestamp': string;
|
|
19620
|
+
readonly 'organization': string;
|
|
19621
|
+
readonly 'guaranteed_shipping_published_output': io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
19622
|
+
}
|
|
19623
|
+
|
|
19444
19624
|
interface HarmonizationClassificationStatisticsData {
|
|
19445
19625
|
readonly 'statistics': io.flow.internal.v0.models.ClassificationStatistics;
|
|
19446
19626
|
}
|
|
@@ -20604,6 +20784,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20604
20784
|
readonly 'added_on': string;
|
|
20605
20785
|
}
|
|
20606
20786
|
|
|
20787
|
+
interface MaheshItemDeleted {
|
|
20788
|
+
readonly 'discriminator': 'mahesh_item_deleted';
|
|
20789
|
+
readonly 'event_id': string;
|
|
20790
|
+
readonly 'timestamp': string;
|
|
20791
|
+
readonly 'id': string;
|
|
20792
|
+
}
|
|
20793
|
+
|
|
20607
20794
|
interface MaheshItemForm {
|
|
20608
20795
|
readonly 'number': string;
|
|
20609
20796
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -20612,6 +20799,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20612
20799
|
readonly 'added_on': string;
|
|
20613
20800
|
}
|
|
20614
20801
|
|
|
20802
|
+
interface MaheshItemUpserted {
|
|
20803
|
+
readonly 'discriminator': 'mahesh_item_upserted';
|
|
20804
|
+
readonly 'event_id': string;
|
|
20805
|
+
readonly 'timestamp': string;
|
|
20806
|
+
readonly 'item': io.flow.internal.v0.models.MaheshItem;
|
|
20807
|
+
}
|
|
20808
|
+
|
|
20615
20809
|
interface MainTransaction {
|
|
20616
20810
|
readonly 'id': string;
|
|
20617
20811
|
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
@@ -20624,6 +20818,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20624
20818
|
readonly 'channel_statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
20625
20819
|
readonly 'created_at': string;
|
|
20626
20820
|
readonly 'original_at'?: string;
|
|
20821
|
+
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20627
20822
|
}
|
|
20628
20823
|
|
|
20629
20824
|
interface MainTransactionDeleted {
|
|
@@ -20919,10 +21114,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20919
21114
|
readonly 'surcharges'?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
20920
21115
|
readonly 'freight_guaranteed'?: number;
|
|
20921
21116
|
readonly 'freight_non_guaranteed'?: number;
|
|
21117
|
+
readonly 'freight_subsidy'?: number;
|
|
20922
21118
|
readonly 'total': number;
|
|
20923
21119
|
readonly 'tax_refund'?: number;
|
|
20924
21120
|
readonly 'tax_reversal'?: number;
|
|
20925
21121
|
readonly 'duty_reversal'?: number;
|
|
21122
|
+
readonly 'flat_rate_reversal'?: number;
|
|
21123
|
+
readonly 'flat_rate_subsidy_reversal'?: number;
|
|
20926
21124
|
readonly 'tax_reversal_for_lvg_order'?: boolean;
|
|
20927
21125
|
readonly 'duty_reversal_for_lvg_order'?: boolean;
|
|
20928
21126
|
}
|
|
@@ -21948,6 +22146,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21948
22146
|
readonly 'organization': io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
21949
22147
|
readonly 'number': string;
|
|
21950
22148
|
readonly 'identifiers': io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
22149
|
+
readonly 'destination_province'?: string;
|
|
21951
22150
|
}
|
|
21952
22151
|
|
|
21953
22152
|
interface OtherRecordOrderSummaryIdentifiers {
|
|
@@ -22659,6 +22858,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22659
22858
|
readonly 'effective_taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22660
22859
|
readonly 'fingerprint': string;
|
|
22661
22860
|
readonly 'screening_mode'?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
22861
|
+
readonly 'created_at'?: string;
|
|
22662
22862
|
}
|
|
22663
22863
|
|
|
22664
22864
|
interface PreonboardingSellabilityResultDeleted {
|
|
@@ -23335,14 +23535,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23335
23535
|
readonly 'number': string;
|
|
23336
23536
|
}
|
|
23337
23537
|
|
|
23338
|
-
interface RatecardLanesImportRequest {
|
|
23339
|
-
readonly 'discriminator': 'ratecard_lanes_import_request';
|
|
23340
|
-
readonly 'event_id': string;
|
|
23341
|
-
readonly 'timestamp': string;
|
|
23342
|
-
readonly 'organization': string;
|
|
23343
|
-
readonly 'data': io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
23344
|
-
}
|
|
23345
|
-
|
|
23346
23538
|
interface RatecardRateLevelDeleted {
|
|
23347
23539
|
readonly 'discriminator': 'ratecard_rate_level_deleted';
|
|
23348
23540
|
readonly 'event_id': string;
|
|
@@ -23403,15 +23595,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23403
23595
|
readonly 'fee': io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
23404
23596
|
}
|
|
23405
23597
|
|
|
23406
|
-
interface RatecardServiceFeesOverride {
|
|
23407
|
-
readonly 'ratecard': io.flow.internal.v0.models.RatecardInternalSummary;
|
|
23408
|
-
readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
|
|
23409
|
-
}
|
|
23410
|
-
|
|
23411
|
-
interface RatecardServiceFeesOverrideForm {
|
|
23412
|
-
readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
|
|
23413
|
-
}
|
|
23414
|
-
|
|
23415
23598
|
interface RatesChanged {
|
|
23416
23599
|
readonly 'event_id': string;
|
|
23417
23600
|
readonly 'timestamp': string;
|
|
@@ -23540,7 +23723,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23540
23723
|
readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
23541
23724
|
readonly 'order_payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
23542
23725
|
readonly 'amount_range'?: io.flow.internal.v0.models.ReportAmountRange;
|
|
23543
|
-
readonly '
|
|
23726
|
+
readonly 'account_currencies'?: io.flow.internal.v0.enums.AccountCurrencyFilter[];
|
|
23544
23727
|
readonly 'channel_id'?: string;
|
|
23545
23728
|
}
|
|
23546
23729
|
|
|
@@ -23675,6 +23858,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23675
23858
|
|
|
23676
23859
|
interface ReportingFreight {
|
|
23677
23860
|
readonly 'guaranteed'?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
23861
|
+
readonly 'subsidy'?: io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
23678
23862
|
}
|
|
23679
23863
|
|
|
23680
23864
|
interface ReportingFreightGuaranteed {
|
|
@@ -23682,6 +23866,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23682
23866
|
readonly 'coefficient': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23683
23867
|
}
|
|
23684
23868
|
|
|
23869
|
+
interface ReportingFreightSubsidy {
|
|
23870
|
+
readonly 'amount': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23871
|
+
}
|
|
23872
|
+
|
|
23685
23873
|
interface ReportingFulfillment {
|
|
23686
23874
|
readonly 'id': string;
|
|
23687
23875
|
readonly 'sequence_number': number;
|
|
@@ -23722,13 +23910,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23722
23910
|
}
|
|
23723
23911
|
|
|
23724
23912
|
interface ReportingFx {
|
|
23725
|
-
readonly 'shipping': io.flow.internal.v0.models.
|
|
23726
|
-
readonly 'fees': io.flow.internal.v0.models.
|
|
23727
|
-
readonly 'product': io.flow.internal.v0.models.
|
|
23728
|
-
readonly 'tax': io.flow.internal.v0.models.
|
|
23729
|
-
readonly 'duty': io.flow.internal.v0.models.
|
|
23730
|
-
readonly 'tips'?: io.flow.internal.v0.models.
|
|
23731
|
-
readonly 'total': io.flow.internal.v0.models.
|
|
23913
|
+
readonly 'shipping': io.flow.internal.v0.models.ReportingFxValue;
|
|
23914
|
+
readonly 'fees': io.flow.internal.v0.models.ReportingFxValue;
|
|
23915
|
+
readonly 'product': io.flow.internal.v0.models.ReportingFxValue;
|
|
23916
|
+
readonly 'tax': io.flow.internal.v0.models.ReportingFxValue;
|
|
23917
|
+
readonly 'duty': io.flow.internal.v0.models.ReportingFxValue;
|
|
23918
|
+
readonly 'tips'?: io.flow.internal.v0.models.ReportingFxValue;
|
|
23919
|
+
readonly 'total': io.flow.internal.v0.models.ReportingFxValue;
|
|
23920
|
+
}
|
|
23921
|
+
|
|
23922
|
+
interface ReportingFxValue {
|
|
23923
|
+
readonly 'usd': number;
|
|
23924
|
+
readonly 'merchant'?: number;
|
|
23732
23925
|
}
|
|
23733
23926
|
|
|
23734
23927
|
interface ReportingMerchantBreakdown {
|
|
@@ -23781,12 +23974,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23781
23974
|
readonly 'freight_breakdown'?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
23782
23975
|
readonly 'freight_guaranteed'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23783
23976
|
readonly 'freight_non_guaranteed'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23977
|
+
readonly 'freight_subsidy'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23784
23978
|
readonly 'discount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23785
23979
|
readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23786
23980
|
readonly 'tax_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23787
23981
|
readonly 'duty_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23788
23982
|
readonly 'tax_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23789
23983
|
readonly 'duty_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23984
|
+
readonly 'flat_rate_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23985
|
+
readonly 'flat_rate_subsidy_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23790
23986
|
readonly 'tax_reversal_for_lvg_order'?: boolean;
|
|
23791
23987
|
readonly 'duty_reversal_for_lvg_order'?: boolean;
|
|
23792
23988
|
}
|
|
@@ -23964,7 +24160,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23964
24160
|
readonly 'created_at': string;
|
|
23965
24161
|
readonly 'updated_at': string;
|
|
23966
24162
|
readonly 'channel'?: string;
|
|
23967
|
-
readonly 'is_deleted'?: boolean;
|
|
23968
24163
|
}
|
|
23969
24164
|
|
|
23970
24165
|
interface RestrictionItemRequestForm {
|
|
@@ -24090,7 +24285,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24090
24285
|
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
24091
24286
|
readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
24092
24287
|
readonly 'channel'?: string;
|
|
24093
|
-
readonly 'is_deleted'?: boolean;
|
|
24094
24288
|
}
|
|
24095
24289
|
|
|
24096
24290
|
interface RestrictionProductDecisionForm {
|
|
@@ -24527,12 +24721,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24527
24721
|
readonly 'payment_is': io.flow.internal.v0.models.PaymentIs;
|
|
24528
24722
|
readonly 'price_inclusivity'?: io.flow.internal.v0.models.PriceInclusivity;
|
|
24529
24723
|
readonly 'destination_country': string;
|
|
24724
|
+
readonly 'destination_province'?: string;
|
|
24530
24725
|
readonly 'fulfilled_at'?: string;
|
|
24531
24726
|
readonly 'reconciliation'?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
24532
24727
|
readonly 'is_eu_destination'?: boolean;
|
|
24533
24728
|
readonly 'debug_url'?: string;
|
|
24534
24729
|
}
|
|
24535
24730
|
|
|
24731
|
+
interface SalesPaymentRecordDeleted {
|
|
24732
|
+
readonly 'discriminator': 'sales_payment_record_deleted';
|
|
24733
|
+
readonly 'event_id': string;
|
|
24734
|
+
readonly 'timestamp': string;
|
|
24735
|
+
readonly 'organization': string;
|
|
24736
|
+
readonly 'id': string;
|
|
24737
|
+
}
|
|
24738
|
+
|
|
24739
|
+
interface SalesPaymentRecordUpserted {
|
|
24740
|
+
readonly 'discriminator': 'sales_payment_record_upserted';
|
|
24741
|
+
readonly 'event_id': string;
|
|
24742
|
+
readonly 'timestamp': string;
|
|
24743
|
+
readonly 'organization': string;
|
|
24744
|
+
readonly 'sales_payment_record': io.flow.internal.v0.models.SalesPaymentRecord;
|
|
24745
|
+
}
|
|
24746
|
+
|
|
24536
24747
|
interface SandboxSetup {
|
|
24537
24748
|
readonly 'requested_by': string;
|
|
24538
24749
|
}
|
|
@@ -24647,6 +24858,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24647
24858
|
readonly 'merchant_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
24648
24859
|
}
|
|
24649
24860
|
|
|
24861
|
+
interface ServiceFees {
|
|
24862
|
+
readonly 'ratecard': io.flow.internal.v0.models.RatecardInternalSummary;
|
|
24863
|
+
readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
|
|
24864
|
+
}
|
|
24865
|
+
|
|
24866
|
+
interface ServiceFeesForm {
|
|
24867
|
+
readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
|
|
24868
|
+
}
|
|
24869
|
+
|
|
24650
24870
|
interface SessionOrderData {
|
|
24651
24871
|
readonly 'id': string;
|
|
24652
24872
|
readonly 'session': io.flow.common.v0.models.SessionReference;
|
|
@@ -24678,6 +24898,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24678
24898
|
readonly 'rate_level_key'?: string;
|
|
24679
24899
|
readonly 'cost_estimate_source': io.flow.label.v0.enums.CostEstimateSource;
|
|
24680
24900
|
readonly 'cost': io.flow.common.v0.models.Money;
|
|
24901
|
+
readonly 'dim_factor': number;
|
|
24681
24902
|
}
|
|
24682
24903
|
|
|
24683
24904
|
interface ShippingCostDeleted {
|
|
@@ -24767,28 +24988,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24767
24988
|
readonly 'include_unpublished'?: boolean;
|
|
24768
24989
|
}
|
|
24769
24990
|
|
|
24770
|
-
interface ShopifyAdaptivePricingCoefficients {
|
|
24771
|
-
readonly 'id': string;
|
|
24772
|
-
readonly 'organization_id': string;
|
|
24773
|
-
readonly 'destination_coefficients': io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
24774
|
-
}
|
|
24775
|
-
|
|
24776
|
-
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
24777
|
-
readonly 'discriminator': 'shopify_adaptive_pricing_coefficients_deleted';
|
|
24778
|
-
readonly 'event_id': string;
|
|
24779
|
-
readonly 'timestamp': string;
|
|
24780
|
-
readonly 'organization': string;
|
|
24781
|
-
readonly 'id': string;
|
|
24782
|
-
}
|
|
24783
|
-
|
|
24784
|
-
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
24785
|
-
readonly 'discriminator': 'shopify_adaptive_pricing_coefficients_upserted';
|
|
24786
|
-
readonly 'event_id': string;
|
|
24787
|
-
readonly 'timestamp': string;
|
|
24788
|
-
readonly 'organization': string;
|
|
24789
|
-
readonly 'shopify_adaptive_pricing_coefficients': io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
24790
|
-
}
|
|
24791
|
-
|
|
24792
24991
|
interface ShopifyAddress {
|
|
24793
24992
|
readonly 'address1': string;
|
|
24794
24993
|
readonly 'city': string;
|
|
@@ -24828,6 +25027,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24828
25027
|
readonly 'phone'?: string;
|
|
24829
25028
|
}
|
|
24830
25029
|
|
|
25030
|
+
interface ShopifyCost {
|
|
25031
|
+
readonly 'subtotal': io.flow.internal.v0.models.ShopifyMoney;
|
|
25032
|
+
readonly 'tax': io.flow.internal.v0.models.ShopifyMoney;
|
|
25033
|
+
readonly 'total': io.flow.internal.v0.models.ShopifyMoney;
|
|
25034
|
+
}
|
|
25035
|
+
|
|
24831
25036
|
interface ShopifyDispute {
|
|
24832
25037
|
readonly 'id': string;
|
|
24833
25038
|
readonly 'organization_id': string;
|
|
@@ -25196,6 +25401,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25196
25401
|
interface ShopifyMerchantMarketCountry {
|
|
25197
25402
|
readonly 'code': string;
|
|
25198
25403
|
readonly 'actively_managing': boolean;
|
|
25404
|
+
readonly 'enabled': boolean;
|
|
25199
25405
|
}
|
|
25200
25406
|
|
|
25201
25407
|
interface ShopifyMerchantMarkets {
|
|
@@ -25558,7 +25764,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25558
25764
|
|
|
25559
25765
|
interface ShopifyShipmentRateAvailable {
|
|
25560
25766
|
readonly 'carrier_service_id': string;
|
|
25561
|
-
readonly 'total_charges': io.flow.internal.v0.models.
|
|
25767
|
+
readonly 'total_charges': io.flow.internal.v0.models.ShopifyCost;
|
|
25562
25768
|
readonly 'charges': io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
25563
25769
|
readonly 'shipment_options': io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
25564
25770
|
readonly 'expected_delivery_date'?: string;
|
|
@@ -25568,12 +25774,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25568
25774
|
|
|
25569
25775
|
interface ShopifyShipmentRateCharge {
|
|
25570
25776
|
readonly 'code': io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
25571
|
-
readonly 'cost': io.flow.internal.v0.models.
|
|
25777
|
+
readonly 'cost': io.flow.internal.v0.models.ShopifyCost;
|
|
25572
25778
|
}
|
|
25573
25779
|
|
|
25574
25780
|
interface ShopifyShipmentRateOption {
|
|
25575
25781
|
readonly 'code': io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
25576
|
-
readonly 'cost': io.flow.internal.v0.models.
|
|
25782
|
+
readonly 'cost': io.flow.internal.v0.models.ShopifyCost;
|
|
25577
25783
|
readonly 'optional'?: boolean;
|
|
25578
25784
|
}
|
|
25579
25785
|
|
|
@@ -25619,12 +25825,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25619
25825
|
readonly 'byoa': boolean;
|
|
25620
25826
|
}
|
|
25621
25827
|
|
|
25622
|
-
interface ShopifyShipmentRateTotalCharges {
|
|
25623
|
-
readonly 'subtotal': io.flow.internal.v0.models.ShopifyMoney;
|
|
25624
|
-
readonly 'tax': io.flow.internal.v0.models.ShopifyMoney;
|
|
25625
|
-
readonly 'total': io.flow.internal.v0.models.ShopifyMoney;
|
|
25626
|
-
}
|
|
25627
|
-
|
|
25628
25828
|
interface ShopifyShipmentRateUnavailable {
|
|
25629
25829
|
readonly 'carrier_service_id': string;
|
|
25630
25830
|
readonly 'reasons': io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
@@ -27180,7 +27380,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27180
27380
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
27181
27381
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
27182
27382
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
27183
|
-
type Event = (io.flow.internal.v0.models.AdaptiveShippingRateUpserted | io.flow.internal.v0.models.AdaptiveShippingRateDeleted | 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.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.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | 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.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | 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.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | 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.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | 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.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | 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.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.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | 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.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted | io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | 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.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | 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);
|
|
27383
|
+
type Event = (io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted | io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted | io.flow.internal.v0.models.AdaptivePricingUpdateUpserted | io.flow.internal.v0.models.AdaptivePricingUpdateDeleted | io.flow.internal.v0.models.AdaptiveShippingRateUpserted | io.flow.internal.v0.models.AdaptiveShippingRateDeleted | 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.SalesPaymentRecordUpserted | io.flow.internal.v0.models.SalesPaymentRecordDeleted | 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.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.ChannelShopStatisticsUpserted | io.flow.internal.v0.models.ChannelShopStatisticsDeleted | 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.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.FlatRateLabelReversalUpserted | io.flow.internal.v0.models.FlatRateLabelReversalDeleted | 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.GuaranteedShippingPublishedOutputUpserted | io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted | 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.AdaptiveShippingOrderGuaranteeUpserted | io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted | 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.PreonboardingSellabilityResultInserted | io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated | io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted | 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.ProductSellabilityResultInserted | io.flow.internal.v0.models.ProductSellabilityResultUpdated | io.flow.internal.v0.models.ProductSellabilityResultDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | 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.RestrictionsAthenaDailyopsPcPvUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsPcPvDeleted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsUpserted | io.flow.internal.v0.models.RestrictionsAthenaDailyopsFsDeleted | 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.PreonboardingMerchantUpserted | io.flow.internal.v0.models.PreonboardingMerchantDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted | io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted | 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.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.RaveenaItemUpserted | io.flow.internal.v0.models.RaveenaItemDeleted | io.flow.internal.v0.models.MaheshItemUpserted | io.flow.internal.v0.models.MaheshItemDeleted | 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);
|
|
27184
27384
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
27185
27385
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
27186
27386
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -27298,6 +27498,13 @@ export const company: PropTypes.Requireable<io.flow.internal.v0.enums.Company>;
|
|
|
27298
27498
|
export const complianceType: PropTypes.Requireable<io.flow.internal.v0.enums.ComplianceType>;
|
|
27299
27499
|
export const connectReportPaymentTransferType: PropTypes.Requireable<io.flow.internal.v0.enums.ConnectReportPaymentTransferType>;
|
|
27300
27500
|
export const connectReportTransferTransferType: PropTypes.Requireable<io.flow.internal.v0.enums.ConnectReportTransferTransferType>;
|
|
27501
|
+
export const cpscCertificateType: PropTypes.Requireable<io.flow.internal.v0.enums.CpscCertificateType>;
|
|
27502
|
+
export const cpscFileType: PropTypes.Requireable<io.flow.internal.v0.enums.CpscFileType>;
|
|
27503
|
+
export const cpscLabType: PropTypes.Requireable<io.flow.internal.v0.enums.CpscLabType>;
|
|
27504
|
+
export const cpscLotNumberAssignedBy: PropTypes.Requireable<io.flow.internal.v0.enums.CpscLotNumberAssignedBy>;
|
|
27505
|
+
export const cpscPointOfContactType: PropTypes.Requireable<io.flow.internal.v0.enums.CpscPointOfContactType>;
|
|
27506
|
+
export const cpscPrimaryProductIdType: PropTypes.Requireable<io.flow.internal.v0.enums.CpscPrimaryProductIdType>;
|
|
27507
|
+
export const cpscYesNo: PropTypes.Requireable<io.flow.internal.v0.enums.CpscYesNo>;
|
|
27301
27508
|
export const crossdockTrackingStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CrossdockTrackingStatus>;
|
|
27302
27509
|
export const debugAccountingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DebugAccountingTransactionType>;
|
|
27303
27510
|
export const deliveredDutyOptionMessageType: PropTypes.Requireable<io.flow.internal.v0.enums.DeliveredDutyOptionMessageType>;
|
|
@@ -27336,6 +27543,7 @@ export const featureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.Feat
|
|
|
27336
27543
|
export const featureType: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureType>;
|
|
27337
27544
|
export const feesSource: PropTypes.Requireable<io.flow.internal.v0.enums.FeesSource>;
|
|
27338
27545
|
export const fileType: PropTypes.Requireable<io.flow.internal.v0.enums.FileType>;
|
|
27546
|
+
export const flatRateLabelGuaranteeStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FlatRateLabelGuaranteeStatus>;
|
|
27339
27547
|
export const flatRateLabelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.FlatRateLabelTransactionType>;
|
|
27340
27548
|
export const fraudProvider: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProvider>;
|
|
27341
27549
|
export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProviderStatus>;
|
|
@@ -27526,8 +27734,13 @@ export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
27526
27734
|
export const accountingPendingOrderMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingPendingOrderMetadata>;
|
|
27527
27735
|
export const accountingReturnMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingReturnMetadata>;
|
|
27528
27736
|
export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
|
|
27737
|
+
export const adaptivePricingCoefficient: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingCoefficient>;
|
|
27738
|
+
export const adaptivePricingCoefficientDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted>;
|
|
27739
|
+
export const adaptivePricingCoefficientUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted>;
|
|
27529
27740
|
export const adaptivePricingDestinationUpdate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingDestinationUpdate>;
|
|
27530
27741
|
export const adaptivePricingUpdate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingUpdate>;
|
|
27742
|
+
export const adaptivePricingUpdateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingUpdateDeleted>;
|
|
27743
|
+
export const adaptivePricingUpdateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingUpdateUpserted>;
|
|
27531
27744
|
export const adaptiveShippingOrderGuarantee: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee>;
|
|
27532
27745
|
export const adaptiveShippingOrderGuaranteeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted>;
|
|
27533
27746
|
export const adaptiveShippingOrderGuaranteeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted>;
|
|
@@ -27854,6 +28067,9 @@ export const components: PropTypes.Requireable<io.flow.internal.v0.models.Compon
|
|
|
27854
28067
|
export const consoleLabelRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.ConsoleLabelRequestForm>;
|
|
27855
28068
|
export const consoleMarkUnresolvableForm: PropTypes.Requireable<io.flow.internal.v0.models.ConsoleMarkUnresolvableForm>;
|
|
27856
28069
|
export const courthouseProductSummary: PropTypes.Requireable<io.flow.internal.v0.models.CourthouseProductSummary>;
|
|
28070
|
+
export const cpscProductRegistration: PropTypes.Requireable<io.flow.internal.v0.models.CpscProductRegistration>;
|
|
28071
|
+
export const cpscQueueEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.CpscQueueEnvelope>;
|
|
28072
|
+
export const cpscQueueMessage: PropTypes.Requireable<io.flow.internal.v0.models.CpscQueueMessage>;
|
|
27857
28073
|
export const cryptoAccount: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccount>;
|
|
27858
28074
|
export const cryptoAccountModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccountModificationForm>;
|
|
27859
28075
|
export const cryptoAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccountPutForm>;
|
|
@@ -28123,6 +28339,9 @@ export const googleLinker: PropTypes.Requireable<io.flow.internal.v0.models.Goog
|
|
|
28123
28339
|
export const googleShoppingAccountParameters: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingAccountParameters>;
|
|
28124
28340
|
export const googleShoppingSetting: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingSetting>;
|
|
28125
28341
|
export const googleTagManager: PropTypes.Requireable<io.flow.internal.v0.models.GoogleTagManager>;
|
|
28342
|
+
export const guaranteedShippingPublishedOutput: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutput>;
|
|
28343
|
+
export const guaranteedShippingPublishedOutputDeleted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted>;
|
|
28344
|
+
export const guaranteedShippingPublishedOutputUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted>;
|
|
28126
28345
|
export const harmonizationClassificationStatisticsData: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsData>;
|
|
28127
28346
|
export const harmonizationClassificationStatisticsPublished: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished>;
|
|
28128
28347
|
export const harmonizationCodesImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationCodesImport>;
|
|
@@ -28262,7 +28481,9 @@ export const loyaltyProgramMessage: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
28262
28481
|
export const loyaltyProgramReward: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramReward>;
|
|
28263
28482
|
export const loyaltyProgramRewards: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramRewards>;
|
|
28264
28483
|
export const maheshItem: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItem>;
|
|
28484
|
+
export const maheshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItemDeleted>;
|
|
28265
28485
|
export const maheshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItemForm>;
|
|
28486
|
+
export const maheshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItemUpserted>;
|
|
28266
28487
|
export const mainTransaction: PropTypes.Requireable<io.flow.internal.v0.models.MainTransaction>;
|
|
28267
28488
|
export const mainTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MainTransactionDeleted>;
|
|
28268
28489
|
export const mainTransactionDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.MainTransactionDeletedV2>;
|
|
@@ -28608,7 +28829,6 @@ export const ratecardDimensionEstimateDeleted: PropTypes.Requireable<io.flow.int
|
|
|
28608
28829
|
export const ratecardDimensionEstimateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardDimensionEstimateUpserted>;
|
|
28609
28830
|
export const ratecardInternalServiceFee: PropTypes.Requireable<io.flow.internal.v0.models.RatecardInternalServiceFee>;
|
|
28610
28831
|
export const ratecardInternalSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatecardInternalSummary>;
|
|
28611
|
-
export const ratecardLanesImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.RatecardLanesImportRequest>;
|
|
28612
28832
|
export const ratecardRateLevelDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelDeleted>;
|
|
28613
28833
|
export const ratecardRateLevelOrganizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted>;
|
|
28614
28834
|
export const ratecardRateLevelOrganizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted>;
|
|
@@ -28617,8 +28837,6 @@ export const ratecardRateLevelRatecardUpserted: PropTypes.Requireable<io.flow.in
|
|
|
28617
28837
|
export const ratecardRateLevelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelUpserted>;
|
|
28618
28838
|
export const ratecardServiceFeeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeeDeleted>;
|
|
28619
28839
|
export const ratecardServiceFeeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeeUpserted>;
|
|
28620
|
-
export const ratecardServiceFeesOverride: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeesOverride>;
|
|
28621
|
-
export const ratecardServiceFeesOverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeesOverrideForm>;
|
|
28622
28840
|
export const ratesChanged: PropTypes.Requireable<io.flow.internal.v0.models.RatesChanged>;
|
|
28623
28841
|
export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatesNamesSummary>;
|
|
28624
28842
|
export const raveenaItem: PropTypes.Requireable<io.flow.internal.v0.models.RaveenaItem>;
|
|
@@ -28660,10 +28878,12 @@ export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
28660
28878
|
export const reportingFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFees>;
|
|
28661
28879
|
export const reportingFreight: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFreight>;
|
|
28662
28880
|
export const reportingFreightGuaranteed: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFreightGuaranteed>;
|
|
28881
|
+
export const reportingFreightSubsidy: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFreightSubsidy>;
|
|
28663
28882
|
export const reportingFulfillment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillment>;
|
|
28664
28883
|
export const reportingFulfillmentHas: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentHas>;
|
|
28665
28884
|
export const reportingFulfillmentIs: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentIs>;
|
|
28666
28885
|
export const reportingFx: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFx>;
|
|
28886
|
+
export const reportingFxValue: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFxValue>;
|
|
28667
28887
|
export const reportingMerchantBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantBreakdown>;
|
|
28668
28888
|
export const reportingMerchantFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFees>;
|
|
28669
28889
|
export const reportingMerchantFreight: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFreight>;
|
|
@@ -28753,6 +28973,8 @@ export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.Ro
|
|
|
28753
28973
|
export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
|
|
28754
28974
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|
|
28755
28975
|
export const salesPaymentRecord: PropTypes.Requireable<io.flow.internal.v0.models.SalesPaymentRecord>;
|
|
28976
|
+
export const salesPaymentRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SalesPaymentRecordDeleted>;
|
|
28977
|
+
export const salesPaymentRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SalesPaymentRecordUpserted>;
|
|
28756
28978
|
export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
|
|
28757
28979
|
export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
|
|
28758
28980
|
export const scheduledPayment: PropTypes.Requireable<io.flow.internal.v0.models.ScheduledPayment>;
|
|
@@ -28769,6 +28991,8 @@ export const searchOrderSummary: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
28769
28991
|
export const searchProviderExport: PropTypes.Requireable<io.flow.internal.v0.models.SearchProviderExport>;
|
|
28770
28992
|
export const searchTrackingSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchTrackingSummary>;
|
|
28771
28993
|
export const sellabilityCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityCheckResult>;
|
|
28994
|
+
export const serviceFees: PropTypes.Requireable<io.flow.internal.v0.models.ServiceFees>;
|
|
28995
|
+
export const serviceFeesForm: PropTypes.Requireable<io.flow.internal.v0.models.ServiceFeesForm>;
|
|
28772
28996
|
export const sessionOrderData: PropTypes.Requireable<io.flow.internal.v0.models.SessionOrderData>;
|
|
28773
28997
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
28774
28998
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
@@ -28782,9 +29006,6 @@ export const shippingPricing: PropTypes.Requireable<io.flow.internal.v0.models.S
|
|
|
28782
29006
|
export const shippingRateEstimateAvailableInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal>;
|
|
28783
29007
|
export const shippingRateEstimateInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateInternal>;
|
|
28784
29008
|
export const shippingRateEstimateRequestInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateRequestInternal>;
|
|
28785
|
-
export const shopifyAdaptivePricingCoefficients: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients>;
|
|
28786
|
-
export const shopifyAdaptivePricingCoefficientsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted>;
|
|
28787
|
-
export const shopifyAdaptivePricingCoefficientsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted>;
|
|
28788
29009
|
export const shopifyAddress: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyAddress>;
|
|
28789
29010
|
export const shopifyCallbackError: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCallbackError>;
|
|
28790
29011
|
export const shopifyCallbackErrorItem: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCallbackErrorItem>;
|
|
@@ -28792,6 +29013,7 @@ export const shopifyCatalogPublication: PropTypes.Requireable<io.flow.internal.v
|
|
|
28792
29013
|
export const shopifyChannelOrganizationToken: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationToken>;
|
|
28793
29014
|
export const shopifyChannelOrganizationTokens: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationTokens>;
|
|
28794
29015
|
export const shopifyContactDetails: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyContactDetails>;
|
|
29016
|
+
export const shopifyCost: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCost>;
|
|
28795
29017
|
export const shopifyDispute: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDispute>;
|
|
28796
29018
|
export const shopifyDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDisputeDeleted>;
|
|
28797
29019
|
export const shopifyDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDisputeUpserted>;
|
|
@@ -28905,7 +29127,6 @@ export const shopifyShipmentRateRequest: PropTypes.Requireable<io.flow.internal.
|
|
|
28905
29127
|
export const shopifyShipmentRateResponse: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateResponse>;
|
|
28906
29128
|
export const shopifyShipmentRateShipment: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateShipment>;
|
|
28907
29129
|
export const shopifyShipmentRateShipper: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateShipper>;
|
|
28908
|
-
export const shopifyShipmentRateTotalCharges: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges>;
|
|
28909
29130
|
export const shopifyShipmentRateUnavailable: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateUnavailable>;
|
|
28910
29131
|
export const shopifyShippingLocation: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShippingLocation>;
|
|
28911
29132
|
export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
|