@flowio/api-internal-prop-types 9.24.130 → 9.24.134
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 +531 -338
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +531 -338
- package/src/api-internal.js +699 -388
package/lib/api-internal.d.ts
CHANGED
|
@@ -1128,6 +1128,10 @@ declare namespace io.flow.restrictions.v0.models {
|
|
|
1128
1128
|
readonly 'hs_code'?: string;
|
|
1129
1129
|
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
1130
1130
|
readonly 'needs_action_attributes'?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
|
|
1131
|
+
readonly 'fingerprint'?: string;
|
|
1132
|
+
readonly 'restriction_created_at'?: string;
|
|
1133
|
+
readonly 'first_reviewed_at'?: string;
|
|
1134
|
+
readonly 'seconds_to_first_review'?: number;
|
|
1131
1135
|
}
|
|
1132
1136
|
|
|
1133
1137
|
interface ReasonsPerRegion {
|
|
@@ -2047,7 +2051,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
2047
2051
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
2048
2052
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
2049
2053
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
2050
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
2054
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
2051
2055
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
2052
2056
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
2053
2057
|
type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
|
|
@@ -4410,7 +4414,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
4410
4414
|
type CommercialInvoiceMode = 'direct' | 'indirect';
|
|
4411
4415
|
type CostEstimateSource = 'flow' | 'channel';
|
|
4412
4416
|
type Direction = 'outbound' | 'return';
|
|
4413
|
-
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
4417
|
+
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated' | 'legacy_shopify_graphql_server';
|
|
4414
4418
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
4415
4419
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
4416
4420
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
@@ -5857,6 +5861,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5857
5861
|
readonly 'initial_product_restrictions_synced_at'?: string;
|
|
5858
5862
|
}
|
|
5859
5863
|
|
|
5864
|
+
interface ShopifyTestOrder {
|
|
5865
|
+
readonly 'id': string;
|
|
5866
|
+
readonly 'submitted_at': string;
|
|
5867
|
+
}
|
|
5868
|
+
|
|
5860
5869
|
interface ThirdPartyLogisticsPartner {
|
|
5861
5870
|
readonly 'warehouse_address': io.flow.common.v0.models.BillingAddress;
|
|
5862
5871
|
readonly 'warehouse_url'?: string;
|
|
@@ -5899,6 +5908,7 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5899
5908
|
readonly 'b2b_invoice_type': io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
5900
5909
|
readonly 'center'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5901
5910
|
readonly 'order'?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5911
|
+
readonly 'voids_b2b_invoice'?: boolean;
|
|
5902
5912
|
}
|
|
5903
5913
|
|
|
5904
5914
|
interface B2BInvoice {
|
|
@@ -7910,6 +7920,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7910
7920
|
readonly 'tags'?: string;
|
|
7911
7921
|
readonly 'tax_lines': io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
7912
7922
|
readonly 'taxes_included': boolean;
|
|
7923
|
+
readonly 'test'?: boolean;
|
|
7913
7924
|
readonly 'token'?: string;
|
|
7914
7925
|
readonly 'total_weight'?: number;
|
|
7915
7926
|
readonly 'updated_at'?: string;
|
|
@@ -8406,7 +8417,7 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
8406
8417
|
declare namespace io.flow.order.price.v0.enums {
|
|
8407
8418
|
type OrderPriceDetailComponentKey = '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' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
8408
8419
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
8409
|
-
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
8420
|
+
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
8410
8421
|
}
|
|
8411
8422
|
|
|
8412
8423
|
declare namespace io.flow.order.price.v0.models {
|
|
@@ -8838,7 +8849,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
8838
8849
|
|
|
8839
8850
|
interface DiscountForm {
|
|
8840
8851
|
readonly 'offer': io.flow.common.v0.unions.DiscountOffer;
|
|
8841
|
-
readonly 'target'
|
|
8852
|
+
readonly 'target': io.flow.common.v0.enums.DiscountTarget;
|
|
8842
8853
|
readonly 'label'?: string;
|
|
8843
8854
|
}
|
|
8844
8855
|
|
|
@@ -8930,6 +8941,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
8930
8941
|
interface LineItemForm {
|
|
8931
8942
|
readonly 'number': string;
|
|
8932
8943
|
readonly 'quantity': number;
|
|
8944
|
+
readonly 'line_item_identifier'?: string;
|
|
8933
8945
|
readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
|
|
8934
8946
|
readonly 'price'?: io.flow.common.v0.models.Money;
|
|
8935
8947
|
readonly 'attributes'?: Record<string, string>;
|
|
@@ -9039,7 +9051,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
9039
9051
|
readonly 'parent'?: io.flow.common.v0.models.OrganizationReference;
|
|
9040
9052
|
readonly 'defaults'?: io.flow.common.v0.models.OrganizationDefaults;
|
|
9041
9053
|
readonly 'created_at'?: string;
|
|
9042
|
-
readonly 'status'
|
|
9054
|
+
readonly 'status': io.flow.common.v0.enums.OrganizationStatus;
|
|
9043
9055
|
readonly 'type'?: io.flow.common.v0.enums.OrganizationType;
|
|
9044
9056
|
}
|
|
9045
9057
|
|
|
@@ -9431,10 +9443,26 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
9431
9443
|
readonly 'timestamp': string;
|
|
9432
9444
|
readonly 'shopify_product_taxonomy_attribute_value': io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
9433
9445
|
}
|
|
9446
|
+
|
|
9447
|
+
interface ShopifyTestOrderDeleted {
|
|
9448
|
+
readonly 'discriminator': 'shopify_test_order_deleted';
|
|
9449
|
+
readonly 'event_id': string;
|
|
9450
|
+
readonly 'timestamp': string;
|
|
9451
|
+
readonly 'organization': string;
|
|
9452
|
+
readonly 'id': string;
|
|
9453
|
+
}
|
|
9454
|
+
|
|
9455
|
+
interface ShopifyTestOrderUpserted {
|
|
9456
|
+
readonly 'discriminator': 'shopify_test_order_upserted';
|
|
9457
|
+
readonly 'event_id': string;
|
|
9458
|
+
readonly 'timestamp': string;
|
|
9459
|
+
readonly 'organization': string;
|
|
9460
|
+
readonly 'shopify_test_order': io.flow.shopify.markets.internal.v0.models.ShopifyTestOrder;
|
|
9461
|
+
}
|
|
9434
9462
|
}
|
|
9435
9463
|
|
|
9436
9464
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
9437
|
-
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);
|
|
9465
|
+
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);
|
|
9438
9466
|
}
|
|
9439
9467
|
|
|
9440
9468
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -9459,6 +9487,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
9459
9487
|
type OrganizationPaymentMethodTag = 'deny';
|
|
9460
9488
|
type PaymentMethodRuleContentKey = 'description';
|
|
9461
9489
|
type PriceFacetBoundary = 'min' | 'max';
|
|
9490
|
+
type PricingType = 'inclusive_pricing';
|
|
9462
9491
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
9463
9492
|
}
|
|
9464
9493
|
|
|
@@ -10080,6 +10109,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10080
10109
|
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
10081
10110
|
readonly 'edits'?: io.flow.experience.v0.models.EditSummary[];
|
|
10082
10111
|
readonly 'rates'?: io.flow.experience.v0.models.OrderRate[];
|
|
10112
|
+
readonly 'pricing_type'?: io.flow.experience.v0.enums.PricingType;
|
|
10083
10113
|
}
|
|
10084
10114
|
|
|
10085
10115
|
interface OrderAddress {
|
|
@@ -10832,6 +10862,12 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10832
10862
|
readonly 'name': string;
|
|
10833
10863
|
}
|
|
10834
10864
|
|
|
10865
|
+
interface RatecardData {
|
|
10866
|
+
readonly 'dhlParcelDistributionCenter'?: string;
|
|
10867
|
+
readonly 'glbeRatecardMetadataLaneIdentifier'?: string;
|
|
10868
|
+
readonly 'pickupCenter'?: string;
|
|
10869
|
+
}
|
|
10870
|
+
|
|
10835
10871
|
interface RatecardEstimateForm {
|
|
10836
10872
|
readonly 'origin_address': io.flow.common.v0.models.Address;
|
|
10837
10873
|
readonly 'destination_address': io.flow.common.v0.models.Address;
|
|
@@ -10924,7 +10960,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
10924
10960
|
readonly 'glbe_shipping_method_id'?: string;
|
|
10925
10961
|
readonly 'glbe_proposition_name'?: string;
|
|
10926
10962
|
readonly 'channel_revenue_share_percentage'?: number;
|
|
10927
|
-
readonly 'data'?:
|
|
10963
|
+
readonly 'data'?: io.flow.ratecard.v0.models.RatecardData;
|
|
10928
10964
|
}
|
|
10929
10965
|
|
|
10930
10966
|
interface RatecardLane {
|
|
@@ -11971,7 +12007,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11971
12007
|
readonly 'beneficiary_details'?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
11972
12008
|
readonly 'other_trade_sector'?: string;
|
|
11973
12009
|
readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
11974
|
-
readonly 'center_address'?: io.flow.common.v0.models.Address;
|
|
11975
12010
|
readonly 'average_order_weight'?: number;
|
|
11976
12011
|
readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
11977
12012
|
readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
|
|
@@ -11999,7 +12034,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
11999
12034
|
readonly 'beneficiary_details'?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
12000
12035
|
readonly 'other_trade_sector'?: string;
|
|
12001
12036
|
readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
12002
|
-
readonly 'center_address'?: io.flow.common.v0.models.Address;
|
|
12003
12037
|
readonly 'average_order_weight'?: number;
|
|
12004
12038
|
readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
12005
12039
|
readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
|
|
@@ -12100,6 +12134,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
12100
12134
|
readonly 'company'?: string;
|
|
12101
12135
|
readonly 'email'?: string;
|
|
12102
12136
|
readonly 'phone'?: string;
|
|
12137
|
+
readonly 'address'?: io.flow.common.v0.models.Address;
|
|
12103
12138
|
}
|
|
12104
12139
|
|
|
12105
12140
|
interface Shop {
|
|
@@ -12600,7 +12635,7 @@ declare namespace io.flow.inventory.v0.models {
|
|
|
12600
12635
|
|
|
12601
12636
|
interface InventoryUnlimited {
|
|
12602
12637
|
readonly 'discriminator': 'inventory_unlimited';
|
|
12603
|
-
readonly 'placeholder'
|
|
12638
|
+
readonly 'placeholder': string;
|
|
12604
12639
|
}
|
|
12605
12640
|
|
|
12606
12641
|
interface InventoryUpdate {
|
|
@@ -12838,14 +12873,14 @@ declare namespace io.flow.item.v0.models {
|
|
|
12838
12873
|
}
|
|
12839
12874
|
|
|
12840
12875
|
declare namespace io.flow.billing.v0.enums {
|
|
12841
|
-
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'tax' | 'duty' | 'tax_and_duty' | 'product' | 'tax_and_duty_fx_diff' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee' | 'sp';
|
|
12876
|
+
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'tax' | 'duty' | 'tax_and_duty' | 'product' | 'tax_and_duty_fx_diff' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee' | 'sp' | 'rev_share';
|
|
12842
12877
|
type PayoutAttachmentType = 'transactions';
|
|
12843
12878
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
12844
12879
|
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';
|
|
12845
12880
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
12846
12881
|
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12847
|
-
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
12848
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund';
|
|
12882
|
+
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';
|
|
12883
|
+
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';
|
|
12849
12884
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
12850
12885
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
12851
12886
|
}
|
|
@@ -13139,7 +13174,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13139
13174
|
readonly 'label_created_at': string;
|
|
13140
13175
|
readonly 'carrier_id': string;
|
|
13141
13176
|
readonly 'carrier_tracking_number': string;
|
|
13142
|
-
readonly 'revenue_share_percentage'
|
|
13177
|
+
readonly 'revenue_share_percentage'?: number;
|
|
13143
13178
|
readonly 'outbound'?: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
|
|
13144
13179
|
}
|
|
13145
13180
|
|
|
@@ -13179,6 +13214,19 @@ declare namespace io.flow.billing.v0.models {
|
|
|
13179
13214
|
readonly 'description': string;
|
|
13180
13215
|
readonly 'original'?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
13181
13216
|
readonly 'url'?: string;
|
|
13217
|
+
readonly 'recoup'?: boolean;
|
|
13218
|
+
}
|
|
13219
|
+
|
|
13220
|
+
interface TransactionMetadataMerchantFee {
|
|
13221
|
+
readonly 'discriminator': 'merchant_fee';
|
|
13222
|
+
readonly 'items': io.flow.billing.v0.models.TransactionMetadataMerchantFeeItem[];
|
|
13223
|
+
}
|
|
13224
|
+
|
|
13225
|
+
interface TransactionMetadataMerchantFeeItem {
|
|
13226
|
+
readonly 'type': string;
|
|
13227
|
+
readonly 'amount': number;
|
|
13228
|
+
readonly 'local_amount'?: number;
|
|
13229
|
+
readonly 'description'?: string;
|
|
13182
13230
|
}
|
|
13183
13231
|
|
|
13184
13232
|
interface TransactionMetadataOriginalTransaction {
|
|
@@ -13329,7 +13377,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
13329
13377
|
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
13330
13378
|
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
13331
13379
|
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
13332
|
-
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);
|
|
13380
|
+
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);
|
|
13333
13381
|
}
|
|
13334
13382
|
|
|
13335
13383
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -13354,6 +13402,11 @@ declare namespace io.flow.harmonization.v0.models {
|
|
|
13354
13402
|
readonly 'company_name_match_result_reason'?: string;
|
|
13355
13403
|
}
|
|
13356
13404
|
|
|
13405
|
+
interface HarmonizationTariffCode {
|
|
13406
|
+
readonly 'tariff_code': string;
|
|
13407
|
+
readonly 'destination': string;
|
|
13408
|
+
}
|
|
13409
|
+
|
|
13357
13410
|
interface HarmonizedCategoryReference {
|
|
13358
13411
|
readonly 'id': string;
|
|
13359
13412
|
}
|
|
@@ -13449,6 +13502,13 @@ declare namespace io.flow.harmonization.v0.models {
|
|
|
13449
13502
|
readonly 'tax': io.flow.price.v0.models.Tax;
|
|
13450
13503
|
}
|
|
13451
13504
|
|
|
13505
|
+
interface TariffCodes {
|
|
13506
|
+
readonly 'item_number': string;
|
|
13507
|
+
readonly 'product_id': string;
|
|
13508
|
+
readonly 'hs6_code': string;
|
|
13509
|
+
readonly 'codes': io.flow.harmonization.v0.models.HarmonizationTariffCode[];
|
|
13510
|
+
}
|
|
13511
|
+
|
|
13452
13512
|
interface TaxRegistration {
|
|
13453
13513
|
readonly 'id': string;
|
|
13454
13514
|
readonly 'key': string;
|
|
@@ -13709,7 +13769,7 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
13709
13769
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
13710
13770
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
13711
13771
|
type SellabilityRequestStatus = 'commit';
|
|
13712
|
-
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
13772
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable' | 'generic_error' | 'catalog_processing_threshold';
|
|
13713
13773
|
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
13714
13774
|
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
13715
13775
|
}
|
|
@@ -13737,11 +13797,14 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13737
13797
|
}
|
|
13738
13798
|
|
|
13739
13799
|
interface ProductSellabilityResult {
|
|
13800
|
+
readonly 'id': string;
|
|
13740
13801
|
readonly 'merchant_id'?: string;
|
|
13741
13802
|
readonly 'product_id': string;
|
|
13742
13803
|
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
13804
|
+
readonly 'restricted_reasons': io.flow.sellability.v0.models.SellabilityRestrictedReason[];
|
|
13743
13805
|
readonly 'needs_action_attributes'?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
|
|
13744
13806
|
readonly 'request_id'?: string;
|
|
13807
|
+
readonly 'hs6_code'?: string;
|
|
13745
13808
|
}
|
|
13746
13809
|
|
|
13747
13810
|
interface SellabilityError {
|
|
@@ -13753,9 +13816,16 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13753
13816
|
interface SellabilityNeedsActionAttributes {
|
|
13754
13817
|
readonly 'reason_code': string;
|
|
13755
13818
|
readonly 'category_metafield_handles': string[];
|
|
13819
|
+
readonly 'category_metafield_ids': string[];
|
|
13756
13820
|
readonly 'require_msds'?: boolean;
|
|
13757
13821
|
}
|
|
13758
13822
|
|
|
13823
|
+
interface SellabilityReasonWithRegions {
|
|
13824
|
+
readonly 'reason': string;
|
|
13825
|
+
readonly 'regions': string[];
|
|
13826
|
+
readonly 'review_status'?: string;
|
|
13827
|
+
}
|
|
13828
|
+
|
|
13759
13829
|
interface SellabilityRegionResult {
|
|
13760
13830
|
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13761
13831
|
readonly 'regions': string[];
|
|
@@ -13766,14 +13836,19 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13766
13836
|
readonly 'reasons': string[];
|
|
13767
13837
|
}
|
|
13768
13838
|
|
|
13839
|
+
interface SellabilityRestrictedReason {
|
|
13840
|
+
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13841
|
+
readonly 'reasons_with_regions': io.flow.sellability.v0.models.SellabilityReasonWithRegions[];
|
|
13842
|
+
}
|
|
13843
|
+
|
|
13769
13844
|
interface SellabilityRestrictedRegion {
|
|
13770
13845
|
readonly 'type': io.flow.sellability.v0.enums.RuleEffectType;
|
|
13771
|
-
readonly '
|
|
13846
|
+
readonly 'regions': string[];
|
|
13772
13847
|
}
|
|
13773
13848
|
|
|
13774
13849
|
interface SellabilityScreening {
|
|
13775
13850
|
readonly 'discriminator': 'sellability_screening';
|
|
13776
|
-
readonly '
|
|
13851
|
+
readonly 'product_sellability_result'?: io.flow.sellability.v0.models.ProductSellabilityResult;
|
|
13777
13852
|
readonly 'request_id': string;
|
|
13778
13853
|
readonly 'status': io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
13779
13854
|
readonly 'error_code'?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
@@ -14011,6 +14086,14 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14011
14086
|
readonly 'iban': string;
|
|
14012
14087
|
}
|
|
14013
14088
|
|
|
14089
|
+
interface BankAccountInfoKor {
|
|
14090
|
+
readonly 'discriminator': 'kor';
|
|
14091
|
+
readonly 'name': string;
|
|
14092
|
+
readonly 'bank_account_number': string;
|
|
14093
|
+
readonly 'bank_routing_number': string;
|
|
14094
|
+
readonly 'bank_name': string;
|
|
14095
|
+
}
|
|
14096
|
+
|
|
14014
14097
|
interface BankAccountInfoUsa {
|
|
14015
14098
|
readonly 'discriminator': 'usa';
|
|
14016
14099
|
readonly 'routing_number': string;
|
|
@@ -14019,22 +14102,23 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
14019
14102
|
}
|
|
14020
14103
|
|
|
14021
14104
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
14022
|
-
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);
|
|
14105
|
+
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);
|
|
14023
14106
|
}
|
|
14024
14107
|
|
|
14025
14108
|
declare namespace io.flow.internal.v0.enums {
|
|
14109
|
+
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
|
|
14026
14110
|
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
14027
14111
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
14028
14112
|
type AccountType = 'channel' | 'organization';
|
|
14029
14113
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
14030
14114
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
14031
|
-
type
|
|
14032
|
-
type AnirbanItemType = 'physical' | 'digital';
|
|
14033
|
-
type AnshItemType = 'physical' | 'digital';
|
|
14115
|
+
type AmruthaItemType = 'physical' | 'digital';
|
|
14034
14116
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
14035
14117
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
14036
14118
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
14037
14119
|
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';
|
|
14120
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
14121
|
+
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
14038
14122
|
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
|
|
14039
14123
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
14040
14124
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
@@ -14044,7 +14128,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14044
14128
|
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';
|
|
14045
14129
|
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';
|
|
14046
14130
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
14047
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund';
|
|
14131
|
+
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';
|
|
14132
|
+
type BojanaItemType = 'physical' | 'digital';
|
|
14048
14133
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
14049
14134
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
14050
14135
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -14073,11 +14158,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14073
14158
|
type CheckoutPromptBehavior = 'always' | 'incomplete';
|
|
14074
14159
|
type CheckoutShippingMethodPromptBehavior = 'always' | 'multiple';
|
|
14075
14160
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
14161
|
+
type ChenglinItemType = 'physical' | 'digital';
|
|
14076
14162
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
14077
14163
|
type ClassificationErrorCode = 'generic_error';
|
|
14078
|
-
type ClassificationFailureReason = 'low_confidence' | 'timeout';
|
|
14164
|
+
type ClassificationFailureReason = 'low_confidence' | 'timeout' | 'missing_hs6_code' | 'invalid_price';
|
|
14079
14165
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
14080
14166
|
type ClassificationScope = 'Item' | 'Product';
|
|
14167
|
+
type ClassificationSource = 'sellability';
|
|
14081
14168
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
14082
14169
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
14083
14170
|
type CommercialInvoiceVersion = 'v2_2_1';
|
|
@@ -14113,7 +14200,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14113
14200
|
type EmptyAttribute = 'irrelevant';
|
|
14114
14201
|
type ErpFileType = 'vendor';
|
|
14115
14202
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
14116
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'anirban_item_upserted' | 'anirban_item_deleted' | 'sarvesh_item_upserted' | 'sarvesh_item_deleted' | 'hosein_item_upserted' | 'hosein_item_deleted' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14203
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | '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_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_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';
|
|
14117
14204
|
type ExperienceImportType = 'experience_with_settings';
|
|
14118
14205
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14119
14206
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14132,7 +14219,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14132
14219
|
type GoogleAnalyticsPlugin = 'ec';
|
|
14133
14220
|
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
14134
14221
|
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
14135
|
-
type HoseinItemType = 'physical' | 'digital';
|
|
14136
14222
|
type Hs6CodeSource = 'sellability' | 'classification' | 'human';
|
|
14137
14223
|
type HttpMethod = 'get' | 'post';
|
|
14138
14224
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
@@ -14149,22 +14235,21 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14149
14235
|
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
14150
14236
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
14151
14237
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system' | 'carrier';
|
|
14152
|
-
type LabelRequestResultOrganizationType = 'all' | '
|
|
14238
|
+
type LabelRequestResultOrganizationType = 'all' | 'cafe24_production' | 'shopify_production' | 'sandbox';
|
|
14153
14239
|
type LabelRequestResultState = 'success' | 'failure';
|
|
14154
14240
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
14155
|
-
type LedgerReportType = 'periodic_mor_jurisdiction_report';
|
|
14241
|
+
type LedgerReportType = 'periodic_mor_jurisdiction_report' | 'periodic_mor_jurisdiction_sandbox_report';
|
|
14156
14242
|
type LedgerReportUrlType = 'sharepoint' | 's3';
|
|
14157
14243
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
14158
14244
|
type LogisticsCapability = 'logistics_address_correction';
|
|
14159
14245
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
14160
14246
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
14161
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback';
|
|
14247
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback' | 'v1_migration_neg_balance_settlement';
|
|
14162
14248
|
type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
14163
14249
|
type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands' | 'uk_global_e_canada' | 'uk_global_e_netherlands' | 'uk_global_e_united_states' | 'ca_global_e_united_kingdom' | 'ca_global_e_netherlands' | 'ca_global_e_united_states';
|
|
14164
14250
|
type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
|
|
14165
14251
|
type MixedBagWeight = '0' | '1' | '2';
|
|
14166
14252
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
14167
|
-
type NiallItemType = 'physical' | 'digital';
|
|
14168
14253
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
14169
14254
|
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
14170
14255
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
@@ -14185,6 +14270,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14185
14270
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
14186
14271
|
type OrganizationMetricType = 'organization_restriction_status';
|
|
14187
14272
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
14273
|
+
type OrganizationPromotionStatus = 'in_progress' | 'completed' | 'failed';
|
|
14188
14274
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
14189
14275
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason' | 'additional_rejection_info';
|
|
14190
14276
|
type OrganizationRestrictionReviewType = 'all_pending' | 'pending_verification';
|
|
@@ -14198,7 +14284,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14198
14284
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
14199
14285
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
14200
14286
|
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
14201
|
-
type PrateekItemType = 'physical' | 'digital';
|
|
14202
14287
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
14203
14288
|
type PreonboardingClassificationDecision = 'Accept' | 'Reject';
|
|
14204
14289
|
type PreonboardingClassificationPlatform = 'FlowOnboarding';
|
|
@@ -14228,7 +14313,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14228
14313
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
14229
14314
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
14230
14315
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
14231
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa';
|
|
14316
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'cafe24' | 'cafe24-sandbox';
|
|
14232
14317
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
14233
14318
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
14234
14319
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -14238,10 +14323,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14238
14323
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
14239
14324
|
type RiskCheck = 'three_d_secure';
|
|
14240
14325
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
14241
|
-
type RohanItemType = 'physical' | 'digital';
|
|
14242
|
-
type SarveshItemType = 'physical' | 'digital';
|
|
14243
14326
|
type SellabilityCheckStatus = 'more_restrictive' | 'less_restrictive' | 'similar' | 'regions_differ' | 'rules_differ';
|
|
14327
|
+
type SellabilityInternalMatchType = 'positive_keyword' | 'auto_restricted';
|
|
14244
14328
|
type SellabilityStatus = 'complete' | 'incomplete';
|
|
14329
|
+
type ShopifyCallbackErrorCode = 'UNKNOWN' | 'SYSTEM_ERROR' | 'THIRD_PARTY_SYSTEM_ERROR' | 'TIMEOUT' | 'VERSION_MISMATCH' | 'INVALID_AUTHENTICATION' | 'RATE_LIMIT_EXCEEDED' | 'TEMPORARILY_UNAVAILABLE' | 'FAILED_VALIDATION' | 'INVALID_FORMAT' | 'MISSING_VALUE' | 'OUT_OF_RANGE' | 'OVER_LIMIT' | 'UNDER_LIMIT' | 'UNAUTHORIZED' | 'NOT_FOUND' | 'EXPIRED';
|
|
14330
|
+
type ShopifyChargeCode = 'transport_cost' | 'above_threshold' | 'additional_handling' | 'customs_additional_fees' | 'customs_clearance' | 'customs_duties' | 'customs_regulatory_fee' | 'customs_duty' | 'customs_taxes' | 'dangerous_goods' | 'delivery_area_surcharge' | 'duties_fx_surcharge' | 'discount' | 'eei_filing' | 'elevated_risk_area_surcharge' | 'emergency_situation_surcharge' | 'environmental_surcharge' | 'fuel_surcharge' | 'oversize_piece_surcharge' | 'packaging' | 'pickup_area_surcharge' | 'peak_surcharge' | 'remote_delivery_area_surcharge' | 'residential_surcharge' | 'security_surcharge' | 'shipper_intercept' | 'address_correction' | 'undeliverable' | 'unknown' | 'prohibited_item' | 'trade_restriction_surcharge' | 'processing' | 'delivery' | 'notification' | 'broker_notification' | 'delivery_confirmation' | 'signature_required' | 'tax_gst' | 'tax_hst' | 'tax_pst' | 'tax_vat' | 'discount_tax' | 'incoterm_ddp';
|
|
14331
|
+
type ShopifyDeliveryMethodType = 'SHIPPING' | 'PICKUP_POINT';
|
|
14332
|
+
type ShopifyDimensionUnit = 'cm' | 'ft' | 'in' | 'm' | 'mm';
|
|
14333
|
+
type ShopifyIncoterm = 'DAP' | 'DDP';
|
|
14245
14334
|
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
14246
14335
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
14247
14336
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -14249,8 +14338,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14249
14338
|
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
14250
14339
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
14251
14340
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
14341
|
+
type ShopifyPackageType = 'BOX' | 'ENVELOPE' | 'SOFT_PACK' | 'TUBE' | 'CARRIER_PACKAGING';
|
|
14252
14342
|
type ShopifyPlanType = 'standard' | 'shopify_plus';
|
|
14253
14343
|
type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
14344
|
+
type ShopifyShipmentOptionCode = 'adult_signature_required' | 'delivery_confirmation' | 'insurance' | 'named_person_only' | 'no_neighbour_delivery' | 'pickup' | 'package_pickup' | 'signature_required' | 'proof_of_age' | 'proof_of_age_16' | 'proof_of_age_18' | 'proof_of_age_19' | 'proof_of_age_21' | 'incoterm_ddp' | 'incoterm_dap' | 'usps_first_mile';
|
|
14345
|
+
type ShopifyUnavailableRateReasonCode = 'SERVICE_NOT_AVAILABLE' | 'TEMPORARILY_UNAVAILABLE' | 'TIMEOUT' | 'RATE_LIMIT_EXCEEDED' | 'SYSTEM_ERROR' | 'THIRD_PARTY_SYSTEM_ERROR' | 'FAILED_VALIDATION' | 'INVALID_FORMAT' | 'MISSING_VALUE' | 'OUT_OF_RANGE';
|
|
14346
|
+
type ShopifyWeightUnit = 'g' | 'kg' | 'lb' | 'oz';
|
|
14254
14347
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
14255
14348
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
14256
14349
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -14421,11 +14514,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14421
14514
|
readonly 'transfer_method'?: io.flow.internal.v0.enums.TransferMethod;
|
|
14422
14515
|
readonly 'b2b_tax_remittance_days'?: number;
|
|
14423
14516
|
readonly 'merchant_of_record_fee'?: number;
|
|
14517
|
+
readonly 'merchant_of_record_fee_create_on_order'?: boolean;
|
|
14424
14518
|
readonly 'duty_guarantee_fee'?: number;
|
|
14425
14519
|
readonly 'transfer_fee'?: number;
|
|
14426
14520
|
readonly 'negative_balance_fee'?: number;
|
|
14427
14521
|
readonly 'order_service_fee'?: io.flow.internal.v0.models.TieredFee;
|
|
14428
14522
|
readonly 'label_fees'?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
14523
|
+
readonly 'revenue_share_rate'?: number;
|
|
14429
14524
|
readonly 'charge_label_cost_directly': boolean;
|
|
14430
14525
|
readonly 'transaction_posting_method': io.flow.internal.v0.enums.TransactionPostingMethod;
|
|
14431
14526
|
readonly 'statement_transfer_transaction_location': io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
@@ -14436,6 +14531,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14436
14531
|
readonly 'enable_fee_reversals': boolean;
|
|
14437
14532
|
readonly 'record_reason_for_transactions_pending_payout': boolean;
|
|
14438
14533
|
readonly 'enable_negative_debits': boolean;
|
|
14534
|
+
readonly 'enable_statement_pdf': boolean;
|
|
14535
|
+
readonly 'enable_shipping_label_revenue_share'?: boolean;
|
|
14536
|
+
readonly 'enable_carrier_charge_revenue_share'?: boolean;
|
|
14537
|
+
readonly 'always_charge_organization_for_trueup'?: boolean;
|
|
14439
14538
|
}
|
|
14440
14539
|
|
|
14441
14540
|
interface AccountSettingsDeleted {
|
|
@@ -14965,37 +15064,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14965
15064
|
readonly 'placeholder'?: boolean;
|
|
14966
15065
|
}
|
|
14967
15066
|
|
|
14968
|
-
interface AldoItem {
|
|
14969
|
-
readonly 'id': string;
|
|
14970
|
-
readonly 'number': string;
|
|
14971
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
14972
|
-
readonly 'description'?: string;
|
|
14973
|
-
readonly 'type': io.flow.internal.v0.enums.AldoItemType;
|
|
14974
|
-
readonly 'added_on': string;
|
|
14975
|
-
}
|
|
14976
|
-
|
|
14977
|
-
interface AldoItemDeleted {
|
|
14978
|
-
readonly 'discriminator': 'aldo_item_deleted';
|
|
14979
|
-
readonly 'event_id': string;
|
|
14980
|
-
readonly 'timestamp': string;
|
|
14981
|
-
readonly 'id': string;
|
|
14982
|
-
}
|
|
14983
|
-
|
|
14984
|
-
interface AldoItemForm {
|
|
14985
|
-
readonly 'number': string;
|
|
14986
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
14987
|
-
readonly 'description'?: string;
|
|
14988
|
-
readonly 'type': io.flow.internal.v0.enums.AldoItemType;
|
|
14989
|
-
readonly 'added_on': string;
|
|
14990
|
-
}
|
|
14991
|
-
|
|
14992
|
-
interface AldoItemUpserted {
|
|
14993
|
-
readonly 'discriminator': 'aldo_item_upserted';
|
|
14994
|
-
readonly 'event_id': string;
|
|
14995
|
-
readonly 'timestamp': string;
|
|
14996
|
-
readonly 'item': io.flow.internal.v0.models.AldoItem;
|
|
14997
|
-
}
|
|
14998
|
-
|
|
14999
15067
|
interface AllItemsExport {
|
|
15000
15068
|
readonly 'discriminator': 'all_items_export';
|
|
15001
15069
|
readonly 'event_id': string;
|
|
@@ -15018,68 +15086,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15018
15086
|
readonly 'labels': Record<string, string[]>;
|
|
15019
15087
|
}
|
|
15020
15088
|
|
|
15021
|
-
interface
|
|
15022
|
-
readonly 'id': string;
|
|
15023
|
-
readonly 'number': string;
|
|
15024
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
15025
|
-
readonly 'description'?: string;
|
|
15026
|
-
readonly 'type': io.flow.internal.v0.enums.AnirbanItemType;
|
|
15027
|
-
readonly 'added_on': string;
|
|
15028
|
-
}
|
|
15029
|
-
|
|
15030
|
-
interface AnirbanItemDeleted {
|
|
15031
|
-
readonly 'discriminator': 'anirban_item_deleted';
|
|
15032
|
-
readonly 'event_id': string;
|
|
15033
|
-
readonly 'timestamp': string;
|
|
15034
|
-
readonly 'id': string;
|
|
15035
|
-
}
|
|
15036
|
-
|
|
15037
|
-
interface AnirbanItemForm {
|
|
15038
|
-
readonly 'number': string;
|
|
15039
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
15040
|
-
readonly 'description'?: string;
|
|
15041
|
-
readonly 'type': io.flow.internal.v0.enums.AnirbanItemType;
|
|
15042
|
-
readonly 'added_on': string;
|
|
15043
|
-
}
|
|
15044
|
-
|
|
15045
|
-
interface AnirbanItemUpserted {
|
|
15046
|
-
readonly 'discriminator': 'anirban_item_upserted';
|
|
15047
|
-
readonly 'event_id': string;
|
|
15048
|
-
readonly 'timestamp': string;
|
|
15049
|
-
readonly 'item': io.flow.internal.v0.models.AnirbanItem;
|
|
15050
|
-
}
|
|
15051
|
-
|
|
15052
|
-
interface AnshItem {
|
|
15089
|
+
interface AmruthaItem {
|
|
15053
15090
|
readonly 'id': string;
|
|
15054
15091
|
readonly 'number': string;
|
|
15055
15092
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
15056
15093
|
readonly 'description'?: string;
|
|
15057
|
-
readonly 'type': io.flow.internal.v0.enums.
|
|
15094
|
+
readonly 'type': io.flow.internal.v0.enums.AmruthaItemType;
|
|
15058
15095
|
readonly 'added_on': string;
|
|
15059
15096
|
}
|
|
15060
15097
|
|
|
15061
|
-
interface
|
|
15062
|
-
readonly 'discriminator': 'ansh_item_deleted';
|
|
15063
|
-
readonly 'event_id': string;
|
|
15064
|
-
readonly 'timestamp': string;
|
|
15065
|
-
readonly 'id': string;
|
|
15066
|
-
}
|
|
15067
|
-
|
|
15068
|
-
interface AnshItemForm {
|
|
15098
|
+
interface AmruthaItemForm {
|
|
15069
15099
|
readonly 'number': string;
|
|
15070
15100
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
15071
15101
|
readonly 'description'?: string;
|
|
15072
|
-
readonly 'type': io.flow.internal.v0.enums.
|
|
15102
|
+
readonly 'type': io.flow.internal.v0.enums.AmruthaItemType;
|
|
15073
15103
|
readonly 'added_on': string;
|
|
15074
15104
|
}
|
|
15075
15105
|
|
|
15076
|
-
interface AnshItemUpserted {
|
|
15077
|
-
readonly 'discriminator': 'ansh_item_upserted';
|
|
15078
|
-
readonly 'event_id': string;
|
|
15079
|
-
readonly 'timestamp': string;
|
|
15080
|
-
readonly 'item': io.flow.internal.v0.models.AnshItem;
|
|
15081
|
-
}
|
|
15082
|
-
|
|
15083
15106
|
interface ApplePayAuthorizationPayload {
|
|
15084
15107
|
readonly 'discriminator': 'apple_pay_authorization_payload';
|
|
15085
15108
|
readonly 'apple_pay_token': string;
|
|
@@ -15183,6 +15206,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15183
15206
|
readonly 'action'?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
15184
15207
|
}
|
|
15185
15208
|
|
|
15209
|
+
interface B2BFeeMorTaxTriggerMetadata {
|
|
15210
|
+
readonly 'discriminator': 'b2b_fee_mor_tax_trigger_metadata';
|
|
15211
|
+
readonly 'trigger_type': io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType;
|
|
15212
|
+
}
|
|
15213
|
+
|
|
15214
|
+
interface B2BFeeShippingTaxTriggerMetadata {
|
|
15215
|
+
readonly 'discriminator': 'b2b_fee_shipping_tax_trigger_metadata';
|
|
15216
|
+
readonly 'trigger_type': io.flow.internal.v0.enums.B2BFeeShippingTaxTriggerType;
|
|
15217
|
+
}
|
|
15218
|
+
|
|
15186
15219
|
interface B2BTaxLedger {
|
|
15187
15220
|
readonly 'id': string;
|
|
15188
15221
|
readonly 'total_amount': io.flow.internal.v0.models.TaxTypeTotal;
|
|
@@ -15200,6 +15233,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15200
15233
|
readonly 'document_type': io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
15201
15234
|
readonly 'document_date': string;
|
|
15202
15235
|
readonly 'ledger_report_id'?: string;
|
|
15236
|
+
readonly 'voids_invoice_number'?: string;
|
|
15237
|
+
readonly 'document_number'?: string;
|
|
15203
15238
|
}
|
|
15204
15239
|
|
|
15205
15240
|
interface B2BTaxLedgerForm {
|
|
@@ -15218,6 +15253,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15218
15253
|
readonly 'document_type': io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
15219
15254
|
readonly 'document_date': string;
|
|
15220
15255
|
readonly 'ledger_report_id'?: string;
|
|
15256
|
+
readonly 'voids_invoice_number'?: string;
|
|
15257
|
+
readonly 'document_number'?: string;
|
|
15221
15258
|
}
|
|
15222
15259
|
|
|
15223
15260
|
interface BankAccount {
|
|
@@ -15528,6 +15565,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15528
15565
|
readonly 'tax_refund': io.flow.common.v0.models.Price;
|
|
15529
15566
|
readonly 'b2b_tax': io.flow.common.v0.models.Price;
|
|
15530
15567
|
readonly 'b2b_tax_refund': io.flow.common.v0.models.Price;
|
|
15568
|
+
readonly 'merchant_fee': io.flow.common.v0.models.Price;
|
|
15569
|
+
readonly 'b2b_fee_mor_tax': io.flow.common.v0.models.Price;
|
|
15570
|
+
readonly 'b2b_fee_shipping_tax': io.flow.common.v0.models.Price;
|
|
15531
15571
|
}
|
|
15532
15572
|
|
|
15533
15573
|
interface BillingStatementUpserted {
|
|
@@ -15594,6 +15634,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15594
15634
|
readonly 'secret_key': string;
|
|
15595
15635
|
}
|
|
15596
15636
|
|
|
15637
|
+
interface BojanaItem {
|
|
15638
|
+
readonly 'id': string;
|
|
15639
|
+
readonly 'number': string;
|
|
15640
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
15641
|
+
readonly 'description'?: string;
|
|
15642
|
+
readonly 'type': io.flow.internal.v0.enums.BojanaItemType;
|
|
15643
|
+
readonly 'added_on': string;
|
|
15644
|
+
}
|
|
15645
|
+
|
|
15646
|
+
interface BojanaItemForm {
|
|
15647
|
+
readonly 'number': string;
|
|
15648
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
15649
|
+
readonly 'description'?: string;
|
|
15650
|
+
readonly 'type': io.flow.internal.v0.enums.BojanaItemType;
|
|
15651
|
+
readonly 'added_on': string;
|
|
15652
|
+
}
|
|
15653
|
+
|
|
15597
15654
|
interface BooleanFeatureDefaultValue {
|
|
15598
15655
|
readonly 'discriminator': 'boolean';
|
|
15599
15656
|
readonly 'value': boolean;
|
|
@@ -16607,6 +16664,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16607
16664
|
readonly 'type': io.flow.internal.v0.enums.CheckoutUrlType;
|
|
16608
16665
|
}
|
|
16609
16666
|
|
|
16667
|
+
interface ChenglinItem {
|
|
16668
|
+
readonly 'id': string;
|
|
16669
|
+
readonly 'number': string;
|
|
16670
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
16671
|
+
readonly 'description'?: string;
|
|
16672
|
+
readonly 'type': io.flow.internal.v0.enums.GabrielItemType;
|
|
16673
|
+
readonly 'added_on': string;
|
|
16674
|
+
}
|
|
16675
|
+
|
|
16676
|
+
interface ChenglinItemDeleted {
|
|
16677
|
+
readonly 'discriminator': 'chenglin_item_deleted';
|
|
16678
|
+
readonly 'event_id': string;
|
|
16679
|
+
readonly 'timestamp': string;
|
|
16680
|
+
readonly 'id': string;
|
|
16681
|
+
}
|
|
16682
|
+
|
|
16683
|
+
interface ChenglinItemForm {
|
|
16684
|
+
readonly 'number': string;
|
|
16685
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
16686
|
+
readonly 'description'?: string;
|
|
16687
|
+
readonly 'type': io.flow.internal.v0.enums.GabrielItemType;
|
|
16688
|
+
readonly 'added_on': string;
|
|
16689
|
+
}
|
|
16690
|
+
|
|
16691
|
+
interface ChenglinItemUpserted {
|
|
16692
|
+
readonly 'discriminator': 'chenglin_item_upserted';
|
|
16693
|
+
readonly 'event_id': string;
|
|
16694
|
+
readonly 'timestamp': string;
|
|
16695
|
+
readonly 'item': io.flow.internal.v0.models.ChenglinItem;
|
|
16696
|
+
}
|
|
16697
|
+
|
|
16610
16698
|
interface Cipher {
|
|
16611
16699
|
readonly 'id': string;
|
|
16612
16700
|
readonly 'attributes': Record<string, string>;
|
|
@@ -17174,7 +17262,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17174
17262
|
readonly 'debug': io.flow.internal.v0.models.DebugDetails;
|
|
17175
17263
|
readonly 'transactions': io.flow.internal.v0.models.DebugOrderTransactionDetails[];
|
|
17176
17264
|
readonly 'reporting': io.flow.internal.v0.models.ReportingDetails;
|
|
17177
|
-
readonly 'banking'
|
|
17265
|
+
readonly 'banking'?: io.flow.internal.v0.models.DebugBankingDetails;
|
|
17178
17266
|
}
|
|
17179
17267
|
|
|
17180
17268
|
interface DebugOrderTransactionDetails {
|
|
@@ -18972,6 +19060,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18972
19060
|
readonly 'num_events': number;
|
|
18973
19061
|
}
|
|
18974
19062
|
|
|
19063
|
+
interface GenerateLoadRate {
|
|
19064
|
+
readonly 'organization_ids': string[];
|
|
19065
|
+
readonly 'events_per_second': number;
|
|
19066
|
+
readonly 'duration_seconds': number;
|
|
19067
|
+
}
|
|
19068
|
+
|
|
18975
19069
|
interface GenerateLoadSingleOrg {
|
|
18976
19070
|
readonly 'discriminator': 'generate_load_single_org';
|
|
18977
19071
|
readonly 'organization_id': string;
|
|
@@ -19142,44 +19236,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19142
19236
|
readonly 'export_id': string;
|
|
19143
19237
|
}
|
|
19144
19238
|
|
|
19145
|
-
interface HoseinItem {
|
|
19146
|
-
readonly 'id': string;
|
|
19147
|
-
readonly 'number': string;
|
|
19148
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
19149
|
-
readonly 'description'?: string;
|
|
19150
|
-
readonly 'type': io.flow.internal.v0.enums.HoseinItemType;
|
|
19151
|
-
readonly 'added_on': string;
|
|
19152
|
-
}
|
|
19153
|
-
|
|
19154
|
-
interface HoseinItemDeleted {
|
|
19155
|
-
readonly 'discriminator': 'hosein_item_deleted';
|
|
19156
|
-
readonly 'event_id': string;
|
|
19157
|
-
readonly 'timestamp': string;
|
|
19158
|
-
readonly 'id': string;
|
|
19159
|
-
}
|
|
19160
|
-
|
|
19161
|
-
interface HoseinItemForm {
|
|
19162
|
-
readonly 'number': string;
|
|
19163
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
19164
|
-
readonly 'description'?: string;
|
|
19165
|
-
readonly 'type': io.flow.internal.v0.enums.HoseinItemType;
|
|
19166
|
-
readonly 'added_on': string;
|
|
19167
|
-
}
|
|
19168
|
-
|
|
19169
|
-
interface HoseinItemUpserted {
|
|
19170
|
-
readonly 'discriminator': 'hosein_item_upserted';
|
|
19171
|
-
readonly 'event_id': string;
|
|
19172
|
-
readonly 'timestamp': string;
|
|
19173
|
-
readonly 'item': io.flow.internal.v0.models.HoseinItem;
|
|
19174
|
-
}
|
|
19175
|
-
|
|
19176
19239
|
interface Hs6 {
|
|
19177
19240
|
readonly 'code': string;
|
|
19178
19241
|
readonly 'description': string;
|
|
19179
19242
|
}
|
|
19180
19243
|
|
|
19181
19244
|
interface Hs6Metadata {
|
|
19182
|
-
readonly 'description'
|
|
19245
|
+
readonly 'description'?: string;
|
|
19246
|
+
readonly 'classification_source'?: io.flow.internal.v0.enums.ClassificationSource;
|
|
19183
19247
|
}
|
|
19184
19248
|
|
|
19185
19249
|
interface ImportCompleted {
|
|
@@ -19688,11 +19752,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19688
19752
|
readonly 'values': string[];
|
|
19689
19753
|
}
|
|
19690
19754
|
|
|
19691
|
-
interface JeanDemoItem {
|
|
19692
|
-
readonly 'id': string;
|
|
19693
|
-
readonly 'name': string;
|
|
19694
|
-
}
|
|
19695
|
-
|
|
19696
19755
|
interface Journal {
|
|
19697
19756
|
readonly 'name': string;
|
|
19698
19757
|
readonly 'queued': number;
|
|
@@ -19813,34 +19872,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19813
19872
|
readonly 'postal'?: string;
|
|
19814
19873
|
}
|
|
19815
19874
|
|
|
19816
|
-
interface LabelGenerationSettings {
|
|
19817
|
-
readonly 'id': string;
|
|
19818
|
-
readonly 'auto_generate_query'?: string;
|
|
19819
|
-
readonly 'commercial_invoice_only_query'?: string;
|
|
19820
|
-
}
|
|
19821
|
-
|
|
19822
|
-
interface LabelGenerationSettingsDeleted {
|
|
19823
|
-
readonly 'discriminator': 'label_generation_settings_deleted';
|
|
19824
|
-
readonly 'event_id': string;
|
|
19825
|
-
readonly 'timestamp': string;
|
|
19826
|
-
readonly 'organization': string;
|
|
19827
|
-
readonly 'id': string;
|
|
19828
|
-
}
|
|
19829
|
-
|
|
19830
|
-
interface LabelGenerationSettingsForm {
|
|
19831
|
-
readonly 'item_identifier'?: string;
|
|
19832
|
-
readonly 'auto_generate_query'?: string;
|
|
19833
|
-
readonly 'commercial_invoice_only_query'?: string;
|
|
19834
|
-
}
|
|
19835
|
-
|
|
19836
|
-
interface LabelGenerationSettingsUpserted {
|
|
19837
|
-
readonly 'discriminator': 'label_generation_settings_upserted';
|
|
19838
|
-
readonly 'event_id': string;
|
|
19839
|
-
readonly 'timestamp': string;
|
|
19840
|
-
readonly 'organization': string;
|
|
19841
|
-
readonly 'label_generation_settings': io.flow.internal.v0.models.LabelGenerationSettings;
|
|
19842
|
-
}
|
|
19843
|
-
|
|
19844
19875
|
interface LabelInvoiceRequest {
|
|
19845
19876
|
readonly 'id': string;
|
|
19846
19877
|
readonly 'label': io.flow.internal.v0.models.TrueupLabelSummary;
|
|
@@ -19925,6 +19956,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19925
19956
|
readonly 'reference_id'?: string;
|
|
19926
19957
|
readonly 'logistics_integration_provider'?: string;
|
|
19927
19958
|
readonly 'tax_lrp_liabilities'?: io.flow.internal.v0.models.Liability[];
|
|
19959
|
+
readonly 'channel_id'?: string;
|
|
19928
19960
|
}
|
|
19929
19961
|
|
|
19930
19962
|
interface LabelSummary {
|
|
@@ -20345,6 +20377,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20345
20377
|
readonly 'original_transaction'?: io.flow.internal.v0.models.TransactionReference;
|
|
20346
20378
|
readonly 'order'?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
20347
20379
|
readonly 'attributes'?: Record<string, string>;
|
|
20380
|
+
readonly 'recoup'?: boolean;
|
|
20348
20381
|
readonly 'id': string;
|
|
20349
20382
|
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
20350
20383
|
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -20362,6 +20395,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20362
20395
|
readonly 'category'?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
20363
20396
|
readonly 'order'?: io.flow.internal.v0.models.ManualTransactionFormOrder;
|
|
20364
20397
|
readonly 'original_transaction_id'?: string;
|
|
20398
|
+
readonly 'recoup'?: boolean;
|
|
20365
20399
|
readonly 'attributes'?: Record<string, string>;
|
|
20366
20400
|
}
|
|
20367
20401
|
|
|
@@ -20605,37 +20639,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20605
20639
|
readonly 'conditions'?: string;
|
|
20606
20640
|
}
|
|
20607
20641
|
|
|
20608
|
-
interface NiallItem {
|
|
20609
|
-
readonly 'id': string;
|
|
20610
|
-
readonly 'number': string;
|
|
20611
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20612
|
-
readonly 'description'?: string;
|
|
20613
|
-
readonly 'type': io.flow.internal.v0.enums.NiallItemType;
|
|
20614
|
-
readonly 'added_on': string;
|
|
20615
|
-
}
|
|
20616
|
-
|
|
20617
|
-
interface NiallItemDeleted {
|
|
20618
|
-
readonly 'discriminator': 'niall_item_deleted';
|
|
20619
|
-
readonly 'event_id': string;
|
|
20620
|
-
readonly 'timestamp': string;
|
|
20621
|
-
readonly 'id': string;
|
|
20622
|
-
}
|
|
20623
|
-
|
|
20624
|
-
interface NiallItemForm {
|
|
20625
|
-
readonly 'number': string;
|
|
20626
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20627
|
-
readonly 'description'?: string;
|
|
20628
|
-
readonly 'type': io.flow.internal.v0.enums.NiallItemType;
|
|
20629
|
-
readonly 'added_on': string;
|
|
20630
|
-
}
|
|
20631
|
-
|
|
20632
|
-
interface NiallItemUpserted {
|
|
20633
|
-
readonly 'discriminator': 'niall_item_upserted';
|
|
20634
|
-
readonly 'event_id': string;
|
|
20635
|
-
readonly 'timestamp': string;
|
|
20636
|
-
readonly 'item': io.flow.internal.v0.models.NiallItem;
|
|
20637
|
-
}
|
|
20638
|
-
|
|
20639
20642
|
interface NoCalculatedTaxAmount {
|
|
20640
20643
|
readonly 'discriminator': 'no_calculated_tax_amount';
|
|
20641
20644
|
readonly 'amount': number;
|
|
@@ -20718,6 +20721,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20718
20721
|
readonly 'audit_result'?: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
20719
20722
|
readonly 'blocked_since'?: string;
|
|
20720
20723
|
readonly 'onboarding_segment'?: string;
|
|
20724
|
+
readonly 'country'?: string;
|
|
20721
20725
|
}
|
|
20722
20726
|
|
|
20723
20727
|
interface OnboardingStateForm {
|
|
@@ -21358,6 +21362,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21358
21362
|
readonly 'organization_payment_setting': io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
21359
21363
|
}
|
|
21360
21364
|
|
|
21365
|
+
interface OrganizationPromotion {
|
|
21366
|
+
readonly 'status': io.flow.internal.v0.enums.OrganizationPromotionStatus;
|
|
21367
|
+
readonly 'prod_org': string;
|
|
21368
|
+
}
|
|
21369
|
+
|
|
21370
|
+
interface OrganizationPromotionWarning {
|
|
21371
|
+
readonly 'prod_org': string;
|
|
21372
|
+
readonly 'message': string;
|
|
21373
|
+
}
|
|
21374
|
+
|
|
21361
21375
|
interface OrganizationRestrictionNoteForm {
|
|
21362
21376
|
readonly 'note': string;
|
|
21363
21377
|
readonly 'note_type': io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -21544,7 +21558,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21544
21558
|
readonly 'label_created_at': string;
|
|
21545
21559
|
readonly 'carrier_id': string;
|
|
21546
21560
|
readonly 'carrier_tracking_number': string;
|
|
21547
|
-
readonly 'revenue_share_percentage'
|
|
21561
|
+
readonly 'revenue_share_percentage'?: number;
|
|
21548
21562
|
readonly 'outbound_transaction_id'?: string;
|
|
21549
21563
|
}
|
|
21550
21564
|
|
|
@@ -21579,6 +21593,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21579
21593
|
readonly 'label_transaction_id': string;
|
|
21580
21594
|
readonly 'label_invoice_request_id': string;
|
|
21581
21595
|
readonly 'carrier_charge_id': string;
|
|
21596
|
+
readonly 'subtype'?: string;
|
|
21582
21597
|
}
|
|
21583
21598
|
|
|
21584
21599
|
interface OtherRecordOrderSummary {
|
|
@@ -22198,23 +22213,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22198
22213
|
readonly 'rate': number;
|
|
22199
22214
|
}
|
|
22200
22215
|
|
|
22201
|
-
interface PrateekItem {
|
|
22202
|
-
readonly 'id': string;
|
|
22203
|
-
readonly 'number': string;
|
|
22204
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
22205
|
-
readonly 'description'?: string;
|
|
22206
|
-
readonly 'type': io.flow.internal.v0.enums.PrateekItemType;
|
|
22207
|
-
readonly 'added_on': string;
|
|
22208
|
-
}
|
|
22209
|
-
|
|
22210
|
-
interface PrateekItemForm {
|
|
22211
|
-
readonly 'number': string;
|
|
22212
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
22213
|
-
readonly 'description'?: string;
|
|
22214
|
-
readonly 'type': io.flow.internal.v0.enums.PrateekItemType;
|
|
22215
|
-
readonly 'added_on': string;
|
|
22216
|
-
}
|
|
22217
|
-
|
|
22218
22216
|
interface Prediction {
|
|
22219
22217
|
readonly 'main_material': string;
|
|
22220
22218
|
readonly 'gender': string;
|
|
@@ -22276,6 +22274,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22276
22274
|
}
|
|
22277
22275
|
|
|
22278
22276
|
interface PreonboardingSellabilityResult {
|
|
22277
|
+
readonly 'id'?: string;
|
|
22279
22278
|
readonly 'merchant_id': string;
|
|
22280
22279
|
readonly 'product_id': string;
|
|
22281
22280
|
readonly 'channel': string;
|
|
@@ -22292,6 +22291,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22292
22291
|
readonly 'fingerprint': string;
|
|
22293
22292
|
}
|
|
22294
22293
|
|
|
22294
|
+
interface PreonboardingSellabilityResultDeleted {
|
|
22295
|
+
readonly 'discriminator': 'preonboarding_sellability_result_deleted';
|
|
22296
|
+
readonly 'event_id': string;
|
|
22297
|
+
readonly 'timestamp': string;
|
|
22298
|
+
readonly 'id': string;
|
|
22299
|
+
}
|
|
22300
|
+
|
|
22301
|
+
interface PreonboardingSellabilityResultInserted {
|
|
22302
|
+
readonly 'discriminator': 'preonboarding_sellability_result_inserted';
|
|
22303
|
+
readonly 'event_id': string;
|
|
22304
|
+
readonly 'timestamp': string;
|
|
22305
|
+
readonly 'preonboarding_sellability_result': io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
22306
|
+
}
|
|
22307
|
+
|
|
22308
|
+
interface PreonboardingSellabilityResultUpdated {
|
|
22309
|
+
readonly 'discriminator': 'preonboarding_sellability_result_updated';
|
|
22310
|
+
readonly 'event_id': string;
|
|
22311
|
+
readonly 'timestamp': string;
|
|
22312
|
+
readonly 'previous_preonboarding_sellability_result': io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
22313
|
+
readonly 'preonboarding_sellability_result': io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
22314
|
+
}
|
|
22315
|
+
|
|
22295
22316
|
interface PriceInclusivity {
|
|
22296
22317
|
readonly 'tax'?: boolean;
|
|
22297
22318
|
readonly 'duty'?: boolean;
|
|
@@ -22558,10 +22579,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22558
22579
|
|
|
22559
22580
|
interface ProductSellabilityInternalResult {
|
|
22560
22581
|
readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
22561
|
-
readonly '
|
|
22582
|
+
readonly 'rule_matches': io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch[];
|
|
22583
|
+
readonly 'matching_positive_keywords'?: string[];
|
|
22584
|
+
}
|
|
22585
|
+
|
|
22586
|
+
interface ProductSellabilityInternalRuleMatch {
|
|
22587
|
+
readonly 'rule_id': string;
|
|
22588
|
+
readonly 'match_types': io.flow.internal.v0.enums.SellabilityInternalMatchType[];
|
|
22562
22589
|
}
|
|
22563
22590
|
|
|
22564
22591
|
interface ProductSellabilityResult {
|
|
22592
|
+
readonly 'id'?: string;
|
|
22565
22593
|
readonly 'shop_id': string;
|
|
22566
22594
|
readonly 'product_number': string;
|
|
22567
22595
|
readonly 'request_id': string;
|
|
@@ -22570,6 +22598,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22570
22598
|
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
22571
22599
|
readonly 'rule_ids'?: string[];
|
|
22572
22600
|
readonly 'taxonomy_category'?: string;
|
|
22601
|
+
readonly 'fingerprint'?: string;
|
|
22602
|
+
readonly 'processed_at'?: string;
|
|
22603
|
+
}
|
|
22604
|
+
|
|
22605
|
+
interface ProductSellabilityResultDeleted {
|
|
22606
|
+
readonly 'discriminator': 'product_sellability_result_deleted';
|
|
22607
|
+
readonly 'event_id': string;
|
|
22608
|
+
readonly 'timestamp': string;
|
|
22609
|
+
readonly 'id': string;
|
|
22610
|
+
}
|
|
22611
|
+
|
|
22612
|
+
interface ProductSellabilityResultInserted {
|
|
22613
|
+
readonly 'discriminator': 'product_sellability_result_inserted';
|
|
22614
|
+
readonly 'event_id': string;
|
|
22615
|
+
readonly 'timestamp': string;
|
|
22616
|
+
readonly 'product_sellability_result': io.flow.internal.v0.models.ProductSellabilityResult;
|
|
22617
|
+
}
|
|
22618
|
+
|
|
22619
|
+
interface ProductSellabilityResultUpdated {
|
|
22620
|
+
readonly 'discriminator': 'product_sellability_result_updated';
|
|
22621
|
+
readonly 'event_id': string;
|
|
22622
|
+
readonly 'timestamp': string;
|
|
22623
|
+
readonly 'previous_product_sellability_result': io.flow.internal.v0.models.ProductSellabilityResult;
|
|
22624
|
+
readonly 'product_sellability_result': io.flow.internal.v0.models.ProductSellabilityResult;
|
|
22573
22625
|
}
|
|
22574
22626
|
|
|
22575
22627
|
interface ProductTransaction {
|
|
@@ -23118,6 +23170,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23118
23170
|
readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
23119
23171
|
readonly 'order_payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
23120
23172
|
readonly 'amount_range'?: io.flow.internal.v0.models.ReportAmountRange;
|
|
23173
|
+
readonly 'account_currency'?: io.flow.internal.v0.enums.AccountCurrencyFilter;
|
|
23121
23174
|
}
|
|
23122
23175
|
|
|
23123
23176
|
interface ReportForm {
|
|
@@ -23949,37 +24002,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23949
24002
|
readonly 'revenue_record': io.flow.internal.v0.models.RevenueRecord;
|
|
23950
24003
|
}
|
|
23951
24004
|
|
|
23952
|
-
interface RohanItem {
|
|
23953
|
-
readonly 'id': string;
|
|
23954
|
-
readonly 'number': string;
|
|
23955
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
23956
|
-
readonly 'description'?: string;
|
|
23957
|
-
readonly 'type': io.flow.internal.v0.enums.RohanItemType;
|
|
23958
|
-
readonly 'added_on': string;
|
|
23959
|
-
}
|
|
23960
|
-
|
|
23961
|
-
interface RohanItemDeleted {
|
|
23962
|
-
readonly 'discriminator': 'rohan_item_deleted';
|
|
23963
|
-
readonly 'event_id': string;
|
|
23964
|
-
readonly 'timestamp': string;
|
|
23965
|
-
readonly 'id': string;
|
|
23966
|
-
}
|
|
23967
|
-
|
|
23968
|
-
interface RohanItemForm {
|
|
23969
|
-
readonly 'number': string;
|
|
23970
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
23971
|
-
readonly 'description'?: string;
|
|
23972
|
-
readonly 'type': io.flow.internal.v0.enums.RohanItemType;
|
|
23973
|
-
readonly 'added_on': string;
|
|
23974
|
-
}
|
|
23975
|
-
|
|
23976
|
-
interface RohanItemUpserted {
|
|
23977
|
-
readonly 'discriminator': 'rohan_item_upserted';
|
|
23978
|
-
readonly 'event_id': string;
|
|
23979
|
-
readonly 'timestamp': string;
|
|
23980
|
-
readonly 'item': io.flow.internal.v0.models.RohanItem;
|
|
23981
|
-
}
|
|
23982
|
-
|
|
23983
24005
|
interface RoutingAccount {
|
|
23984
24006
|
readonly 'discriminator': 'routing_account';
|
|
23985
24007
|
readonly 'processor': io.flow.internal.v0.enums.Processor;
|
|
@@ -24014,6 +24036,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24014
24036
|
readonly 'price_inclusivity'?: io.flow.internal.v0.models.PriceInclusivity;
|
|
24015
24037
|
readonly 'destination_country': string;
|
|
24016
24038
|
readonly 'fulfilled_at'?: string;
|
|
24039
|
+
readonly 'reconciliation'?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
24040
|
+
readonly 'is_eu_destination'?: boolean;
|
|
24041
|
+
readonly 'debug_url'?: string;
|
|
24017
24042
|
}
|
|
24018
24043
|
|
|
24019
24044
|
interface SandboxSetup {
|
|
@@ -24024,37 +24049,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24024
24049
|
readonly 'requested_by': string;
|
|
24025
24050
|
}
|
|
24026
24051
|
|
|
24027
|
-
interface SarveshItem {
|
|
24028
|
-
readonly 'id': string;
|
|
24029
|
-
readonly 'number': string;
|
|
24030
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
24031
|
-
readonly 'description'?: string;
|
|
24032
|
-
readonly 'type': io.flow.internal.v0.enums.SarveshItemType;
|
|
24033
|
-
readonly 'added_on': string;
|
|
24034
|
-
}
|
|
24035
|
-
|
|
24036
|
-
interface SarveshItemDeleted {
|
|
24037
|
-
readonly 'discriminator': 'sarvesh_item_deleted';
|
|
24038
|
-
readonly 'event_id': string;
|
|
24039
|
-
readonly 'timestamp': string;
|
|
24040
|
-
readonly 'id': string;
|
|
24041
|
-
}
|
|
24042
|
-
|
|
24043
|
-
interface SarveshItemForm {
|
|
24044
|
-
readonly 'number': string;
|
|
24045
|
-
readonly 'amount': io.flow.common.v0.models.Price;
|
|
24046
|
-
readonly 'description'?: string;
|
|
24047
|
-
readonly 'type': io.flow.internal.v0.enums.SarveshItemType;
|
|
24048
|
-
readonly 'added_on': string;
|
|
24049
|
-
}
|
|
24050
|
-
|
|
24051
|
-
interface SarveshItemUpserted {
|
|
24052
|
-
readonly 'discriminator': 'sarvesh_item_upserted';
|
|
24053
|
-
readonly 'event_id': string;
|
|
24054
|
-
readonly 'timestamp': string;
|
|
24055
|
-
readonly 'item': io.flow.internal.v0.models.SarveshItem;
|
|
24056
|
-
}
|
|
24057
|
-
|
|
24058
24052
|
interface ScheduledPayment {
|
|
24059
24053
|
readonly 'payment': io.flow.internal.v0.models.ReportPayment;
|
|
24060
24054
|
readonly 'bank_account': io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -24194,6 +24188,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24194
24188
|
readonly 'cost': io.flow.common.v0.models.Money;
|
|
24195
24189
|
}
|
|
24196
24190
|
|
|
24191
|
+
interface ShippingCostDeleted {
|
|
24192
|
+
readonly 'discriminator': 'shipping_cost_deleted';
|
|
24193
|
+
readonly 'event_id': string;
|
|
24194
|
+
readonly 'timestamp': string;
|
|
24195
|
+
readonly 'organization': string;
|
|
24196
|
+
readonly 'id': string;
|
|
24197
|
+
}
|
|
24198
|
+
|
|
24199
|
+
interface ShippingCostSummary {
|
|
24200
|
+
readonly 'id': string;
|
|
24201
|
+
readonly 'source': io.flow.billing.v0.enums.TransactionSource;
|
|
24202
|
+
readonly 'organization_id': string;
|
|
24203
|
+
readonly 'order_number': string;
|
|
24204
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
24205
|
+
readonly 'tax': io.flow.common.v0.models.Money;
|
|
24206
|
+
readonly 'label_id'?: string;
|
|
24207
|
+
readonly 'base'?: io.flow.trueup.v0.models.LabelBase;
|
|
24208
|
+
readonly 'surcharges'?: io.flow.trueup.v0.models.LabelSurcharge[];
|
|
24209
|
+
}
|
|
24210
|
+
|
|
24211
|
+
interface ShippingCostUpserted {
|
|
24212
|
+
readonly 'discriminator': 'shipping_cost_upserted';
|
|
24213
|
+
readonly 'event_id': string;
|
|
24214
|
+
readonly 'timestamp': string;
|
|
24215
|
+
readonly 'organization': string;
|
|
24216
|
+
readonly 'shipping_cost': io.flow.internal.v0.models.ShippingCostSummary;
|
|
24217
|
+
}
|
|
24218
|
+
|
|
24197
24219
|
interface ShippingLane {
|
|
24198
24220
|
readonly 'origin': string;
|
|
24199
24221
|
readonly 'destination': string;
|
|
@@ -24253,6 +24275,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24253
24275
|
readonly 'include_unpublished'?: boolean;
|
|
24254
24276
|
}
|
|
24255
24277
|
|
|
24278
|
+
interface ShopifyAddress {
|
|
24279
|
+
readonly 'address1': string;
|
|
24280
|
+
readonly 'city': string;
|
|
24281
|
+
readonly 'country_code': string;
|
|
24282
|
+
readonly 'address2'?: string;
|
|
24283
|
+
readonly 'postal_code'?: string;
|
|
24284
|
+
readonly 'province'?: string;
|
|
24285
|
+
}
|
|
24286
|
+
|
|
24287
|
+
interface ShopifyCallbackError {
|
|
24288
|
+
readonly 'errors': io.flow.internal.v0.models.ShopifyCallbackErrorItem[];
|
|
24289
|
+
}
|
|
24290
|
+
|
|
24291
|
+
interface ShopifyCallbackErrorItem {
|
|
24292
|
+
readonly 'code': io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
|
|
24293
|
+
readonly 'message': string;
|
|
24294
|
+
readonly 'field'?: string;
|
|
24295
|
+
}
|
|
24296
|
+
|
|
24256
24297
|
interface ShopifyCatalogPublication {
|
|
24257
24298
|
readonly 'owner': io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
24258
24299
|
}
|
|
@@ -24266,6 +24307,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24266
24307
|
readonly 'service': io.flow.internal.v0.enums.ShopifyService;
|
|
24267
24308
|
}
|
|
24268
24309
|
|
|
24310
|
+
interface ShopifyContactDetails {
|
|
24311
|
+
readonly 'company'?: string;
|
|
24312
|
+
readonly 'email'?: string;
|
|
24313
|
+
readonly 'name'?: string;
|
|
24314
|
+
readonly 'phone'?: string;
|
|
24315
|
+
}
|
|
24316
|
+
|
|
24269
24317
|
interface ShopifyDispute {
|
|
24270
24318
|
readonly 'id': string;
|
|
24271
24319
|
readonly 'organization_id': string;
|
|
@@ -24621,6 +24669,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24621
24669
|
readonly 'registration': io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
24622
24670
|
}
|
|
24623
24671
|
|
|
24672
|
+
interface ShopifyMeasurements {
|
|
24673
|
+
readonly 'dimension_unit': io.flow.internal.v0.enums.ShopifyDimensionUnit;
|
|
24674
|
+
readonly 'height': number;
|
|
24675
|
+
readonly 'length': number;
|
|
24676
|
+
readonly 'width': number;
|
|
24677
|
+
readonly 'weight': number;
|
|
24678
|
+
readonly 'weight_unit': io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
24679
|
+
}
|
|
24680
|
+
|
|
24624
24681
|
interface ShopifyMerchantPlan {
|
|
24625
24682
|
readonly 'id': string;
|
|
24626
24683
|
readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -24648,6 +24705,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24648
24705
|
readonly 'token': string;
|
|
24649
24706
|
}
|
|
24650
24707
|
|
|
24708
|
+
interface ShopifyMoney {
|
|
24709
|
+
readonly 'amount': number;
|
|
24710
|
+
readonly 'currency_code': string;
|
|
24711
|
+
}
|
|
24712
|
+
|
|
24651
24713
|
interface ShopifyMonitoringCarrierService {
|
|
24652
24714
|
readonly 'service': string;
|
|
24653
24715
|
}
|
|
@@ -24929,6 +24991,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24929
24991
|
readonly 'deleted_at'?: string;
|
|
24930
24992
|
}
|
|
24931
24993
|
|
|
24994
|
+
interface ShopifyRateCustomsDetail {
|
|
24995
|
+
readonly 'incoterm': io.flow.internal.v0.enums.ShopifyIncoterm;
|
|
24996
|
+
readonly 'net_value': io.flow.internal.v0.models.ShopifyMoney;
|
|
24997
|
+
}
|
|
24998
|
+
|
|
24999
|
+
interface ShopifyRatePickupPoint {
|
|
25000
|
+
readonly 'partner_reference_id': string;
|
|
25001
|
+
}
|
|
25002
|
+
|
|
24932
25003
|
interface ShopifyReportFileDeleted {
|
|
24933
25004
|
readonly 'discriminator': 'shopify_report_file_deleted';
|
|
24934
25005
|
readonly 'event_id': string;
|
|
@@ -24943,6 +25014,85 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24943
25014
|
readonly 'shopify_report_file': io.flow.internal.v0.models.ReportFile;
|
|
24944
25015
|
}
|
|
24945
25016
|
|
|
25017
|
+
interface ShopifyShipmentRateAvailable {
|
|
25018
|
+
readonly 'carrier_service_id': string;
|
|
25019
|
+
readonly 'total_charges': io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
25020
|
+
readonly 'charges': io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
25021
|
+
readonly 'shipment_options': io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
25022
|
+
readonly 'expected_delivery_date'?: string;
|
|
25023
|
+
readonly 'guaranteed_delivery_date'?: string;
|
|
25024
|
+
readonly 'incoterm'?: io.flow.internal.v0.enums.ShopifyIncoterm;
|
|
25025
|
+
}
|
|
25026
|
+
|
|
25027
|
+
interface ShopifyShipmentRateCharge {
|
|
25028
|
+
readonly 'code': io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
25029
|
+
readonly 'cost': io.flow.internal.v0.models.ShopifyMoney;
|
|
25030
|
+
}
|
|
25031
|
+
|
|
25032
|
+
interface ShopifyShipmentRateOption {
|
|
25033
|
+
readonly 'code': io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
25034
|
+
readonly 'cost': io.flow.internal.v0.models.ShopifyMoney;
|
|
25035
|
+
readonly 'optional'?: boolean;
|
|
25036
|
+
}
|
|
25037
|
+
|
|
25038
|
+
interface ShopifyShipmentRatePackage {
|
|
25039
|
+
readonly 'type': io.flow.internal.v0.enums.ShopifyPackageType;
|
|
25040
|
+
readonly 'measurements': io.flow.internal.v0.models.ShopifyMeasurements;
|
|
25041
|
+
}
|
|
25042
|
+
|
|
25043
|
+
interface ShopifyShipmentRateReason {
|
|
25044
|
+
readonly 'code': io.flow.internal.v0.enums.ShopifyUnavailableRateReasonCode;
|
|
25045
|
+
readonly 'field'?: string;
|
|
25046
|
+
readonly 'message'?: string;
|
|
25047
|
+
}
|
|
25048
|
+
|
|
25049
|
+
interface ShopifyShipmentRateRequest {
|
|
25050
|
+
readonly 'idempotency_key': string;
|
|
25051
|
+
readonly 'webhook_id': string;
|
|
25052
|
+
readonly 'test': boolean;
|
|
25053
|
+
readonly 'shipper': io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
25054
|
+
readonly 'shipment': io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
25055
|
+
}
|
|
25056
|
+
|
|
25057
|
+
interface ShopifyShipmentRateResponse {
|
|
25058
|
+
readonly 'rates': io.flow.internal.v0.models.ShopifyShipmentRateAvailable[];
|
|
25059
|
+
readonly 'unavailable_rates': io.flow.internal.v0.models.ShopifyShipmentRateUnavailable[];
|
|
25060
|
+
}
|
|
25061
|
+
|
|
25062
|
+
interface ShopifyShipmentRateShipment {
|
|
25063
|
+
readonly 'carrier_id': string;
|
|
25064
|
+
readonly 'delivery_method_type': io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
25065
|
+
readonly 'shipping_date_time': string;
|
|
25066
|
+
readonly 'return': boolean;
|
|
25067
|
+
readonly 'origin': io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
25068
|
+
readonly 'destination': io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
25069
|
+
readonly 'package': io.flow.internal.v0.models.ShopifyShipmentRatePackage;
|
|
25070
|
+
readonly 'pickup_point'?: io.flow.internal.v0.models.ShopifyRatePickupPoint;
|
|
25071
|
+
readonly 'customs_detail'?: io.flow.internal.v0.models.ShopifyRateCustomsDetail;
|
|
25072
|
+
}
|
|
25073
|
+
|
|
25074
|
+
interface ShopifyShipmentRateShipper {
|
|
25075
|
+
readonly 'account_id': string;
|
|
25076
|
+
readonly 'carrier_account_reference_id': string;
|
|
25077
|
+
readonly 'byoa': boolean;
|
|
25078
|
+
}
|
|
25079
|
+
|
|
25080
|
+
interface ShopifyShipmentRateTotalCharges {
|
|
25081
|
+
readonly 'subtotal': io.flow.internal.v0.models.ShopifyMoney;
|
|
25082
|
+
readonly 'tax': io.flow.internal.v0.models.ShopifyMoney;
|
|
25083
|
+
readonly 'total': io.flow.internal.v0.models.ShopifyMoney;
|
|
25084
|
+
}
|
|
25085
|
+
|
|
25086
|
+
interface ShopifyShipmentRateUnavailable {
|
|
25087
|
+
readonly 'carrier_service_id': string;
|
|
25088
|
+
readonly 'reasons': io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
25089
|
+
}
|
|
25090
|
+
|
|
25091
|
+
interface ShopifyShippingLocation {
|
|
25092
|
+
readonly 'address': io.flow.internal.v0.models.ShopifyAddress;
|
|
25093
|
+
readonly 'contact_details': io.flow.internal.v0.models.ShopifyContactDetails;
|
|
25094
|
+
}
|
|
25095
|
+
|
|
24946
25096
|
interface ShopifyShopStatistics {
|
|
24947
25097
|
readonly 'id': string;
|
|
24948
25098
|
readonly 'initial_catalog_synced_at'?: string;
|
|
@@ -24981,12 +25131,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24981
25131
|
readonly 'auto_correct': boolean;
|
|
24982
25132
|
}
|
|
24983
25133
|
|
|
25134
|
+
interface ShopifyTestOrder {
|
|
25135
|
+
readonly 'id': string;
|
|
25136
|
+
readonly 'submitted_at': string;
|
|
25137
|
+
}
|
|
25138
|
+
|
|
25139
|
+
interface ShopifyTestOrderDeleted {
|
|
25140
|
+
readonly 'discriminator': 'shopify_test_order_deleted';
|
|
25141
|
+
readonly 'event_id': string;
|
|
25142
|
+
readonly 'timestamp': string;
|
|
25143
|
+
readonly 'organization': string;
|
|
25144
|
+
readonly 'id': string;
|
|
25145
|
+
}
|
|
25146
|
+
|
|
25147
|
+
interface ShopifyTestOrderUpserted {
|
|
25148
|
+
readonly 'discriminator': 'shopify_test_order_upserted';
|
|
25149
|
+
readonly 'event_id': string;
|
|
25150
|
+
readonly 'timestamp': string;
|
|
25151
|
+
readonly 'organization': string;
|
|
25152
|
+
readonly 'shopify_test_order': io.flow.internal.v0.models.ShopifyTestOrder;
|
|
25153
|
+
}
|
|
25154
|
+
|
|
24984
25155
|
interface ShopperBreakdown {
|
|
24985
25156
|
readonly 'product': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24986
25157
|
readonly 'product_purchase_price'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24987
25158
|
readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24988
25159
|
readonly 'duty': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24989
25160
|
readonly 'discount': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
25161
|
+
readonly 'subtotal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24990
25162
|
readonly 'total': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
24991
25163
|
}
|
|
24992
25164
|
|
|
@@ -25340,6 +25512,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25340
25512
|
readonly 'mor_fees'?: number;
|
|
25341
25513
|
readonly 'mor_foreign_exchange_fees'?: number;
|
|
25342
25514
|
readonly 'sp_processing_fees'?: number;
|
|
25515
|
+
readonly 'mor_fees_tax'?: number;
|
|
25343
25516
|
}
|
|
25344
25517
|
|
|
25345
25518
|
interface StripeConnectReportRecordTransferMetadata {
|
|
@@ -26378,7 +26551,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26378
26551
|
readonly 'fulfillment_key'?: string;
|
|
26379
26552
|
readonly 'rex_number'?: string;
|
|
26380
26553
|
readonly 'weee_number'?: string;
|
|
26381
|
-
readonly 'generate_commercial_invoice_only': boolean;
|
|
26382
26554
|
readonly 'liability_remittance_plan'?: io.flow.internal.v0.models.LiabilityRemittancePlan;
|
|
26383
26555
|
readonly 'shipment_cost_summary'?: io.flow.internal.v0.models.ShipmentCostSummary;
|
|
26384
26556
|
readonly 'shipping_label_hop_cost_itemized_estimate'?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
@@ -26466,7 +26638,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26466
26638
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
26467
26639
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
26468
26640
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
26469
|
-
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.AnirbanItemUpserted | io.flow.internal.v0.models.AnirbanItemDeleted | io.flow.internal.v0.models.SarveshItemUpserted | io.flow.internal.v0.models.SarveshItemDeleted | io.flow.internal.v0.models.HoseinItemUpserted | io.flow.internal.v0.models.HoseinItemDeleted | io.flow.internal.v0.models.NiallItemUpserted | io.flow.internal.v0.models.NiallItemDeleted | io.flow.internal.v0.models.RohanItemUpserted | io.flow.internal.v0.models.RohanItemDeleted | io.flow.internal.v0.models.AldoItemUpserted | io.flow.internal.v0.models.AldoItemDeleted | io.flow.internal.v0.models.AnshItemUpserted | io.flow.internal.v0.models.AnshItemDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26641
|
+
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.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.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | 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);
|
|
26470
26642
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
26471
26643
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
26472
26644
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26510,25 +26682,26 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26510
26682
|
type TariffEligibilityData = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData);
|
|
26511
26683
|
type TariffEligibilityForm = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm);
|
|
26512
26684
|
type TaskData = (io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport);
|
|
26513
|
-
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata | io.flow.internal.v0.models.AccountingReturnMetadata | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata);
|
|
26685
|
+
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata | io.flow.internal.v0.models.AccountingReturnMetadata | io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata | io.flow.internal.v0.models.ChannelTransactionTriggerMetadata | io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata | io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata);
|
|
26514
26686
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
26515
26687
|
type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
|
|
26516
26688
|
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction | io.flow.internal.v0.models.MerchantFeeTransaction);
|
|
26517
26689
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
26518
26690
|
}
|
|
26519
26691
|
|
|
26692
|
+
export const accountCurrencyFilter: PropTypes.Requireable<io.flow.internal.v0.enums.AccountCurrencyFilter>;
|
|
26520
26693
|
export const accountPaymentHoldReason: PropTypes.Requireable<io.flow.internal.v0.enums.AccountPaymentHoldReason>;
|
|
26521
26694
|
export const accountSettingLiabilitiesMethod: PropTypes.Requireable<io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod>;
|
|
26522
26695
|
export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.AccountType>;
|
|
26523
26696
|
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
26524
26697
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
26525
|
-
export const
|
|
26526
|
-
export const anirbanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnirbanItemType>;
|
|
26527
|
-
export const anshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnshItemType>;
|
|
26698
|
+
export const amruthaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AmruthaItemType>;
|
|
26528
26699
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
26529
26700
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
26530
26701
|
export const applicablePreferentialRate: PropTypes.Requireable<io.flow.internal.v0.enums.ApplicablePreferentialRate>;
|
|
26531
26702
|
export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
|
|
26703
|
+
export const b2BFeeMorTaxTriggerType: PropTypes.Requireable<io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType>;
|
|
26704
|
+
export const b2BFeeShippingTaxTriggerType: PropTypes.Requireable<io.flow.internal.v0.enums.B2BFeeShippingTaxTriggerType>;
|
|
26532
26705
|
export const b2BTaxLedgerDocumentType: PropTypes.Requireable<io.flow.internal.v0.enums.B2BTaxLedgerDocumentType>;
|
|
26533
26706
|
export const b2BTaxRateType: PropTypes.Requireable<io.flow.internal.v0.enums.B2BTaxRateType>;
|
|
26534
26707
|
export const bankAccountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BankAccountStatus>;
|
|
@@ -26539,6 +26712,7 @@ export const billingMetricKey: PropTypes.Requireable<io.flow.internal.v0.enums.B
|
|
|
26539
26712
|
export const billingStatementAttachmentKey: PropTypes.Requireable<io.flow.internal.v0.enums.BillingStatementAttachmentKey>;
|
|
26540
26713
|
export const billingTransactionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BillingTransactionStatus>;
|
|
26541
26714
|
export const billingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.BillingTransactionType>;
|
|
26715
|
+
export const bojanaItemType: PropTypes.Requireable<io.flow.internal.v0.enums.BojanaItemType>;
|
|
26542
26716
|
export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
|
|
26543
26717
|
export const carrierChargeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeTransactionType>;
|
|
26544
26718
|
export const carrierChargeType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeType>;
|
|
@@ -26567,11 +26741,13 @@ export const checkoutAssetType: PropTypes.Requireable<io.flow.internal.v0.enums.
|
|
|
26567
26741
|
export const checkoutPromptBehavior: PropTypes.Requireable<io.flow.internal.v0.enums.CheckoutPromptBehavior>;
|
|
26568
26742
|
export const checkoutShippingMethodPromptBehavior: PropTypes.Requireable<io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior>;
|
|
26569
26743
|
export const checkoutUrlType: PropTypes.Requireable<io.flow.internal.v0.enums.CheckoutUrlType>;
|
|
26744
|
+
export const chenglinItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ChenglinItemType>;
|
|
26570
26745
|
export const classificationDecision: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationDecision>;
|
|
26571
26746
|
export const classificationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationErrorCode>;
|
|
26572
26747
|
export const classificationFailureReason: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationFailureReason>;
|
|
26573
26748
|
export const classificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationPlatform>;
|
|
26574
26749
|
export const classificationScope: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationScope>;
|
|
26750
|
+
export const classificationSource: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationSource>;
|
|
26575
26751
|
export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationType>;
|
|
26576
26752
|
export const clothingAgeClassification: PropTypes.Requireable<io.flow.internal.v0.enums.ClothingAgeClassification>;
|
|
26577
26753
|
export const commercialInvoiceVersion: PropTypes.Requireable<io.flow.internal.v0.enums.CommercialInvoiceVersion>;
|
|
@@ -26626,7 +26802,6 @@ export const geRevenueShareTransactionType: PropTypes.Requireable<io.flow.intern
|
|
|
26626
26802
|
export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
|
|
26627
26803
|
export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
|
|
26628
26804
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
26629
|
-
export const hoseinItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HoseinItemType>;
|
|
26630
26805
|
export const hs6CodeSource: PropTypes.Requireable<io.flow.internal.v0.enums.Hs6CodeSource>;
|
|
26631
26806
|
export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
|
|
26632
26807
|
export const internalPaymentEntityType: PropTypes.Requireable<io.flow.internal.v0.enums.InternalPaymentEntityType>;
|
|
@@ -26658,7 +26833,6 @@ export const merchantOfRecord: PropTypes.Requireable<io.flow.internal.v0.enums.M
|
|
|
26658
26833
|
export const merchantOverrideStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MerchantOverrideStatus>;
|
|
26659
26834
|
export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
|
|
26660
26835
|
export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
|
|
26661
|
-
export const niallItemType: PropTypes.Requireable<io.flow.internal.v0.enums.NiallItemType>;
|
|
26662
26836
|
export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
|
|
26663
26837
|
export const nonL4LTaxDutyFxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.NonL4LTaxDutyFxTransactionType>;
|
|
26664
26838
|
export const onboardingAuditMessageLevel: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAuditMessageLevel>;
|
|
@@ -26679,6 +26853,7 @@ export const orderValidationStatus: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
26679
26853
|
export const organizationCapability: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationCapability>;
|
|
26680
26854
|
export const organizationMetricType: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationMetricType>;
|
|
26681
26855
|
export const organizationPaymentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationPaymentStatus>;
|
|
26856
|
+
export const organizationPromotionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationPromotionStatus>;
|
|
26682
26857
|
export const organizationRestrictionApprovalStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus>;
|
|
26683
26858
|
export const organizationRestrictionNoteType: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionNoteType>;
|
|
26684
26859
|
export const organizationRestrictionReviewType: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionReviewType>;
|
|
@@ -26692,7 +26867,6 @@ export const paymentSummaryStatus: PropTypes.Requireable<io.flow.internal.v0.enu
|
|
|
26692
26867
|
export const paymentSummaryType: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryType>;
|
|
26693
26868
|
export const paymentTerm: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentTerm>;
|
|
26694
26869
|
export const pendingRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.PendingRecordType>;
|
|
26695
|
-
export const prateekItemType: PropTypes.Requireable<io.flow.internal.v0.enums.PrateekItemType>;
|
|
26696
26870
|
export const preferredBillingSchedule: PropTypes.Requireable<io.flow.internal.v0.enums.PreferredBillingSchedule>;
|
|
26697
26871
|
export const preonboardingClassificationDecision: PropTypes.Requireable<io.flow.internal.v0.enums.PreonboardingClassificationDecision>;
|
|
26698
26872
|
export const preonboardingClassificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.PreonboardingClassificationPlatform>;
|
|
@@ -26732,10 +26906,14 @@ export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.
|
|
|
26732
26906
|
export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueRecordType>;
|
|
26733
26907
|
export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
|
|
26734
26908
|
export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
|
|
26735
|
-
export const rohanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.RohanItemType>;
|
|
26736
|
-
export const sarveshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.SarveshItemType>;
|
|
26737
26909
|
export const sellabilityCheckStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SellabilityCheckStatus>;
|
|
26910
|
+
export const sellabilityInternalMatchType: PropTypes.Requireable<io.flow.internal.v0.enums.SellabilityInternalMatchType>;
|
|
26738
26911
|
export const sellabilityStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SellabilityStatus>;
|
|
26912
|
+
export const shopifyCallbackErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyCallbackErrorCode>;
|
|
26913
|
+
export const shopifyChargeCode: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyChargeCode>;
|
|
26914
|
+
export const shopifyDeliveryMethodType: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyDeliveryMethodType>;
|
|
26915
|
+
export const shopifyDimensionUnit: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyDimensionUnit>;
|
|
26916
|
+
export const shopifyIncoterm: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyIncoterm>;
|
|
26739
26917
|
export const shopifyIncotermConfiguration: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyIncotermConfiguration>;
|
|
26740
26918
|
export const shopifyMarketsDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods>;
|
|
26741
26919
|
export const shopifyMarketsHtsNumberAvailable: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable>;
|
|
@@ -26743,8 +26921,12 @@ export const shopifyMarketsQueuedRecordType: PropTypes.Requireable<io.flow.inter
|
|
|
26743
26921
|
export const shopifyMarketsTradeSector: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsTradeSector>;
|
|
26744
26922
|
export const shopifyMonitoringMonitorReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus>;
|
|
26745
26923
|
export const shopifyMonitoringTrackingField: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMonitoringTrackingField>;
|
|
26924
|
+
export const shopifyPackageType: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPackageType>;
|
|
26746
26925
|
export const shopifyPlanType: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyPlanType>;
|
|
26747
26926
|
export const shopifyService: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyService>;
|
|
26927
|
+
export const shopifyShipmentOptionCode: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyShipmentOptionCode>;
|
|
26928
|
+
export const shopifyUnavailableRateReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyUnavailableRateReasonCode>;
|
|
26929
|
+
export const shopifyWeightUnit: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyWeightUnit>;
|
|
26748
26930
|
export const simpleRoundingStrategy: PropTypes.Requireable<io.flow.internal.v0.enums.SimpleRoundingStrategy>;
|
|
26749
26931
|
export const snoozeNextActionWith: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeNextActionWith>;
|
|
26750
26932
|
export const snoozeSourceType: PropTypes.Requireable<io.flow.internal.v0.enums.SnoozeSourceType>;
|
|
@@ -26852,22 +27034,12 @@ export const afterpayRefund: PropTypes.Requireable<io.flow.internal.v0.models.Af
|
|
|
26852
27034
|
export const afterpayRefundDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundDeleted>;
|
|
26853
27035
|
export const afterpayRefundUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AfterpayRefundUpserted>;
|
|
26854
27036
|
export const aftershipWebhook: PropTypes.Requireable<io.flow.internal.v0.models.AftershipWebhook>;
|
|
26855
|
-
export const aldoItem: PropTypes.Requireable<io.flow.internal.v0.models.AldoItem>;
|
|
26856
|
-
export const aldoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemDeleted>;
|
|
26857
|
-
export const aldoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemForm>;
|
|
26858
|
-
export const aldoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AldoItemUpserted>;
|
|
26859
27037
|
export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.AllItemsExport>;
|
|
26860
27038
|
export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
|
|
26861
27039
|
export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
|
|
26862
27040
|
export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
|
|
26863
|
-
export const
|
|
26864
|
-
export const
|
|
26865
|
-
export const anirbanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemForm>;
|
|
26866
|
-
export const anirbanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemUpserted>;
|
|
26867
|
-
export const anshItem: PropTypes.Requireable<io.flow.internal.v0.models.AnshItem>;
|
|
26868
|
-
export const anshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemDeleted>;
|
|
26869
|
-
export const anshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemForm>;
|
|
26870
|
-
export const anshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemUpserted>;
|
|
27041
|
+
export const amruthaItem: PropTypes.Requireable<io.flow.internal.v0.models.AmruthaItem>;
|
|
27042
|
+
export const amruthaItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AmruthaItemForm>;
|
|
26871
27043
|
export const applePayAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.ApplePayAuthorizationPayload>;
|
|
26872
27044
|
export const applyAtValueForm: PropTypes.Requireable<io.flow.internal.v0.models.ApplyAtValueForm>;
|
|
26873
27045
|
export const attemptStatistics: PropTypes.Requireable<io.flow.internal.v0.models.AttemptStatistics>;
|
|
@@ -26884,6 +27056,8 @@ export const authorizedChargeStatus: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
26884
27056
|
export const authorizedLineItemCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedLineItemCharge>;
|
|
26885
27057
|
export const authorizedShippingCharge: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizedShippingCharge>;
|
|
26886
27058
|
export const autoReviewCriteria: PropTypes.Requireable<io.flow.internal.v0.models.AutoReviewCriteria>;
|
|
27059
|
+
export const b2BFeeMorTaxTriggerMetadata: PropTypes.Requireable<io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata>;
|
|
27060
|
+
export const b2BFeeShippingTaxTriggerMetadata: PropTypes.Requireable<io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata>;
|
|
26887
27061
|
export const b2BTaxLedger: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxLedger>;
|
|
26888
27062
|
export const b2BTaxLedgerForm: PropTypes.Requireable<io.flow.internal.v0.models.B2BTaxLedgerForm>;
|
|
26889
27063
|
export const bankAccount: PropTypes.Requireable<io.flow.internal.v0.models.BankAccount>;
|
|
@@ -26935,6 +27109,8 @@ export const bitpayAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
26935
27109
|
export const bitpayAuthentication: PropTypes.Requireable<io.flow.internal.v0.models.BitpayAuthentication>;
|
|
26936
27110
|
export const bitpayAuthenticationDataReference: PropTypes.Requireable<io.flow.internal.v0.models.BitpayAuthenticationDataReference>;
|
|
26937
27111
|
export const bitpayAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.BitpayAuthenticationForm>;
|
|
27112
|
+
export const bojanaItem: PropTypes.Requireable<io.flow.internal.v0.models.BojanaItem>;
|
|
27113
|
+
export const bojanaItemForm: PropTypes.Requireable<io.flow.internal.v0.models.BojanaItemForm>;
|
|
26938
27114
|
export const booleanFeatureDefaultValue: PropTypes.Requireable<io.flow.internal.v0.models.BooleanFeatureDefaultValue>;
|
|
26939
27115
|
export const booleanFeatureRule: PropTypes.Requireable<io.flow.internal.v0.models.BooleanFeatureRule>;
|
|
26940
27116
|
export const booleanFeatureRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.BooleanFeatureRuleForm>;
|
|
@@ -27072,6 +27248,10 @@ export const checkoutConfigurationForm: PropTypes.Requireable<io.flow.internal.v
|
|
|
27072
27248
|
export const checkoutConfigurationReference: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutConfigurationReference>;
|
|
27073
27249
|
export const checkoutSettings: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutSettings>;
|
|
27074
27250
|
export const checkoutUrl: PropTypes.Requireable<io.flow.internal.v0.models.CheckoutUrl>;
|
|
27251
|
+
export const chenglinItem: PropTypes.Requireable<io.flow.internal.v0.models.ChenglinItem>;
|
|
27252
|
+
export const chenglinItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChenglinItemDeleted>;
|
|
27253
|
+
export const chenglinItemForm: PropTypes.Requireable<io.flow.internal.v0.models.ChenglinItemForm>;
|
|
27254
|
+
export const chenglinItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChenglinItemUpserted>;
|
|
27075
27255
|
export const cipher: PropTypes.Requireable<io.flow.internal.v0.models.Cipher>;
|
|
27076
27256
|
export const cipherForm: PropTypes.Requireable<io.flow.internal.v0.models.CipherForm>;
|
|
27077
27257
|
export const cipherReference: PropTypes.Requireable<io.flow.internal.v0.models.CipherReference>;
|
|
@@ -27365,6 +27545,7 @@ export const gabrielItemForm: PropTypes.Requireable<io.flow.internal.v0.models.G
|
|
|
27365
27545
|
export const gabrielItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.GabrielItemUpserted>;
|
|
27366
27546
|
export const geRevenueShareTransaction: PropTypes.Requireable<io.flow.internal.v0.models.GeRevenueShareTransaction>;
|
|
27367
27547
|
export const generateLoadMultipleOrgs: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadMultipleOrgs>;
|
|
27548
|
+
export const generateLoadRate: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadRate>;
|
|
27368
27549
|
export const generateLoadSingleOrg: PropTypes.Requireable<io.flow.internal.v0.models.GenerateLoadSingleOrg>;
|
|
27369
27550
|
export const genericValidationError: PropTypes.Requireable<io.flow.internal.v0.models.GenericValidationError>;
|
|
27370
27551
|
export const giftCard: PropTypes.Requireable<io.flow.internal.v0.models.GiftCard>;
|
|
@@ -27390,10 +27571,6 @@ export const harmonizationThresholdForm: PropTypes.Requireable<io.flow.internal.
|
|
|
27390
27571
|
export const harmonizationUnclassifiedStatistics: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics>;
|
|
27391
27572
|
export const harmonizeFullyRequestV2: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizeFullyRequestV2>;
|
|
27392
27573
|
export const harmonizedItemsHs6Export: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizedItemsHs6Export>;
|
|
27393
|
-
export const hoseinItem: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItem>;
|
|
27394
|
-
export const hoseinItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemDeleted>;
|
|
27395
|
-
export const hoseinItemForm: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemForm>;
|
|
27396
|
-
export const hoseinItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemUpserted>;
|
|
27397
27574
|
export const hs6: PropTypes.Requireable<io.flow.internal.v0.models.Hs6>;
|
|
27398
27575
|
export const hs6Metadata: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Metadata>;
|
|
27399
27576
|
export const importCompleted: PropTypes.Requireable<io.flow.internal.v0.models.ImportCompleted>;
|
|
@@ -27453,7 +27630,6 @@ export const itemSalesMarginUpserted: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
27453
27630
|
export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginVersion>;
|
|
27454
27631
|
export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
|
|
27455
27632
|
export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
|
|
27456
|
-
export const jeanDemoItem: PropTypes.Requireable<io.flow.internal.v0.models.JeanDemoItem>;
|
|
27457
27633
|
export const journal: PropTypes.Requireable<io.flow.internal.v0.models.Journal>;
|
|
27458
27634
|
export const journalFailure: PropTypes.Requireable<io.flow.internal.v0.models.JournalFailure>;
|
|
27459
27635
|
export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
|
|
@@ -27473,10 +27649,6 @@ export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
27473
27649
|
export const labelCreationJobUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobUpserted>;
|
|
27474
27650
|
export const labelCreationRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationRequestForm>;
|
|
27475
27651
|
export const labelDestination: PropTypes.Requireable<io.flow.internal.v0.models.LabelDestination>;
|
|
27476
|
-
export const labelGenerationSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettings>;
|
|
27477
|
-
export const labelGenerationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsDeleted>;
|
|
27478
|
-
export const labelGenerationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsForm>;
|
|
27479
|
-
export const labelGenerationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettingsUpserted>;
|
|
27480
27652
|
export const labelInvoiceRequest: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequest>;
|
|
27481
27653
|
export const labelInvoiceRequestDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequestDeleted>;
|
|
27482
27654
|
export const labelInvoiceRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequestUpserted>;
|
|
@@ -27568,10 +27740,6 @@ export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27568
27740
|
export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
|
|
27569
27741
|
export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
|
|
27570
27742
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
27571
|
-
export const niallItem: PropTypes.Requireable<io.flow.internal.v0.models.NiallItem>;
|
|
27572
|
-
export const niallItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemDeleted>;
|
|
27573
|
-
export const niallItemForm: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemForm>;
|
|
27574
|
-
export const niallItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemUpserted>;
|
|
27575
27743
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
27576
27744
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
27577
27745
|
export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
|
|
@@ -27665,6 +27833,8 @@ export const organizationPaymentSettingDeleted: PropTypes.Requireable<io.flow.in
|
|
|
27665
27833
|
export const organizationPaymentSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingForm>;
|
|
27666
27834
|
export const organizationPaymentSettingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingUpserted>;
|
|
27667
27835
|
export const organizationPaymentSettingVersion: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingVersion>;
|
|
27836
|
+
export const organizationPromotion: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPromotion>;
|
|
27837
|
+
export const organizationPromotionWarning: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPromotionWarning>;
|
|
27668
27838
|
export const organizationRestrictionNoteForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionNoteForm>;
|
|
27669
27839
|
export const organizationRestrictionScreeningDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionScreeningDecisionForm>;
|
|
27670
27840
|
export const organizationRestrictionStatus: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionStatus>;
|
|
@@ -27771,8 +27941,6 @@ export const platformFeeFlat: PropTypes.Requireable<io.flow.internal.v0.models.P
|
|
|
27771
27941
|
export const platformFeePause: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePause>;
|
|
27772
27942
|
export const platformFeePercentage: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePercentage>;
|
|
27773
27943
|
export const platformFeePercentageTier: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePercentageTier>;
|
|
27774
|
-
export const prateekItem: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItem>;
|
|
27775
|
-
export const prateekItemForm: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItemForm>;
|
|
27776
27944
|
export const prediction: PropTypes.Requireable<io.flow.internal.v0.models.Prediction>;
|
|
27777
27945
|
export const preonboardingClassificationRabbitmqEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationRabbitmqEnvelope>;
|
|
27778
27946
|
export const preonboardingClassificationRabbitmqMessage: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage>;
|
|
@@ -27780,6 +27948,9 @@ export const preonboardingClassificationRequest: PropTypes.Requireable<io.flow.i
|
|
|
27780
27948
|
export const preonboardingClassificationResult: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingClassificationResult>;
|
|
27781
27949
|
export const preonboardingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingMerchant>;
|
|
27782
27950
|
export const preonboardingSellabilityResult: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingSellabilityResult>;
|
|
27951
|
+
export const preonboardingSellabilityResultDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted>;
|
|
27952
|
+
export const preonboardingSellabilityResultInserted: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingSellabilityResultInserted>;
|
|
27953
|
+
export const preonboardingSellabilityResultUpdated: PropTypes.Requireable<io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated>;
|
|
27783
27954
|
export const priceInclusivity: PropTypes.Requireable<io.flow.internal.v0.models.PriceInclusivity>;
|
|
27784
27955
|
export const prioritizedCenterReference: PropTypes.Requireable<io.flow.internal.v0.models.PrioritizedCenterReference>;
|
|
27785
27956
|
export const processingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransaction>;
|
|
@@ -27812,7 +27983,11 @@ export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
27812
27983
|
export const productSellabilityInternal: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityInternal>;
|
|
27813
27984
|
export const productSellabilityInternalForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityInternalForm>;
|
|
27814
27985
|
export const productSellabilityInternalResult: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityInternalResult>;
|
|
27986
|
+
export const productSellabilityInternalRuleMatch: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch>;
|
|
27815
27987
|
export const productSellabilityResult: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityResult>;
|
|
27988
|
+
export const productSellabilityResultDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityResultDeleted>;
|
|
27989
|
+
export const productSellabilityResultInserted: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityResultInserted>;
|
|
27990
|
+
export const productSellabilityResultUpdated: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityResultUpdated>;
|
|
27816
27991
|
export const productTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProductTransaction>;
|
|
27817
27992
|
export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
|
|
27818
27993
|
export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
|
|
@@ -27990,20 +28165,12 @@ export const returnTriggerReversal: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
27990
28165
|
export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
|
|
27991
28166
|
export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
|
|
27992
28167
|
export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
|
|
27993
|
-
export const rohanItem: PropTypes.Requireable<io.flow.internal.v0.models.RohanItem>;
|
|
27994
|
-
export const rohanItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemDeleted>;
|
|
27995
|
-
export const rohanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemForm>;
|
|
27996
|
-
export const rohanItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemUpserted>;
|
|
27997
28168
|
export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
|
|
27998
28169
|
export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
|
|
27999
28170
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|
|
28000
28171
|
export const salesPaymentRecord: PropTypes.Requireable<io.flow.internal.v0.models.SalesPaymentRecord>;
|
|
28001
28172
|
export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
|
|
28002
28173
|
export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
|
|
28003
|
-
export const sarveshItem: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItem>;
|
|
28004
|
-
export const sarveshItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemDeleted>;
|
|
28005
|
-
export const sarveshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemForm>;
|
|
28006
|
-
export const sarveshItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SarveshItemUpserted>;
|
|
28007
28174
|
export const scheduledPayment: PropTypes.Requireable<io.flow.internal.v0.models.ScheduledPayment>;
|
|
28008
28175
|
export const screen: PropTypes.Requireable<io.flow.internal.v0.models.Screen>;
|
|
28009
28176
|
export const screenForm: PropTypes.Requireable<io.flow.internal.v0.models.ScreenForm>;
|
|
@@ -28022,15 +28189,22 @@ export const sessionOrderData: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
28022
28189
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
28023
28190
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
28024
28191
|
export const shipmentCostSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShipmentCostSummary>;
|
|
28192
|
+
export const shippingCostDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShippingCostDeleted>;
|
|
28193
|
+
export const shippingCostSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShippingCostSummary>;
|
|
28194
|
+
export const shippingCostUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShippingCostUpserted>;
|
|
28025
28195
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
28026
28196
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
28027
28197
|
export const shippingPricing: PropTypes.Requireable<io.flow.internal.v0.models.ShippingPricing>;
|
|
28028
28198
|
export const shippingRateEstimateAvailableInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal>;
|
|
28029
28199
|
export const shippingRateEstimateInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateInternal>;
|
|
28030
28200
|
export const shippingRateEstimateRequestInternal: PropTypes.Requireable<io.flow.internal.v0.models.ShippingRateEstimateRequestInternal>;
|
|
28201
|
+
export const shopifyAddress: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyAddress>;
|
|
28202
|
+
export const shopifyCallbackError: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCallbackError>;
|
|
28203
|
+
export const shopifyCallbackErrorItem: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCallbackErrorItem>;
|
|
28031
28204
|
export const shopifyCatalogPublication: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCatalogPublication>;
|
|
28032
28205
|
export const shopifyChannelOrganizationToken: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationToken>;
|
|
28033
28206
|
export const shopifyChannelOrganizationTokens: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationTokens>;
|
|
28207
|
+
export const shopifyContactDetails: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyContactDetails>;
|
|
28034
28208
|
export const shopifyDispute: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDispute>;
|
|
28035
28209
|
export const shopifyDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDisputeDeleted>;
|
|
28036
28210
|
export const shopifyDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDisputeUpserted>;
|
|
@@ -28079,10 +28253,12 @@ export const shopifyMarketsSync: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
28079
28253
|
export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration>;
|
|
28080
28254
|
export const shopifyMarketsWebhookRegistrationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted>;
|
|
28081
28255
|
export const shopifyMarketsWebhookRegistrationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted>;
|
|
28256
|
+
export const shopifyMeasurements: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMeasurements>;
|
|
28082
28257
|
export const shopifyMerchantPlan: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlan>;
|
|
28083
28258
|
export const shopifyMerchantPlanDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlanDeleted>;
|
|
28084
28259
|
export const shopifyMerchantPlanUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlanUpserted>;
|
|
28085
28260
|
export const shopifyMetadata: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMetadata>;
|
|
28261
|
+
export const shopifyMoney: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMoney>;
|
|
28086
28262
|
export const shopifyMonitoringCarrierService: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringCarrierService>;
|
|
28087
28263
|
export const shopifyMonitoringFulfillmentExternal: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal>;
|
|
28088
28264
|
export const shopifyMonitoringFulfillmentMissingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails>;
|
|
@@ -28125,13 +28301,30 @@ export const shopifyProductUpdateDeleted: PropTypes.Requireable<io.flow.internal
|
|
|
28125
28301
|
export const shopifyProductUpdateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateUpserted>;
|
|
28126
28302
|
export const shopifyProductUpdateWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent>;
|
|
28127
28303
|
export const shopifyProductWrapper: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductWrapper>;
|
|
28304
|
+
export const shopifyRateCustomsDetail: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyRateCustomsDetail>;
|
|
28305
|
+
export const shopifyRatePickupPoint: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyRatePickupPoint>;
|
|
28128
28306
|
export const shopifyReportFileDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyReportFileDeleted>;
|
|
28129
28307
|
export const shopifyReportFileUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyReportFileUpserted>;
|
|
28308
|
+
export const shopifyShipmentRateAvailable: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateAvailable>;
|
|
28309
|
+
export const shopifyShipmentRateCharge: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateCharge>;
|
|
28310
|
+
export const shopifyShipmentRateOption: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateOption>;
|
|
28311
|
+
export const shopifyShipmentRatePackage: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRatePackage>;
|
|
28312
|
+
export const shopifyShipmentRateReason: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateReason>;
|
|
28313
|
+
export const shopifyShipmentRateRequest: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateRequest>;
|
|
28314
|
+
export const shopifyShipmentRateResponse: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateResponse>;
|
|
28315
|
+
export const shopifyShipmentRateShipment: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateShipment>;
|
|
28316
|
+
export const shopifyShipmentRateShipper: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateShipper>;
|
|
28317
|
+
export const shopifyShipmentRateTotalCharges: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges>;
|
|
28318
|
+
export const shopifyShipmentRateUnavailable: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShipmentRateUnavailable>;
|
|
28319
|
+
export const shopifyShippingLocation: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShippingLocation>;
|
|
28130
28320
|
export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
|
|
28131
28321
|
export const shopifyStoreDetail: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStoreDetail>;
|
|
28132
28322
|
export const shopifyStripeEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStripeEvent>;
|
|
28133
28323
|
export const shopifyTaxonomyAlignmentConfig: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig>;
|
|
28134
28324
|
export const shopifyTaxonomyAlignmentConfigForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm>;
|
|
28325
|
+
export const shopifyTestOrder: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTestOrder>;
|
|
28326
|
+
export const shopifyTestOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTestOrderDeleted>;
|
|
28327
|
+
export const shopifyTestOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTestOrderUpserted>;
|
|
28135
28328
|
export const shopperBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.ShopperBreakdown>;
|
|
28136
28329
|
export const shopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFees>;
|
|
28137
28330
|
export const shopperFreight: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFreight>;
|