@flowio/types 11.24.131 → 11.24.135
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/dist/api-internal.d.ts +476 -305
- package/dist/api.d.ts +241 -30
- package/package.json +2 -2
- package/src/api-internal.ts +721 -375
- package/src/api.ts +301 -28
package/dist/api-internal.d.ts
CHANGED
|
@@ -956,6 +956,10 @@ declare namespace io.flow.restrictions.v0.models {
|
|
|
956
956
|
readonly hs_code?: string;
|
|
957
957
|
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
958
958
|
readonly needs_action_attributes?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
|
|
959
|
+
readonly fingerprint?: string;
|
|
960
|
+
readonly restriction_created_at?: string;
|
|
961
|
+
readonly first_reviewed_at?: string;
|
|
962
|
+
readonly seconds_to_first_review?: number;
|
|
959
963
|
}
|
|
960
964
|
interface ReasonsPerRegion {
|
|
961
965
|
readonly region: string;
|
|
@@ -1752,7 +1756,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1752
1756
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1753
1757
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1754
1758
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1755
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
1759
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
1756
1760
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1757
1761
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1758
1762
|
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';
|
|
@@ -3848,7 +3852,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3848
3852
|
type CommercialInvoiceMode = 'direct' | 'indirect';
|
|
3849
3853
|
type CostEstimateSource = 'flow' | 'channel';
|
|
3850
3854
|
type Direction = 'outbound' | 'return';
|
|
3851
|
-
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';
|
|
3855
|
+
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';
|
|
3852
3856
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3853
3857
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
3854
3858
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
@@ -5114,6 +5118,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5114
5118
|
readonly catalog_products_count?: number;
|
|
5115
5119
|
readonly initial_product_restrictions_synced_at?: string;
|
|
5116
5120
|
}
|
|
5121
|
+
interface ShopifyTestOrder {
|
|
5122
|
+
readonly id: string;
|
|
5123
|
+
readonly submitted_at: string;
|
|
5124
|
+
}
|
|
5117
5125
|
interface ThirdPartyLogisticsPartner {
|
|
5118
5126
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
5119
5127
|
readonly warehouse_url?: string;
|
|
@@ -5152,6 +5160,7 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5152
5160
|
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
5153
5161
|
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5154
5162
|
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5163
|
+
readonly voids_b2b_invoice?: boolean;
|
|
5155
5164
|
}
|
|
5156
5165
|
interface B2BInvoice {
|
|
5157
5166
|
readonly id: string;
|
|
@@ -6938,6 +6947,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6938
6947
|
readonly tags?: string;
|
|
6939
6948
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
6940
6949
|
readonly taxes_included: boolean;
|
|
6950
|
+
readonly test?: boolean;
|
|
6941
6951
|
readonly token?: string;
|
|
6942
6952
|
readonly total_weight?: number;
|
|
6943
6953
|
readonly updated_at?: string;
|
|
@@ -7374,7 +7384,7 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
7374
7384
|
declare namespace io.flow.order.price.v0.enums {
|
|
7375
7385
|
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';
|
|
7376
7386
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
7377
|
-
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
7387
|
+
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
7378
7388
|
}
|
|
7379
7389
|
declare namespace io.flow.order.price.v0.models {
|
|
7380
7390
|
interface OrderPriceDetail {
|
|
@@ -7747,7 +7757,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7747
7757
|
}
|
|
7748
7758
|
interface DiscountForm {
|
|
7749
7759
|
readonly offer: io.flow.common.v0.unions.DiscountOffer;
|
|
7750
|
-
readonly target
|
|
7760
|
+
readonly target: io.flow.common.v0.enums.DiscountTarget;
|
|
7751
7761
|
readonly label?: string;
|
|
7752
7762
|
}
|
|
7753
7763
|
interface DiscountOfferFixed {
|
|
@@ -7822,6 +7832,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7822
7832
|
interface LineItemForm {
|
|
7823
7833
|
readonly number: string;
|
|
7824
7834
|
readonly quantity: number;
|
|
7835
|
+
readonly line_item_identifier?: string;
|
|
7825
7836
|
readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
|
|
7826
7837
|
readonly price?: io.flow.common.v0.models.Money;
|
|
7827
7838
|
readonly attributes?: Record<string, string>;
|
|
@@ -7916,7 +7927,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7916
7927
|
readonly parent?: io.flow.common.v0.models.OrganizationReference;
|
|
7917
7928
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
7918
7929
|
readonly created_at?: string;
|
|
7919
|
-
readonly status
|
|
7930
|
+
readonly status: io.flow.common.v0.enums.OrganizationStatus;
|
|
7920
7931
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
7921
7932
|
}
|
|
7922
7933
|
interface OrganizationDefaults {
|
|
@@ -8252,9 +8263,23 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8252
8263
|
readonly timestamp: string;
|
|
8253
8264
|
readonly shopify_product_taxonomy_attribute_value: io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
8254
8265
|
}
|
|
8266
|
+
interface ShopifyTestOrderDeleted {
|
|
8267
|
+
readonly discriminator: 'shopify_test_order_deleted';
|
|
8268
|
+
readonly event_id: string;
|
|
8269
|
+
readonly timestamp: string;
|
|
8270
|
+
readonly organization: string;
|
|
8271
|
+
readonly id: string;
|
|
8272
|
+
}
|
|
8273
|
+
interface ShopifyTestOrderUpserted {
|
|
8274
|
+
readonly discriminator: 'shopify_test_order_upserted';
|
|
8275
|
+
readonly event_id: string;
|
|
8276
|
+
readonly timestamp: string;
|
|
8277
|
+
readonly organization: string;
|
|
8278
|
+
readonly shopify_test_order: io.flow.shopify.markets.internal.v0.models.ShopifyTestOrder;
|
|
8279
|
+
}
|
|
8255
8280
|
}
|
|
8256
8281
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8257
|
-
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;
|
|
8282
|
+
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;
|
|
8258
8283
|
}
|
|
8259
8284
|
declare namespace io.flow.experience.v0.enums {
|
|
8260
8285
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -8278,6 +8303,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
8278
8303
|
type OrganizationPaymentMethodTag = 'deny';
|
|
8279
8304
|
type PaymentMethodRuleContentKey = 'description';
|
|
8280
8305
|
type PriceFacetBoundary = 'min' | 'max';
|
|
8306
|
+
type PricingType = 'inclusive_pricing';
|
|
8281
8307
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
8282
8308
|
}
|
|
8283
8309
|
declare namespace io.flow.experience.v0.models {
|
|
@@ -8814,6 +8840,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8814
8840
|
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
8815
8841
|
readonly edits?: io.flow.experience.v0.models.EditSummary[];
|
|
8816
8842
|
readonly rates?: io.flow.experience.v0.models.OrderRate[];
|
|
8843
|
+
readonly pricing_type?: io.flow.experience.v0.enums.PricingType;
|
|
8817
8844
|
}
|
|
8818
8845
|
interface OrderAddress {
|
|
8819
8846
|
readonly text?: string;
|
|
@@ -9453,6 +9480,11 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9453
9480
|
readonly id: string;
|
|
9454
9481
|
readonly name: string;
|
|
9455
9482
|
}
|
|
9483
|
+
interface RatecardData {
|
|
9484
|
+
readonly dhlParcelDistributionCenter?: string;
|
|
9485
|
+
readonly glbeRatecardMetadataLaneIdentifier?: string;
|
|
9486
|
+
readonly pickupCenter?: string;
|
|
9487
|
+
}
|
|
9456
9488
|
interface RatecardEstimateForm {
|
|
9457
9489
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
9458
9490
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
@@ -9538,7 +9570,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9538
9570
|
readonly glbe_shipping_method_id?: string;
|
|
9539
9571
|
readonly glbe_proposition_name?: string;
|
|
9540
9572
|
readonly channel_revenue_share_percentage?: number;
|
|
9541
|
-
readonly data?:
|
|
9573
|
+
readonly data?: io.flow.ratecard.v0.models.RatecardData;
|
|
9542
9574
|
}
|
|
9543
9575
|
interface RatecardLane {
|
|
9544
9576
|
readonly id: string;
|
|
@@ -10442,7 +10474,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10442
10474
|
readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
10443
10475
|
readonly other_trade_sector?: string;
|
|
10444
10476
|
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
10445
|
-
readonly center_address?: io.flow.common.v0.models.Address;
|
|
10446
10477
|
readonly average_order_weight?: number;
|
|
10447
10478
|
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10448
10479
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
@@ -10469,7 +10500,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10469
10500
|
readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
10470
10501
|
readonly other_trade_sector?: string;
|
|
10471
10502
|
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
10472
|
-
readonly center_address?: io.flow.common.v0.models.Address;
|
|
10473
10503
|
readonly average_order_weight?: number;
|
|
10474
10504
|
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10475
10505
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
@@ -10556,6 +10586,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10556
10586
|
readonly company?: string;
|
|
10557
10587
|
readonly email?: string;
|
|
10558
10588
|
readonly phone?: string;
|
|
10589
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
10559
10590
|
}
|
|
10560
10591
|
interface Shop {
|
|
10561
10592
|
readonly name: string;
|
|
@@ -10991,7 +11022,7 @@ declare namespace io.flow.inventory.v0.models {
|
|
|
10991
11022
|
}
|
|
10992
11023
|
interface InventoryUnlimited {
|
|
10993
11024
|
readonly discriminator: 'inventory_unlimited';
|
|
10994
|
-
readonly placeholder
|
|
11025
|
+
readonly placeholder: string;
|
|
10995
11026
|
}
|
|
10996
11027
|
interface InventoryUpdate {
|
|
10997
11028
|
readonly id: string;
|
|
@@ -11191,14 +11222,14 @@ declare namespace io.flow.item.v0.models {
|
|
|
11191
11222
|
}
|
|
11192
11223
|
}
|
|
11193
11224
|
declare namespace io.flow.billing.v0.enums {
|
|
11194
|
-
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';
|
|
11225
|
+
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';
|
|
11195
11226
|
type PayoutAttachmentType = 'transactions';
|
|
11196
11227
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11197
11228
|
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';
|
|
11198
11229
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
11199
11230
|
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11200
|
-
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';
|
|
11201
|
-
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';
|
|
11231
|
+
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';
|
|
11232
|
+
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';
|
|
11202
11233
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
11203
11234
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11204
11235
|
}
|
|
@@ -11452,7 +11483,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11452
11483
|
readonly label_created_at: string;
|
|
11453
11484
|
readonly carrier_id: string;
|
|
11454
11485
|
readonly carrier_tracking_number: string;
|
|
11455
|
-
readonly revenue_share_percentage
|
|
11486
|
+
readonly revenue_share_percentage?: number;
|
|
11456
11487
|
readonly outbound?: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
|
|
11457
11488
|
}
|
|
11458
11489
|
interface TransactionMetadataChannel {
|
|
@@ -11485,6 +11516,17 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11485
11516
|
readonly description: string;
|
|
11486
11517
|
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
11487
11518
|
readonly url?: string;
|
|
11519
|
+
readonly recoup?: boolean;
|
|
11520
|
+
}
|
|
11521
|
+
interface TransactionMetadataMerchantFee {
|
|
11522
|
+
readonly discriminator: 'merchant_fee';
|
|
11523
|
+
readonly items: io.flow.billing.v0.models.TransactionMetadataMerchantFeeItem[];
|
|
11524
|
+
}
|
|
11525
|
+
interface TransactionMetadataMerchantFeeItem {
|
|
11526
|
+
readonly type: string;
|
|
11527
|
+
readonly amount: number;
|
|
11528
|
+
readonly local_amount?: number;
|
|
11529
|
+
readonly description?: string;
|
|
11488
11530
|
}
|
|
11489
11531
|
interface TransactionMetadataOriginalTransaction {
|
|
11490
11532
|
readonly id: string;
|
|
@@ -11610,7 +11652,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
11610
11652
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
11611
11653
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
11612
11654
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
11613
|
-
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;
|
|
11655
|
+
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;
|
|
11614
11656
|
}
|
|
11615
11657
|
declare namespace io.flow.harmonization.v0.enums {
|
|
11616
11658
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -11632,6 +11674,10 @@ declare namespace io.flow.harmonization.v0.models {
|
|
|
11632
11674
|
readonly company_name_match_result: io.flow.harmonization.v0.enums.TaxVerificationResult;
|
|
11633
11675
|
readonly company_name_match_result_reason?: string;
|
|
11634
11676
|
}
|
|
11677
|
+
interface HarmonizationTariffCode {
|
|
11678
|
+
readonly tariff_code: string;
|
|
11679
|
+
readonly destination: string;
|
|
11680
|
+
}
|
|
11635
11681
|
interface HarmonizedCategoryReference {
|
|
11636
11682
|
readonly id: string;
|
|
11637
11683
|
}
|
|
@@ -11715,6 +11761,12 @@ declare namespace io.flow.harmonization.v0.models {
|
|
|
11715
11761
|
readonly effective_duty: io.flow.price.v0.models.Duty;
|
|
11716
11762
|
readonly tax: io.flow.price.v0.models.Tax;
|
|
11717
11763
|
}
|
|
11764
|
+
interface TariffCodes {
|
|
11765
|
+
readonly item_number: string;
|
|
11766
|
+
readonly product_id: string;
|
|
11767
|
+
readonly hs6_code: string;
|
|
11768
|
+
readonly codes: io.flow.harmonization.v0.models.HarmonizationTariffCode[];
|
|
11769
|
+
}
|
|
11718
11770
|
interface TaxRegistration {
|
|
11719
11771
|
readonly id: string;
|
|
11720
11772
|
readonly key: string;
|
|
@@ -11938,7 +11990,7 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
11938
11990
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
11939
11991
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
11940
11992
|
type SellabilityRequestStatus = 'commit';
|
|
11941
|
-
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
11993
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable' | 'generic_error' | 'catalog_processing_threshold';
|
|
11942
11994
|
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
11943
11995
|
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
11944
11996
|
}
|
|
@@ -11963,11 +12015,14 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11963
12015
|
readonly dry_run?: boolean;
|
|
11964
12016
|
}
|
|
11965
12017
|
interface ProductSellabilityResult {
|
|
12018
|
+
readonly id: string;
|
|
11966
12019
|
readonly merchant_id?: string;
|
|
11967
12020
|
readonly product_id: string;
|
|
11968
12021
|
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
12022
|
+
readonly restricted_reasons: io.flow.sellability.v0.models.SellabilityRestrictedReason[];
|
|
11969
12023
|
readonly needs_action_attributes?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
|
|
11970
12024
|
readonly request_id?: string;
|
|
12025
|
+
readonly hs6_code?: string;
|
|
11971
12026
|
}
|
|
11972
12027
|
interface SellabilityError {
|
|
11973
12028
|
readonly discriminator: 'sellability_error';
|
|
@@ -11977,8 +12032,14 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11977
12032
|
interface SellabilityNeedsActionAttributes {
|
|
11978
12033
|
readonly reason_code: string;
|
|
11979
12034
|
readonly category_metafield_handles: string[];
|
|
12035
|
+
readonly category_metafield_ids: string[];
|
|
11980
12036
|
readonly require_msds?: boolean;
|
|
11981
12037
|
}
|
|
12038
|
+
interface SellabilityReasonWithRegions {
|
|
12039
|
+
readonly reason: string;
|
|
12040
|
+
readonly regions: string[];
|
|
12041
|
+
readonly review_status?: string;
|
|
12042
|
+
}
|
|
11982
12043
|
interface SellabilityRegionResult {
|
|
11983
12044
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
11984
12045
|
readonly regions: string[];
|
|
@@ -11987,13 +12048,17 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11987
12048
|
readonly region: string;
|
|
11988
12049
|
readonly reasons: string[];
|
|
11989
12050
|
}
|
|
12051
|
+
interface SellabilityRestrictedReason {
|
|
12052
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
12053
|
+
readonly reasons_with_regions: io.flow.sellability.v0.models.SellabilityReasonWithRegions[];
|
|
12054
|
+
}
|
|
11990
12055
|
interface SellabilityRestrictedRegion {
|
|
11991
12056
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
11992
|
-
readonly
|
|
12057
|
+
readonly regions: string[];
|
|
11993
12058
|
}
|
|
11994
12059
|
interface SellabilityScreening {
|
|
11995
12060
|
readonly discriminator: 'sellability_screening';
|
|
11996
|
-
readonly
|
|
12061
|
+
readonly product_sellability_result?: io.flow.sellability.v0.models.ProductSellabilityResult;
|
|
11997
12062
|
readonly request_id: string;
|
|
11998
12063
|
readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
11999
12064
|
readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
@@ -12196,6 +12261,13 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12196
12261
|
readonly swift_code: string;
|
|
12197
12262
|
readonly iban: string;
|
|
12198
12263
|
}
|
|
12264
|
+
interface BankAccountInfoKor {
|
|
12265
|
+
readonly discriminator: 'kor';
|
|
12266
|
+
readonly name: string;
|
|
12267
|
+
readonly bank_account_number: string;
|
|
12268
|
+
readonly bank_routing_number: string;
|
|
12269
|
+
readonly bank_name: string;
|
|
12270
|
+
}
|
|
12199
12271
|
interface BankAccountInfoUsa {
|
|
12200
12272
|
readonly discriminator: 'usa';
|
|
12201
12273
|
readonly routing_number: string;
|
|
@@ -12203,21 +12275,22 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12203
12275
|
}
|
|
12204
12276
|
}
|
|
12205
12277
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
12206
|
-
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;
|
|
12278
|
+
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;
|
|
12207
12279
|
}
|
|
12208
12280
|
declare namespace io.flow.internal.v0.enums {
|
|
12281
|
+
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
|
|
12209
12282
|
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
12210
12283
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
12211
12284
|
type AccountType = 'channel' | 'organization';
|
|
12212
12285
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12213
12286
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12214
|
-
type
|
|
12215
|
-
type AnirbanItemType = 'physical' | 'digital';
|
|
12216
|
-
type AnshItemType = 'physical' | 'digital';
|
|
12287
|
+
type AmruthaItemType = 'physical' | 'digital';
|
|
12217
12288
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12218
12289
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
12219
12290
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
12220
12291
|
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';
|
|
12292
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
12293
|
+
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
12221
12294
|
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
|
|
12222
12295
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
12223
12296
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
@@ -12227,7 +12300,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12227
12300
|
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';
|
|
12228
12301
|
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';
|
|
12229
12302
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
12230
|
-
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';
|
|
12303
|
+
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';
|
|
12304
|
+
type BojanaItemType = 'physical' | 'digital';
|
|
12231
12305
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
12232
12306
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
12233
12307
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -12256,11 +12330,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12256
12330
|
type CheckoutPromptBehavior = 'always' | 'incomplete';
|
|
12257
12331
|
type CheckoutShippingMethodPromptBehavior = 'always' | 'multiple';
|
|
12258
12332
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
12333
|
+
type ChenglinItemType = 'physical' | 'digital';
|
|
12259
12334
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
12260
12335
|
type ClassificationErrorCode = 'generic_error';
|
|
12261
|
-
type ClassificationFailureReason = 'low_confidence' | 'timeout';
|
|
12336
|
+
type ClassificationFailureReason = 'low_confidence' | 'timeout' | 'missing_hs6_code' | 'invalid_price';
|
|
12262
12337
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
12263
12338
|
type ClassificationScope = 'Item' | 'Product';
|
|
12339
|
+
type ClassificationSource = 'sellability';
|
|
12264
12340
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
12265
12341
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
12266
12342
|
type CommercialInvoiceVersion = 'v2_2_1';
|
|
@@ -12296,7 +12372,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12296
12372
|
type EmptyAttribute = 'irrelevant';
|
|
12297
12373
|
type ErpFileType = 'vendor';
|
|
12298
12374
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
12299
|
-
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';
|
|
12375
|
+
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';
|
|
12300
12376
|
type ExperienceImportType = 'experience_with_settings';
|
|
12301
12377
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12302
12378
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12315,7 +12391,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12315
12391
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12316
12392
|
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';
|
|
12317
12393
|
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
12318
|
-
type HoseinItemType = 'physical' | 'digital';
|
|
12319
12394
|
type Hs6CodeSource = 'sellability' | 'classification' | 'human';
|
|
12320
12395
|
type HttpMethod = 'get' | 'post';
|
|
12321
12396
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
@@ -12332,22 +12407,21 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12332
12407
|
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
12333
12408
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
12334
12409
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system' | 'carrier';
|
|
12335
|
-
type LabelRequestResultOrganizationType = 'all' | '
|
|
12410
|
+
type LabelRequestResultOrganizationType = 'all' | 'cafe24_production' | 'shopify_production' | 'sandbox';
|
|
12336
12411
|
type LabelRequestResultState = 'success' | 'failure';
|
|
12337
12412
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12338
|
-
type LedgerReportType = 'periodic_mor_jurisdiction_report';
|
|
12413
|
+
type LedgerReportType = 'periodic_mor_jurisdiction_report' | 'periodic_mor_jurisdiction_sandbox_report';
|
|
12339
12414
|
type LedgerReportUrlType = 'sharepoint' | 's3';
|
|
12340
12415
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
12341
12416
|
type LogisticsCapability = 'logistics_address_correction';
|
|
12342
12417
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
12343
12418
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
12344
|
-
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';
|
|
12419
|
+
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';
|
|
12345
12420
|
type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
12346
12421
|
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';
|
|
12347
12422
|
type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
|
|
12348
12423
|
type MixedBagWeight = '0' | '1' | '2';
|
|
12349
12424
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
12350
|
-
type NiallItemType = 'physical' | 'digital';
|
|
12351
12425
|
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';
|
|
12352
12426
|
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
12353
12427
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
@@ -12368,6 +12442,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12368
12442
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
12369
12443
|
type OrganizationMetricType = 'organization_restriction_status';
|
|
12370
12444
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
12445
|
+
type OrganizationPromotionStatus = 'in_progress' | 'completed' | 'failed';
|
|
12371
12446
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
12372
12447
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason' | 'additional_rejection_info';
|
|
12373
12448
|
type OrganizationRestrictionReviewType = 'all_pending' | 'pending_verification';
|
|
@@ -12381,7 +12456,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12381
12456
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
12382
12457
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
12383
12458
|
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
12384
|
-
type PrateekItemType = 'physical' | 'digital';
|
|
12385
12459
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12386
12460
|
type PreonboardingClassificationDecision = 'Accept' | 'Reject';
|
|
12387
12461
|
type PreonboardingClassificationPlatform = 'FlowOnboarding';
|
|
@@ -12411,7 +12485,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12411
12485
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
12412
12486
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
12413
12487
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
12414
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa';
|
|
12488
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'cafe24' | 'cafe24-sandbox';
|
|
12415
12489
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
12416
12490
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
12417
12491
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -12421,10 +12495,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12421
12495
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
12422
12496
|
type RiskCheck = 'three_d_secure';
|
|
12423
12497
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
12424
|
-
type RohanItemType = 'physical' | 'digital';
|
|
12425
|
-
type SarveshItemType = 'physical' | 'digital';
|
|
12426
12498
|
type SellabilityCheckStatus = 'more_restrictive' | 'less_restrictive' | 'similar' | 'regions_differ' | 'rules_differ';
|
|
12499
|
+
type SellabilityInternalMatchType = 'positive_keyword' | 'auto_restricted';
|
|
12427
12500
|
type SellabilityStatus = 'complete' | 'incomplete';
|
|
12501
|
+
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';
|
|
12502
|
+
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';
|
|
12503
|
+
type ShopifyDeliveryMethodType = 'SHIPPING' | 'PICKUP_POINT';
|
|
12504
|
+
type ShopifyDimensionUnit = 'cm' | 'ft' | 'in' | 'm' | 'mm';
|
|
12505
|
+
type ShopifyIncoterm = 'DAP' | 'DDP';
|
|
12428
12506
|
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
12429
12507
|
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';
|
|
12430
12508
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -12432,8 +12510,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12432
12510
|
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';
|
|
12433
12511
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
12434
12512
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
12513
|
+
type ShopifyPackageType = 'BOX' | 'ENVELOPE' | 'SOFT_PACK' | 'TUBE' | 'CARRIER_PACKAGING';
|
|
12435
12514
|
type ShopifyPlanType = 'standard' | 'shopify_plus';
|
|
12436
12515
|
type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
12516
|
+
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';
|
|
12517
|
+
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';
|
|
12518
|
+
type ShopifyWeightUnit = 'g' | 'kg' | 'lb' | 'oz';
|
|
12437
12519
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
12438
12520
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
12439
12521
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -12584,11 +12666,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12584
12666
|
readonly transfer_method?: io.flow.internal.v0.enums.TransferMethod;
|
|
12585
12667
|
readonly b2b_tax_remittance_days?: number;
|
|
12586
12668
|
readonly merchant_of_record_fee?: number;
|
|
12669
|
+
readonly merchant_of_record_fee_create_on_order?: boolean;
|
|
12587
12670
|
readonly duty_guarantee_fee?: number;
|
|
12588
12671
|
readonly transfer_fee?: number;
|
|
12589
12672
|
readonly negative_balance_fee?: number;
|
|
12590
12673
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
12591
12674
|
readonly label_fees?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
12675
|
+
readonly revenue_share_rate?: number;
|
|
12592
12676
|
readonly charge_label_cost_directly: boolean;
|
|
12593
12677
|
readonly transaction_posting_method: io.flow.internal.v0.enums.TransactionPostingMethod;
|
|
12594
12678
|
readonly statement_transfer_transaction_location: io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
@@ -12599,6 +12683,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12599
12683
|
readonly enable_fee_reversals: boolean;
|
|
12600
12684
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
12601
12685
|
readonly enable_negative_debits: boolean;
|
|
12686
|
+
readonly enable_statement_pdf: boolean;
|
|
12687
|
+
readonly enable_shipping_label_revenue_share?: boolean;
|
|
12688
|
+
readonly enable_carrier_charge_revenue_share?: boolean;
|
|
12689
|
+
readonly always_charge_organization_for_trueup?: boolean;
|
|
12602
12690
|
}
|
|
12603
12691
|
interface AccountSettingsDeleted {
|
|
12604
12692
|
readonly discriminator: 'account_settings_deleted';
|
|
@@ -13062,33 +13150,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13062
13150
|
interface AftershipWebhook {
|
|
13063
13151
|
readonly placeholder?: boolean;
|
|
13064
13152
|
}
|
|
13065
|
-
interface AldoItem {
|
|
13066
|
-
readonly id: string;
|
|
13067
|
-
readonly number: string;
|
|
13068
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
13069
|
-
readonly description?: string;
|
|
13070
|
-
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
13071
|
-
readonly added_on: string;
|
|
13072
|
-
}
|
|
13073
|
-
interface AldoItemDeleted {
|
|
13074
|
-
readonly discriminator: 'aldo_item_deleted';
|
|
13075
|
-
readonly event_id: string;
|
|
13076
|
-
readonly timestamp: string;
|
|
13077
|
-
readonly id: string;
|
|
13078
|
-
}
|
|
13079
|
-
interface AldoItemForm {
|
|
13080
|
-
readonly number: string;
|
|
13081
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
13082
|
-
readonly description?: string;
|
|
13083
|
-
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
13084
|
-
readonly added_on: string;
|
|
13085
|
-
}
|
|
13086
|
-
interface AldoItemUpserted {
|
|
13087
|
-
readonly discriminator: 'aldo_item_upserted';
|
|
13088
|
-
readonly event_id: string;
|
|
13089
|
-
readonly timestamp: string;
|
|
13090
|
-
readonly item: io.flow.internal.v0.models.AldoItem;
|
|
13091
|
-
}
|
|
13092
13153
|
interface AllItemsExport {
|
|
13093
13154
|
readonly discriminator: 'all_items_export';
|
|
13094
13155
|
readonly event_id: string;
|
|
@@ -13107,60 +13168,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13107
13168
|
readonly name: string;
|
|
13108
13169
|
readonly labels: Record<string, string[]>;
|
|
13109
13170
|
}
|
|
13110
|
-
interface
|
|
13111
|
-
readonly id: string;
|
|
13112
|
-
readonly number: string;
|
|
13113
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
13114
|
-
readonly description?: string;
|
|
13115
|
-
readonly type: io.flow.internal.v0.enums.AnirbanItemType;
|
|
13116
|
-
readonly added_on: string;
|
|
13117
|
-
}
|
|
13118
|
-
interface AnirbanItemDeleted {
|
|
13119
|
-
readonly discriminator: 'anirban_item_deleted';
|
|
13120
|
-
readonly event_id: string;
|
|
13121
|
-
readonly timestamp: string;
|
|
13122
|
-
readonly id: string;
|
|
13123
|
-
}
|
|
13124
|
-
interface AnirbanItemForm {
|
|
13125
|
-
readonly number: string;
|
|
13126
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
13127
|
-
readonly description?: string;
|
|
13128
|
-
readonly type: io.flow.internal.v0.enums.AnirbanItemType;
|
|
13129
|
-
readonly added_on: string;
|
|
13130
|
-
}
|
|
13131
|
-
interface AnirbanItemUpserted {
|
|
13132
|
-
readonly discriminator: 'anirban_item_upserted';
|
|
13133
|
-
readonly event_id: string;
|
|
13134
|
-
readonly timestamp: string;
|
|
13135
|
-
readonly item: io.flow.internal.v0.models.AnirbanItem;
|
|
13136
|
-
}
|
|
13137
|
-
interface AnshItem {
|
|
13171
|
+
interface AmruthaItem {
|
|
13138
13172
|
readonly id: string;
|
|
13139
13173
|
readonly number: string;
|
|
13140
13174
|
readonly amount: io.flow.common.v0.models.Price;
|
|
13141
13175
|
readonly description?: string;
|
|
13142
|
-
readonly type: io.flow.internal.v0.enums.
|
|
13176
|
+
readonly type: io.flow.internal.v0.enums.AmruthaItemType;
|
|
13143
13177
|
readonly added_on: string;
|
|
13144
13178
|
}
|
|
13145
|
-
interface
|
|
13146
|
-
readonly discriminator: 'ansh_item_deleted';
|
|
13147
|
-
readonly event_id: string;
|
|
13148
|
-
readonly timestamp: string;
|
|
13149
|
-
readonly id: string;
|
|
13150
|
-
}
|
|
13151
|
-
interface AnshItemForm {
|
|
13179
|
+
interface AmruthaItemForm {
|
|
13152
13180
|
readonly number: string;
|
|
13153
13181
|
readonly amount: io.flow.common.v0.models.Price;
|
|
13154
13182
|
readonly description?: string;
|
|
13155
|
-
readonly type: io.flow.internal.v0.enums.
|
|
13183
|
+
readonly type: io.flow.internal.v0.enums.AmruthaItemType;
|
|
13156
13184
|
readonly added_on: string;
|
|
13157
13185
|
}
|
|
13158
|
-
interface AnshItemUpserted {
|
|
13159
|
-
readonly discriminator: 'ansh_item_upserted';
|
|
13160
|
-
readonly event_id: string;
|
|
13161
|
-
readonly timestamp: string;
|
|
13162
|
-
readonly item: io.flow.internal.v0.models.AnshItem;
|
|
13163
|
-
}
|
|
13164
13186
|
interface ApplePayAuthorizationPayload {
|
|
13165
13187
|
readonly discriminator: 'apple_pay_authorization_payload';
|
|
13166
13188
|
readonly apple_pay_token: string;
|
|
@@ -13248,6 +13270,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13248
13270
|
readonly keywords?: string[];
|
|
13249
13271
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
13250
13272
|
}
|
|
13273
|
+
interface B2BFeeMorTaxTriggerMetadata {
|
|
13274
|
+
readonly discriminator: 'b2b_fee_mor_tax_trigger_metadata';
|
|
13275
|
+
readonly trigger_type: io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType;
|
|
13276
|
+
}
|
|
13277
|
+
interface B2BFeeShippingTaxTriggerMetadata {
|
|
13278
|
+
readonly discriminator: 'b2b_fee_shipping_tax_trigger_metadata';
|
|
13279
|
+
readonly trigger_type: io.flow.internal.v0.enums.B2BFeeShippingTaxTriggerType;
|
|
13280
|
+
}
|
|
13251
13281
|
interface B2BTaxLedger {
|
|
13252
13282
|
readonly id: string;
|
|
13253
13283
|
readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
|
|
@@ -13265,6 +13295,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13265
13295
|
readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
13266
13296
|
readonly document_date: string;
|
|
13267
13297
|
readonly ledger_report_id?: string;
|
|
13298
|
+
readonly voids_invoice_number?: string;
|
|
13299
|
+
readonly document_number?: string;
|
|
13268
13300
|
}
|
|
13269
13301
|
interface B2BTaxLedgerForm {
|
|
13270
13302
|
readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
|
|
@@ -13282,6 +13314,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13282
13314
|
readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
13283
13315
|
readonly document_date: string;
|
|
13284
13316
|
readonly ledger_report_id?: string;
|
|
13317
|
+
readonly voids_invoice_number?: string;
|
|
13318
|
+
readonly document_number?: string;
|
|
13285
13319
|
}
|
|
13286
13320
|
interface BankAccount {
|
|
13287
13321
|
readonly status: io.flow.internal.v0.enums.BankAccountStatus;
|
|
@@ -13551,6 +13585,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13551
13585
|
readonly tax_refund: io.flow.common.v0.models.Price;
|
|
13552
13586
|
readonly b2b_tax: io.flow.common.v0.models.Price;
|
|
13553
13587
|
readonly b2b_tax_refund: io.flow.common.v0.models.Price;
|
|
13588
|
+
readonly merchant_fee: io.flow.common.v0.models.Price;
|
|
13589
|
+
readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
|
|
13590
|
+
readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
|
|
13554
13591
|
}
|
|
13555
13592
|
interface BillingStatementUpserted {
|
|
13556
13593
|
readonly discriminator: 'billing_statement_upserted';
|
|
@@ -13608,6 +13645,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13608
13645
|
readonly public_key: string;
|
|
13609
13646
|
readonly secret_key: string;
|
|
13610
13647
|
}
|
|
13648
|
+
interface BojanaItem {
|
|
13649
|
+
readonly id: string;
|
|
13650
|
+
readonly number: string;
|
|
13651
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
13652
|
+
readonly description?: string;
|
|
13653
|
+
readonly type: io.flow.internal.v0.enums.BojanaItemType;
|
|
13654
|
+
readonly added_on: string;
|
|
13655
|
+
}
|
|
13656
|
+
interface BojanaItemForm {
|
|
13657
|
+
readonly number: string;
|
|
13658
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
13659
|
+
readonly description?: string;
|
|
13660
|
+
readonly type: io.flow.internal.v0.enums.BojanaItemType;
|
|
13661
|
+
readonly added_on: string;
|
|
13662
|
+
}
|
|
13611
13663
|
interface BooleanFeatureDefaultValue {
|
|
13612
13664
|
readonly discriminator: 'boolean';
|
|
13613
13665
|
readonly value: boolean;
|
|
@@ -14484,6 +14536,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14484
14536
|
readonly url: string;
|
|
14485
14537
|
readonly type: io.flow.internal.v0.enums.CheckoutUrlType;
|
|
14486
14538
|
}
|
|
14539
|
+
interface ChenglinItem {
|
|
14540
|
+
readonly id: string;
|
|
14541
|
+
readonly number: string;
|
|
14542
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
14543
|
+
readonly description?: string;
|
|
14544
|
+
readonly type: io.flow.internal.v0.enums.GabrielItemType;
|
|
14545
|
+
readonly added_on: string;
|
|
14546
|
+
}
|
|
14547
|
+
interface ChenglinItemDeleted {
|
|
14548
|
+
readonly discriminator: 'chenglin_item_deleted';
|
|
14549
|
+
readonly event_id: string;
|
|
14550
|
+
readonly timestamp: string;
|
|
14551
|
+
readonly id: string;
|
|
14552
|
+
}
|
|
14553
|
+
interface ChenglinItemForm {
|
|
14554
|
+
readonly number: string;
|
|
14555
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
14556
|
+
readonly description?: string;
|
|
14557
|
+
readonly type: io.flow.internal.v0.enums.GabrielItemType;
|
|
14558
|
+
readonly added_on: string;
|
|
14559
|
+
}
|
|
14560
|
+
interface ChenglinItemUpserted {
|
|
14561
|
+
readonly discriminator: 'chenglin_item_upserted';
|
|
14562
|
+
readonly event_id: string;
|
|
14563
|
+
readonly timestamp: string;
|
|
14564
|
+
readonly item: io.flow.internal.v0.models.ChenglinItem;
|
|
14565
|
+
}
|
|
14487
14566
|
interface Cipher {
|
|
14488
14567
|
readonly id: string;
|
|
14489
14568
|
readonly attributes: Record<string, string>;
|
|
@@ -14982,7 +15061,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14982
15061
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
14983
15062
|
readonly transactions: io.flow.internal.v0.models.DebugOrderTransactionDetails[];
|
|
14984
15063
|
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
14985
|
-
readonly banking
|
|
15064
|
+
readonly banking?: io.flow.internal.v0.models.DebugBankingDetails;
|
|
14986
15065
|
}
|
|
14987
15066
|
interface DebugOrderTransactionDetails {
|
|
14988
15067
|
readonly transaction: io.flow.billing.v0.models.Transaction;
|
|
@@ -16556,6 +16635,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16556
16635
|
readonly organization_ids: string[];
|
|
16557
16636
|
readonly num_events: number;
|
|
16558
16637
|
}
|
|
16638
|
+
interface GenerateLoadRate {
|
|
16639
|
+
readonly organization_ids: string[];
|
|
16640
|
+
readonly events_per_second: number;
|
|
16641
|
+
readonly duration_seconds: number;
|
|
16642
|
+
}
|
|
16559
16643
|
interface GenerateLoadSingleOrg {
|
|
16560
16644
|
readonly discriminator: 'generate_load_single_org';
|
|
16561
16645
|
readonly organization_id: string;
|
|
@@ -16701,39 +16785,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16701
16785
|
readonly organization: string;
|
|
16702
16786
|
readonly export_id: string;
|
|
16703
16787
|
}
|
|
16704
|
-
interface HoseinItem {
|
|
16705
|
-
readonly id: string;
|
|
16706
|
-
readonly number: string;
|
|
16707
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
16708
|
-
readonly description?: string;
|
|
16709
|
-
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
16710
|
-
readonly added_on: string;
|
|
16711
|
-
}
|
|
16712
|
-
interface HoseinItemDeleted {
|
|
16713
|
-
readonly discriminator: 'hosein_item_deleted';
|
|
16714
|
-
readonly event_id: string;
|
|
16715
|
-
readonly timestamp: string;
|
|
16716
|
-
readonly id: string;
|
|
16717
|
-
}
|
|
16718
|
-
interface HoseinItemForm {
|
|
16719
|
-
readonly number: string;
|
|
16720
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
16721
|
-
readonly description?: string;
|
|
16722
|
-
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
16723
|
-
readonly added_on: string;
|
|
16724
|
-
}
|
|
16725
|
-
interface HoseinItemUpserted {
|
|
16726
|
-
readonly discriminator: 'hosein_item_upserted';
|
|
16727
|
-
readonly event_id: string;
|
|
16728
|
-
readonly timestamp: string;
|
|
16729
|
-
readonly item: io.flow.internal.v0.models.HoseinItem;
|
|
16730
|
-
}
|
|
16731
16788
|
interface Hs6 {
|
|
16732
16789
|
readonly code: string;
|
|
16733
16790
|
readonly description: string;
|
|
16734
16791
|
}
|
|
16735
16792
|
interface Hs6Metadata {
|
|
16736
|
-
readonly description
|
|
16793
|
+
readonly description?: string;
|
|
16794
|
+
readonly classification_source?: io.flow.internal.v0.enums.ClassificationSource;
|
|
16737
16795
|
}
|
|
16738
16796
|
interface ImportCompleted {
|
|
16739
16797
|
readonly discriminator: 'import_completed';
|
|
@@ -17184,10 +17242,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17184
17242
|
interface ItemValuesForm {
|
|
17185
17243
|
readonly values: string[];
|
|
17186
17244
|
}
|
|
17187
|
-
interface JeanDemoItem {
|
|
17188
|
-
readonly id: string;
|
|
17189
|
-
readonly name: string;
|
|
17190
|
-
}
|
|
17191
17245
|
interface Journal {
|
|
17192
17246
|
readonly name: string;
|
|
17193
17247
|
readonly queued: number;
|
|
@@ -17289,30 +17343,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17289
17343
|
readonly country: string;
|
|
17290
17344
|
readonly postal?: string;
|
|
17291
17345
|
}
|
|
17292
|
-
interface LabelGenerationSettings {
|
|
17293
|
-
readonly id: string;
|
|
17294
|
-
readonly auto_generate_query?: string;
|
|
17295
|
-
readonly commercial_invoice_only_query?: string;
|
|
17296
|
-
}
|
|
17297
|
-
interface LabelGenerationSettingsDeleted {
|
|
17298
|
-
readonly discriminator: 'label_generation_settings_deleted';
|
|
17299
|
-
readonly event_id: string;
|
|
17300
|
-
readonly timestamp: string;
|
|
17301
|
-
readonly organization: string;
|
|
17302
|
-
readonly id: string;
|
|
17303
|
-
}
|
|
17304
|
-
interface LabelGenerationSettingsForm {
|
|
17305
|
-
readonly item_identifier?: string;
|
|
17306
|
-
readonly auto_generate_query?: string;
|
|
17307
|
-
readonly commercial_invoice_only_query?: string;
|
|
17308
|
-
}
|
|
17309
|
-
interface LabelGenerationSettingsUpserted {
|
|
17310
|
-
readonly discriminator: 'label_generation_settings_upserted';
|
|
17311
|
-
readonly event_id: string;
|
|
17312
|
-
readonly timestamp: string;
|
|
17313
|
-
readonly organization: string;
|
|
17314
|
-
readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
|
|
17315
|
-
}
|
|
17316
17346
|
interface LabelInvoiceRequest {
|
|
17317
17347
|
readonly id: string;
|
|
17318
17348
|
readonly label: io.flow.internal.v0.models.TrueupLabelSummary;
|
|
@@ -17390,6 +17420,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17390
17420
|
readonly reference_id?: string;
|
|
17391
17421
|
readonly logistics_integration_provider?: string;
|
|
17392
17422
|
readonly tax_lrp_liabilities?: io.flow.internal.v0.models.Liability[];
|
|
17423
|
+
readonly channel_id?: string;
|
|
17393
17424
|
}
|
|
17394
17425
|
interface LabelSummary {
|
|
17395
17426
|
readonly id: string;
|
|
@@ -17760,6 +17791,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17760
17791
|
readonly original_transaction?: io.flow.internal.v0.models.TransactionReference;
|
|
17761
17792
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17762
17793
|
readonly attributes?: Record<string, string>;
|
|
17794
|
+
readonly recoup?: boolean;
|
|
17763
17795
|
readonly id: string;
|
|
17764
17796
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
17765
17797
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -17776,6 +17808,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17776
17808
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
17777
17809
|
readonly order?: io.flow.internal.v0.models.ManualTransactionFormOrder;
|
|
17778
17810
|
readonly original_transaction_id?: string;
|
|
17811
|
+
readonly recoup?: boolean;
|
|
17779
17812
|
readonly attributes?: Record<string, string>;
|
|
17780
17813
|
}
|
|
17781
17814
|
interface ManualTransactionFormOrder {
|
|
@@ -17986,33 +18019,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17986
18019
|
readonly amount: io.flow.common.v0.models.Price;
|
|
17987
18020
|
readonly conditions?: string;
|
|
17988
18021
|
}
|
|
17989
|
-
interface NiallItem {
|
|
17990
|
-
readonly id: string;
|
|
17991
|
-
readonly number: string;
|
|
17992
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
17993
|
-
readonly description?: string;
|
|
17994
|
-
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
17995
|
-
readonly added_on: string;
|
|
17996
|
-
}
|
|
17997
|
-
interface NiallItemDeleted {
|
|
17998
|
-
readonly discriminator: 'niall_item_deleted';
|
|
17999
|
-
readonly event_id: string;
|
|
18000
|
-
readonly timestamp: string;
|
|
18001
|
-
readonly id: string;
|
|
18002
|
-
}
|
|
18003
|
-
interface NiallItemForm {
|
|
18004
|
-
readonly number: string;
|
|
18005
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18006
|
-
readonly description?: string;
|
|
18007
|
-
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
18008
|
-
readonly added_on: string;
|
|
18009
|
-
}
|
|
18010
|
-
interface NiallItemUpserted {
|
|
18011
|
-
readonly discriminator: 'niall_item_upserted';
|
|
18012
|
-
readonly event_id: string;
|
|
18013
|
-
readonly timestamp: string;
|
|
18014
|
-
readonly item: io.flow.internal.v0.models.NiallItem;
|
|
18015
|
-
}
|
|
18016
18022
|
interface NoCalculatedTaxAmount {
|
|
18017
18023
|
readonly discriminator: 'no_calculated_tax_amount';
|
|
18018
18024
|
readonly amount: number;
|
|
@@ -18085,6 +18091,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18085
18091
|
readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
18086
18092
|
readonly blocked_since?: string;
|
|
18087
18093
|
readonly onboarding_segment?: string;
|
|
18094
|
+
readonly country?: string;
|
|
18088
18095
|
}
|
|
18089
18096
|
interface OnboardingStateForm {
|
|
18090
18097
|
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
@@ -18642,6 +18649,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18642
18649
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
18643
18650
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
18644
18651
|
}
|
|
18652
|
+
interface OrganizationPromotion {
|
|
18653
|
+
readonly status: io.flow.internal.v0.enums.OrganizationPromotionStatus;
|
|
18654
|
+
readonly prod_org: string;
|
|
18655
|
+
}
|
|
18656
|
+
interface OrganizationPromotionWarning {
|
|
18657
|
+
readonly prod_org: string;
|
|
18658
|
+
readonly message: string;
|
|
18659
|
+
}
|
|
18645
18660
|
interface OrganizationRestrictionNoteForm {
|
|
18646
18661
|
readonly note: string;
|
|
18647
18662
|
readonly note_type: io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -18807,7 +18822,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18807
18822
|
readonly label_created_at: string;
|
|
18808
18823
|
readonly carrier_id: string;
|
|
18809
18824
|
readonly carrier_tracking_number: string;
|
|
18810
|
-
readonly revenue_share_percentage
|
|
18825
|
+
readonly revenue_share_percentage?: number;
|
|
18811
18826
|
readonly outbound_transaction_id?: string;
|
|
18812
18827
|
}
|
|
18813
18828
|
interface OtherRecordMetadataChannel {
|
|
@@ -18836,6 +18851,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18836
18851
|
readonly label_transaction_id: string;
|
|
18837
18852
|
readonly label_invoice_request_id: string;
|
|
18838
18853
|
readonly carrier_charge_id: string;
|
|
18854
|
+
readonly subtype?: string;
|
|
18839
18855
|
}
|
|
18840
18856
|
interface OtherRecordOrderSummary {
|
|
18841
18857
|
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
@@ -19376,21 +19392,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19376
19392
|
readonly minimum_amount_base: number;
|
|
19377
19393
|
readonly rate: number;
|
|
19378
19394
|
}
|
|
19379
|
-
interface PrateekItem {
|
|
19380
|
-
readonly id: string;
|
|
19381
|
-
readonly number: string;
|
|
19382
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
19383
|
-
readonly description?: string;
|
|
19384
|
-
readonly type: io.flow.internal.v0.enums.PrateekItemType;
|
|
19385
|
-
readonly added_on: string;
|
|
19386
|
-
}
|
|
19387
|
-
interface PrateekItemForm {
|
|
19388
|
-
readonly number: string;
|
|
19389
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
19390
|
-
readonly description?: string;
|
|
19391
|
-
readonly type: io.flow.internal.v0.enums.PrateekItemType;
|
|
19392
|
-
readonly added_on: string;
|
|
19393
|
-
}
|
|
19394
19395
|
interface Prediction {
|
|
19395
19396
|
readonly main_material: string;
|
|
19396
19397
|
readonly gender: string;
|
|
@@ -19446,6 +19447,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19446
19447
|
readonly last_request: string;
|
|
19447
19448
|
}
|
|
19448
19449
|
interface PreonboardingSellabilityResult {
|
|
19450
|
+
readonly id?: string;
|
|
19449
19451
|
readonly merchant_id: string;
|
|
19450
19452
|
readonly product_id: string;
|
|
19451
19453
|
readonly channel: string;
|
|
@@ -19461,6 +19463,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19461
19463
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19462
19464
|
readonly fingerprint: string;
|
|
19463
19465
|
}
|
|
19466
|
+
interface PreonboardingSellabilityResultDeleted {
|
|
19467
|
+
readonly discriminator: 'preonboarding_sellability_result_deleted';
|
|
19468
|
+
readonly event_id: string;
|
|
19469
|
+
readonly timestamp: string;
|
|
19470
|
+
readonly id: string;
|
|
19471
|
+
}
|
|
19472
|
+
interface PreonboardingSellabilityResultInserted {
|
|
19473
|
+
readonly discriminator: 'preonboarding_sellability_result_inserted';
|
|
19474
|
+
readonly event_id: string;
|
|
19475
|
+
readonly timestamp: string;
|
|
19476
|
+
readonly preonboarding_sellability_result: io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
19477
|
+
}
|
|
19478
|
+
interface PreonboardingSellabilityResultUpdated {
|
|
19479
|
+
readonly discriminator: 'preonboarding_sellability_result_updated';
|
|
19480
|
+
readonly event_id: string;
|
|
19481
|
+
readonly timestamp: string;
|
|
19482
|
+
readonly previous_preonboarding_sellability_result: io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
19483
|
+
readonly preonboarding_sellability_result: io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
19484
|
+
}
|
|
19464
19485
|
interface PriceInclusivity {
|
|
19465
19486
|
readonly tax?: boolean;
|
|
19466
19487
|
readonly duty?: boolean;
|
|
@@ -19696,9 +19717,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19696
19717
|
}
|
|
19697
19718
|
interface ProductSellabilityInternalResult {
|
|
19698
19719
|
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
19699
|
-
readonly
|
|
19720
|
+
readonly rule_matches: io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch[];
|
|
19721
|
+
readonly matching_positive_keywords?: string[];
|
|
19722
|
+
}
|
|
19723
|
+
interface ProductSellabilityInternalRuleMatch {
|
|
19724
|
+
readonly rule_id: string;
|
|
19725
|
+
readonly match_types: io.flow.internal.v0.enums.SellabilityInternalMatchType[];
|
|
19700
19726
|
}
|
|
19701
19727
|
interface ProductSellabilityResult {
|
|
19728
|
+
readonly id?: string;
|
|
19702
19729
|
readonly shop_id: string;
|
|
19703
19730
|
readonly product_number: string;
|
|
19704
19731
|
readonly request_id: string;
|
|
@@ -19707,6 +19734,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19707
19734
|
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
19708
19735
|
readonly rule_ids?: string[];
|
|
19709
19736
|
readonly taxonomy_category?: string;
|
|
19737
|
+
readonly fingerprint?: string;
|
|
19738
|
+
readonly processed_at?: string;
|
|
19739
|
+
}
|
|
19740
|
+
interface ProductSellabilityResultDeleted {
|
|
19741
|
+
readonly discriminator: 'product_sellability_result_deleted';
|
|
19742
|
+
readonly event_id: string;
|
|
19743
|
+
readonly timestamp: string;
|
|
19744
|
+
readonly id: string;
|
|
19745
|
+
}
|
|
19746
|
+
interface ProductSellabilityResultInserted {
|
|
19747
|
+
readonly discriminator: 'product_sellability_result_inserted';
|
|
19748
|
+
readonly event_id: string;
|
|
19749
|
+
readonly timestamp: string;
|
|
19750
|
+
readonly product_sellability_result: io.flow.internal.v0.models.ProductSellabilityResult;
|
|
19751
|
+
}
|
|
19752
|
+
interface ProductSellabilityResultUpdated {
|
|
19753
|
+
readonly discriminator: 'product_sellability_result_updated';
|
|
19754
|
+
readonly event_id: string;
|
|
19755
|
+
readonly timestamp: string;
|
|
19756
|
+
readonly previous_product_sellability_result: io.flow.internal.v0.models.ProductSellabilityResult;
|
|
19757
|
+
readonly product_sellability_result: io.flow.internal.v0.models.ProductSellabilityResult;
|
|
19710
19758
|
}
|
|
19711
19759
|
interface ProductTransaction {
|
|
19712
19760
|
readonly transaction_amount: number;
|
|
@@ -20176,6 +20224,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20176
20224
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
20177
20225
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20178
20226
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
20227
|
+
readonly account_currency?: io.flow.internal.v0.enums.AccountCurrencyFilter;
|
|
20179
20228
|
}
|
|
20180
20229
|
interface ReportForm {
|
|
20181
20230
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
@@ -20908,33 +20957,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20908
20957
|
readonly organization: string;
|
|
20909
20958
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
20910
20959
|
}
|
|
20911
|
-
interface RohanItem {
|
|
20912
|
-
readonly id: string;
|
|
20913
|
-
readonly number: string;
|
|
20914
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20915
|
-
readonly description?: string;
|
|
20916
|
-
readonly type: io.flow.internal.v0.enums.RohanItemType;
|
|
20917
|
-
readonly added_on: string;
|
|
20918
|
-
}
|
|
20919
|
-
interface RohanItemDeleted {
|
|
20920
|
-
readonly discriminator: 'rohan_item_deleted';
|
|
20921
|
-
readonly event_id: string;
|
|
20922
|
-
readonly timestamp: string;
|
|
20923
|
-
readonly id: string;
|
|
20924
|
-
}
|
|
20925
|
-
interface RohanItemForm {
|
|
20926
|
-
readonly number: string;
|
|
20927
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20928
|
-
readonly description?: string;
|
|
20929
|
-
readonly type: io.flow.internal.v0.enums.RohanItemType;
|
|
20930
|
-
readonly added_on: string;
|
|
20931
|
-
}
|
|
20932
|
-
interface RohanItemUpserted {
|
|
20933
|
-
readonly discriminator: 'rohan_item_upserted';
|
|
20934
|
-
readonly event_id: string;
|
|
20935
|
-
readonly timestamp: string;
|
|
20936
|
-
readonly item: io.flow.internal.v0.models.RohanItem;
|
|
20937
|
-
}
|
|
20938
20960
|
interface RoutingAccount {
|
|
20939
20961
|
readonly discriminator: 'routing_account';
|
|
20940
20962
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -20966,6 +20988,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20966
20988
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
20967
20989
|
readonly destination_country: string;
|
|
20968
20990
|
readonly fulfilled_at?: string;
|
|
20991
|
+
readonly reconciliation?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
20992
|
+
readonly is_eu_destination?: boolean;
|
|
20993
|
+
readonly debug_url?: string;
|
|
20969
20994
|
}
|
|
20970
20995
|
interface SandboxSetup {
|
|
20971
20996
|
readonly requested_by: string;
|
|
@@ -20973,33 +20998,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20973
20998
|
interface SandboxSetupForm {
|
|
20974
20999
|
readonly requested_by: string;
|
|
20975
21000
|
}
|
|
20976
|
-
interface SarveshItem {
|
|
20977
|
-
readonly id: string;
|
|
20978
|
-
readonly number: string;
|
|
20979
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20980
|
-
readonly description?: string;
|
|
20981
|
-
readonly type: io.flow.internal.v0.enums.SarveshItemType;
|
|
20982
|
-
readonly added_on: string;
|
|
20983
|
-
}
|
|
20984
|
-
interface SarveshItemDeleted {
|
|
20985
|
-
readonly discriminator: 'sarvesh_item_deleted';
|
|
20986
|
-
readonly event_id: string;
|
|
20987
|
-
readonly timestamp: string;
|
|
20988
|
-
readonly id: string;
|
|
20989
|
-
}
|
|
20990
|
-
interface SarveshItemForm {
|
|
20991
|
-
readonly number: string;
|
|
20992
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20993
|
-
readonly description?: string;
|
|
20994
|
-
readonly type: io.flow.internal.v0.enums.SarveshItemType;
|
|
20995
|
-
readonly added_on: string;
|
|
20996
|
-
}
|
|
20997
|
-
interface SarveshItemUpserted {
|
|
20998
|
-
readonly discriminator: 'sarvesh_item_upserted';
|
|
20999
|
-
readonly event_id: string;
|
|
21000
|
-
readonly timestamp: string;
|
|
21001
|
-
readonly item: io.flow.internal.v0.models.SarveshItem;
|
|
21002
|
-
}
|
|
21003
21001
|
interface ScheduledPayment {
|
|
21004
21002
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
21005
21003
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -21121,6 +21119,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21121
21119
|
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
21122
21120
|
readonly cost: io.flow.common.v0.models.Money;
|
|
21123
21121
|
}
|
|
21122
|
+
interface ShippingCostDeleted {
|
|
21123
|
+
readonly discriminator: 'shipping_cost_deleted';
|
|
21124
|
+
readonly event_id: string;
|
|
21125
|
+
readonly timestamp: string;
|
|
21126
|
+
readonly organization: string;
|
|
21127
|
+
readonly id: string;
|
|
21128
|
+
}
|
|
21129
|
+
interface ShippingCostSummary {
|
|
21130
|
+
readonly id: string;
|
|
21131
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
21132
|
+
readonly organization_id: string;
|
|
21133
|
+
readonly order_number: string;
|
|
21134
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
21135
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
21136
|
+
readonly label_id?: string;
|
|
21137
|
+
readonly base?: io.flow.trueup.v0.models.LabelBase;
|
|
21138
|
+
readonly surcharges?: io.flow.trueup.v0.models.LabelSurcharge[];
|
|
21139
|
+
}
|
|
21140
|
+
interface ShippingCostUpserted {
|
|
21141
|
+
readonly discriminator: 'shipping_cost_upserted';
|
|
21142
|
+
readonly event_id: string;
|
|
21143
|
+
readonly timestamp: string;
|
|
21144
|
+
readonly organization: string;
|
|
21145
|
+
readonly shipping_cost: io.flow.internal.v0.models.ShippingCostSummary;
|
|
21146
|
+
}
|
|
21124
21147
|
interface ShippingLane {
|
|
21125
21148
|
readonly origin: string;
|
|
21126
21149
|
readonly destination: string;
|
|
@@ -21174,6 +21197,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21174
21197
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
21175
21198
|
readonly include_unpublished?: boolean;
|
|
21176
21199
|
}
|
|
21200
|
+
interface ShopifyAddress {
|
|
21201
|
+
readonly address1: string;
|
|
21202
|
+
readonly city: string;
|
|
21203
|
+
readonly country_code: string;
|
|
21204
|
+
readonly address2?: string;
|
|
21205
|
+
readonly postal_code?: string;
|
|
21206
|
+
readonly province?: string;
|
|
21207
|
+
}
|
|
21208
|
+
interface ShopifyCallbackError {
|
|
21209
|
+
readonly errors: io.flow.internal.v0.models.ShopifyCallbackErrorItem[];
|
|
21210
|
+
}
|
|
21211
|
+
interface ShopifyCallbackErrorItem {
|
|
21212
|
+
readonly code: io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
|
|
21213
|
+
readonly message: string;
|
|
21214
|
+
readonly field?: string;
|
|
21215
|
+
}
|
|
21177
21216
|
interface ShopifyCatalogPublication {
|
|
21178
21217
|
readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
21179
21218
|
}
|
|
@@ -21184,6 +21223,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21184
21223
|
readonly token: io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
21185
21224
|
readonly service: io.flow.internal.v0.enums.ShopifyService;
|
|
21186
21225
|
}
|
|
21226
|
+
interface ShopifyContactDetails {
|
|
21227
|
+
readonly company?: string;
|
|
21228
|
+
readonly email?: string;
|
|
21229
|
+
readonly name?: string;
|
|
21230
|
+
readonly phone?: string;
|
|
21231
|
+
}
|
|
21187
21232
|
interface ShopifyDispute {
|
|
21188
21233
|
readonly id: string;
|
|
21189
21234
|
readonly organization_id: string;
|
|
@@ -21491,6 +21536,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21491
21536
|
readonly organization: string;
|
|
21492
21537
|
readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
21493
21538
|
}
|
|
21539
|
+
interface ShopifyMeasurements {
|
|
21540
|
+
readonly dimension_unit: io.flow.internal.v0.enums.ShopifyDimensionUnit;
|
|
21541
|
+
readonly height: number;
|
|
21542
|
+
readonly length: number;
|
|
21543
|
+
readonly width: number;
|
|
21544
|
+
readonly weight: number;
|
|
21545
|
+
readonly weight_unit: io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
21546
|
+
}
|
|
21494
21547
|
interface ShopifyMerchantPlan {
|
|
21495
21548
|
readonly id: string;
|
|
21496
21549
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -21514,6 +21567,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21514
21567
|
readonly catalog_publication?: io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
21515
21568
|
readonly token: string;
|
|
21516
21569
|
}
|
|
21570
|
+
interface ShopifyMoney {
|
|
21571
|
+
readonly amount: number;
|
|
21572
|
+
readonly currency_code: string;
|
|
21573
|
+
}
|
|
21517
21574
|
interface ShopifyMonitoringCarrierService {
|
|
21518
21575
|
readonly service: string;
|
|
21519
21576
|
}
|
|
@@ -21753,6 +21810,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21753
21810
|
readonly shopify_product: io.flow.shopify.external.v0.models.Product;
|
|
21754
21811
|
readonly deleted_at?: string;
|
|
21755
21812
|
}
|
|
21813
|
+
interface ShopifyRateCustomsDetail {
|
|
21814
|
+
readonly incoterm: io.flow.internal.v0.enums.ShopifyIncoterm;
|
|
21815
|
+
readonly net_value: io.flow.internal.v0.models.ShopifyMoney;
|
|
21816
|
+
}
|
|
21817
|
+
interface ShopifyRatePickupPoint {
|
|
21818
|
+
readonly partner_reference_id: string;
|
|
21819
|
+
}
|
|
21756
21820
|
interface ShopifyReportFileDeleted {
|
|
21757
21821
|
readonly discriminator: 'shopify_report_file_deleted';
|
|
21758
21822
|
readonly event_id: string;
|
|
@@ -21765,6 +21829,73 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21765
21829
|
readonly timestamp: string;
|
|
21766
21830
|
readonly shopify_report_file: io.flow.internal.v0.models.ReportFile;
|
|
21767
21831
|
}
|
|
21832
|
+
interface ShopifyShipmentRateAvailable {
|
|
21833
|
+
readonly carrier_service_id: string;
|
|
21834
|
+
readonly total_charges: io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
21835
|
+
readonly charges: io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
21836
|
+
readonly shipment_options: io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
21837
|
+
readonly expected_delivery_date?: string;
|
|
21838
|
+
readonly guaranteed_delivery_date?: string;
|
|
21839
|
+
readonly incoterm?: io.flow.internal.v0.enums.ShopifyIncoterm;
|
|
21840
|
+
}
|
|
21841
|
+
interface ShopifyShipmentRateCharge {
|
|
21842
|
+
readonly code: io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
21843
|
+
readonly cost: io.flow.internal.v0.models.ShopifyMoney;
|
|
21844
|
+
}
|
|
21845
|
+
interface ShopifyShipmentRateOption {
|
|
21846
|
+
readonly code: io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
21847
|
+
readonly cost: io.flow.internal.v0.models.ShopifyMoney;
|
|
21848
|
+
readonly optional?: boolean;
|
|
21849
|
+
}
|
|
21850
|
+
interface ShopifyShipmentRatePackage {
|
|
21851
|
+
readonly type: io.flow.internal.v0.enums.ShopifyPackageType;
|
|
21852
|
+
readonly measurements: io.flow.internal.v0.models.ShopifyMeasurements;
|
|
21853
|
+
}
|
|
21854
|
+
interface ShopifyShipmentRateReason {
|
|
21855
|
+
readonly code: io.flow.internal.v0.enums.ShopifyUnavailableRateReasonCode;
|
|
21856
|
+
readonly field?: string;
|
|
21857
|
+
readonly message?: string;
|
|
21858
|
+
}
|
|
21859
|
+
interface ShopifyShipmentRateRequest {
|
|
21860
|
+
readonly idempotency_key: string;
|
|
21861
|
+
readonly webhook_id: string;
|
|
21862
|
+
readonly test: boolean;
|
|
21863
|
+
readonly shipper: io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
21864
|
+
readonly shipment: io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
21865
|
+
}
|
|
21866
|
+
interface ShopifyShipmentRateResponse {
|
|
21867
|
+
readonly rates: io.flow.internal.v0.models.ShopifyShipmentRateAvailable[];
|
|
21868
|
+
readonly unavailable_rates: io.flow.internal.v0.models.ShopifyShipmentRateUnavailable[];
|
|
21869
|
+
}
|
|
21870
|
+
interface ShopifyShipmentRateShipment {
|
|
21871
|
+
readonly carrier_id: string;
|
|
21872
|
+
readonly delivery_method_type: io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
21873
|
+
readonly shipping_date_time: string;
|
|
21874
|
+
readonly return: boolean;
|
|
21875
|
+
readonly origin: io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
21876
|
+
readonly destination: io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
21877
|
+
readonly package: io.flow.internal.v0.models.ShopifyShipmentRatePackage;
|
|
21878
|
+
readonly pickup_point?: io.flow.internal.v0.models.ShopifyRatePickupPoint;
|
|
21879
|
+
readonly customs_detail?: io.flow.internal.v0.models.ShopifyRateCustomsDetail;
|
|
21880
|
+
}
|
|
21881
|
+
interface ShopifyShipmentRateShipper {
|
|
21882
|
+
readonly account_id: string;
|
|
21883
|
+
readonly carrier_account_reference_id: string;
|
|
21884
|
+
readonly byoa: boolean;
|
|
21885
|
+
}
|
|
21886
|
+
interface ShopifyShipmentRateTotalCharges {
|
|
21887
|
+
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
21888
|
+
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
21889
|
+
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
21890
|
+
}
|
|
21891
|
+
interface ShopifyShipmentRateUnavailable {
|
|
21892
|
+
readonly carrier_service_id: string;
|
|
21893
|
+
readonly reasons: io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
21894
|
+
}
|
|
21895
|
+
interface ShopifyShippingLocation {
|
|
21896
|
+
readonly address: io.flow.internal.v0.models.ShopifyAddress;
|
|
21897
|
+
readonly contact_details: io.flow.internal.v0.models.ShopifyContactDetails;
|
|
21898
|
+
}
|
|
21768
21899
|
interface ShopifyShopStatistics {
|
|
21769
21900
|
readonly id: string;
|
|
21770
21901
|
readonly initial_catalog_synced_at?: string;
|
|
@@ -21798,12 +21929,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21798
21929
|
readonly default_hs6_code?: string;
|
|
21799
21930
|
readonly auto_correct: boolean;
|
|
21800
21931
|
}
|
|
21932
|
+
interface ShopifyTestOrder {
|
|
21933
|
+
readonly id: string;
|
|
21934
|
+
readonly submitted_at: string;
|
|
21935
|
+
}
|
|
21936
|
+
interface ShopifyTestOrderDeleted {
|
|
21937
|
+
readonly discriminator: 'shopify_test_order_deleted';
|
|
21938
|
+
readonly event_id: string;
|
|
21939
|
+
readonly timestamp: string;
|
|
21940
|
+
readonly organization: string;
|
|
21941
|
+
readonly id: string;
|
|
21942
|
+
}
|
|
21943
|
+
interface ShopifyTestOrderUpserted {
|
|
21944
|
+
readonly discriminator: 'shopify_test_order_upserted';
|
|
21945
|
+
readonly event_id: string;
|
|
21946
|
+
readonly timestamp: string;
|
|
21947
|
+
readonly organization: string;
|
|
21948
|
+
readonly shopify_test_order: io.flow.internal.v0.models.ShopifyTestOrder;
|
|
21949
|
+
}
|
|
21801
21950
|
interface ShopperBreakdown {
|
|
21802
21951
|
readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21803
21952
|
readonly product_purchase_price?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21804
21953
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21805
21954
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21806
21955
|
readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21956
|
+
readonly subtotal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21807
21957
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21808
21958
|
}
|
|
21809
21959
|
interface ShopperFees {
|
|
@@ -22114,6 +22264,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22114
22264
|
readonly mor_fees?: number;
|
|
22115
22265
|
readonly mor_foreign_exchange_fees?: number;
|
|
22116
22266
|
readonly sp_processing_fees?: number;
|
|
22267
|
+
readonly mor_fees_tax?: number;
|
|
22117
22268
|
}
|
|
22118
22269
|
interface StripeConnectReportRecordTransferMetadata {
|
|
22119
22270
|
readonly discriminator: 'stripe_connect_report_record_transfer_metadata';
|
|
@@ -23022,7 +23173,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23022
23173
|
readonly fulfillment_key?: string;
|
|
23023
23174
|
readonly rex_number?: string;
|
|
23024
23175
|
readonly weee_number?: string;
|
|
23025
|
-
readonly generate_commercial_invoice_only: boolean;
|
|
23026
23176
|
readonly liability_remittance_plan?: io.flow.internal.v0.models.LiabilityRemittancePlan;
|
|
23027
23177
|
readonly shipment_cost_summary?: io.flow.internal.v0.models.ShipmentCostSummary;
|
|
23028
23178
|
readonly shipping_label_hop_cost_itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
@@ -23101,7 +23251,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23101
23251
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23102
23252
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23103
23253
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
23104
|
-
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;
|
|
23254
|
+
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;
|
|
23105
23255
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23106
23256
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23107
23257
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23145,7 +23295,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23145
23295
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
23146
23296
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23147
23297
|
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;
|
|
23148
|
-
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;
|
|
23298
|
+
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;
|
|
23149
23299
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
23150
23300
|
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;
|
|
23151
23301
|
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;
|
|
@@ -23156,6 +23306,7 @@ export declare type AccountContact = io.flow.internal.v0.models.AccountContact;
|
|
|
23156
23306
|
export declare type AccountContactDeleted = io.flow.internal.v0.models.AccountContactDeleted;
|
|
23157
23307
|
export declare type AccountContactForm = io.flow.internal.v0.models.AccountContactForm;
|
|
23158
23308
|
export declare type AccountContactUpserted = io.flow.internal.v0.models.AccountContactUpserted;
|
|
23309
|
+
export declare type AccountCurrencyFilter = io.flow.internal.v0.enums.AccountCurrencyFilter;
|
|
23159
23310
|
export declare type AccountDeletedV2 = io.flow.internal.v0.models.AccountDeletedV2;
|
|
23160
23311
|
export declare type AccountDepositRule = io.flow.internal.v0.models.AccountDepositRule;
|
|
23161
23312
|
export declare type AccountDepositRuleForm = io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
@@ -23243,25 +23394,13 @@ export declare type AfterpayRefund = io.flow.internal.v0.models.AfterpayRefund;
|
|
|
23243
23394
|
export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayRefundDeleted;
|
|
23244
23395
|
export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
23245
23396
|
export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
23246
|
-
export declare type AldoItem = io.flow.internal.v0.models.AldoItem;
|
|
23247
|
-
export declare type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
|
|
23248
|
-
export declare type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
|
|
23249
|
-
export declare type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
|
|
23250
|
-
export declare type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
|
|
23251
23397
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
23252
23398
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
23253
23399
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
23254
23400
|
export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
23255
|
-
export declare type
|
|
23256
|
-
export declare type
|
|
23257
|
-
export declare type
|
|
23258
|
-
export declare type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
|
|
23259
|
-
export declare type AnirbanItemUpserted = io.flow.internal.v0.models.AnirbanItemUpserted;
|
|
23260
|
-
export declare type AnshItem = io.flow.internal.v0.models.AnshItem;
|
|
23261
|
-
export declare type AnshItemDeleted = io.flow.internal.v0.models.AnshItemDeleted;
|
|
23262
|
-
export declare type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
|
|
23263
|
-
export declare type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
|
|
23264
|
-
export declare type AnshItemUpserted = io.flow.internal.v0.models.AnshItemUpserted;
|
|
23401
|
+
export declare type AmruthaItem = io.flow.internal.v0.models.AmruthaItem;
|
|
23402
|
+
export declare type AmruthaItemForm = io.flow.internal.v0.models.AmruthaItemForm;
|
|
23403
|
+
export declare type AmruthaItemType = io.flow.internal.v0.enums.AmruthaItemType;
|
|
23265
23404
|
export declare type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
|
|
23266
23405
|
export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
23267
23406
|
export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
@@ -23284,6 +23423,10 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
|
|
|
23284
23423
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
23285
23424
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
23286
23425
|
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
23426
|
+
export declare type B2BFeeMorTaxTriggerMetadata = io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata;
|
|
23427
|
+
export declare type B2BFeeMorTaxTriggerType = io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType;
|
|
23428
|
+
export declare type B2BFeeShippingTaxTriggerMetadata = io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata;
|
|
23429
|
+
export declare type B2BFeeShippingTaxTriggerType = io.flow.internal.v0.enums.B2BFeeShippingTaxTriggerType;
|
|
23287
23430
|
export declare type B2BTaxLedger = io.flow.internal.v0.models.B2BTaxLedger;
|
|
23288
23431
|
export declare type B2BTaxLedgerDocumentType = io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
23289
23432
|
export declare type B2BTaxLedgerForm = io.flow.internal.v0.models.B2BTaxLedgerForm;
|
|
@@ -23345,6 +23488,9 @@ export declare type BitpayAccountPutForm = io.flow.internal.v0.models.BitpayAcco
|
|
|
23345
23488
|
export declare type BitpayAuthentication = io.flow.internal.v0.models.BitpayAuthentication;
|
|
23346
23489
|
export declare type BitpayAuthenticationDataReference = io.flow.internal.v0.models.BitpayAuthenticationDataReference;
|
|
23347
23490
|
export declare type BitpayAuthenticationForm = io.flow.internal.v0.models.BitpayAuthenticationForm;
|
|
23491
|
+
export declare type BojanaItem = io.flow.internal.v0.models.BojanaItem;
|
|
23492
|
+
export declare type BojanaItemForm = io.flow.internal.v0.models.BojanaItemForm;
|
|
23493
|
+
export declare type BojanaItemType = io.flow.internal.v0.enums.BojanaItemType;
|
|
23348
23494
|
export declare type BooleanFeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue;
|
|
23349
23495
|
export declare type BooleanFeatureRule = io.flow.internal.v0.models.BooleanFeatureRule;
|
|
23350
23496
|
export declare type BooleanFeatureRuleForm = io.flow.internal.v0.models.BooleanFeatureRuleForm;
|
|
@@ -23516,6 +23662,11 @@ export declare type CheckoutSettings = io.flow.internal.v0.models.CheckoutSettin
|
|
|
23516
23662
|
export declare type CheckoutShippingMethodPromptBehavior = io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
|
|
23517
23663
|
export declare type CheckoutUrl = io.flow.internal.v0.models.CheckoutUrl;
|
|
23518
23664
|
export declare type CheckoutUrlType = io.flow.internal.v0.enums.CheckoutUrlType;
|
|
23665
|
+
export declare type ChenglinItem = io.flow.internal.v0.models.ChenglinItem;
|
|
23666
|
+
export declare type ChenglinItemDeleted = io.flow.internal.v0.models.ChenglinItemDeleted;
|
|
23667
|
+
export declare type ChenglinItemForm = io.flow.internal.v0.models.ChenglinItemForm;
|
|
23668
|
+
export declare type ChenglinItemType = io.flow.internal.v0.enums.ChenglinItemType;
|
|
23669
|
+
export declare type ChenglinItemUpserted = io.flow.internal.v0.models.ChenglinItemUpserted;
|
|
23519
23670
|
export declare type Cipher = io.flow.internal.v0.models.Cipher;
|
|
23520
23671
|
export declare type CipherForm = io.flow.internal.v0.models.CipherForm;
|
|
23521
23672
|
export declare type CipherReference = io.flow.internal.v0.models.CipherReference;
|
|
@@ -23549,6 +23700,7 @@ export declare type ClassificationProductSummaryPage = io.flow.internal.v0.model
|
|
|
23549
23700
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
23550
23701
|
export declare type ClassificationResponse = io.flow.internal.v0.unions.ClassificationResponse;
|
|
23551
23702
|
export declare type ClassificationScope = io.flow.internal.v0.enums.ClassificationScope;
|
|
23703
|
+
export declare type ClassificationSource = io.flow.internal.v0.enums.ClassificationSource;
|
|
23552
23704
|
export declare type ClassificationStatistics = io.flow.internal.v0.models.ClassificationStatistics;
|
|
23553
23705
|
export declare type ClassificationSummaryReportPayload = io.flow.internal.v0.models.ClassificationSummaryReportPayload;
|
|
23554
23706
|
export declare type ClassificationTaxonomy = io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
@@ -23893,6 +24045,7 @@ export declare type GeRevenueShareTransaction = io.flow.internal.v0.models.GeRev
|
|
|
23893
24045
|
export declare type GeRevenueShareTransactionType = io.flow.internal.v0.enums.GeRevenueShareTransactionType;
|
|
23894
24046
|
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
23895
24047
|
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
24048
|
+
export declare type GenerateLoadRate = io.flow.internal.v0.models.GenerateLoadRate;
|
|
23896
24049
|
export declare type GenerateLoadSingleOrg = io.flow.internal.v0.models.GenerateLoadSingleOrg;
|
|
23897
24050
|
export declare type GenericValidationError = io.flow.internal.v0.models.GenericValidationError;
|
|
23898
24051
|
export declare type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
@@ -23922,11 +24075,6 @@ export declare type HarmonizationThresholdForm = io.flow.internal.v0.models.Harm
|
|
|
23922
24075
|
export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics;
|
|
23923
24076
|
export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
23924
24077
|
export declare type HarmonizedItemsHs6Export = io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
23925
|
-
export declare type HoseinItem = io.flow.internal.v0.models.HoseinItem;
|
|
23926
|
-
export declare type HoseinItemDeleted = io.flow.internal.v0.models.HoseinItemDeleted;
|
|
23927
|
-
export declare type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
|
|
23928
|
-
export declare type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
|
|
23929
|
-
export declare type HoseinItemUpserted = io.flow.internal.v0.models.HoseinItemUpserted;
|
|
23930
24078
|
export declare type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
23931
24079
|
export declare type Hs6CodeSource = io.flow.internal.v0.enums.Hs6CodeSource;
|
|
23932
24080
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
@@ -24000,7 +24148,6 @@ export declare type ItemSalesMarginVersion = io.flow.internal.v0.models.ItemSale
|
|
|
24000
24148
|
export declare type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
24001
24149
|
export declare type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
24002
24150
|
export declare type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
24003
|
-
export declare type JeanDemoItem = io.flow.internal.v0.models.JeanDemoItem;
|
|
24004
24151
|
export declare type Journal = io.flow.internal.v0.models.Journal;
|
|
24005
24152
|
export declare type JournalFailure = io.flow.internal.v0.models.JournalFailure;
|
|
24006
24153
|
export declare type JournalOperation = io.flow.internal.v0.enums.JournalOperation;
|
|
@@ -24027,10 +24174,6 @@ export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreatio
|
|
|
24027
24174
|
export declare type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
24028
24175
|
export declare type LabelEventMedium = io.flow.internal.v0.enums.LabelEventMedium;
|
|
24029
24176
|
export declare type LabelEventSource = io.flow.internal.v0.enums.LabelEventSource;
|
|
24030
|
-
export declare type LabelGenerationSettings = io.flow.internal.v0.models.LabelGenerationSettings;
|
|
24031
|
-
export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
|
|
24032
|
-
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
24033
|
-
export declare type LabelGenerationSettingsUpserted = io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
|
|
24034
24177
|
export declare type LabelInvoiceRequest = io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
24035
24178
|
export declare type LabelInvoiceRequestDeleted = io.flow.internal.v0.models.LabelInvoiceRequestDeleted;
|
|
24036
24179
|
export declare type LabelInvoiceRequestUpserted = io.flow.internal.v0.models.LabelInvoiceRequestUpserted;
|
|
@@ -24138,11 +24281,6 @@ export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
|
24138
24281
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
24139
24282
|
export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
24140
24283
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
24141
|
-
export declare type NiallItem = io.flow.internal.v0.models.NiallItem;
|
|
24142
|
-
export declare type NiallItemDeleted = io.flow.internal.v0.models.NiallItemDeleted;
|
|
24143
|
-
export declare type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
|
|
24144
|
-
export declare type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
|
|
24145
|
-
export declare type NiallItemUpserted = io.flow.internal.v0.models.NiallItemUpserted;
|
|
24146
24284
|
export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
24147
24285
|
export declare type NoClassificationForm = io.flow.internal.v0.models.NoClassificationForm;
|
|
24148
24286
|
export declare type NoLiabilityReasonCode = io.flow.internal.v0.enums.NoLiabilityReasonCode;
|
|
@@ -24258,6 +24396,9 @@ export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.
|
|
|
24258
24396
|
export declare type OrganizationPaymentSettingUpserted = io.flow.internal.v0.models.OrganizationPaymentSettingUpserted;
|
|
24259
24397
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
24260
24398
|
export declare type OrganizationPaymentStatus = io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
24399
|
+
export declare type OrganizationPromotion = io.flow.internal.v0.models.OrganizationPromotion;
|
|
24400
|
+
export declare type OrganizationPromotionStatus = io.flow.internal.v0.enums.OrganizationPromotionStatus;
|
|
24401
|
+
export declare type OrganizationPromotionWarning = io.flow.internal.v0.models.OrganizationPromotionWarning;
|
|
24261
24402
|
export declare type OrganizationRestrictionApprovalStatus = io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
24262
24403
|
export declare type OrganizationRestrictionNoteForm = io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
24263
24404
|
export declare type OrganizationRestrictionNoteType = io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -24380,9 +24521,6 @@ export declare type PlatformFeeFlat = io.flow.internal.v0.models.PlatformFeeFlat
|
|
|
24380
24521
|
export declare type PlatformFeePause = io.flow.internal.v0.models.PlatformFeePause;
|
|
24381
24522
|
export declare type PlatformFeePercentage = io.flow.internal.v0.models.PlatformFeePercentage;
|
|
24382
24523
|
export declare type PlatformFeePercentageTier = io.flow.internal.v0.models.PlatformFeePercentageTier;
|
|
24383
|
-
export declare type PrateekItem = io.flow.internal.v0.models.PrateekItem;
|
|
24384
|
-
export declare type PrateekItemForm = io.flow.internal.v0.models.PrateekItemForm;
|
|
24385
|
-
export declare type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
|
|
24386
24524
|
export declare type Prediction = io.flow.internal.v0.models.Prediction;
|
|
24387
24525
|
export declare type PreferredBillingSchedule = io.flow.internal.v0.enums.PreferredBillingSchedule;
|
|
24388
24526
|
export declare type PreonboardingClassificationDecision = io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
@@ -24395,6 +24533,9 @@ export declare type PreonboardingClassificationType = io.flow.internal.v0.enums.
|
|
|
24395
24533
|
export declare type PreonboardingMerchant = io.flow.internal.v0.models.PreonboardingMerchant;
|
|
24396
24534
|
export declare type PreonboardingRequestStatus = io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
24397
24535
|
export declare type PreonboardingSellabilityResult = io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
24536
|
+
export declare type PreonboardingSellabilityResultDeleted = io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted;
|
|
24537
|
+
export declare type PreonboardingSellabilityResultInserted = io.flow.internal.v0.models.PreonboardingSellabilityResultInserted;
|
|
24538
|
+
export declare type PreonboardingSellabilityResultUpdated = io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated;
|
|
24398
24539
|
export declare type PriceInclusivity = io.flow.internal.v0.models.PriceInclusivity;
|
|
24399
24540
|
export declare type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
24400
24541
|
export declare type PrioritizedCenterReference = io.flow.internal.v0.models.PrioritizedCenterReference;
|
|
@@ -24438,7 +24579,11 @@ export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductRev
|
|
|
24438
24579
|
export declare type ProductSellabilityInternal = io.flow.internal.v0.models.ProductSellabilityInternal;
|
|
24439
24580
|
export declare type ProductSellabilityInternalForm = io.flow.internal.v0.models.ProductSellabilityInternalForm;
|
|
24440
24581
|
export declare type ProductSellabilityInternalResult = io.flow.internal.v0.models.ProductSellabilityInternalResult;
|
|
24582
|
+
export declare type ProductSellabilityInternalRuleMatch = io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch;
|
|
24441
24583
|
export declare type ProductSellabilityResult = io.flow.internal.v0.models.ProductSellabilityResult;
|
|
24584
|
+
export declare type ProductSellabilityResultDeleted = io.flow.internal.v0.models.ProductSellabilityResultDeleted;
|
|
24585
|
+
export declare type ProductSellabilityResultInserted = io.flow.internal.v0.models.ProductSellabilityResultInserted;
|
|
24586
|
+
export declare type ProductSellabilityResultUpdated = io.flow.internal.v0.models.ProductSellabilityResultUpdated;
|
|
24442
24587
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
24443
24588
|
export declare type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
24444
24589
|
export declare type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
@@ -24649,11 +24794,6 @@ export declare type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordT
|
|
|
24649
24794
|
export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
24650
24795
|
export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
24651
24796
|
export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
24652
|
-
export declare type RohanItem = io.flow.internal.v0.models.RohanItem;
|
|
24653
|
-
export declare type RohanItemDeleted = io.flow.internal.v0.models.RohanItemDeleted;
|
|
24654
|
-
export declare type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
|
|
24655
|
-
export declare type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
|
|
24656
|
-
export declare type RohanItemUpserted = io.flow.internal.v0.models.RohanItemUpserted;
|
|
24657
24797
|
export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
24658
24798
|
export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
24659
24799
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
@@ -24661,11 +24801,6 @@ export declare type RoutingProcessor = io.flow.internal.v0.models.RoutingProcess
|
|
|
24661
24801
|
export declare type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
|
|
24662
24802
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
24663
24803
|
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
24664
|
-
export declare type SarveshItem = io.flow.internal.v0.models.SarveshItem;
|
|
24665
|
-
export declare type SarveshItemDeleted = io.flow.internal.v0.models.SarveshItemDeleted;
|
|
24666
|
-
export declare type SarveshItemForm = io.flow.internal.v0.models.SarveshItemForm;
|
|
24667
|
-
export declare type SarveshItemType = io.flow.internal.v0.enums.SarveshItemType;
|
|
24668
|
-
export declare type SarveshItemUpserted = io.flow.internal.v0.models.SarveshItemUpserted;
|
|
24669
24804
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
24670
24805
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
24671
24806
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -24681,20 +24816,32 @@ export declare type SearchProviderExport = io.flow.internal.v0.models.SearchProv
|
|
|
24681
24816
|
export declare type SearchTrackingSummary = io.flow.internal.v0.models.SearchTrackingSummary;
|
|
24682
24817
|
export declare type SellabilityCheckResult = io.flow.internal.v0.models.SellabilityCheckResult;
|
|
24683
24818
|
export declare type SellabilityCheckStatus = io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
24819
|
+
export declare type SellabilityInternalMatchType = io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
24684
24820
|
export declare type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
24685
24821
|
export declare type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
24686
24822
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
24687
24823
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
24688
24824
|
export declare type ShipmentCostSummary = io.flow.internal.v0.models.ShipmentCostSummary;
|
|
24825
|
+
export declare type ShippingCostDeleted = io.flow.internal.v0.models.ShippingCostDeleted;
|
|
24826
|
+
export declare type ShippingCostSummary = io.flow.internal.v0.models.ShippingCostSummary;
|
|
24827
|
+
export declare type ShippingCostUpserted = io.flow.internal.v0.models.ShippingCostUpserted;
|
|
24689
24828
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
24690
24829
|
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
24691
24830
|
export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
|
|
24692
24831
|
export declare type ShippingRateEstimateAvailableInternal = io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
|
|
24693
24832
|
export declare type ShippingRateEstimateInternal = io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
24694
24833
|
export declare type ShippingRateEstimateRequestInternal = io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
|
|
24834
|
+
export declare type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
|
|
24835
|
+
export declare type ShopifyCallbackError = io.flow.internal.v0.models.ShopifyCallbackError;
|
|
24836
|
+
export declare type ShopifyCallbackErrorCode = io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
|
|
24837
|
+
export declare type ShopifyCallbackErrorItem = io.flow.internal.v0.models.ShopifyCallbackErrorItem;
|
|
24695
24838
|
export declare type ShopifyCatalogPublication = io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
24696
24839
|
export declare type ShopifyChannelOrganizationToken = io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
24697
24840
|
export declare type ShopifyChannelOrganizationTokens = io.flow.internal.v0.models.ShopifyChannelOrganizationTokens;
|
|
24841
|
+
export declare type ShopifyChargeCode = io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
24842
|
+
export declare type ShopifyContactDetails = io.flow.internal.v0.models.ShopifyContactDetails;
|
|
24843
|
+
export declare type ShopifyDeliveryMethodType = io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
24844
|
+
export declare type ShopifyDimensionUnit = io.flow.internal.v0.enums.ShopifyDimensionUnit;
|
|
24698
24845
|
export declare type ShopifyDispute = io.flow.internal.v0.models.ShopifyDispute;
|
|
24699
24846
|
export declare type ShopifyDisputeDeleted = io.flow.internal.v0.models.ShopifyDisputeDeleted;
|
|
24700
24847
|
export declare type ShopifyDisputeUpserted = io.flow.internal.v0.models.ShopifyDisputeUpserted;
|
|
@@ -24702,6 +24849,7 @@ export declare type ShopifyHs10Code = io.flow.internal.v0.models.ShopifyHs10Code
|
|
|
24702
24849
|
export declare type ShopifyHs10Codes = io.flow.internal.v0.models.ShopifyHs10Codes;
|
|
24703
24850
|
export declare type ShopifyHs10CodesDeleted = io.flow.internal.v0.models.ShopifyHs10CodesDeleted;
|
|
24704
24851
|
export declare type ShopifyHs10CodesUpserted = io.flow.internal.v0.models.ShopifyHs10CodesUpserted;
|
|
24852
|
+
export declare type ShopifyIncoterm = io.flow.internal.v0.enums.ShopifyIncoterm;
|
|
24705
24853
|
export declare type ShopifyIncotermConfiguration = io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
|
|
24706
24854
|
export declare type ShopifyIncotermIncludes = io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
24707
24855
|
export declare type ShopifyIncotermSummaryErrorData = io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
@@ -24748,10 +24896,12 @@ export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.Shopif
|
|
|
24748
24896
|
export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
24749
24897
|
export declare type ShopifyMarketsWebhookRegistrationDeleted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
24750
24898
|
export declare type ShopifyMarketsWebhookRegistrationUpserted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
24899
|
+
export declare type ShopifyMeasurements = io.flow.internal.v0.models.ShopifyMeasurements;
|
|
24751
24900
|
export declare type ShopifyMerchantPlan = io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
24752
24901
|
export declare type ShopifyMerchantPlanDeleted = io.flow.internal.v0.models.ShopifyMerchantPlanDeleted;
|
|
24753
24902
|
export declare type ShopifyMerchantPlanUpserted = io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
|
|
24754
24903
|
export declare type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
24904
|
+
export declare type ShopifyMoney = io.flow.internal.v0.models.ShopifyMoney;
|
|
24755
24905
|
export declare type ShopifyMonitoringCarrierService = io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
24756
24906
|
export declare type ShopifyMonitoringFulfillmentExternal = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal;
|
|
24757
24907
|
export declare type ShopifyMonitoringFulfillmentMissingDetails = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
@@ -24775,6 +24925,7 @@ export declare type ShopifyOrderRiskAssessmentUpserted = io.flow.internal.v0.mod
|
|
|
24775
24925
|
export declare type ShopifyOrderTransaction = io.flow.internal.v0.models.ShopifyOrderTransaction;
|
|
24776
24926
|
export declare type ShopifyOrderTransactionDeleted = io.flow.internal.v0.models.ShopifyOrderTransactionDeleted;
|
|
24777
24927
|
export declare type ShopifyOrderTransactionUpserted = io.flow.internal.v0.models.ShopifyOrderTransactionUpserted;
|
|
24928
|
+
export declare type ShopifyPackageType = io.flow.internal.v0.enums.ShopifyPackageType;
|
|
24778
24929
|
export declare type ShopifyPartnerWebhook = io.flow.internal.v0.models.ShopifyPartnerWebhook;
|
|
24779
24930
|
export declare type ShopifyPartnerWebhookRaw = io.flow.internal.v0.models.ShopifyPartnerWebhookRaw;
|
|
24780
24931
|
export declare type ShopifyPlanType = io.flow.internal.v0.enums.ShopifyPlanType;
|
|
@@ -24798,14 +24949,34 @@ export declare type ShopifyProductUpdateDeleted = io.flow.internal.v0.models.Sho
|
|
|
24798
24949
|
export declare type ShopifyProductUpdateUpserted = io.flow.internal.v0.models.ShopifyProductUpdateUpserted;
|
|
24799
24950
|
export declare type ShopifyProductUpdateWebhookEvent = io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
24800
24951
|
export declare type ShopifyProductWrapper = io.flow.internal.v0.models.ShopifyProductWrapper;
|
|
24952
|
+
export declare type ShopifyRateCustomsDetail = io.flow.internal.v0.models.ShopifyRateCustomsDetail;
|
|
24953
|
+
export declare type ShopifyRatePickupPoint = io.flow.internal.v0.models.ShopifyRatePickupPoint;
|
|
24801
24954
|
export declare type ShopifyReportFileDeleted = io.flow.internal.v0.models.ShopifyReportFileDeleted;
|
|
24802
24955
|
export declare type ShopifyReportFileUpserted = io.flow.internal.v0.models.ShopifyReportFileUpserted;
|
|
24803
24956
|
export declare type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
|
|
24957
|
+
export declare type ShopifyShipmentOptionCode = io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
24958
|
+
export declare type ShopifyShipmentRateAvailable = io.flow.internal.v0.models.ShopifyShipmentRateAvailable;
|
|
24959
|
+
export declare type ShopifyShipmentRateCharge = io.flow.internal.v0.models.ShopifyShipmentRateCharge;
|
|
24960
|
+
export declare type ShopifyShipmentRateOption = io.flow.internal.v0.models.ShopifyShipmentRateOption;
|
|
24961
|
+
export declare type ShopifyShipmentRatePackage = io.flow.internal.v0.models.ShopifyShipmentRatePackage;
|
|
24962
|
+
export declare type ShopifyShipmentRateReason = io.flow.internal.v0.models.ShopifyShipmentRateReason;
|
|
24963
|
+
export declare type ShopifyShipmentRateRequest = io.flow.internal.v0.models.ShopifyShipmentRateRequest;
|
|
24964
|
+
export declare type ShopifyShipmentRateResponse = io.flow.internal.v0.models.ShopifyShipmentRateResponse;
|
|
24965
|
+
export declare type ShopifyShipmentRateShipment = io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
24966
|
+
export declare type ShopifyShipmentRateShipper = io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
24967
|
+
export declare type ShopifyShipmentRateTotalCharges = io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
24968
|
+
export declare type ShopifyShipmentRateUnavailable = io.flow.internal.v0.models.ShopifyShipmentRateUnavailable;
|
|
24969
|
+
export declare type ShopifyShippingLocation = io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
24804
24970
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
24805
24971
|
export declare type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
|
|
24806
24972
|
export declare type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
|
|
24807
24973
|
export declare type ShopifyTaxonomyAlignmentConfig = io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig;
|
|
24808
24974
|
export declare type ShopifyTaxonomyAlignmentConfigForm = io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm;
|
|
24975
|
+
export declare type ShopifyTestOrder = io.flow.internal.v0.models.ShopifyTestOrder;
|
|
24976
|
+
export declare type ShopifyTestOrderDeleted = io.flow.internal.v0.models.ShopifyTestOrderDeleted;
|
|
24977
|
+
export declare type ShopifyTestOrderUpserted = io.flow.internal.v0.models.ShopifyTestOrderUpserted;
|
|
24978
|
+
export declare type ShopifyUnavailableRateReasonCode = io.flow.internal.v0.enums.ShopifyUnavailableRateReasonCode;
|
|
24979
|
+
export declare type ShopifyWeightUnit = io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
24809
24980
|
export declare type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
|
|
24810
24981
|
export declare type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
24811
24982
|
export declare type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|