@flowio/api-internal-prop-types 9.24.136 → 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 +464 -93
- package/lib/api-internal.js +1 -1
- package/package.json +1 -1
- package/src/api-internal.d.ts +464 -93
- package/src/api-internal.js +728 -295
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 {
|
|
@@ -5802,6 +5817,18 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5802
5817
|
readonly 'response': io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
5803
5818
|
}
|
|
5804
5819
|
|
|
5820
|
+
interface ShopifyMerchantMarketCountry {
|
|
5821
|
+
readonly 'code': string;
|
|
5822
|
+
readonly 'actively_managing': boolean;
|
|
5823
|
+
readonly 'enabled': boolean;
|
|
5824
|
+
}
|
|
5825
|
+
|
|
5826
|
+
interface ShopifyMerchantMarkets {
|
|
5827
|
+
readonly 'id': string;
|
|
5828
|
+
readonly 'organization_id': string;
|
|
5829
|
+
readonly 'countries': io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
5830
|
+
}
|
|
5831
|
+
|
|
5805
5832
|
interface ShopifyOrderCancelForm {
|
|
5806
5833
|
readonly 'note'?: string;
|
|
5807
5834
|
}
|
|
@@ -5914,6 +5941,42 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5914
5941
|
readonly 'voids_b2b_invoice'?: boolean;
|
|
5915
5942
|
}
|
|
5916
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
|
+
|
|
5917
5980
|
interface B2BInvoice {
|
|
5918
5981
|
readonly 'id': string;
|
|
5919
5982
|
readonly 'number': string;
|
|
@@ -7679,7 +7742,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
7679
7742
|
type ShopifyOrderValueType = 'string' | 'integer';
|
|
7680
7743
|
type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
|
|
7681
7744
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
7682
|
-
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'orders/risk_assessment_changed' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update' | 'bulk_operations/finish' | 'shop/update';
|
|
7745
|
+
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'orders/risk_assessment_changed' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update' | 'bulk_operations/finish' | 'shop/update' | 'managed_markets_adaptive_pricing/updated';
|
|
7683
7746
|
}
|
|
7684
7747
|
|
|
7685
7748
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
@@ -7745,6 +7808,21 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7745
7808
|
readonly 'shop': io.flow.shopify.markets.v0.models.Shop;
|
|
7746
7809
|
}
|
|
7747
7810
|
|
|
7811
|
+
interface ShopifyAdaptivePricingDestination {
|
|
7812
|
+
readonly 'country_code': string;
|
|
7813
|
+
readonly 'updated_at': string;
|
|
7814
|
+
readonly 'tax_and_duty_coefficient': string;
|
|
7815
|
+
readonly 'fees_coefficient': string;
|
|
7816
|
+
readonly 'merchant_subsidy_amount': string;
|
|
7817
|
+
readonly 'merchant_subsidy_currency': string;
|
|
7818
|
+
readonly 'adaptive_pricing_enabled': boolean;
|
|
7819
|
+
readonly 'adaptive_shipping_enabled': boolean;
|
|
7820
|
+
}
|
|
7821
|
+
|
|
7822
|
+
interface ShopifyAdaptivePricingDestinationsWrapper {
|
|
7823
|
+
readonly 'destinations': io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestination[];
|
|
7824
|
+
}
|
|
7825
|
+
|
|
7748
7826
|
interface ShopifyAppliedDiscount {
|
|
7749
7827
|
readonly 'title'?: string;
|
|
7750
7828
|
readonly 'description'?: string;
|
|
@@ -8489,7 +8567,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
8489
8567
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
8490
8568
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
8491
8569
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
8492
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
8570
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'order_cancelled' | 'organization_deactivated';
|
|
8493
8571
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
8494
8572
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
8495
8573
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -9084,6 +9162,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
9084
9162
|
readonly 'created_at'?: string;
|
|
9085
9163
|
readonly 'status'?: io.flow.common.v0.enums.OrganizationStatus;
|
|
9086
9164
|
readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
|
|
9165
|
+
readonly 'channel'?: io.flow.common.v0.models.ChannelReference;
|
|
9087
9166
|
}
|
|
9088
9167
|
|
|
9089
9168
|
interface OrganizationDefaults {
|
|
@@ -9097,6 +9176,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
9097
9176
|
interface OrganizationReference {
|
|
9098
9177
|
readonly 'discriminator': 'organization_reference';
|
|
9099
9178
|
readonly 'id': string;
|
|
9179
|
+
readonly 'channel'?: io.flow.common.v0.models.ChannelReference;
|
|
9100
9180
|
}
|
|
9101
9181
|
|
|
9102
9182
|
interface OrganizationSummary {
|
|
@@ -9394,6 +9474,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
9394
9474
|
readonly 'registration': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
9395
9475
|
}
|
|
9396
9476
|
|
|
9477
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
9478
|
+
readonly 'discriminator': 'shopify_merchant_markets_deleted';
|
|
9479
|
+
readonly 'event_id': string;
|
|
9480
|
+
readonly 'timestamp': string;
|
|
9481
|
+
readonly 'organization': string;
|
|
9482
|
+
readonly 'id': string;
|
|
9483
|
+
}
|
|
9484
|
+
|
|
9485
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
9486
|
+
readonly 'discriminator': 'shopify_merchant_markets_upserted';
|
|
9487
|
+
readonly 'event_id': string;
|
|
9488
|
+
readonly 'timestamp': string;
|
|
9489
|
+
readonly 'organization': string;
|
|
9490
|
+
readonly 'shopify_merchant_markets': io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarkets;
|
|
9491
|
+
}
|
|
9492
|
+
|
|
9397
9493
|
interface ShopifyOrderRiskAssessmentDeleted {
|
|
9398
9494
|
readonly 'discriminator': 'shopify_order_risk_assessment_deleted';
|
|
9399
9495
|
readonly 'event_id': string;
|
|
@@ -9493,7 +9589,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
9493
9589
|
}
|
|
9494
9590
|
|
|
9495
9591
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
9496
|
-
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);
|
|
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);
|
|
9497
9593
|
}
|
|
9498
9594
|
|
|
9499
9595
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -10813,6 +10909,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10813
10909
|
interface LaneSummary {
|
|
10814
10910
|
readonly 'id': string;
|
|
10815
10911
|
readonly 'ratecard': io.flow.ratecard.v0.models.RatecardSummary;
|
|
10912
|
+
readonly 'dim_factor': number;
|
|
10816
10913
|
}
|
|
10817
10914
|
|
|
10818
10915
|
interface LargePackageServiceFee {
|
|
@@ -10888,6 +10985,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10888
10985
|
readonly 'glbe_shipping_method_id'?: string;
|
|
10889
10986
|
readonly 'glbe_proposition_name'?: string;
|
|
10890
10987
|
readonly 'channel_revenue_share_percentage'?: number;
|
|
10988
|
+
readonly 'channel_id'?: string;
|
|
10891
10989
|
}
|
|
10892
10990
|
|
|
10893
10991
|
interface RatecardCarrierSummary {
|
|
@@ -10990,6 +11088,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10990
11088
|
readonly 'glbe_shipping_method_id'?: string;
|
|
10991
11089
|
readonly 'glbe_proposition_name'?: string;
|
|
10992
11090
|
readonly 'channel_revenue_share_percentage'?: number;
|
|
11091
|
+
readonly 'channel_id'?: string;
|
|
10993
11092
|
readonly 'data'?: io.flow.ratecard.v0.models.RatecardData;
|
|
10994
11093
|
}
|
|
10995
11094
|
|
|
@@ -11025,20 +11124,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11025
11124
|
readonly 'distance_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11026
11125
|
}
|
|
11027
11126
|
|
|
11028
|
-
interface RatecardLaneImportForm {
|
|
11029
|
-
readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
11030
|
-
readonly 'service': string;
|
|
11031
|
-
readonly 'currency': string;
|
|
11032
|
-
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
11033
|
-
readonly 'origin': io.flow.common.v0.models.Zone;
|
|
11034
|
-
readonly 'destination': io.flow.common.v0.models.Zone;
|
|
11035
|
-
readonly 'shipment_window': io.flow.ratecard.v0.models.ShipmentWindow;
|
|
11036
|
-
readonly 'dim_factor': number;
|
|
11037
|
-
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11038
|
-
readonly 'distance_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11039
|
-
readonly 'rates': io.flow.ratecard.v0.models.RatecardRateForm[];
|
|
11040
|
-
}
|
|
11041
|
-
|
|
11042
11127
|
interface RatecardLaneVersion {
|
|
11043
11128
|
readonly 'id': string;
|
|
11044
11129
|
readonly 'timestamp': string;
|
|
@@ -11046,14 +11131,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11046
11131
|
readonly 'ratecard_lane': io.flow.ratecard.v0.models.RatecardLane;
|
|
11047
11132
|
}
|
|
11048
11133
|
|
|
11049
|
-
interface RatecardLanesImportRequestData {
|
|
11050
|
-
readonly 'id': string;
|
|
11051
|
-
readonly 'source_url': string;
|
|
11052
|
-
readonly 'filename'?: string;
|
|
11053
|
-
}
|
|
11054
|
-
|
|
11055
11134
|
interface RatecardRate {
|
|
11056
|
-
readonly 'id': string;
|
|
11057
11135
|
readonly 'amount': number;
|
|
11058
11136
|
readonly 'weight': number;
|
|
11059
11137
|
}
|
|
@@ -11063,13 +11141,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
11063
11141
|
readonly 'weight': number;
|
|
11064
11142
|
}
|
|
11065
11143
|
|
|
11066
|
-
interface RatecardRateVersion {
|
|
11067
|
-
readonly 'id': string;
|
|
11068
|
-
readonly 'timestamp': string;
|
|
11069
|
-
readonly 'type': io.flow.common.v0.enums.ChangeType;
|
|
11070
|
-
readonly 'ratecard_rate': io.flow.ratecard.v0.models.RatecardRate;
|
|
11071
|
-
}
|
|
11072
|
-
|
|
11073
11144
|
interface RatecardReference {
|
|
11074
11145
|
readonly 'id': string;
|
|
11075
11146
|
}
|
|
@@ -12279,6 +12350,7 @@ declare namespace io.flow.merchant.onboarding.v0.unions {
|
|
|
12279
12350
|
declare namespace io.flow.catalog.v0.enums {
|
|
12280
12351
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
12281
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';
|
|
12282
12354
|
type FulfillmentMethodType = 'fulfillment_method';
|
|
12283
12355
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
12284
12356
|
type ImageTag = 'thumbnail' | 'checkout';
|
|
@@ -12910,9 +12982,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
12910
12982
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
12911
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';
|
|
12912
12984
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
12913
|
-
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12985
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
12914
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';
|
|
12915
|
-
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';
|
|
12916
12988
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
12917
12989
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
12918
12990
|
}
|
|
@@ -13116,6 +13188,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13116
13188
|
readonly 'reason': io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
13117
13189
|
}
|
|
13118
13190
|
|
|
13191
|
+
interface PayoutStatusPaid {
|
|
13192
|
+
readonly 'code': 'paid';
|
|
13193
|
+
readonly 'timestamp': string;
|
|
13194
|
+
}
|
|
13195
|
+
|
|
13119
13196
|
interface PayoutStatusScheduled {
|
|
13120
13197
|
readonly 'code': 'scheduled';
|
|
13121
13198
|
readonly 'placeholder'?: string;
|
|
@@ -13286,6 +13363,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13286
13363
|
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
13287
13364
|
readonly 'carrier': io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
13288
13365
|
readonly 'revenue_share_percentage'?: number;
|
|
13366
|
+
readonly 'actual'?: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
13289
13367
|
}
|
|
13290
13368
|
|
|
13291
13369
|
interface TransactionMetadataShippingLabelCarrier {
|
|
@@ -13413,7 +13491,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13413
13491
|
|
|
13414
13492
|
declare namespace io.flow.billing.v0.unions {
|
|
13415
13493
|
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
13416
|
-
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);
|
|
13417
13495
|
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
13418
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);
|
|
13419
13497
|
}
|
|
@@ -13901,6 +13979,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13901
13979
|
readonly 'price': io.flow.common.v0.models.Money;
|
|
13902
13980
|
readonly 'description': string;
|
|
13903
13981
|
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13982
|
+
readonly 'inferred_taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13904
13983
|
readonly 'mode': io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
13905
13984
|
readonly 'catalog_size'?: number;
|
|
13906
13985
|
readonly 'relative_ranking'?: number;
|
|
@@ -14067,6 +14146,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
14067
14146
|
readonly 'province'?: string;
|
|
14068
14147
|
readonly 'self_billing_agreement_effective_at': string;
|
|
14069
14148
|
readonly 'self_billing_agreement_expires_at'?: string;
|
|
14149
|
+
readonly 'legal_name'?: string;
|
|
14070
14150
|
}
|
|
14071
14151
|
|
|
14072
14152
|
interface OrganizationVersion {
|
|
@@ -14096,6 +14176,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
14096
14176
|
readonly 'country': string;
|
|
14097
14177
|
readonly 'tax_code': string;
|
|
14098
14178
|
readonly 'province'?: string;
|
|
14179
|
+
readonly 'legal_name'?: string;
|
|
14099
14180
|
}
|
|
14100
14181
|
}
|
|
14101
14182
|
|
|
@@ -14126,18 +14207,6 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14126
14207
|
|
|
14127
14208
|
interface BankAccountInfoKor {
|
|
14128
14209
|
readonly 'discriminator': 'kor';
|
|
14129
|
-
readonly 'name'?: string;
|
|
14130
|
-
readonly 'address'?: io.flow.common.v0.models.Address;
|
|
14131
|
-
readonly 'phone'?: string;
|
|
14132
|
-
readonly 'email'?: string;
|
|
14133
|
-
readonly 'bank_account_number': string;
|
|
14134
|
-
readonly 'bank_routing_number'?: string;
|
|
14135
|
-
readonly 'bank_name'?: string;
|
|
14136
|
-
readonly 'bank_address'?: io.flow.common.v0.models.Address;
|
|
14137
|
-
}
|
|
14138
|
-
|
|
14139
|
-
interface BankAccountInfoKorV2 {
|
|
14140
|
-
readonly 'discriminator': 'kor_v2';
|
|
14141
14210
|
readonly 'name': string;
|
|
14142
14211
|
readonly 'bank_account_number': string;
|
|
14143
14212
|
readonly 'bank_routing_number': string;
|
|
@@ -14152,7 +14221,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14152
14221
|
}
|
|
14153
14222
|
|
|
14154
14223
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
14155
|
-
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);
|
|
14156
14225
|
}
|
|
14157
14226
|
|
|
14158
14227
|
declare namespace io.flow.internal.v0.enums {
|
|
@@ -14169,18 +14238,18 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14169
14238
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
14170
14239
|
type AthenaDailyopsIntentLevel = 'low_intent' | 'high_intent';
|
|
14171
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';
|
|
14172
|
-
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
14241
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order' | 'settings';
|
|
14173
14242
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
14174
14243
|
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo' | 'mor_invoice' | 'mor_credit_memo' | 'label_invoice' | 'label_credit_memo';
|
|
14175
14244
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
14176
14245
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
14177
14246
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
14178
|
-
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
14247
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
14179
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';
|
|
14180
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';
|
|
14181
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';
|
|
14182
14251
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
14183
|
-
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';
|
|
14184
14253
|
type BojanaItemType = 'physical' | 'digital';
|
|
14185
14254
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
14186
14255
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -14195,7 +14264,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14195
14264
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
14196
14265
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
14197
14266
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
14198
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
14267
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'order_cancelled' | 'organization_deactivated';
|
|
14199
14268
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
14200
14269
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
14201
14270
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
@@ -14224,6 +14293,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14224
14293
|
type ComplianceType = 'weee';
|
|
14225
14294
|
type ConnectReportPaymentTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
|
|
14226
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';
|
|
14227
14303
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
14228
14304
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
14229
14305
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -14252,7 +14328,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14252
14328
|
type EmptyAttribute = 'irrelevant';
|
|
14253
14329
|
type ErpFileType = 'vendor';
|
|
14254
14330
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
14255
|
-
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_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';
|
|
14256
14332
|
type ExperienceImportType = 'experience_with_settings';
|
|
14257
14333
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14258
14334
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14262,7 +14338,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14262
14338
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
14263
14339
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
14264
14340
|
type FileType = 'pdf';
|
|
14265
|
-
type
|
|
14341
|
+
type FlatRateLabelGuaranteeStatus = 'active' | 'void';
|
|
14342
|
+
type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee' | 'subsidy';
|
|
14266
14343
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
14267
14344
|
type FraudProviderStatus = 'active' | 'archived';
|
|
14268
14345
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
@@ -14368,7 +14445,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14368
14445
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
14369
14446
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
14370
14447
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
14371
|
-
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';
|
|
14372
14449
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
14373
14450
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
14374
14451
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -14684,6 +14761,67 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14684
14761
|
readonly 'quantity': number;
|
|
14685
14762
|
}
|
|
14686
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
|
+
|
|
14793
|
+
interface AdaptivePricingDestinationUpdate {
|
|
14794
|
+
readonly 'country': string;
|
|
14795
|
+
readonly 'updated_at': string;
|
|
14796
|
+
readonly 'tax_and_duty_coefficient': number;
|
|
14797
|
+
readonly 'fees_coefficient': number;
|
|
14798
|
+
readonly 'merchant_subsidy': io.flow.common.v0.models.Money;
|
|
14799
|
+
}
|
|
14800
|
+
|
|
14801
|
+
interface AdaptivePricingUpdate {
|
|
14802
|
+
readonly 'channel_id': string;
|
|
14803
|
+
readonly 'organization_id': string;
|
|
14804
|
+
readonly 'destination_updates': io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
14805
|
+
}
|
|
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
|
+
|
|
14687
14825
|
interface AdaptiveShippingOrderGuarantee {
|
|
14688
14826
|
readonly 'id': string;
|
|
14689
14827
|
readonly 'organization_id': string;
|
|
@@ -14712,6 +14850,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14712
14850
|
interface AdaptiveShippingRate {
|
|
14713
14851
|
readonly 'id': string;
|
|
14714
14852
|
readonly 'organization_id': string;
|
|
14853
|
+
readonly 'channel_id': string;
|
|
14715
14854
|
readonly 'destination_country': string;
|
|
14716
14855
|
readonly 'coefficient': number;
|
|
14717
14856
|
readonly 'flat_rates': io.flow.internal.v0.models.FlatRate[];
|
|
@@ -15426,6 +15565,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15426
15565
|
readonly 'expected_delivery_by'?: string;
|
|
15427
15566
|
readonly 'attributes'?: Record<string, string>;
|
|
15428
15567
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
15568
|
+
readonly 'created_at'?: string;
|
|
15569
|
+
readonly 'failed_on'?: string;
|
|
15429
15570
|
}
|
|
15430
15571
|
|
|
15431
15572
|
interface BankPaymentDeletedV2 {
|
|
@@ -15717,6 +15858,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15717
15858
|
readonly 'b2b_fee_mor_tax': io.flow.common.v0.models.Price;
|
|
15718
15859
|
readonly 'b2b_fee_shipping_tax': io.flow.common.v0.models.Price;
|
|
15719
15860
|
readonly 'flat_rate_label': io.flow.common.v0.models.Price;
|
|
15861
|
+
readonly 'flat_rate_label_subsidy': io.flow.common.v0.models.Price;
|
|
15720
15862
|
}
|
|
15721
15863
|
|
|
15722
15864
|
interface BillingStatementUpserted {
|
|
@@ -17211,6 +17353,93 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17211
17353
|
readonly 'product_harmonization': io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
17212
17354
|
}
|
|
17213
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
|
+
|
|
17214
17443
|
interface CryptoAccount {
|
|
17215
17444
|
readonly 'discriminator': 'crypto_account';
|
|
17216
17445
|
readonly 'id': string;
|
|
@@ -18505,6 +18734,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18505
18734
|
readonly 'transfer'?: io.flow.internal.v0.models.Fee;
|
|
18506
18735
|
readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
|
|
18507
18736
|
readonly 'sp'?: io.flow.internal.v0.models.Fee;
|
|
18737
|
+
readonly 'revenue_share'?: io.flow.internal.v0.models.Fee;
|
|
18508
18738
|
}
|
|
18509
18739
|
|
|
18510
18740
|
interface FinanceBankAccount {
|
|
@@ -19365,6 +19595,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19365
19595
|
readonly 'tracker_id': string;
|
|
19366
19596
|
}
|
|
19367
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
|
+
|
|
19368
19624
|
interface HarmonizationClassificationStatisticsData {
|
|
19369
19625
|
readonly 'statistics': io.flow.internal.v0.models.ClassificationStatistics;
|
|
19370
19626
|
}
|
|
@@ -20528,6 +20784,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20528
20784
|
readonly 'added_on': string;
|
|
20529
20785
|
}
|
|
20530
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
|
+
|
|
20531
20794
|
interface MaheshItemForm {
|
|
20532
20795
|
readonly 'number': string;
|
|
20533
20796
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -20536,6 +20799,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20536
20799
|
readonly 'added_on': string;
|
|
20537
20800
|
}
|
|
20538
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
|
+
|
|
20539
20809
|
interface MainTransaction {
|
|
20540
20810
|
readonly 'id': string;
|
|
20541
20811
|
readonly 'account': io.flow.billing.v0.models.AccountReference;
|
|
@@ -20548,6 +20818,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20548
20818
|
readonly 'channel_statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
20549
20819
|
readonly 'created_at': string;
|
|
20550
20820
|
readonly 'original_at'?: string;
|
|
20821
|
+
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20551
20822
|
}
|
|
20552
20823
|
|
|
20553
20824
|
interface MainTransactionDeleted {
|
|
@@ -20843,10 +21114,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20843
21114
|
readonly 'surcharges'?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
20844
21115
|
readonly 'freight_guaranteed'?: number;
|
|
20845
21116
|
readonly 'freight_non_guaranteed'?: number;
|
|
21117
|
+
readonly 'freight_subsidy'?: number;
|
|
20846
21118
|
readonly 'total': number;
|
|
20847
21119
|
readonly 'tax_refund'?: number;
|
|
20848
21120
|
readonly 'tax_reversal'?: number;
|
|
20849
21121
|
readonly 'duty_reversal'?: number;
|
|
21122
|
+
readonly 'flat_rate_reversal'?: number;
|
|
21123
|
+
readonly 'flat_rate_subsidy_reversal'?: number;
|
|
20850
21124
|
readonly 'tax_reversal_for_lvg_order'?: boolean;
|
|
20851
21125
|
readonly 'duty_reversal_for_lvg_order'?: boolean;
|
|
20852
21126
|
}
|
|
@@ -21872,6 +22146,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21872
22146
|
readonly 'organization': io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
21873
22147
|
readonly 'number': string;
|
|
21874
22148
|
readonly 'identifiers': io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
22149
|
+
readonly 'destination_province'?: string;
|
|
21875
22150
|
}
|
|
21876
22151
|
|
|
21877
22152
|
interface OtherRecordOrderSummaryIdentifiers {
|
|
@@ -22579,8 +22854,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22579
22854
|
readonly 'matching_sellability_positive_keywords'?: string[];
|
|
22580
22855
|
readonly 'classification_failure_reason'?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
22581
22856
|
readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22857
|
+
readonly 'inferred_taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22858
|
+
readonly 'effective_taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
22582
22859
|
readonly 'fingerprint': string;
|
|
22583
22860
|
readonly 'screening_mode'?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
22861
|
+
readonly 'created_at'?: string;
|
|
22584
22862
|
}
|
|
22585
22863
|
|
|
22586
22864
|
interface PreonboardingSellabilityResultDeleted {
|
|
@@ -23257,14 +23535,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23257
23535
|
readonly 'number': string;
|
|
23258
23536
|
}
|
|
23259
23537
|
|
|
23260
|
-
interface RatecardLanesImportRequest {
|
|
23261
|
-
readonly 'discriminator': 'ratecard_lanes_import_request';
|
|
23262
|
-
readonly 'event_id': string;
|
|
23263
|
-
readonly 'timestamp': string;
|
|
23264
|
-
readonly 'organization': string;
|
|
23265
|
-
readonly 'data': io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
23266
|
-
}
|
|
23267
|
-
|
|
23268
23538
|
interface RatecardRateLevelDeleted {
|
|
23269
23539
|
readonly 'discriminator': 'ratecard_rate_level_deleted';
|
|
23270
23540
|
readonly 'event_id': string;
|
|
@@ -23325,15 +23595,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23325
23595
|
readonly 'fee': io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
23326
23596
|
}
|
|
23327
23597
|
|
|
23328
|
-
interface RatecardServiceFeesOverride {
|
|
23329
|
-
readonly 'ratecard': io.flow.internal.v0.models.RatecardInternalSummary;
|
|
23330
|
-
readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
|
|
23331
|
-
}
|
|
23332
|
-
|
|
23333
|
-
interface RatecardServiceFeesOverrideForm {
|
|
23334
|
-
readonly 'service_fees': io.flow.ratecard.v0.unions.ServiceFee[];
|
|
23335
|
-
}
|
|
23336
|
-
|
|
23337
23598
|
interface RatesChanged {
|
|
23338
23599
|
readonly 'event_id': string;
|
|
23339
23600
|
readonly 'timestamp': string;
|
|
@@ -23462,7 +23723,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23462
23723
|
readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
23463
23724
|
readonly 'order_payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
23464
23725
|
readonly 'amount_range'?: io.flow.internal.v0.models.ReportAmountRange;
|
|
23465
|
-
readonly '
|
|
23726
|
+
readonly 'account_currencies'?: io.flow.internal.v0.enums.AccountCurrencyFilter[];
|
|
23466
23727
|
readonly 'channel_id'?: string;
|
|
23467
23728
|
}
|
|
23468
23729
|
|
|
@@ -23595,6 +23856,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23595
23856
|
readonly 'td_fx_diff'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23596
23857
|
}
|
|
23597
23858
|
|
|
23859
|
+
interface ReportingFreight {
|
|
23860
|
+
readonly 'guaranteed'?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
23861
|
+
readonly 'subsidy'?: io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
23862
|
+
}
|
|
23863
|
+
|
|
23864
|
+
interface ReportingFreightGuaranteed {
|
|
23865
|
+
readonly 'amount': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23866
|
+
readonly 'coefficient': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23867
|
+
}
|
|
23868
|
+
|
|
23869
|
+
interface ReportingFreightSubsidy {
|
|
23870
|
+
readonly 'amount': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23871
|
+
}
|
|
23872
|
+
|
|
23598
23873
|
interface ReportingFulfillment {
|
|
23599
23874
|
readonly 'id': string;
|
|
23600
23875
|
readonly 'sequence_number': number;
|
|
@@ -23635,13 +23910,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23635
23910
|
}
|
|
23636
23911
|
|
|
23637
23912
|
interface ReportingFx {
|
|
23638
|
-
readonly 'shipping': io.flow.internal.v0.models.
|
|
23639
|
-
readonly 'fees': io.flow.internal.v0.models.
|
|
23640
|
-
readonly 'product': io.flow.internal.v0.models.
|
|
23641
|
-
readonly 'tax': io.flow.internal.v0.models.
|
|
23642
|
-
readonly 'duty': io.flow.internal.v0.models.
|
|
23643
|
-
readonly 'tips'?: io.flow.internal.v0.models.
|
|
23644
|
-
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;
|
|
23645
23925
|
}
|
|
23646
23926
|
|
|
23647
23927
|
interface ReportingMerchantBreakdown {
|
|
@@ -23694,12 +23974,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23694
23974
|
readonly 'freight_breakdown'?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
23695
23975
|
readonly 'freight_guaranteed'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23696
23976
|
readonly 'freight_non_guaranteed'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23977
|
+
readonly 'freight_subsidy'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23697
23978
|
readonly 'discount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23698
23979
|
readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23699
23980
|
readonly 'tax_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23700
23981
|
readonly 'duty_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23701
23982
|
readonly 'tax_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23702
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;
|
|
23703
23986
|
readonly 'tax_reversal_for_lvg_order'?: boolean;
|
|
23704
23987
|
readonly 'duty_reversal_for_lvg_order'?: boolean;
|
|
23705
23988
|
}
|
|
@@ -24433,16 +24716,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24433
24716
|
readonly 'tax'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24434
24717
|
readonly 'duty'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24435
24718
|
readonly 'fees': io.flow.internal.v0.models.ReportingFees;
|
|
24719
|
+
readonly 'freight'?: io.flow.internal.v0.models.ReportingFreight;
|
|
24436
24720
|
readonly 'conversion_rate': io.flow.internal.v0.models.ReportingConversionRates;
|
|
24437
24721
|
readonly 'payment_is': io.flow.internal.v0.models.PaymentIs;
|
|
24438
24722
|
readonly 'price_inclusivity'?: io.flow.internal.v0.models.PriceInclusivity;
|
|
24439
24723
|
readonly 'destination_country': string;
|
|
24724
|
+
readonly 'destination_province'?: string;
|
|
24440
24725
|
readonly 'fulfilled_at'?: string;
|
|
24441
24726
|
readonly 'reconciliation'?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
24442
24727
|
readonly 'is_eu_destination'?: boolean;
|
|
24443
24728
|
readonly 'debug_url'?: string;
|
|
24444
24729
|
}
|
|
24445
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
|
+
|
|
24446
24747
|
interface SandboxSetup {
|
|
24447
24748
|
readonly 'requested_by': string;
|
|
24448
24749
|
}
|
|
@@ -24557,6 +24858,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24557
24858
|
readonly 'merchant_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
24558
24859
|
}
|
|
24559
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
|
+
|
|
24560
24870
|
interface SessionOrderData {
|
|
24561
24871
|
readonly 'id': string;
|
|
24562
24872
|
readonly 'session': io.flow.common.v0.models.SessionReference;
|
|
@@ -24588,6 +24898,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24588
24898
|
readonly 'rate_level_key'?: string;
|
|
24589
24899
|
readonly 'cost_estimate_source': io.flow.label.v0.enums.CostEstimateSource;
|
|
24590
24900
|
readonly 'cost': io.flow.common.v0.models.Money;
|
|
24901
|
+
readonly 'dim_factor': number;
|
|
24591
24902
|
}
|
|
24592
24903
|
|
|
24593
24904
|
interface ShippingCostDeleted {
|
|
@@ -24716,6 +25027,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24716
25027
|
readonly 'phone'?: string;
|
|
24717
25028
|
}
|
|
24718
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
|
+
|
|
24719
25036
|
interface ShopifyDispute {
|
|
24720
25037
|
readonly 'id': string;
|
|
24721
25038
|
readonly 'organization_id': string;
|
|
@@ -25081,6 +25398,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25081
25398
|
readonly 'weight_unit': io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
25082
25399
|
}
|
|
25083
25400
|
|
|
25401
|
+
interface ShopifyMerchantMarketCountry {
|
|
25402
|
+
readonly 'code': string;
|
|
25403
|
+
readonly 'actively_managing': boolean;
|
|
25404
|
+
readonly 'enabled': boolean;
|
|
25405
|
+
}
|
|
25406
|
+
|
|
25407
|
+
interface ShopifyMerchantMarkets {
|
|
25408
|
+
readonly 'id': string;
|
|
25409
|
+
readonly 'organization_id': string;
|
|
25410
|
+
readonly 'countries': io.flow.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
25411
|
+
}
|
|
25412
|
+
|
|
25413
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
25414
|
+
readonly 'discriminator': 'shopify_merchant_markets_deleted';
|
|
25415
|
+
readonly 'event_id': string;
|
|
25416
|
+
readonly 'timestamp': string;
|
|
25417
|
+
readonly 'organization': string;
|
|
25418
|
+
readonly 'id': string;
|
|
25419
|
+
}
|
|
25420
|
+
|
|
25421
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
25422
|
+
readonly 'discriminator': 'shopify_merchant_markets_upserted';
|
|
25423
|
+
readonly 'event_id': string;
|
|
25424
|
+
readonly 'timestamp': string;
|
|
25425
|
+
readonly 'organization': string;
|
|
25426
|
+
readonly 'shopify_merchant_markets': io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
25427
|
+
}
|
|
25428
|
+
|
|
25084
25429
|
interface ShopifyMerchantPlan {
|
|
25085
25430
|
readonly 'id': string;
|
|
25086
25431
|
readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -25419,7 +25764,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25419
25764
|
|
|
25420
25765
|
interface ShopifyShipmentRateAvailable {
|
|
25421
25766
|
readonly 'carrier_service_id': string;
|
|
25422
|
-
readonly 'total_charges': io.flow.internal.v0.models.
|
|
25767
|
+
readonly 'total_charges': io.flow.internal.v0.models.ShopifyCost;
|
|
25423
25768
|
readonly 'charges': io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
25424
25769
|
readonly 'shipment_options': io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
25425
25770
|
readonly 'expected_delivery_date'?: string;
|
|
@@ -25429,12 +25774,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25429
25774
|
|
|
25430
25775
|
interface ShopifyShipmentRateCharge {
|
|
25431
25776
|
readonly 'code': io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
25432
|
-
readonly 'cost': io.flow.internal.v0.models.
|
|
25777
|
+
readonly 'cost': io.flow.internal.v0.models.ShopifyCost;
|
|
25433
25778
|
}
|
|
25434
25779
|
|
|
25435
25780
|
interface ShopifyShipmentRateOption {
|
|
25436
25781
|
readonly 'code': io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
25437
|
-
readonly 'cost': io.flow.internal.v0.models.
|
|
25782
|
+
readonly 'cost': io.flow.internal.v0.models.ShopifyCost;
|
|
25438
25783
|
readonly 'optional'?: boolean;
|
|
25439
25784
|
}
|
|
25440
25785
|
|
|
@@ -25480,12 +25825,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25480
25825
|
readonly 'byoa': boolean;
|
|
25481
25826
|
}
|
|
25482
25827
|
|
|
25483
|
-
interface ShopifyShipmentRateTotalCharges {
|
|
25484
|
-
readonly 'subtotal': io.flow.internal.v0.models.ShopifyMoney;
|
|
25485
|
-
readonly 'tax': io.flow.internal.v0.models.ShopifyMoney;
|
|
25486
|
-
readonly 'total': io.flow.internal.v0.models.ShopifyMoney;
|
|
25487
|
-
}
|
|
25488
|
-
|
|
25489
25828
|
interface ShopifyShipmentRateUnavailable {
|
|
25490
25829
|
readonly 'carrier_service_id': string;
|
|
25491
25830
|
readonly 'reasons': io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
@@ -27041,7 +27380,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
27041
27380
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
27042
27381
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
27043
27382
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
27044
|
-
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.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);
|
|
27045
27384
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
27046
27385
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
27047
27386
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -27159,6 +27498,13 @@ export const company: PropTypes.Requireable<io.flow.internal.v0.enums.Company>;
|
|
|
27159
27498
|
export const complianceType: PropTypes.Requireable<io.flow.internal.v0.enums.ComplianceType>;
|
|
27160
27499
|
export const connectReportPaymentTransferType: PropTypes.Requireable<io.flow.internal.v0.enums.ConnectReportPaymentTransferType>;
|
|
27161
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>;
|
|
27162
27508
|
export const crossdockTrackingStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CrossdockTrackingStatus>;
|
|
27163
27509
|
export const debugAccountingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DebugAccountingTransactionType>;
|
|
27164
27510
|
export const deliveredDutyOptionMessageType: PropTypes.Requireable<io.flow.internal.v0.enums.DeliveredDutyOptionMessageType>;
|
|
@@ -27197,6 +27543,7 @@ export const featureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.Feat
|
|
|
27197
27543
|
export const featureType: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureType>;
|
|
27198
27544
|
export const feesSource: PropTypes.Requireable<io.flow.internal.v0.enums.FeesSource>;
|
|
27199
27545
|
export const fileType: PropTypes.Requireable<io.flow.internal.v0.enums.FileType>;
|
|
27546
|
+
export const flatRateLabelGuaranteeStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FlatRateLabelGuaranteeStatus>;
|
|
27200
27547
|
export const flatRateLabelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.FlatRateLabelTransactionType>;
|
|
27201
27548
|
export const fraudProvider: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProvider>;
|
|
27202
27549
|
export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProviderStatus>;
|
|
@@ -27387,6 +27734,13 @@ export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
27387
27734
|
export const accountingPendingOrderMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingPendingOrderMetadata>;
|
|
27388
27735
|
export const accountingReturnMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingReturnMetadata>;
|
|
27389
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>;
|
|
27740
|
+
export const adaptivePricingDestinationUpdate: PropTypes.Requireable<io.flow.internal.v0.models.AdaptivePricingDestinationUpdate>;
|
|
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>;
|
|
27390
27744
|
export const adaptiveShippingOrderGuarantee: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee>;
|
|
27391
27745
|
export const adaptiveShippingOrderGuaranteeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeDeleted>;
|
|
27392
27746
|
export const adaptiveShippingOrderGuaranteeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted>;
|
|
@@ -27713,6 +28067,9 @@ export const components: PropTypes.Requireable<io.flow.internal.v0.models.Compon
|
|
|
27713
28067
|
export const consoleLabelRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.ConsoleLabelRequestForm>;
|
|
27714
28068
|
export const consoleMarkUnresolvableForm: PropTypes.Requireable<io.flow.internal.v0.models.ConsoleMarkUnresolvableForm>;
|
|
27715
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>;
|
|
27716
28073
|
export const cryptoAccount: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccount>;
|
|
27717
28074
|
export const cryptoAccountModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccountModificationForm>;
|
|
27718
28075
|
export const cryptoAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccountPutForm>;
|
|
@@ -27982,6 +28339,9 @@ export const googleLinker: PropTypes.Requireable<io.flow.internal.v0.models.Goog
|
|
|
27982
28339
|
export const googleShoppingAccountParameters: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingAccountParameters>;
|
|
27983
28340
|
export const googleShoppingSetting: PropTypes.Requireable<io.flow.internal.v0.models.GoogleShoppingSetting>;
|
|
27984
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>;
|
|
27985
28345
|
export const harmonizationClassificationStatisticsData: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsData>;
|
|
27986
28346
|
export const harmonizationClassificationStatisticsPublished: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished>;
|
|
27987
28347
|
export const harmonizationCodesImport: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationCodesImport>;
|
|
@@ -28121,7 +28481,9 @@ export const loyaltyProgramMessage: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
28121
28481
|
export const loyaltyProgramReward: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramReward>;
|
|
28122
28482
|
export const loyaltyProgramRewards: PropTypes.Requireable<io.flow.internal.v0.models.LoyaltyProgramRewards>;
|
|
28123
28483
|
export const maheshItem: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItem>;
|
|
28484
|
+
export const maheshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItemDeleted>;
|
|
28124
28485
|
export const maheshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItemForm>;
|
|
28486
|
+
export const maheshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MaheshItemUpserted>;
|
|
28125
28487
|
export const mainTransaction: PropTypes.Requireable<io.flow.internal.v0.models.MainTransaction>;
|
|
28126
28488
|
export const mainTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MainTransactionDeleted>;
|
|
28127
28489
|
export const mainTransactionDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.MainTransactionDeletedV2>;
|
|
@@ -28467,7 +28829,6 @@ export const ratecardDimensionEstimateDeleted: PropTypes.Requireable<io.flow.int
|
|
|
28467
28829
|
export const ratecardDimensionEstimateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardDimensionEstimateUpserted>;
|
|
28468
28830
|
export const ratecardInternalServiceFee: PropTypes.Requireable<io.flow.internal.v0.models.RatecardInternalServiceFee>;
|
|
28469
28831
|
export const ratecardInternalSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatecardInternalSummary>;
|
|
28470
|
-
export const ratecardLanesImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.RatecardLanesImportRequest>;
|
|
28471
28832
|
export const ratecardRateLevelDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelDeleted>;
|
|
28472
28833
|
export const ratecardRateLevelOrganizationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted>;
|
|
28473
28834
|
export const ratecardRateLevelOrganizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted>;
|
|
@@ -28476,8 +28837,6 @@ export const ratecardRateLevelRatecardUpserted: PropTypes.Requireable<io.flow.in
|
|
|
28476
28837
|
export const ratecardRateLevelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardRateLevelUpserted>;
|
|
28477
28838
|
export const ratecardServiceFeeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeeDeleted>;
|
|
28478
28839
|
export const ratecardServiceFeeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeeUpserted>;
|
|
28479
|
-
export const ratecardServiceFeesOverride: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeesOverride>;
|
|
28480
|
-
export const ratecardServiceFeesOverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.RatecardServiceFeesOverrideForm>;
|
|
28481
28840
|
export const ratesChanged: PropTypes.Requireable<io.flow.internal.v0.models.RatesChanged>;
|
|
28482
28841
|
export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatesNamesSummary>;
|
|
28483
28842
|
export const raveenaItem: PropTypes.Requireable<io.flow.internal.v0.models.RaveenaItem>;
|
|
@@ -28517,10 +28876,14 @@ export const reportingDebugMissingSubsidies: PropTypes.Requireable<io.flow.inter
|
|
|
28517
28876
|
export const reportingDestination: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDestination>;
|
|
28518
28877
|
export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDetails>;
|
|
28519
28878
|
export const reportingFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFees>;
|
|
28879
|
+
export const reportingFreight: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFreight>;
|
|
28880
|
+
export const reportingFreightGuaranteed: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFreightGuaranteed>;
|
|
28881
|
+
export const reportingFreightSubsidy: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFreightSubsidy>;
|
|
28520
28882
|
export const reportingFulfillment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillment>;
|
|
28521
28883
|
export const reportingFulfillmentHas: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentHas>;
|
|
28522
28884
|
export const reportingFulfillmentIs: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentIs>;
|
|
28523
28885
|
export const reportingFx: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFx>;
|
|
28886
|
+
export const reportingFxValue: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFxValue>;
|
|
28524
28887
|
export const reportingMerchantBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantBreakdown>;
|
|
28525
28888
|
export const reportingMerchantFees: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFees>;
|
|
28526
28889
|
export const reportingMerchantFreight: PropTypes.Requireable<io.flow.internal.v0.models.ReportingMerchantFreight>;
|
|
@@ -28610,6 +28973,8 @@ export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.Ro
|
|
|
28610
28973
|
export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
|
|
28611
28974
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|
|
28612
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>;
|
|
28613
28978
|
export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
|
|
28614
28979
|
export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
|
|
28615
28980
|
export const scheduledPayment: PropTypes.Requireable<io.flow.internal.v0.models.ScheduledPayment>;
|
|
@@ -28626,6 +28991,8 @@ export const searchOrderSummary: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
28626
28991
|
export const searchProviderExport: PropTypes.Requireable<io.flow.internal.v0.models.SearchProviderExport>;
|
|
28627
28992
|
export const searchTrackingSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchTrackingSummary>;
|
|
28628
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>;
|
|
28629
28996
|
export const sessionOrderData: PropTypes.Requireable<io.flow.internal.v0.models.SessionOrderData>;
|
|
28630
28997
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
28631
28998
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
@@ -28646,6 +29013,7 @@ export const shopifyCatalogPublication: PropTypes.Requireable<io.flow.internal.v
|
|
|
28646
29013
|
export const shopifyChannelOrganizationToken: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationToken>;
|
|
28647
29014
|
export const shopifyChannelOrganizationTokens: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationTokens>;
|
|
28648
29015
|
export const shopifyContactDetails: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyContactDetails>;
|
|
29016
|
+
export const shopifyCost: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCost>;
|
|
28649
29017
|
export const shopifyDispute: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDispute>;
|
|
28650
29018
|
export const shopifyDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDisputeDeleted>;
|
|
28651
29019
|
export const shopifyDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDisputeUpserted>;
|
|
@@ -28695,6 +29063,10 @@ export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.in
|
|
|
28695
29063
|
export const shopifyMarketsWebhookRegistrationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted>;
|
|
28696
29064
|
export const shopifyMarketsWebhookRegistrationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted>;
|
|
28697
29065
|
export const shopifyMeasurements: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMeasurements>;
|
|
29066
|
+
export const shopifyMerchantMarketCountry: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantMarketCountry>;
|
|
29067
|
+
export const shopifyMerchantMarkets: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantMarkets>;
|
|
29068
|
+
export const shopifyMerchantMarketsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted>;
|
|
29069
|
+
export const shopifyMerchantMarketsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted>;
|
|
28698
29070
|
export const shopifyMerchantPlan: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlan>;
|
|
28699
29071
|
export const shopifyMerchantPlanDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlanDeleted>;
|
|
28700
29072
|
export const shopifyMerchantPlanUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlanUpserted>;
|
|
@@ -28755,7 +29127,6 @@ export const shopifyShipmentRateRequest: PropTypes.Requireable<io.flow.internal.
|
|
|
28755
29127
|
export const shopifyShipmentRateResponse: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateResponse>;
|
|
28756
29128
|
export const shopifyShipmentRateShipment: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateShipment>;
|
|
28757
29129
|
export const shopifyShipmentRateShipper: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateShipper>;
|
|
28758
|
-
export const shopifyShipmentRateTotalCharges: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges>;
|
|
28759
29130
|
export const shopifyShipmentRateUnavailable: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateUnavailable>;
|
|
28760
29131
|
export const shopifyShippingLocation: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShippingLocation>;
|
|
28761
29132
|
export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
|