@flowio/types 11.24.132 → 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 +408 -318
- package/dist/api.d.ts +211 -26
- package/package.json +2 -2
- package/src/api-internal.ts +635 -390
- package/src/api.ts +265 -24
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;
|
|
@@ -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';
|
|
@@ -5116,6 +5120,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5116
5120
|
}
|
|
5117
5121
|
interface ShopifyTestOrder {
|
|
5118
5122
|
readonly id: string;
|
|
5123
|
+
readonly submitted_at: string;
|
|
5119
5124
|
}
|
|
5120
5125
|
interface ThirdPartyLogisticsPartner {
|
|
5121
5126
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
@@ -5155,6 +5160,7 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5155
5160
|
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
5156
5161
|
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5157
5162
|
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5163
|
+
readonly voids_b2b_invoice?: boolean;
|
|
5158
5164
|
}
|
|
5159
5165
|
interface B2BInvoice {
|
|
5160
5166
|
readonly id: string;
|
|
@@ -7378,7 +7384,7 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
7378
7384
|
declare namespace io.flow.order.price.v0.enums {
|
|
7379
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';
|
|
7380
7386
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
7381
|
-
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
7387
|
+
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
7382
7388
|
}
|
|
7383
7389
|
declare namespace io.flow.order.price.v0.models {
|
|
7384
7390
|
interface OrderPriceDetail {
|
|
@@ -7751,7 +7757,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7751
7757
|
}
|
|
7752
7758
|
interface DiscountForm {
|
|
7753
7759
|
readonly offer: io.flow.common.v0.unions.DiscountOffer;
|
|
7754
|
-
readonly target
|
|
7760
|
+
readonly target: io.flow.common.v0.enums.DiscountTarget;
|
|
7755
7761
|
readonly label?: string;
|
|
7756
7762
|
}
|
|
7757
7763
|
interface DiscountOfferFixed {
|
|
@@ -7826,6 +7832,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7826
7832
|
interface LineItemForm {
|
|
7827
7833
|
readonly number: string;
|
|
7828
7834
|
readonly quantity: number;
|
|
7835
|
+
readonly line_item_identifier?: string;
|
|
7829
7836
|
readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
|
|
7830
7837
|
readonly price?: io.flow.common.v0.models.Money;
|
|
7831
7838
|
readonly attributes?: Record<string, string>;
|
|
@@ -7920,7 +7927,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7920
7927
|
readonly parent?: io.flow.common.v0.models.OrganizationReference;
|
|
7921
7928
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
7922
7929
|
readonly created_at?: string;
|
|
7923
|
-
readonly status
|
|
7930
|
+
readonly status: io.flow.common.v0.enums.OrganizationStatus;
|
|
7924
7931
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
7925
7932
|
}
|
|
7926
7933
|
interface OrganizationDefaults {
|
|
@@ -9473,6 +9480,11 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9473
9480
|
readonly id: string;
|
|
9474
9481
|
readonly name: string;
|
|
9475
9482
|
}
|
|
9483
|
+
interface RatecardData {
|
|
9484
|
+
readonly dhlParcelDistributionCenter?: string;
|
|
9485
|
+
readonly glbeRatecardMetadataLaneIdentifier?: string;
|
|
9486
|
+
readonly pickupCenter?: string;
|
|
9487
|
+
}
|
|
9476
9488
|
interface RatecardEstimateForm {
|
|
9477
9489
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
9478
9490
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
@@ -9558,7 +9570,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9558
9570
|
readonly glbe_shipping_method_id?: string;
|
|
9559
9571
|
readonly glbe_proposition_name?: string;
|
|
9560
9572
|
readonly channel_revenue_share_percentage?: number;
|
|
9561
|
-
readonly data?:
|
|
9573
|
+
readonly data?: io.flow.ratecard.v0.models.RatecardData;
|
|
9562
9574
|
}
|
|
9563
9575
|
interface RatecardLane {
|
|
9564
9576
|
readonly id: string;
|
|
@@ -10462,7 +10474,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10462
10474
|
readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
10463
10475
|
readonly other_trade_sector?: string;
|
|
10464
10476
|
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
10465
|
-
readonly center_address?: io.flow.common.v0.models.Address;
|
|
10466
10477
|
readonly average_order_weight?: number;
|
|
10467
10478
|
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10468
10479
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
@@ -10489,7 +10500,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10489
10500
|
readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
10490
10501
|
readonly other_trade_sector?: string;
|
|
10491
10502
|
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
10492
|
-
readonly center_address?: io.flow.common.v0.models.Address;
|
|
10493
10503
|
readonly average_order_weight?: number;
|
|
10494
10504
|
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10495
10505
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
@@ -10576,6 +10586,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10576
10586
|
readonly company?: string;
|
|
10577
10587
|
readonly email?: string;
|
|
10578
10588
|
readonly phone?: string;
|
|
10589
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
10579
10590
|
}
|
|
10580
10591
|
interface Shop {
|
|
10581
10592
|
readonly name: string;
|
|
@@ -11011,7 +11022,7 @@ declare namespace io.flow.inventory.v0.models {
|
|
|
11011
11022
|
}
|
|
11012
11023
|
interface InventoryUnlimited {
|
|
11013
11024
|
readonly discriminator: 'inventory_unlimited';
|
|
11014
|
-
readonly placeholder
|
|
11025
|
+
readonly placeholder: string;
|
|
11015
11026
|
}
|
|
11016
11027
|
interface InventoryUpdate {
|
|
11017
11028
|
readonly id: string;
|
|
@@ -11211,14 +11222,14 @@ declare namespace io.flow.item.v0.models {
|
|
|
11211
11222
|
}
|
|
11212
11223
|
}
|
|
11213
11224
|
declare namespace io.flow.billing.v0.enums {
|
|
11214
|
-
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';
|
|
11215
11226
|
type PayoutAttachmentType = 'transactions';
|
|
11216
11227
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11217
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';
|
|
11218
11229
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
11219
11230
|
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11220
|
-
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';
|
|
11221
|
-
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';
|
|
11222
11233
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
11223
11234
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11224
11235
|
}
|
|
@@ -11472,7 +11483,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11472
11483
|
readonly label_created_at: string;
|
|
11473
11484
|
readonly carrier_id: string;
|
|
11474
11485
|
readonly carrier_tracking_number: string;
|
|
11475
|
-
readonly revenue_share_percentage
|
|
11486
|
+
readonly revenue_share_percentage?: number;
|
|
11476
11487
|
readonly outbound?: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
|
|
11477
11488
|
}
|
|
11478
11489
|
interface TransactionMetadataChannel {
|
|
@@ -11505,6 +11516,17 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11505
11516
|
readonly description: string;
|
|
11506
11517
|
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
11507
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;
|
|
11508
11530
|
}
|
|
11509
11531
|
interface TransactionMetadataOriginalTransaction {
|
|
11510
11532
|
readonly id: string;
|
|
@@ -11630,7 +11652,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
11630
11652
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
11631
11653
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
11632
11654
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
11633
|
-
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;
|
|
11634
11656
|
}
|
|
11635
11657
|
declare namespace io.flow.harmonization.v0.enums {
|
|
11636
11658
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -11652,6 +11674,10 @@ declare namespace io.flow.harmonization.v0.models {
|
|
|
11652
11674
|
readonly company_name_match_result: io.flow.harmonization.v0.enums.TaxVerificationResult;
|
|
11653
11675
|
readonly company_name_match_result_reason?: string;
|
|
11654
11676
|
}
|
|
11677
|
+
interface HarmonizationTariffCode {
|
|
11678
|
+
readonly tariff_code: string;
|
|
11679
|
+
readonly destination: string;
|
|
11680
|
+
}
|
|
11655
11681
|
interface HarmonizedCategoryReference {
|
|
11656
11682
|
readonly id: string;
|
|
11657
11683
|
}
|
|
@@ -11735,6 +11761,12 @@ declare namespace io.flow.harmonization.v0.models {
|
|
|
11735
11761
|
readonly effective_duty: io.flow.price.v0.models.Duty;
|
|
11736
11762
|
readonly tax: io.flow.price.v0.models.Tax;
|
|
11737
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
|
+
}
|
|
11738
11770
|
interface TaxRegistration {
|
|
11739
11771
|
readonly id: string;
|
|
11740
11772
|
readonly key: string;
|
|
@@ -11958,7 +11990,7 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
11958
11990
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
11959
11991
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
11960
11992
|
type SellabilityRequestStatus = 'commit';
|
|
11961
|
-
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';
|
|
11962
11994
|
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
11963
11995
|
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
11964
11996
|
}
|
|
@@ -11983,6 +12015,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11983
12015
|
readonly dry_run?: boolean;
|
|
11984
12016
|
}
|
|
11985
12017
|
interface ProductSellabilityResult {
|
|
12018
|
+
readonly id: string;
|
|
11986
12019
|
readonly merchant_id?: string;
|
|
11987
12020
|
readonly product_id: string;
|
|
11988
12021
|
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
@@ -11999,11 +12032,13 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11999
12032
|
interface SellabilityNeedsActionAttributes {
|
|
12000
12033
|
readonly reason_code: string;
|
|
12001
12034
|
readonly category_metafield_handles: string[];
|
|
12035
|
+
readonly category_metafield_ids: string[];
|
|
12002
12036
|
readonly require_msds?: boolean;
|
|
12003
12037
|
}
|
|
12004
12038
|
interface SellabilityReasonWithRegions {
|
|
12005
12039
|
readonly reason: string;
|
|
12006
12040
|
readonly regions: string[];
|
|
12041
|
+
readonly review_status?: string;
|
|
12007
12042
|
}
|
|
12008
12043
|
interface SellabilityRegionResult {
|
|
12009
12044
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
@@ -12228,14 +12263,10 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12228
12263
|
}
|
|
12229
12264
|
interface BankAccountInfoKor {
|
|
12230
12265
|
readonly discriminator: 'kor';
|
|
12231
|
-
readonly name
|
|
12232
|
-
readonly address?: io.flow.common.v0.models.Address;
|
|
12233
|
-
readonly phone?: string;
|
|
12234
|
-
readonly email?: string;
|
|
12266
|
+
readonly name: string;
|
|
12235
12267
|
readonly bank_account_number: string;
|
|
12236
|
-
readonly bank_routing_number
|
|
12237
|
-
readonly bank_name
|
|
12238
|
-
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
12268
|
+
readonly bank_routing_number: string;
|
|
12269
|
+
readonly bank_name: string;
|
|
12239
12270
|
}
|
|
12240
12271
|
interface BankAccountInfoUsa {
|
|
12241
12272
|
readonly discriminator: 'usa';
|
|
@@ -12247,19 +12278,19 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
12247
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;
|
|
12248
12279
|
}
|
|
12249
12280
|
declare namespace io.flow.internal.v0.enums {
|
|
12281
|
+
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
|
|
12250
12282
|
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
12251
12283
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
12252
12284
|
type AccountType = 'channel' | 'organization';
|
|
12253
12285
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12254
12286
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12255
|
-
type AldoItemType = 'physical' | 'digital';
|
|
12256
12287
|
type AmruthaItemType = 'physical' | 'digital';
|
|
12257
|
-
type AnirbanItemType = 'physical' | 'digital';
|
|
12258
|
-
type AnshItemType = 'physical' | 'digital';
|
|
12259
12288
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12260
12289
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
12261
12290
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
12262
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';
|
|
12263
12294
|
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
|
|
12264
12295
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
12265
12296
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
@@ -12269,7 +12300,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12269
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';
|
|
12270
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';
|
|
12271
12302
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
12272
|
-
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';
|
|
12273
12305
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
12274
12306
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
12275
12307
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -12298,11 +12330,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12298
12330
|
type CheckoutPromptBehavior = 'always' | 'incomplete';
|
|
12299
12331
|
type CheckoutShippingMethodPromptBehavior = 'always' | 'multiple';
|
|
12300
12332
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
12333
|
+
type ChenglinItemType = 'physical' | 'digital';
|
|
12301
12334
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
12302
12335
|
type ClassificationErrorCode = 'generic_error';
|
|
12303
|
-
type ClassificationFailureReason = 'low_confidence' | 'timeout';
|
|
12336
|
+
type ClassificationFailureReason = 'low_confidence' | 'timeout' | 'missing_hs6_code' | 'invalid_price';
|
|
12304
12337
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
12305
12338
|
type ClassificationScope = 'Item' | 'Product';
|
|
12339
|
+
type ClassificationSource = 'sellability';
|
|
12306
12340
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
12307
12341
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
12308
12342
|
type CommercialInvoiceVersion = 'v2_2_1';
|
|
@@ -12338,7 +12372,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12338
12372
|
type EmptyAttribute = 'irrelevant';
|
|
12339
12373
|
type ErpFileType = 'vendor';
|
|
12340
12374
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
12341
|
-
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_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' | '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';
|
|
12342
12376
|
type ExperienceImportType = 'experience_with_settings';
|
|
12343
12377
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12344
12378
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12357,7 +12391,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12357
12391
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12358
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';
|
|
12359
12393
|
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
12360
|
-
type HoseinItemType = 'physical' | 'digital';
|
|
12361
12394
|
type Hs6CodeSource = 'sellability' | 'classification' | 'human';
|
|
12362
12395
|
type HttpMethod = 'get' | 'post';
|
|
12363
12396
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
@@ -12374,22 +12407,21 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12374
12407
|
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
12375
12408
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
12376
12409
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system' | 'carrier';
|
|
12377
|
-
type LabelRequestResultOrganizationType = 'all' | '
|
|
12410
|
+
type LabelRequestResultOrganizationType = 'all' | 'cafe24_production' | 'shopify_production' | 'sandbox';
|
|
12378
12411
|
type LabelRequestResultState = 'success' | 'failure';
|
|
12379
12412
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12380
|
-
type LedgerReportType = 'periodic_mor_jurisdiction_report';
|
|
12413
|
+
type LedgerReportType = 'periodic_mor_jurisdiction_report' | 'periodic_mor_jurisdiction_sandbox_report';
|
|
12381
12414
|
type LedgerReportUrlType = 'sharepoint' | 's3';
|
|
12382
12415
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
12383
12416
|
type LogisticsCapability = 'logistics_address_correction';
|
|
12384
12417
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
12385
12418
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
12386
|
-
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';
|
|
12387
12420
|
type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
12388
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';
|
|
12389
12422
|
type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
|
|
12390
12423
|
type MixedBagWeight = '0' | '1' | '2';
|
|
12391
12424
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
12392
|
-
type NiallItemType = 'physical' | 'digital';
|
|
12393
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';
|
|
12394
12426
|
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
12395
12427
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
@@ -12410,6 +12442,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12410
12442
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
12411
12443
|
type OrganizationMetricType = 'organization_restriction_status';
|
|
12412
12444
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
12445
|
+
type OrganizationPromotionStatus = 'in_progress' | 'completed' | 'failed';
|
|
12413
12446
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
12414
12447
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason' | 'additional_rejection_info';
|
|
12415
12448
|
type OrganizationRestrictionReviewType = 'all_pending' | 'pending_verification';
|
|
@@ -12423,7 +12456,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12423
12456
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
12424
12457
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
12425
12458
|
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
12426
|
-
type PrateekItemType = 'physical' | 'digital';
|
|
12427
12459
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12428
12460
|
type PreonboardingClassificationDecision = 'Accept' | 'Reject';
|
|
12429
12461
|
type PreonboardingClassificationPlatform = 'FlowOnboarding';
|
|
@@ -12453,7 +12485,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12453
12485
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
12454
12486
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
12455
12487
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
12456
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa';
|
|
12488
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'cafe24' | 'cafe24-sandbox';
|
|
12457
12489
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
12458
12490
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
12459
12491
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -12463,10 +12495,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12463
12495
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
12464
12496
|
type RiskCheck = 'three_d_secure';
|
|
12465
12497
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
12466
|
-
type RohanItemType = 'physical' | 'digital';
|
|
12467
|
-
type SarveshItemType = 'physical' | 'digital';
|
|
12468
12498
|
type SellabilityCheckStatus = 'more_restrictive' | 'less_restrictive' | 'similar' | 'regions_differ' | 'rules_differ';
|
|
12499
|
+
type SellabilityInternalMatchType = 'positive_keyword' | 'auto_restricted';
|
|
12469
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';
|
|
12470
12506
|
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
12471
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';
|
|
12472
12508
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -12474,8 +12510,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12474
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';
|
|
12475
12511
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
12476
12512
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
12513
|
+
type ShopifyPackageType = 'BOX' | 'ENVELOPE' | 'SOFT_PACK' | 'TUBE' | 'CARRIER_PACKAGING';
|
|
12477
12514
|
type ShopifyPlanType = 'standard' | 'shopify_plus';
|
|
12478
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';
|
|
12479
12519
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
12480
12520
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
12481
12521
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -12626,11 +12666,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12626
12666
|
readonly transfer_method?: io.flow.internal.v0.enums.TransferMethod;
|
|
12627
12667
|
readonly b2b_tax_remittance_days?: number;
|
|
12628
12668
|
readonly merchant_of_record_fee?: number;
|
|
12669
|
+
readonly merchant_of_record_fee_create_on_order?: boolean;
|
|
12629
12670
|
readonly duty_guarantee_fee?: number;
|
|
12630
12671
|
readonly transfer_fee?: number;
|
|
12631
12672
|
readonly negative_balance_fee?: number;
|
|
12632
12673
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
12633
12674
|
readonly label_fees?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
12675
|
+
readonly revenue_share_rate?: number;
|
|
12634
12676
|
readonly charge_label_cost_directly: boolean;
|
|
12635
12677
|
readonly transaction_posting_method: io.flow.internal.v0.enums.TransactionPostingMethod;
|
|
12636
12678
|
readonly statement_transfer_transaction_location: io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
@@ -12641,6 +12683,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12641
12683
|
readonly enable_fee_reversals: boolean;
|
|
12642
12684
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
12643
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;
|
|
12644
12690
|
}
|
|
12645
12691
|
interface AccountSettingsDeleted {
|
|
12646
12692
|
readonly discriminator: 'account_settings_deleted';
|
|
@@ -13104,33 +13150,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13104
13150
|
interface AftershipWebhook {
|
|
13105
13151
|
readonly placeholder?: boolean;
|
|
13106
13152
|
}
|
|
13107
|
-
interface AldoItem {
|
|
13108
|
-
readonly id: string;
|
|
13109
|
-
readonly number: string;
|
|
13110
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
13111
|
-
readonly description?: string;
|
|
13112
|
-
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
13113
|
-
readonly added_on: string;
|
|
13114
|
-
}
|
|
13115
|
-
interface AldoItemDeleted {
|
|
13116
|
-
readonly discriminator: 'aldo_item_deleted';
|
|
13117
|
-
readonly event_id: string;
|
|
13118
|
-
readonly timestamp: string;
|
|
13119
|
-
readonly id: string;
|
|
13120
|
-
}
|
|
13121
|
-
interface AldoItemForm {
|
|
13122
|
-
readonly number: string;
|
|
13123
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
13124
|
-
readonly description?: string;
|
|
13125
|
-
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
13126
|
-
readonly added_on: string;
|
|
13127
|
-
}
|
|
13128
|
-
interface AldoItemUpserted {
|
|
13129
|
-
readonly discriminator: 'aldo_item_upserted';
|
|
13130
|
-
readonly event_id: string;
|
|
13131
|
-
readonly timestamp: string;
|
|
13132
|
-
readonly item: io.flow.internal.v0.models.AldoItem;
|
|
13133
|
-
}
|
|
13134
13153
|
interface AllItemsExport {
|
|
13135
13154
|
readonly discriminator: 'all_items_export';
|
|
13136
13155
|
readonly event_id: string;
|
|
@@ -13164,60 +13183,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13164
13183
|
readonly type: io.flow.internal.v0.enums.AmruthaItemType;
|
|
13165
13184
|
readonly added_on: string;
|
|
13166
13185
|
}
|
|
13167
|
-
interface AnirbanItem {
|
|
13168
|
-
readonly id: string;
|
|
13169
|
-
readonly number: string;
|
|
13170
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
13171
|
-
readonly description?: string;
|
|
13172
|
-
readonly type: io.flow.internal.v0.enums.AnirbanItemType;
|
|
13173
|
-
readonly added_on: string;
|
|
13174
|
-
}
|
|
13175
|
-
interface AnirbanItemDeleted {
|
|
13176
|
-
readonly discriminator: 'anirban_item_deleted';
|
|
13177
|
-
readonly event_id: string;
|
|
13178
|
-
readonly timestamp: string;
|
|
13179
|
-
readonly id: string;
|
|
13180
|
-
}
|
|
13181
|
-
interface AnirbanItemForm {
|
|
13182
|
-
readonly number: string;
|
|
13183
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
13184
|
-
readonly description?: string;
|
|
13185
|
-
readonly type: io.flow.internal.v0.enums.AnirbanItemType;
|
|
13186
|
-
readonly added_on: string;
|
|
13187
|
-
}
|
|
13188
|
-
interface AnirbanItemUpserted {
|
|
13189
|
-
readonly discriminator: 'anirban_item_upserted';
|
|
13190
|
-
readonly event_id: string;
|
|
13191
|
-
readonly timestamp: string;
|
|
13192
|
-
readonly item: io.flow.internal.v0.models.AnirbanItem;
|
|
13193
|
-
}
|
|
13194
|
-
interface AnshItem {
|
|
13195
|
-
readonly id: string;
|
|
13196
|
-
readonly number: string;
|
|
13197
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
13198
|
-
readonly description?: string;
|
|
13199
|
-
readonly type: io.flow.internal.v0.enums.AnshItemType;
|
|
13200
|
-
readonly added_on: string;
|
|
13201
|
-
}
|
|
13202
|
-
interface AnshItemDeleted {
|
|
13203
|
-
readonly discriminator: 'ansh_item_deleted';
|
|
13204
|
-
readonly event_id: string;
|
|
13205
|
-
readonly timestamp: string;
|
|
13206
|
-
readonly id: string;
|
|
13207
|
-
}
|
|
13208
|
-
interface AnshItemForm {
|
|
13209
|
-
readonly number: string;
|
|
13210
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
13211
|
-
readonly description?: string;
|
|
13212
|
-
readonly type: io.flow.internal.v0.enums.AnshItemType;
|
|
13213
|
-
readonly added_on: string;
|
|
13214
|
-
}
|
|
13215
|
-
interface AnshItemUpserted {
|
|
13216
|
-
readonly discriminator: 'ansh_item_upserted';
|
|
13217
|
-
readonly event_id: string;
|
|
13218
|
-
readonly timestamp: string;
|
|
13219
|
-
readonly item: io.flow.internal.v0.models.AnshItem;
|
|
13220
|
-
}
|
|
13221
13186
|
interface ApplePayAuthorizationPayload {
|
|
13222
13187
|
readonly discriminator: 'apple_pay_authorization_payload';
|
|
13223
13188
|
readonly apple_pay_token: string;
|
|
@@ -13305,6 +13270,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13305
13270
|
readonly keywords?: string[];
|
|
13306
13271
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
13307
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
|
+
}
|
|
13308
13281
|
interface B2BTaxLedger {
|
|
13309
13282
|
readonly id: string;
|
|
13310
13283
|
readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
|
|
@@ -13322,6 +13295,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13322
13295
|
readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
13323
13296
|
readonly document_date: string;
|
|
13324
13297
|
readonly ledger_report_id?: string;
|
|
13298
|
+
readonly voids_invoice_number?: string;
|
|
13299
|
+
readonly document_number?: string;
|
|
13325
13300
|
}
|
|
13326
13301
|
interface B2BTaxLedgerForm {
|
|
13327
13302
|
readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
|
|
@@ -13339,6 +13314,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13339
13314
|
readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
13340
13315
|
readonly document_date: string;
|
|
13341
13316
|
readonly ledger_report_id?: string;
|
|
13317
|
+
readonly voids_invoice_number?: string;
|
|
13318
|
+
readonly document_number?: string;
|
|
13342
13319
|
}
|
|
13343
13320
|
interface BankAccount {
|
|
13344
13321
|
readonly status: io.flow.internal.v0.enums.BankAccountStatus;
|
|
@@ -13608,6 +13585,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13608
13585
|
readonly tax_refund: io.flow.common.v0.models.Price;
|
|
13609
13586
|
readonly b2b_tax: io.flow.common.v0.models.Price;
|
|
13610
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;
|
|
13611
13591
|
}
|
|
13612
13592
|
interface BillingStatementUpserted {
|
|
13613
13593
|
readonly discriminator: 'billing_statement_upserted';
|
|
@@ -13665,6 +13645,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13665
13645
|
readonly public_key: string;
|
|
13666
13646
|
readonly secret_key: string;
|
|
13667
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
|
+
}
|
|
13668
13663
|
interface BooleanFeatureDefaultValue {
|
|
13669
13664
|
readonly discriminator: 'boolean';
|
|
13670
13665
|
readonly value: boolean;
|
|
@@ -14541,6 +14536,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14541
14536
|
readonly url: string;
|
|
14542
14537
|
readonly type: io.flow.internal.v0.enums.CheckoutUrlType;
|
|
14543
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
|
+
}
|
|
14544
14566
|
interface Cipher {
|
|
14545
14567
|
readonly id: string;
|
|
14546
14568
|
readonly attributes: Record<string, string>;
|
|
@@ -15039,7 +15061,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15039
15061
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
15040
15062
|
readonly transactions: io.flow.internal.v0.models.DebugOrderTransactionDetails[];
|
|
15041
15063
|
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
15042
|
-
readonly banking
|
|
15064
|
+
readonly banking?: io.flow.internal.v0.models.DebugBankingDetails;
|
|
15043
15065
|
}
|
|
15044
15066
|
interface DebugOrderTransactionDetails {
|
|
15045
15067
|
readonly transaction: io.flow.billing.v0.models.Transaction;
|
|
@@ -16613,6 +16635,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16613
16635
|
readonly organization_ids: string[];
|
|
16614
16636
|
readonly num_events: number;
|
|
16615
16637
|
}
|
|
16638
|
+
interface GenerateLoadRate {
|
|
16639
|
+
readonly organization_ids: string[];
|
|
16640
|
+
readonly events_per_second: number;
|
|
16641
|
+
readonly duration_seconds: number;
|
|
16642
|
+
}
|
|
16616
16643
|
interface GenerateLoadSingleOrg {
|
|
16617
16644
|
readonly discriminator: 'generate_load_single_org';
|
|
16618
16645
|
readonly organization_id: string;
|
|
@@ -16758,39 +16785,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16758
16785
|
readonly organization: string;
|
|
16759
16786
|
readonly export_id: string;
|
|
16760
16787
|
}
|
|
16761
|
-
interface HoseinItem {
|
|
16762
|
-
readonly id: string;
|
|
16763
|
-
readonly number: string;
|
|
16764
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
16765
|
-
readonly description?: string;
|
|
16766
|
-
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
16767
|
-
readonly added_on: string;
|
|
16768
|
-
}
|
|
16769
|
-
interface HoseinItemDeleted {
|
|
16770
|
-
readonly discriminator: 'hosein_item_deleted';
|
|
16771
|
-
readonly event_id: string;
|
|
16772
|
-
readonly timestamp: string;
|
|
16773
|
-
readonly id: string;
|
|
16774
|
-
}
|
|
16775
|
-
interface HoseinItemForm {
|
|
16776
|
-
readonly number: string;
|
|
16777
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
16778
|
-
readonly description?: string;
|
|
16779
|
-
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
16780
|
-
readonly added_on: string;
|
|
16781
|
-
}
|
|
16782
|
-
interface HoseinItemUpserted {
|
|
16783
|
-
readonly discriminator: 'hosein_item_upserted';
|
|
16784
|
-
readonly event_id: string;
|
|
16785
|
-
readonly timestamp: string;
|
|
16786
|
-
readonly item: io.flow.internal.v0.models.HoseinItem;
|
|
16787
|
-
}
|
|
16788
16788
|
interface Hs6 {
|
|
16789
16789
|
readonly code: string;
|
|
16790
16790
|
readonly description: string;
|
|
16791
16791
|
}
|
|
16792
16792
|
interface Hs6Metadata {
|
|
16793
|
-
readonly description
|
|
16793
|
+
readonly description?: string;
|
|
16794
|
+
readonly classification_source?: io.flow.internal.v0.enums.ClassificationSource;
|
|
16794
16795
|
}
|
|
16795
16796
|
interface ImportCompleted {
|
|
16796
16797
|
readonly discriminator: 'import_completed';
|
|
@@ -17241,10 +17242,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17241
17242
|
interface ItemValuesForm {
|
|
17242
17243
|
readonly values: string[];
|
|
17243
17244
|
}
|
|
17244
|
-
interface JeanDemoItem {
|
|
17245
|
-
readonly id: string;
|
|
17246
|
-
readonly name: string;
|
|
17247
|
-
}
|
|
17248
17245
|
interface Journal {
|
|
17249
17246
|
readonly name: string;
|
|
17250
17247
|
readonly queued: number;
|
|
@@ -17346,30 +17343,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17346
17343
|
readonly country: string;
|
|
17347
17344
|
readonly postal?: string;
|
|
17348
17345
|
}
|
|
17349
|
-
interface LabelGenerationSettings {
|
|
17350
|
-
readonly id: string;
|
|
17351
|
-
readonly auto_generate_query?: string;
|
|
17352
|
-
readonly commercial_invoice_only_query?: string;
|
|
17353
|
-
}
|
|
17354
|
-
interface LabelGenerationSettingsDeleted {
|
|
17355
|
-
readonly discriminator: 'label_generation_settings_deleted';
|
|
17356
|
-
readonly event_id: string;
|
|
17357
|
-
readonly timestamp: string;
|
|
17358
|
-
readonly organization: string;
|
|
17359
|
-
readonly id: string;
|
|
17360
|
-
}
|
|
17361
|
-
interface LabelGenerationSettingsForm {
|
|
17362
|
-
readonly item_identifier?: string;
|
|
17363
|
-
readonly auto_generate_query?: string;
|
|
17364
|
-
readonly commercial_invoice_only_query?: string;
|
|
17365
|
-
}
|
|
17366
|
-
interface LabelGenerationSettingsUpserted {
|
|
17367
|
-
readonly discriminator: 'label_generation_settings_upserted';
|
|
17368
|
-
readonly event_id: string;
|
|
17369
|
-
readonly timestamp: string;
|
|
17370
|
-
readonly organization: string;
|
|
17371
|
-
readonly label_generation_settings: io.flow.internal.v0.models.LabelGenerationSettings;
|
|
17372
|
-
}
|
|
17373
17346
|
interface LabelInvoiceRequest {
|
|
17374
17347
|
readonly id: string;
|
|
17375
17348
|
readonly label: io.flow.internal.v0.models.TrueupLabelSummary;
|
|
@@ -17447,6 +17420,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17447
17420
|
readonly reference_id?: string;
|
|
17448
17421
|
readonly logistics_integration_provider?: string;
|
|
17449
17422
|
readonly tax_lrp_liabilities?: io.flow.internal.v0.models.Liability[];
|
|
17423
|
+
readonly channel_id?: string;
|
|
17450
17424
|
}
|
|
17451
17425
|
interface LabelSummary {
|
|
17452
17426
|
readonly id: string;
|
|
@@ -17817,6 +17791,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17817
17791
|
readonly original_transaction?: io.flow.internal.v0.models.TransactionReference;
|
|
17818
17792
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17819
17793
|
readonly attributes?: Record<string, string>;
|
|
17794
|
+
readonly recoup?: boolean;
|
|
17820
17795
|
readonly id: string;
|
|
17821
17796
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
17822
17797
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -17833,6 +17808,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17833
17808
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
17834
17809
|
readonly order?: io.flow.internal.v0.models.ManualTransactionFormOrder;
|
|
17835
17810
|
readonly original_transaction_id?: string;
|
|
17811
|
+
readonly recoup?: boolean;
|
|
17836
17812
|
readonly attributes?: Record<string, string>;
|
|
17837
17813
|
}
|
|
17838
17814
|
interface ManualTransactionFormOrder {
|
|
@@ -18043,33 +18019,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18043
18019
|
readonly amount: io.flow.common.v0.models.Price;
|
|
18044
18020
|
readonly conditions?: string;
|
|
18045
18021
|
}
|
|
18046
|
-
interface NiallItem {
|
|
18047
|
-
readonly id: string;
|
|
18048
|
-
readonly number: string;
|
|
18049
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18050
|
-
readonly description?: string;
|
|
18051
|
-
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
18052
|
-
readonly added_on: string;
|
|
18053
|
-
}
|
|
18054
|
-
interface NiallItemDeleted {
|
|
18055
|
-
readonly discriminator: 'niall_item_deleted';
|
|
18056
|
-
readonly event_id: string;
|
|
18057
|
-
readonly timestamp: string;
|
|
18058
|
-
readonly id: string;
|
|
18059
|
-
}
|
|
18060
|
-
interface NiallItemForm {
|
|
18061
|
-
readonly number: string;
|
|
18062
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18063
|
-
readonly description?: string;
|
|
18064
|
-
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
18065
|
-
readonly added_on: string;
|
|
18066
|
-
}
|
|
18067
|
-
interface NiallItemUpserted {
|
|
18068
|
-
readonly discriminator: 'niall_item_upserted';
|
|
18069
|
-
readonly event_id: string;
|
|
18070
|
-
readonly timestamp: string;
|
|
18071
|
-
readonly item: io.flow.internal.v0.models.NiallItem;
|
|
18072
|
-
}
|
|
18073
18022
|
interface NoCalculatedTaxAmount {
|
|
18074
18023
|
readonly discriminator: 'no_calculated_tax_amount';
|
|
18075
18024
|
readonly amount: number;
|
|
@@ -18142,6 +18091,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18142
18091
|
readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
18143
18092
|
readonly blocked_since?: string;
|
|
18144
18093
|
readonly onboarding_segment?: string;
|
|
18094
|
+
readonly country?: string;
|
|
18145
18095
|
}
|
|
18146
18096
|
interface OnboardingStateForm {
|
|
18147
18097
|
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
@@ -18699,6 +18649,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18699
18649
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
18700
18650
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
18701
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
|
+
}
|
|
18702
18660
|
interface OrganizationRestrictionNoteForm {
|
|
18703
18661
|
readonly note: string;
|
|
18704
18662
|
readonly note_type: io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -18864,7 +18822,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18864
18822
|
readonly label_created_at: string;
|
|
18865
18823
|
readonly carrier_id: string;
|
|
18866
18824
|
readonly carrier_tracking_number: string;
|
|
18867
|
-
readonly revenue_share_percentage
|
|
18825
|
+
readonly revenue_share_percentage?: number;
|
|
18868
18826
|
readonly outbound_transaction_id?: string;
|
|
18869
18827
|
}
|
|
18870
18828
|
interface OtherRecordMetadataChannel {
|
|
@@ -18893,6 +18851,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18893
18851
|
readonly label_transaction_id: string;
|
|
18894
18852
|
readonly label_invoice_request_id: string;
|
|
18895
18853
|
readonly carrier_charge_id: string;
|
|
18854
|
+
readonly subtype?: string;
|
|
18896
18855
|
}
|
|
18897
18856
|
interface OtherRecordOrderSummary {
|
|
18898
18857
|
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
@@ -19433,21 +19392,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19433
19392
|
readonly minimum_amount_base: number;
|
|
19434
19393
|
readonly rate: number;
|
|
19435
19394
|
}
|
|
19436
|
-
interface PrateekItem {
|
|
19437
|
-
readonly id: string;
|
|
19438
|
-
readonly number: string;
|
|
19439
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
19440
|
-
readonly description?: string;
|
|
19441
|
-
readonly type: io.flow.internal.v0.enums.PrateekItemType;
|
|
19442
|
-
readonly added_on: string;
|
|
19443
|
-
}
|
|
19444
|
-
interface PrateekItemForm {
|
|
19445
|
-
readonly number: string;
|
|
19446
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
19447
|
-
readonly description?: string;
|
|
19448
|
-
readonly type: io.flow.internal.v0.enums.PrateekItemType;
|
|
19449
|
-
readonly added_on: string;
|
|
19450
|
-
}
|
|
19451
19395
|
interface Prediction {
|
|
19452
19396
|
readonly main_material: string;
|
|
19453
19397
|
readonly gender: string;
|
|
@@ -19503,6 +19447,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19503
19447
|
readonly last_request: string;
|
|
19504
19448
|
}
|
|
19505
19449
|
interface PreonboardingSellabilityResult {
|
|
19450
|
+
readonly id?: string;
|
|
19506
19451
|
readonly merchant_id: string;
|
|
19507
19452
|
readonly product_id: string;
|
|
19508
19453
|
readonly channel: string;
|
|
@@ -19518,6 +19463,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19518
19463
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19519
19464
|
readonly fingerprint: string;
|
|
19520
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
|
+
}
|
|
19521
19485
|
interface PriceInclusivity {
|
|
19522
19486
|
readonly tax?: boolean;
|
|
19523
19487
|
readonly duty?: boolean;
|
|
@@ -19753,9 +19717,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19753
19717
|
}
|
|
19754
19718
|
interface ProductSellabilityInternalResult {
|
|
19755
19719
|
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
19756
|
-
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[];
|
|
19757
19726
|
}
|
|
19758
19727
|
interface ProductSellabilityResult {
|
|
19728
|
+
readonly id?: string;
|
|
19759
19729
|
readonly shop_id: string;
|
|
19760
19730
|
readonly product_number: string;
|
|
19761
19731
|
readonly request_id: string;
|
|
@@ -19764,6 +19734,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19764
19734
|
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
19765
19735
|
readonly rule_ids?: string[];
|
|
19766
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;
|
|
19767
19758
|
}
|
|
19768
19759
|
interface ProductTransaction {
|
|
19769
19760
|
readonly transaction_amount: number;
|
|
@@ -20233,6 +20224,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20233
20224
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
20234
20225
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20235
20226
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
20227
|
+
readonly account_currency?: io.flow.internal.v0.enums.AccountCurrencyFilter;
|
|
20236
20228
|
}
|
|
20237
20229
|
interface ReportForm {
|
|
20238
20230
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
@@ -20965,33 +20957,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20965
20957
|
readonly organization: string;
|
|
20966
20958
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
20967
20959
|
}
|
|
20968
|
-
interface RohanItem {
|
|
20969
|
-
readonly id: string;
|
|
20970
|
-
readonly number: string;
|
|
20971
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20972
|
-
readonly description?: string;
|
|
20973
|
-
readonly type: io.flow.internal.v0.enums.RohanItemType;
|
|
20974
|
-
readonly added_on: string;
|
|
20975
|
-
}
|
|
20976
|
-
interface RohanItemDeleted {
|
|
20977
|
-
readonly discriminator: 'rohan_item_deleted';
|
|
20978
|
-
readonly event_id: string;
|
|
20979
|
-
readonly timestamp: string;
|
|
20980
|
-
readonly id: string;
|
|
20981
|
-
}
|
|
20982
|
-
interface RohanItemForm {
|
|
20983
|
-
readonly number: string;
|
|
20984
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20985
|
-
readonly description?: string;
|
|
20986
|
-
readonly type: io.flow.internal.v0.enums.RohanItemType;
|
|
20987
|
-
readonly added_on: string;
|
|
20988
|
-
}
|
|
20989
|
-
interface RohanItemUpserted {
|
|
20990
|
-
readonly discriminator: 'rohan_item_upserted';
|
|
20991
|
-
readonly event_id: string;
|
|
20992
|
-
readonly timestamp: string;
|
|
20993
|
-
readonly item: io.flow.internal.v0.models.RohanItem;
|
|
20994
|
-
}
|
|
20995
20960
|
interface RoutingAccount {
|
|
20996
20961
|
readonly discriminator: 'routing_account';
|
|
20997
20962
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -21023,6 +20988,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21023
20988
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
21024
20989
|
readonly destination_country: string;
|
|
21025
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;
|
|
21026
20994
|
}
|
|
21027
20995
|
interface SandboxSetup {
|
|
21028
20996
|
readonly requested_by: string;
|
|
@@ -21030,33 +20998,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21030
20998
|
interface SandboxSetupForm {
|
|
21031
20999
|
readonly requested_by: string;
|
|
21032
21000
|
}
|
|
21033
|
-
interface SarveshItem {
|
|
21034
|
-
readonly id: string;
|
|
21035
|
-
readonly number: string;
|
|
21036
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21037
|
-
readonly description?: string;
|
|
21038
|
-
readonly type: io.flow.internal.v0.enums.SarveshItemType;
|
|
21039
|
-
readonly added_on: string;
|
|
21040
|
-
}
|
|
21041
|
-
interface SarveshItemDeleted {
|
|
21042
|
-
readonly discriminator: 'sarvesh_item_deleted';
|
|
21043
|
-
readonly event_id: string;
|
|
21044
|
-
readonly timestamp: string;
|
|
21045
|
-
readonly id: string;
|
|
21046
|
-
}
|
|
21047
|
-
interface SarveshItemForm {
|
|
21048
|
-
readonly number: string;
|
|
21049
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21050
|
-
readonly description?: string;
|
|
21051
|
-
readonly type: io.flow.internal.v0.enums.SarveshItemType;
|
|
21052
|
-
readonly added_on: string;
|
|
21053
|
-
}
|
|
21054
|
-
interface SarveshItemUpserted {
|
|
21055
|
-
readonly discriminator: 'sarvesh_item_upserted';
|
|
21056
|
-
readonly event_id: string;
|
|
21057
|
-
readonly timestamp: string;
|
|
21058
|
-
readonly item: io.flow.internal.v0.models.SarveshItem;
|
|
21059
|
-
}
|
|
21060
21001
|
interface ScheduledPayment {
|
|
21061
21002
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
21062
21003
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -21178,6 +21119,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21178
21119
|
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
21179
21120
|
readonly cost: io.flow.common.v0.models.Money;
|
|
21180
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
|
+
}
|
|
21181
21147
|
interface ShippingLane {
|
|
21182
21148
|
readonly origin: string;
|
|
21183
21149
|
readonly destination: string;
|
|
@@ -21231,6 +21197,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21231
21197
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
21232
21198
|
readonly include_unpublished?: boolean;
|
|
21233
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
|
+
}
|
|
21234
21216
|
interface ShopifyCatalogPublication {
|
|
21235
21217
|
readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
21236
21218
|
}
|
|
@@ -21241,6 +21223,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21241
21223
|
readonly token: io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
21242
21224
|
readonly service: io.flow.internal.v0.enums.ShopifyService;
|
|
21243
21225
|
}
|
|
21226
|
+
interface ShopifyContactDetails {
|
|
21227
|
+
readonly company?: string;
|
|
21228
|
+
readonly email?: string;
|
|
21229
|
+
readonly name?: string;
|
|
21230
|
+
readonly phone?: string;
|
|
21231
|
+
}
|
|
21244
21232
|
interface ShopifyDispute {
|
|
21245
21233
|
readonly id: string;
|
|
21246
21234
|
readonly organization_id: string;
|
|
@@ -21548,6 +21536,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21548
21536
|
readonly organization: string;
|
|
21549
21537
|
readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
21550
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
|
+
}
|
|
21551
21547
|
interface ShopifyMerchantPlan {
|
|
21552
21548
|
readonly id: string;
|
|
21553
21549
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -21571,6 +21567,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21571
21567
|
readonly catalog_publication?: io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
21572
21568
|
readonly token: string;
|
|
21573
21569
|
}
|
|
21570
|
+
interface ShopifyMoney {
|
|
21571
|
+
readonly amount: number;
|
|
21572
|
+
readonly currency_code: string;
|
|
21573
|
+
}
|
|
21574
21574
|
interface ShopifyMonitoringCarrierService {
|
|
21575
21575
|
readonly service: string;
|
|
21576
21576
|
}
|
|
@@ -21810,6 +21810,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21810
21810
|
readonly shopify_product: io.flow.shopify.external.v0.models.Product;
|
|
21811
21811
|
readonly deleted_at?: string;
|
|
21812
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
|
+
}
|
|
21813
21820
|
interface ShopifyReportFileDeleted {
|
|
21814
21821
|
readonly discriminator: 'shopify_report_file_deleted';
|
|
21815
21822
|
readonly event_id: string;
|
|
@@ -21822,6 +21829,73 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21822
21829
|
readonly timestamp: string;
|
|
21823
21830
|
readonly shopify_report_file: io.flow.internal.v0.models.ReportFile;
|
|
21824
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
|
+
}
|
|
21825
21899
|
interface ShopifyShopStatistics {
|
|
21826
21900
|
readonly id: string;
|
|
21827
21901
|
readonly initial_catalog_synced_at?: string;
|
|
@@ -21857,6 +21931,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21857
21931
|
}
|
|
21858
21932
|
interface ShopifyTestOrder {
|
|
21859
21933
|
readonly id: string;
|
|
21934
|
+
readonly submitted_at: string;
|
|
21860
21935
|
}
|
|
21861
21936
|
interface ShopifyTestOrderDeleted {
|
|
21862
21937
|
readonly discriminator: 'shopify_test_order_deleted';
|
|
@@ -21878,6 +21953,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21878
21953
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21879
21954
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21880
21955
|
readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21956
|
+
readonly subtotal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21881
21957
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21882
21958
|
}
|
|
21883
21959
|
interface ShopperFees {
|
|
@@ -23097,7 +23173,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23097
23173
|
readonly fulfillment_key?: string;
|
|
23098
23174
|
readonly rex_number?: string;
|
|
23099
23175
|
readonly weee_number?: string;
|
|
23100
|
-
readonly generate_commercial_invoice_only: boolean;
|
|
23101
23176
|
readonly liability_remittance_plan?: io.flow.internal.v0.models.LiabilityRemittancePlan;
|
|
23102
23177
|
readonly shipment_cost_summary?: io.flow.internal.v0.models.ShipmentCostSummary;
|
|
23103
23178
|
readonly shipping_label_hop_cost_itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
@@ -23176,7 +23251,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23176
23251
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23177
23252
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23178
23253
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
23179
|
-
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.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.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;
|
|
23180
23255
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23181
23256
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23182
23257
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23220,7 +23295,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23220
23295
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
23221
23296
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23222
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;
|
|
23223
|
-
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;
|
|
23224
23299
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
23225
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;
|
|
23226
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;
|
|
@@ -23231,6 +23306,7 @@ export declare type AccountContact = io.flow.internal.v0.models.AccountContact;
|
|
|
23231
23306
|
export declare type AccountContactDeleted = io.flow.internal.v0.models.AccountContactDeleted;
|
|
23232
23307
|
export declare type AccountContactForm = io.flow.internal.v0.models.AccountContactForm;
|
|
23233
23308
|
export declare type AccountContactUpserted = io.flow.internal.v0.models.AccountContactUpserted;
|
|
23309
|
+
export declare type AccountCurrencyFilter = io.flow.internal.v0.enums.AccountCurrencyFilter;
|
|
23234
23310
|
export declare type AccountDeletedV2 = io.flow.internal.v0.models.AccountDeletedV2;
|
|
23235
23311
|
export declare type AccountDepositRule = io.flow.internal.v0.models.AccountDepositRule;
|
|
23236
23312
|
export declare type AccountDepositRuleForm = io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
@@ -23318,11 +23394,6 @@ export declare type AfterpayRefund = io.flow.internal.v0.models.AfterpayRefund;
|
|
|
23318
23394
|
export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayRefundDeleted;
|
|
23319
23395
|
export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
23320
23396
|
export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
23321
|
-
export declare type AldoItem = io.flow.internal.v0.models.AldoItem;
|
|
23322
|
-
export declare type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
|
|
23323
|
-
export declare type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
|
|
23324
|
-
export declare type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
|
|
23325
|
-
export declare type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
|
|
23326
23397
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
23327
23398
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
23328
23399
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
@@ -23330,16 +23401,6 @@ export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
|
23330
23401
|
export declare type AmruthaItem = io.flow.internal.v0.models.AmruthaItem;
|
|
23331
23402
|
export declare type AmruthaItemForm = io.flow.internal.v0.models.AmruthaItemForm;
|
|
23332
23403
|
export declare type AmruthaItemType = io.flow.internal.v0.enums.AmruthaItemType;
|
|
23333
|
-
export declare type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
|
|
23334
|
-
export declare type AnirbanItemDeleted = io.flow.internal.v0.models.AnirbanItemDeleted;
|
|
23335
|
-
export declare type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
|
|
23336
|
-
export declare type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
|
|
23337
|
-
export declare type AnirbanItemUpserted = io.flow.internal.v0.models.AnirbanItemUpserted;
|
|
23338
|
-
export declare type AnshItem = io.flow.internal.v0.models.AnshItem;
|
|
23339
|
-
export declare type AnshItemDeleted = io.flow.internal.v0.models.AnshItemDeleted;
|
|
23340
|
-
export declare type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
|
|
23341
|
-
export declare type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
|
|
23342
|
-
export declare type AnshItemUpserted = io.flow.internal.v0.models.AnshItemUpserted;
|
|
23343
23404
|
export declare type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
|
|
23344
23405
|
export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
23345
23406
|
export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
@@ -23362,6 +23423,10 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
|
|
|
23362
23423
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
23363
23424
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
23364
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;
|
|
23365
23430
|
export declare type B2BTaxLedger = io.flow.internal.v0.models.B2BTaxLedger;
|
|
23366
23431
|
export declare type B2BTaxLedgerDocumentType = io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
23367
23432
|
export declare type B2BTaxLedgerForm = io.flow.internal.v0.models.B2BTaxLedgerForm;
|
|
@@ -23423,6 +23488,9 @@ export declare type BitpayAccountPutForm = io.flow.internal.v0.models.BitpayAcco
|
|
|
23423
23488
|
export declare type BitpayAuthentication = io.flow.internal.v0.models.BitpayAuthentication;
|
|
23424
23489
|
export declare type BitpayAuthenticationDataReference = io.flow.internal.v0.models.BitpayAuthenticationDataReference;
|
|
23425
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;
|
|
23426
23494
|
export declare type BooleanFeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue;
|
|
23427
23495
|
export declare type BooleanFeatureRule = io.flow.internal.v0.models.BooleanFeatureRule;
|
|
23428
23496
|
export declare type BooleanFeatureRuleForm = io.flow.internal.v0.models.BooleanFeatureRuleForm;
|
|
@@ -23594,6 +23662,11 @@ export declare type CheckoutSettings = io.flow.internal.v0.models.CheckoutSettin
|
|
|
23594
23662
|
export declare type CheckoutShippingMethodPromptBehavior = io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
|
|
23595
23663
|
export declare type CheckoutUrl = io.flow.internal.v0.models.CheckoutUrl;
|
|
23596
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;
|
|
23597
23670
|
export declare type Cipher = io.flow.internal.v0.models.Cipher;
|
|
23598
23671
|
export declare type CipherForm = io.flow.internal.v0.models.CipherForm;
|
|
23599
23672
|
export declare type CipherReference = io.flow.internal.v0.models.CipherReference;
|
|
@@ -23627,6 +23700,7 @@ export declare type ClassificationProductSummaryPage = io.flow.internal.v0.model
|
|
|
23627
23700
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
23628
23701
|
export declare type ClassificationResponse = io.flow.internal.v0.unions.ClassificationResponse;
|
|
23629
23702
|
export declare type ClassificationScope = io.flow.internal.v0.enums.ClassificationScope;
|
|
23703
|
+
export declare type ClassificationSource = io.flow.internal.v0.enums.ClassificationSource;
|
|
23630
23704
|
export declare type ClassificationStatistics = io.flow.internal.v0.models.ClassificationStatistics;
|
|
23631
23705
|
export declare type ClassificationSummaryReportPayload = io.flow.internal.v0.models.ClassificationSummaryReportPayload;
|
|
23632
23706
|
export declare type ClassificationTaxonomy = io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
@@ -23971,6 +24045,7 @@ export declare type GeRevenueShareTransaction = io.flow.internal.v0.models.GeRev
|
|
|
23971
24045
|
export declare type GeRevenueShareTransactionType = io.flow.internal.v0.enums.GeRevenueShareTransactionType;
|
|
23972
24046
|
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
23973
24047
|
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
24048
|
+
export declare type GenerateLoadRate = io.flow.internal.v0.models.GenerateLoadRate;
|
|
23974
24049
|
export declare type GenerateLoadSingleOrg = io.flow.internal.v0.models.GenerateLoadSingleOrg;
|
|
23975
24050
|
export declare type GenericValidationError = io.flow.internal.v0.models.GenericValidationError;
|
|
23976
24051
|
export declare type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
@@ -24000,11 +24075,6 @@ export declare type HarmonizationThresholdForm = io.flow.internal.v0.models.Harm
|
|
|
24000
24075
|
export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics;
|
|
24001
24076
|
export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
24002
24077
|
export declare type HarmonizedItemsHs6Export = io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
24003
|
-
export declare type HoseinItem = io.flow.internal.v0.models.HoseinItem;
|
|
24004
|
-
export declare type HoseinItemDeleted = io.flow.internal.v0.models.HoseinItemDeleted;
|
|
24005
|
-
export declare type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
|
|
24006
|
-
export declare type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
|
|
24007
|
-
export declare type HoseinItemUpserted = io.flow.internal.v0.models.HoseinItemUpserted;
|
|
24008
24078
|
export declare type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
24009
24079
|
export declare type Hs6CodeSource = io.flow.internal.v0.enums.Hs6CodeSource;
|
|
24010
24080
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
@@ -24078,7 +24148,6 @@ export declare type ItemSalesMarginVersion = io.flow.internal.v0.models.ItemSale
|
|
|
24078
24148
|
export declare type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
24079
24149
|
export declare type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
24080
24150
|
export declare type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
24081
|
-
export declare type JeanDemoItem = io.flow.internal.v0.models.JeanDemoItem;
|
|
24082
24151
|
export declare type Journal = io.flow.internal.v0.models.Journal;
|
|
24083
24152
|
export declare type JournalFailure = io.flow.internal.v0.models.JournalFailure;
|
|
24084
24153
|
export declare type JournalOperation = io.flow.internal.v0.enums.JournalOperation;
|
|
@@ -24105,10 +24174,6 @@ export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreatio
|
|
|
24105
24174
|
export declare type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
24106
24175
|
export declare type LabelEventMedium = io.flow.internal.v0.enums.LabelEventMedium;
|
|
24107
24176
|
export declare type LabelEventSource = io.flow.internal.v0.enums.LabelEventSource;
|
|
24108
|
-
export declare type LabelGenerationSettings = io.flow.internal.v0.models.LabelGenerationSettings;
|
|
24109
|
-
export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
|
|
24110
|
-
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
24111
|
-
export declare type LabelGenerationSettingsUpserted = io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
|
|
24112
24177
|
export declare type LabelInvoiceRequest = io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
24113
24178
|
export declare type LabelInvoiceRequestDeleted = io.flow.internal.v0.models.LabelInvoiceRequestDeleted;
|
|
24114
24179
|
export declare type LabelInvoiceRequestUpserted = io.flow.internal.v0.models.LabelInvoiceRequestUpserted;
|
|
@@ -24216,11 +24281,6 @@ export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
|
24216
24281
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
24217
24282
|
export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
24218
24283
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
24219
|
-
export declare type NiallItem = io.flow.internal.v0.models.NiallItem;
|
|
24220
|
-
export declare type NiallItemDeleted = io.flow.internal.v0.models.NiallItemDeleted;
|
|
24221
|
-
export declare type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
|
|
24222
|
-
export declare type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
|
|
24223
|
-
export declare type NiallItemUpserted = io.flow.internal.v0.models.NiallItemUpserted;
|
|
24224
24284
|
export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
24225
24285
|
export declare type NoClassificationForm = io.flow.internal.v0.models.NoClassificationForm;
|
|
24226
24286
|
export declare type NoLiabilityReasonCode = io.flow.internal.v0.enums.NoLiabilityReasonCode;
|
|
@@ -24336,6 +24396,9 @@ export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.
|
|
|
24336
24396
|
export declare type OrganizationPaymentSettingUpserted = io.flow.internal.v0.models.OrganizationPaymentSettingUpserted;
|
|
24337
24397
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
24338
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;
|
|
24339
24402
|
export declare type OrganizationRestrictionApprovalStatus = io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
24340
24403
|
export declare type OrganizationRestrictionNoteForm = io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
24341
24404
|
export declare type OrganizationRestrictionNoteType = io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -24458,9 +24521,6 @@ export declare type PlatformFeeFlat = io.flow.internal.v0.models.PlatformFeeFlat
|
|
|
24458
24521
|
export declare type PlatformFeePause = io.flow.internal.v0.models.PlatformFeePause;
|
|
24459
24522
|
export declare type PlatformFeePercentage = io.flow.internal.v0.models.PlatformFeePercentage;
|
|
24460
24523
|
export declare type PlatformFeePercentageTier = io.flow.internal.v0.models.PlatformFeePercentageTier;
|
|
24461
|
-
export declare type PrateekItem = io.flow.internal.v0.models.PrateekItem;
|
|
24462
|
-
export declare type PrateekItemForm = io.flow.internal.v0.models.PrateekItemForm;
|
|
24463
|
-
export declare type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
|
|
24464
24524
|
export declare type Prediction = io.flow.internal.v0.models.Prediction;
|
|
24465
24525
|
export declare type PreferredBillingSchedule = io.flow.internal.v0.enums.PreferredBillingSchedule;
|
|
24466
24526
|
export declare type PreonboardingClassificationDecision = io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
@@ -24473,6 +24533,9 @@ export declare type PreonboardingClassificationType = io.flow.internal.v0.enums.
|
|
|
24473
24533
|
export declare type PreonboardingMerchant = io.flow.internal.v0.models.PreonboardingMerchant;
|
|
24474
24534
|
export declare type PreonboardingRequestStatus = io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
24475
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;
|
|
24476
24539
|
export declare type PriceInclusivity = io.flow.internal.v0.models.PriceInclusivity;
|
|
24477
24540
|
export declare type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
24478
24541
|
export declare type PrioritizedCenterReference = io.flow.internal.v0.models.PrioritizedCenterReference;
|
|
@@ -24516,7 +24579,11 @@ export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductRev
|
|
|
24516
24579
|
export declare type ProductSellabilityInternal = io.flow.internal.v0.models.ProductSellabilityInternal;
|
|
24517
24580
|
export declare type ProductSellabilityInternalForm = io.flow.internal.v0.models.ProductSellabilityInternalForm;
|
|
24518
24581
|
export declare type ProductSellabilityInternalResult = io.flow.internal.v0.models.ProductSellabilityInternalResult;
|
|
24582
|
+
export declare type ProductSellabilityInternalRuleMatch = io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch;
|
|
24519
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;
|
|
24520
24587
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
24521
24588
|
export declare type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
24522
24589
|
export declare type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
@@ -24727,11 +24794,6 @@ export declare type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordT
|
|
|
24727
24794
|
export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
24728
24795
|
export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
24729
24796
|
export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
24730
|
-
export declare type RohanItem = io.flow.internal.v0.models.RohanItem;
|
|
24731
|
-
export declare type RohanItemDeleted = io.flow.internal.v0.models.RohanItemDeleted;
|
|
24732
|
-
export declare type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
|
|
24733
|
-
export declare type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
|
|
24734
|
-
export declare type RohanItemUpserted = io.flow.internal.v0.models.RohanItemUpserted;
|
|
24735
24797
|
export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
24736
24798
|
export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
24737
24799
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
@@ -24739,11 +24801,6 @@ export declare type RoutingProcessor = io.flow.internal.v0.models.RoutingProcess
|
|
|
24739
24801
|
export declare type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
|
|
24740
24802
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
24741
24803
|
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
24742
|
-
export declare type SarveshItem = io.flow.internal.v0.models.SarveshItem;
|
|
24743
|
-
export declare type SarveshItemDeleted = io.flow.internal.v0.models.SarveshItemDeleted;
|
|
24744
|
-
export declare type SarveshItemForm = io.flow.internal.v0.models.SarveshItemForm;
|
|
24745
|
-
export declare type SarveshItemType = io.flow.internal.v0.enums.SarveshItemType;
|
|
24746
|
-
export declare type SarveshItemUpserted = io.flow.internal.v0.models.SarveshItemUpserted;
|
|
24747
24804
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
24748
24805
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
24749
24806
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -24759,20 +24816,32 @@ export declare type SearchProviderExport = io.flow.internal.v0.models.SearchProv
|
|
|
24759
24816
|
export declare type SearchTrackingSummary = io.flow.internal.v0.models.SearchTrackingSummary;
|
|
24760
24817
|
export declare type SellabilityCheckResult = io.flow.internal.v0.models.SellabilityCheckResult;
|
|
24761
24818
|
export declare type SellabilityCheckStatus = io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
24819
|
+
export declare type SellabilityInternalMatchType = io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
24762
24820
|
export declare type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
24763
24821
|
export declare type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
24764
24822
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
24765
24823
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
24766
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;
|
|
24767
24828
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
24768
24829
|
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
24769
24830
|
export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
|
|
24770
24831
|
export declare type ShippingRateEstimateAvailableInternal = io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
|
|
24771
24832
|
export declare type ShippingRateEstimateInternal = io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
24772
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;
|
|
24773
24838
|
export declare type ShopifyCatalogPublication = io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
24774
24839
|
export declare type ShopifyChannelOrganizationToken = io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
24775
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;
|
|
24776
24845
|
export declare type ShopifyDispute = io.flow.internal.v0.models.ShopifyDispute;
|
|
24777
24846
|
export declare type ShopifyDisputeDeleted = io.flow.internal.v0.models.ShopifyDisputeDeleted;
|
|
24778
24847
|
export declare type ShopifyDisputeUpserted = io.flow.internal.v0.models.ShopifyDisputeUpserted;
|
|
@@ -24780,6 +24849,7 @@ export declare type ShopifyHs10Code = io.flow.internal.v0.models.ShopifyHs10Code
|
|
|
24780
24849
|
export declare type ShopifyHs10Codes = io.flow.internal.v0.models.ShopifyHs10Codes;
|
|
24781
24850
|
export declare type ShopifyHs10CodesDeleted = io.flow.internal.v0.models.ShopifyHs10CodesDeleted;
|
|
24782
24851
|
export declare type ShopifyHs10CodesUpserted = io.flow.internal.v0.models.ShopifyHs10CodesUpserted;
|
|
24852
|
+
export declare type ShopifyIncoterm = io.flow.internal.v0.enums.ShopifyIncoterm;
|
|
24783
24853
|
export declare type ShopifyIncotermConfiguration = io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
|
|
24784
24854
|
export declare type ShopifyIncotermIncludes = io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
24785
24855
|
export declare type ShopifyIncotermSummaryErrorData = io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
@@ -24826,10 +24896,12 @@ export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.Shopif
|
|
|
24826
24896
|
export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
24827
24897
|
export declare type ShopifyMarketsWebhookRegistrationDeleted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
24828
24898
|
export declare type ShopifyMarketsWebhookRegistrationUpserted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
24899
|
+
export declare type ShopifyMeasurements = io.flow.internal.v0.models.ShopifyMeasurements;
|
|
24829
24900
|
export declare type ShopifyMerchantPlan = io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
24830
24901
|
export declare type ShopifyMerchantPlanDeleted = io.flow.internal.v0.models.ShopifyMerchantPlanDeleted;
|
|
24831
24902
|
export declare type ShopifyMerchantPlanUpserted = io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
|
|
24832
24903
|
export declare type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
24904
|
+
export declare type ShopifyMoney = io.flow.internal.v0.models.ShopifyMoney;
|
|
24833
24905
|
export declare type ShopifyMonitoringCarrierService = io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
24834
24906
|
export declare type ShopifyMonitoringFulfillmentExternal = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal;
|
|
24835
24907
|
export declare type ShopifyMonitoringFulfillmentMissingDetails = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
@@ -24853,6 +24925,7 @@ export declare type ShopifyOrderRiskAssessmentUpserted = io.flow.internal.v0.mod
|
|
|
24853
24925
|
export declare type ShopifyOrderTransaction = io.flow.internal.v0.models.ShopifyOrderTransaction;
|
|
24854
24926
|
export declare type ShopifyOrderTransactionDeleted = io.flow.internal.v0.models.ShopifyOrderTransactionDeleted;
|
|
24855
24927
|
export declare type ShopifyOrderTransactionUpserted = io.flow.internal.v0.models.ShopifyOrderTransactionUpserted;
|
|
24928
|
+
export declare type ShopifyPackageType = io.flow.internal.v0.enums.ShopifyPackageType;
|
|
24856
24929
|
export declare type ShopifyPartnerWebhook = io.flow.internal.v0.models.ShopifyPartnerWebhook;
|
|
24857
24930
|
export declare type ShopifyPartnerWebhookRaw = io.flow.internal.v0.models.ShopifyPartnerWebhookRaw;
|
|
24858
24931
|
export declare type ShopifyPlanType = io.flow.internal.v0.enums.ShopifyPlanType;
|
|
@@ -24876,9 +24949,24 @@ export declare type ShopifyProductUpdateDeleted = io.flow.internal.v0.models.Sho
|
|
|
24876
24949
|
export declare type ShopifyProductUpdateUpserted = io.flow.internal.v0.models.ShopifyProductUpdateUpserted;
|
|
24877
24950
|
export declare type ShopifyProductUpdateWebhookEvent = io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
24878
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;
|
|
24879
24954
|
export declare type ShopifyReportFileDeleted = io.flow.internal.v0.models.ShopifyReportFileDeleted;
|
|
24880
24955
|
export declare type ShopifyReportFileUpserted = io.flow.internal.v0.models.ShopifyReportFileUpserted;
|
|
24881
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;
|
|
24882
24970
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
24883
24971
|
export declare type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
|
|
24884
24972
|
export declare type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
|
|
@@ -24887,6 +24975,8 @@ export declare type ShopifyTaxonomyAlignmentConfigForm = io.flow.internal.v0.mod
|
|
|
24887
24975
|
export declare type ShopifyTestOrder = io.flow.internal.v0.models.ShopifyTestOrder;
|
|
24888
24976
|
export declare type ShopifyTestOrderDeleted = io.flow.internal.v0.models.ShopifyTestOrderDeleted;
|
|
24889
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;
|
|
24890
24980
|
export declare type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
|
|
24891
24981
|
export declare type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
24892
24982
|
export declare type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|