@flowio/types 11.24.132 → 11.24.136
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 +647 -385
- package/dist/api.d.ts +276 -31
- package/package.json +2 -2
- package/src/api-internal.ts +956 -496
- package/src/api.ts +357 -30
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';
|
|
@@ -4874,7 +4878,6 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
4874
4878
|
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';
|
|
4875
4879
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
4876
4880
|
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';
|
|
4877
|
-
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
4878
4881
|
}
|
|
4879
4882
|
declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
4880
4883
|
interface BulkDutyUpdateValidationError {
|
|
@@ -4943,7 +4946,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4943
4946
|
readonly organization_id: string;
|
|
4944
4947
|
readonly shopify_order_id: string;
|
|
4945
4948
|
readonly order_number: string;
|
|
4946
|
-
readonly tax_and_duty_inclusivity_setting: io.flow.
|
|
4949
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
4947
4950
|
}
|
|
4948
4951
|
interface OrderValidationError {
|
|
4949
4952
|
readonly message: string;
|
|
@@ -5033,6 +5036,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5033
5036
|
readonly access_token_masked?: string;
|
|
5034
5037
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
5035
5038
|
readonly catalog_publication_owner?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
5039
|
+
readonly fast_sellability_completed_at?: string;
|
|
5036
5040
|
}
|
|
5037
5041
|
interface ShopifyMarketsShopForm {
|
|
5038
5042
|
readonly shop: string;
|
|
@@ -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;
|
|
@@ -5134,6 +5139,7 @@ declare namespace io.flow.consumer.invoice.v0.enums {
|
|
|
5134
5139
|
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
5135
5140
|
type ConsumerInvoiceDocumentType = 'pdf';
|
|
5136
5141
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
5142
|
+
type FeeInvoiceType = 'mor_invoice' | 'label_invoice' | 'mor_credit_memo' | 'label_credit_memo';
|
|
5137
5143
|
type TaxJurisdictionType = 'country' | 'province';
|
|
5138
5144
|
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
5139
5145
|
}
|
|
@@ -5155,6 +5161,7 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5155
5161
|
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
5156
5162
|
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5157
5163
|
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5164
|
+
readonly voids_b2b_invoice?: boolean;
|
|
5158
5165
|
}
|
|
5159
5166
|
interface B2BInvoice {
|
|
5160
5167
|
readonly id: string;
|
|
@@ -5320,6 +5327,20 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
5320
5327
|
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
|
|
5321
5328
|
readonly attributes?: Record<string, string>;
|
|
5322
5329
|
}
|
|
5330
|
+
interface FeeInvoice {
|
|
5331
|
+
readonly id: string;
|
|
5332
|
+
readonly number: string;
|
|
5333
|
+
readonly invoice_type: io.flow.consumer.invoice.v0.enums.FeeInvoiceType;
|
|
5334
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5335
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5336
|
+
readonly date: string;
|
|
5337
|
+
readonly b2b_tax_transaction_id: string;
|
|
5338
|
+
readonly order_number: string;
|
|
5339
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
5340
|
+
readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
5341
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5342
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5343
|
+
}
|
|
5323
5344
|
interface InvoiceExport {
|
|
5324
5345
|
readonly id: string;
|
|
5325
5346
|
}
|
|
@@ -7378,7 +7399,7 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
7378
7399
|
declare namespace io.flow.order.price.v0.enums {
|
|
7379
7400
|
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
7401
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
7381
|
-
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
7402
|
+
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
|
|
7382
7403
|
}
|
|
7383
7404
|
declare namespace io.flow.order.price.v0.models {
|
|
7384
7405
|
interface OrderPriceDetail {
|
|
@@ -7421,7 +7442,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
7421
7442
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
7422
7443
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
7423
7444
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
7424
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
|
|
7445
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
7425
7446
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
7426
7447
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
7427
7448
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -7826,6 +7847,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
7826
7847
|
interface LineItemForm {
|
|
7827
7848
|
readonly number: string;
|
|
7828
7849
|
readonly quantity: number;
|
|
7850
|
+
readonly line_item_identifier?: string;
|
|
7829
7851
|
readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
|
|
7830
7852
|
readonly price?: io.flow.common.v0.models.Money;
|
|
7831
7853
|
readonly attributes?: Record<string, string>;
|
|
@@ -8298,6 +8320,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
8298
8320
|
type PriceFacetBoundary = 'min' | 'max';
|
|
8299
8321
|
type PricingType = 'inclusive_pricing';
|
|
8300
8322
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
8323
|
+
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
8301
8324
|
}
|
|
8302
8325
|
declare namespace io.flow.experience.v0.models {
|
|
8303
8326
|
interface AddressConfiguration {
|
|
@@ -9473,6 +9496,11 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9473
9496
|
readonly id: string;
|
|
9474
9497
|
readonly name: string;
|
|
9475
9498
|
}
|
|
9499
|
+
interface RatecardData {
|
|
9500
|
+
readonly dhlParcelDistributionCenter?: string;
|
|
9501
|
+
readonly glbeRatecardMetadataLaneIdentifier?: string;
|
|
9502
|
+
readonly pickupCenter?: string;
|
|
9503
|
+
}
|
|
9476
9504
|
interface RatecardEstimateForm {
|
|
9477
9505
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
9478
9506
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
@@ -9490,12 +9518,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9490
9518
|
readonly duties_owed?: io.flow.common.v0.models.Money;
|
|
9491
9519
|
readonly commercial_invoice_mode?: io.flow.label.v0.enums.CommercialInvoiceMode;
|
|
9492
9520
|
}
|
|
9493
|
-
interface RatecardEstimateSummaryForm {
|
|
9494
|
-
readonly origin?: string;
|
|
9495
|
-
readonly destination?: string;
|
|
9496
|
-
readonly service?: string;
|
|
9497
|
-
readonly center_key?: string;
|
|
9498
|
-
}
|
|
9499
9521
|
interface RatecardEstimateV1 {
|
|
9500
9522
|
readonly discriminator: 'ratecard_estimate_v1';
|
|
9501
9523
|
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
@@ -9558,7 +9580,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9558
9580
|
readonly glbe_shipping_method_id?: string;
|
|
9559
9581
|
readonly glbe_proposition_name?: string;
|
|
9560
9582
|
readonly channel_revenue_share_percentage?: number;
|
|
9561
|
-
readonly data?:
|
|
9583
|
+
readonly data?: io.flow.ratecard.v0.models.RatecardData;
|
|
9562
9584
|
}
|
|
9563
9585
|
interface RatecardLane {
|
|
9564
9586
|
readonly id: string;
|
|
@@ -9701,6 +9723,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9701
9723
|
readonly weight_break?: number;
|
|
9702
9724
|
}
|
|
9703
9725
|
interface ShippingRateEstimateRequest {
|
|
9726
|
+
readonly carrier_id: string;
|
|
9704
9727
|
readonly origin_address: io.flow.common.v0.models.Address;
|
|
9705
9728
|
readonly destination_address: io.flow.common.v0.models.Address;
|
|
9706
9729
|
readonly package_dimensions: io.flow.common.v0.models.Dimension;
|
|
@@ -10462,7 +10485,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10462
10485
|
readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
10463
10486
|
readonly other_trade_sector?: string;
|
|
10464
10487
|
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
10465
|
-
readonly center_address?: io.flow.common.v0.models.Address;
|
|
10466
10488
|
readonly average_order_weight?: number;
|
|
10467
10489
|
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10468
10490
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
@@ -10489,7 +10511,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10489
10511
|
readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
10490
10512
|
readonly other_trade_sector?: string;
|
|
10491
10513
|
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
10492
|
-
readonly center_address?: io.flow.common.v0.models.Address;
|
|
10493
10514
|
readonly average_order_weight?: number;
|
|
10494
10515
|
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10495
10516
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
@@ -10576,6 +10597,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10576
10597
|
readonly company?: string;
|
|
10577
10598
|
readonly email?: string;
|
|
10578
10599
|
readonly phone?: string;
|
|
10600
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
10579
10601
|
}
|
|
10580
10602
|
interface Shop {
|
|
10581
10603
|
readonly name: string;
|
|
@@ -11011,7 +11033,7 @@ declare namespace io.flow.inventory.v0.models {
|
|
|
11011
11033
|
}
|
|
11012
11034
|
interface InventoryUnlimited {
|
|
11013
11035
|
readonly discriminator: 'inventory_unlimited';
|
|
11014
|
-
readonly placeholder
|
|
11036
|
+
readonly placeholder: string;
|
|
11015
11037
|
}
|
|
11016
11038
|
interface InventoryUpdate {
|
|
11017
11039
|
readonly id: string;
|
|
@@ -11211,14 +11233,14 @@ declare namespace io.flow.item.v0.models {
|
|
|
11211
11233
|
}
|
|
11212
11234
|
}
|
|
11213
11235
|
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';
|
|
11236
|
+
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
11237
|
type PayoutAttachmentType = 'transactions';
|
|
11216
11238
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11217
11239
|
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
11240
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
11219
11241
|
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';
|
|
11242
|
+
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';
|
|
11243
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
|
|
11222
11244
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
11223
11245
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11224
11246
|
}
|
|
@@ -11472,7 +11494,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11472
11494
|
readonly label_created_at: string;
|
|
11473
11495
|
readonly carrier_id: string;
|
|
11474
11496
|
readonly carrier_tracking_number: string;
|
|
11475
|
-
readonly revenue_share_percentage
|
|
11497
|
+
readonly revenue_share_percentage?: number;
|
|
11476
11498
|
readonly outbound?: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
|
|
11477
11499
|
}
|
|
11478
11500
|
interface TransactionMetadataChannel {
|
|
@@ -11500,11 +11522,27 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11500
11522
|
interface TransactionMetadataFailedPayoutReference {
|
|
11501
11523
|
readonly id: string;
|
|
11502
11524
|
}
|
|
11525
|
+
interface TransactionMetadataFlatRateLabel {
|
|
11526
|
+
readonly discriminator: 'flat_rate_label';
|
|
11527
|
+
readonly flat_rate?: number;
|
|
11528
|
+
readonly coefficient?: number;
|
|
11529
|
+
}
|
|
11503
11530
|
interface TransactionMetadataManual {
|
|
11504
11531
|
readonly discriminator: 'manual';
|
|
11505
11532
|
readonly description: string;
|
|
11506
11533
|
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
11507
11534
|
readonly url?: string;
|
|
11535
|
+
readonly recoup?: boolean;
|
|
11536
|
+
}
|
|
11537
|
+
interface TransactionMetadataMerchantFee {
|
|
11538
|
+
readonly discriminator: 'merchant_fee';
|
|
11539
|
+
readonly items: io.flow.billing.v0.models.TransactionMetadataMerchantFeeItem[];
|
|
11540
|
+
}
|
|
11541
|
+
interface TransactionMetadataMerchantFeeItem {
|
|
11542
|
+
readonly type: string;
|
|
11543
|
+
readonly amount: number;
|
|
11544
|
+
readonly local_amount?: number;
|
|
11545
|
+
readonly description?: string;
|
|
11508
11546
|
}
|
|
11509
11547
|
interface TransactionMetadataOriginalTransaction {
|
|
11510
11548
|
readonly id: string;
|
|
@@ -11630,7 +11668,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
11630
11668
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
11631
11669
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
11632
11670
|
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;
|
|
11671
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction | io.flow.billing.v0.models.TransactionMetadataTaxDuty | io.flow.billing.v0.models.TransactionMetadataMerchantFee | io.flow.billing.v0.models.TransactionMetadataFlatRateLabel;
|
|
11634
11672
|
}
|
|
11635
11673
|
declare namespace io.flow.harmonization.v0.enums {
|
|
11636
11674
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -11652,6 +11690,10 @@ declare namespace io.flow.harmonization.v0.models {
|
|
|
11652
11690
|
readonly company_name_match_result: io.flow.harmonization.v0.enums.TaxVerificationResult;
|
|
11653
11691
|
readonly company_name_match_result_reason?: string;
|
|
11654
11692
|
}
|
|
11693
|
+
interface HarmonizationTariffCode {
|
|
11694
|
+
readonly tariff_code: string;
|
|
11695
|
+
readonly destination: string;
|
|
11696
|
+
}
|
|
11655
11697
|
interface HarmonizedCategoryReference {
|
|
11656
11698
|
readonly id: string;
|
|
11657
11699
|
}
|
|
@@ -11735,6 +11777,12 @@ declare namespace io.flow.harmonization.v0.models {
|
|
|
11735
11777
|
readonly effective_duty: io.flow.price.v0.models.Duty;
|
|
11736
11778
|
readonly tax: io.flow.price.v0.models.Tax;
|
|
11737
11779
|
}
|
|
11780
|
+
interface TariffCodes {
|
|
11781
|
+
readonly item_number: string;
|
|
11782
|
+
readonly product_id: string;
|
|
11783
|
+
readonly hs6_code: string;
|
|
11784
|
+
readonly codes: io.flow.harmonization.v0.models.HarmonizationTariffCode[];
|
|
11785
|
+
}
|
|
11738
11786
|
interface TaxRegistration {
|
|
11739
11787
|
readonly id: string;
|
|
11740
11788
|
readonly key: string;
|
|
@@ -11849,7 +11897,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11849
11897
|
}
|
|
11850
11898
|
declare namespace io.flow.merchant.of.record.v0.enums {
|
|
11851
11899
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
11852
|
-
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-gbr' | 'ge-irl';
|
|
11900
|
+
type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-can-ship' | 'ge-gbr' | 'ge-irl';
|
|
11853
11901
|
}
|
|
11854
11902
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
11855
11903
|
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
@@ -11958,7 +12006,7 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
11958
12006
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
11959
12007
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
11960
12008
|
type SellabilityRequestStatus = 'commit';
|
|
11961
|
-
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
12009
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable' | 'generic_error' | 'catalog_processing_threshold';
|
|
11962
12010
|
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
11963
12011
|
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
11964
12012
|
}
|
|
@@ -11983,6 +12031,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11983
12031
|
readonly dry_run?: boolean;
|
|
11984
12032
|
}
|
|
11985
12033
|
interface ProductSellabilityResult {
|
|
12034
|
+
readonly id: string;
|
|
11986
12035
|
readonly merchant_id?: string;
|
|
11987
12036
|
readonly product_id: string;
|
|
11988
12037
|
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
@@ -11999,11 +12048,13 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11999
12048
|
interface SellabilityNeedsActionAttributes {
|
|
12000
12049
|
readonly reason_code: string;
|
|
12001
12050
|
readonly category_metafield_handles: string[];
|
|
12051
|
+
readonly category_metafield_ids: string[];
|
|
12002
12052
|
readonly require_msds?: boolean;
|
|
12003
12053
|
}
|
|
12004
12054
|
interface SellabilityReasonWithRegions {
|
|
12005
12055
|
readonly reason: string;
|
|
12006
12056
|
readonly regions: string[];
|
|
12057
|
+
readonly review_status?: string;
|
|
12007
12058
|
}
|
|
12008
12059
|
interface SellabilityRegionResult {
|
|
12009
12060
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
@@ -12228,14 +12279,10 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12228
12279
|
}
|
|
12229
12280
|
interface BankAccountInfoKor {
|
|
12230
12281
|
readonly discriminator: 'kor';
|
|
12231
|
-
readonly name
|
|
12232
|
-
readonly address?: io.flow.common.v0.models.Address;
|
|
12233
|
-
readonly phone?: string;
|
|
12234
|
-
readonly email?: string;
|
|
12282
|
+
readonly name: string;
|
|
12235
12283
|
readonly bank_account_number: string;
|
|
12236
|
-
readonly bank_routing_number
|
|
12237
|
-
readonly bank_name
|
|
12238
|
-
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
12284
|
+
readonly bank_routing_number: string;
|
|
12285
|
+
readonly bank_name: string;
|
|
12239
12286
|
}
|
|
12240
12287
|
interface BankAccountInfoUsa {
|
|
12241
12288
|
readonly discriminator: 'usa';
|
|
@@ -12247,20 +12294,20 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
12247
12294
|
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
12295
|
}
|
|
12249
12296
|
declare namespace io.flow.internal.v0.enums {
|
|
12297
|
+
type AccountCurrencyFilter = 'GBP' | 'CAD' | 'USD';
|
|
12250
12298
|
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
12251
12299
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
12252
12300
|
type AccountType = 'channel' | 'organization';
|
|
12253
12301
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12254
12302
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12255
|
-
type AldoItemType = 'physical' | 'digital';
|
|
12256
12303
|
type AmruthaItemType = 'physical' | 'digital';
|
|
12257
|
-
type AnirbanItemType = 'physical' | 'digital';
|
|
12258
|
-
type AnshItemType = 'physical' | 'digital';
|
|
12259
12304
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12260
12305
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
12261
12306
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
12262
12307
|
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';
|
|
12263
|
-
type
|
|
12308
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
12309
|
+
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
12310
|
+
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo' | 'mor_invoice' | 'mor_credit_memo' | 'label_invoice' | 'label_credit_memo';
|
|
12264
12311
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
12265
12312
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
12266
12313
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -12269,7 +12316,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12269
12316
|
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
12317
|
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
12318
|
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';
|
|
12319
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax' | 'b2b_fee_shipping_tax' | 'flat_rate_label';
|
|
12320
|
+
type BojanaItemType = 'physical' | 'digital';
|
|
12273
12321
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
12274
12322
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
12275
12323
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -12283,7 +12331,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12283
12331
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
12284
12332
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
12285
12333
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
12286
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
|
|
12334
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing' | 'organization_deactivated';
|
|
12287
12335
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
12288
12336
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
12289
12337
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
@@ -12298,11 +12346,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12298
12346
|
type CheckoutPromptBehavior = 'always' | 'incomplete';
|
|
12299
12347
|
type CheckoutShippingMethodPromptBehavior = 'always' | 'multiple';
|
|
12300
12348
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
12349
|
+
type ChenglinItemType = 'physical' | 'digital';
|
|
12301
12350
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
12302
12351
|
type ClassificationErrorCode = 'generic_error';
|
|
12303
|
-
type ClassificationFailureReason = 'low_confidence' | 'timeout';
|
|
12352
|
+
type ClassificationFailureReason = 'low_confidence' | 'timeout' | 'missing_hs6_code' | 'invalid_price';
|
|
12304
12353
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
12305
12354
|
type ClassificationScope = 'Item' | 'Product';
|
|
12355
|
+
type ClassificationSource = 'sellability';
|
|
12306
12356
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
12307
12357
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
12308
12358
|
type CommercialInvoiceVersion = 'v2_2_1';
|
|
@@ -12338,7 +12388,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12338
12388
|
type EmptyAttribute = 'irrelevant';
|
|
12339
12389
|
type ErpFileType = 'vendor';
|
|
12340
12390
|
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';
|
|
12391
|
+
type EventType = 'adaptive_shipping_rate_upserted' | 'adaptive_shipping_rate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'shipping_cost_upserted' | 'shipping_cost_deleted' | 'mor_cost_upserted' | 'mor_cost_deleted' | '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_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' | 'b2b_tax_transaction_upserted' | 'b2b_tax_transaction_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'chenglin_item_upserted' | 'chenglin_item_deleted' | 'bojana_item_upserted' | 'bojana_item_deleted' | '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
12392
|
type ExperienceImportType = 'experience_with_settings';
|
|
12343
12393
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12344
12394
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12348,6 +12398,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12348
12398
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
12349
12399
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
12350
12400
|
type FileType = 'pdf';
|
|
12401
|
+
type FlatRateLabelTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
12351
12402
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
12352
12403
|
type FraudProviderStatus = 'active' | 'archived';
|
|
12353
12404
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
@@ -12357,7 +12408,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12357
12408
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12358
12409
|
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
12410
|
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
12360
|
-
type HoseinItemType = 'physical' | 'digital';
|
|
12361
12411
|
type Hs6CodeSource = 'sellability' | 'classification' | 'human';
|
|
12362
12412
|
type HttpMethod = 'get' | 'post';
|
|
12363
12413
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
@@ -12374,22 +12424,22 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12374
12424
|
type LabelEventMedium = 'webhook' | 'pull' | 'post';
|
|
12375
12425
|
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
12376
12426
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system' | 'carrier';
|
|
12377
|
-
type LabelRequestResultOrganizationType = 'all' | '
|
|
12427
|
+
type LabelRequestResultOrganizationType = 'all' | 'cafe24_production' | 'shopify_production' | 'sandbox';
|
|
12378
12428
|
type LabelRequestResultState = 'success' | 'failure';
|
|
12379
12429
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12380
|
-
type LedgerReportType = 'periodic_mor_jurisdiction_report';
|
|
12430
|
+
type LedgerReportType = 'periodic_mor_jurisdiction_report' | 'periodic_mor_jurisdiction_sandbox_report';
|
|
12381
12431
|
type LedgerReportUrlType = 'sharepoint' | 's3';
|
|
12382
12432
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
12383
12433
|
type LogisticsCapability = 'logistics_address_correction';
|
|
12384
12434
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
12435
|
+
type MailClass = 'standard' | 'express';
|
|
12385
12436
|
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';
|
|
12437
|
+
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
12438
|
type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
12388
12439
|
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
12440
|
type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
|
|
12390
12441
|
type MixedBagWeight = '0' | '1' | '2';
|
|
12391
12442
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
12392
|
-
type NiallItemType = 'physical' | 'digital';
|
|
12393
12443
|
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
12444
|
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
12395
12445
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
@@ -12410,6 +12460,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12410
12460
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
12411
12461
|
type OrganizationMetricType = 'organization_restriction_status';
|
|
12412
12462
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
12463
|
+
type OrganizationPromotionStatus = 'in_progress' | 'completed' | 'failed';
|
|
12413
12464
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
12414
12465
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason' | 'additional_rejection_info';
|
|
12415
12466
|
type OrganizationRestrictionReviewType = 'all_pending' | 'pending_verification';
|
|
@@ -12423,7 +12474,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12423
12474
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
12424
12475
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
12425
12476
|
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
12426
|
-
type PrateekItemType = 'physical' | 'digital';
|
|
12427
12477
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12428
12478
|
type PreonboardingClassificationDecision = 'Accept' | 'Reject';
|
|
12429
12479
|
type PreonboardingClassificationPlatform = 'FlowOnboarding';
|
|
@@ -12436,6 +12486,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12436
12486
|
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
12437
12487
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
12438
12488
|
type RateSource = 'calculated' | 'market';
|
|
12489
|
+
type RaveenaItemType = 'physical' | 'digital';
|
|
12439
12490
|
type RedirectReason = 'three_d_secure';
|
|
12440
12491
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
12441
12492
|
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
@@ -12453,7 +12504,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12453
12504
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
12454
12505
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
12455
12506
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
12456
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa';
|
|
12507
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa' | 'cafe24' | 'cafe24-sandbox';
|
|
12457
12508
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
12458
12509
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
12459
12510
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -12463,10 +12514,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12463
12514
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
12464
12515
|
type RiskCheck = 'three_d_secure';
|
|
12465
12516
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
12466
|
-
type RohanItemType = 'physical' | 'digital';
|
|
12467
|
-
type SarveshItemType = 'physical' | 'digital';
|
|
12468
12517
|
type SellabilityCheckStatus = 'more_restrictive' | 'less_restrictive' | 'similar' | 'regions_differ' | 'rules_differ';
|
|
12518
|
+
type SellabilityInternalMatchType = 'positive_keyword' | 'auto_restricted';
|
|
12469
12519
|
type SellabilityStatus = 'complete' | 'incomplete';
|
|
12520
|
+
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';
|
|
12521
|
+
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';
|
|
12522
|
+
type ShopifyDeliveryMethodType = 'SHIPPING' | 'PICKUP_POINT';
|
|
12523
|
+
type ShopifyDimensionUnit = 'cm' | 'ft' | 'in' | 'm' | 'mm';
|
|
12524
|
+
type ShopifyIncoterm = 'DAP' | 'DDP';
|
|
12470
12525
|
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
12471
12526
|
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
12527
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -12474,8 +12529,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12474
12529
|
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
12530
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
12476
12531
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
12532
|
+
type ShopifyPackageType = 'BOX' | 'ENVELOPE' | 'SOFT_PACK' | 'TUBE' | 'CARRIER_PACKAGING';
|
|
12477
12533
|
type ShopifyPlanType = 'standard' | 'shopify_plus';
|
|
12478
12534
|
type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
12535
|
+
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';
|
|
12536
|
+
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';
|
|
12537
|
+
type ShopifyWeightUnit = 'g' | 'kg' | 'lb' | 'oz';
|
|
12479
12538
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
12480
12539
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
12481
12540
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -12486,7 +12545,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12486
12545
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
12487
12546
|
type TariffEligibilityType = 'rex';
|
|
12488
12547
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions';
|
|
12489
|
-
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
12490
12548
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
12491
12549
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
12492
12550
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
@@ -12626,11 +12684,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12626
12684
|
readonly transfer_method?: io.flow.internal.v0.enums.TransferMethod;
|
|
12627
12685
|
readonly b2b_tax_remittance_days?: number;
|
|
12628
12686
|
readonly merchant_of_record_fee?: number;
|
|
12687
|
+
readonly merchant_of_record_fee_create_on_order?: boolean;
|
|
12629
12688
|
readonly duty_guarantee_fee?: number;
|
|
12630
12689
|
readonly transfer_fee?: number;
|
|
12631
12690
|
readonly negative_balance_fee?: number;
|
|
12632
12691
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
12633
12692
|
readonly label_fees?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
12693
|
+
readonly revenue_share_rate?: number;
|
|
12634
12694
|
readonly charge_label_cost_directly: boolean;
|
|
12635
12695
|
readonly transaction_posting_method: io.flow.internal.v0.enums.TransactionPostingMethod;
|
|
12636
12696
|
readonly statement_transfer_transaction_location: io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
@@ -12641,6 +12701,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12641
12701
|
readonly enable_fee_reversals: boolean;
|
|
12642
12702
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
12643
12703
|
readonly enable_negative_debits: boolean;
|
|
12704
|
+
readonly enable_statement_pdf: boolean;
|
|
12705
|
+
readonly enable_shipping_label_revenue_share?: boolean;
|
|
12706
|
+
readonly enable_carrier_charge_revenue_share?: boolean;
|
|
12707
|
+
readonly always_charge_organization_for_trueup?: boolean;
|
|
12644
12708
|
}
|
|
12645
12709
|
interface AccountSettingsDeleted {
|
|
12646
12710
|
readonly discriminator: 'account_settings_deleted';
|
|
@@ -12723,6 +12787,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12723
12787
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
12724
12788
|
readonly quantity: number;
|
|
12725
12789
|
}
|
|
12790
|
+
interface AdaptiveShippingRate {
|
|
12791
|
+
readonly id: string;
|
|
12792
|
+
readonly organization_id: string;
|
|
12793
|
+
readonly destination_country: string;
|
|
12794
|
+
readonly coefficient: number;
|
|
12795
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
12796
|
+
readonly version_id?: string;
|
|
12797
|
+
readonly effective_at: string;
|
|
12798
|
+
readonly effective_until?: string;
|
|
12799
|
+
}
|
|
12800
|
+
interface AdaptiveShippingRateDeleted {
|
|
12801
|
+
readonly discriminator: 'adaptive_shipping_rate_deleted';
|
|
12802
|
+
readonly event_id: string;
|
|
12803
|
+
readonly timestamp: string;
|
|
12804
|
+
readonly organization: string;
|
|
12805
|
+
readonly id: string;
|
|
12806
|
+
}
|
|
12807
|
+
interface AdaptiveShippingRateUpserted {
|
|
12808
|
+
readonly discriminator: 'adaptive_shipping_rate_upserted';
|
|
12809
|
+
readonly event_id: string;
|
|
12810
|
+
readonly timestamp: string;
|
|
12811
|
+
readonly organization: string;
|
|
12812
|
+
readonly adaptive_shipping_rate: io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
12813
|
+
}
|
|
12726
12814
|
interface AdditionalImportTax {
|
|
12727
12815
|
readonly name?: string;
|
|
12728
12816
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -13104,33 +13192,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13104
13192
|
interface AftershipWebhook {
|
|
13105
13193
|
readonly placeholder?: boolean;
|
|
13106
13194
|
}
|
|
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
13195
|
interface AllItemsExport {
|
|
13135
13196
|
readonly discriminator: 'all_items_export';
|
|
13136
13197
|
readonly event_id: string;
|
|
@@ -13138,10 +13199,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13138
13199
|
readonly organization: string;
|
|
13139
13200
|
readonly export_id: string;
|
|
13140
13201
|
}
|
|
13141
|
-
interface AllOrganizationsMembership {
|
|
13142
|
-
readonly user_id: string;
|
|
13143
|
-
readonly role: io.flow.common.v0.enums.Role;
|
|
13144
|
-
}
|
|
13145
13202
|
interface AllocationItemReference {
|
|
13146
13203
|
readonly number: string;
|
|
13147
13204
|
}
|
|
@@ -13164,60 +13221,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13164
13221
|
readonly type: io.flow.internal.v0.enums.AmruthaItemType;
|
|
13165
13222
|
readonly added_on: string;
|
|
13166
13223
|
}
|
|
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
13224
|
interface ApplePayAuthorizationPayload {
|
|
13222
13225
|
readonly discriminator: 'apple_pay_authorization_payload';
|
|
13223
13226
|
readonly apple_pay_token: string;
|
|
@@ -13305,6 +13308,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13305
13308
|
readonly keywords?: string[];
|
|
13306
13309
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
13307
13310
|
}
|
|
13311
|
+
interface B2BFeeMorTaxTriggerMetadata {
|
|
13312
|
+
readonly discriminator: 'b2b_fee_mor_tax_trigger_metadata';
|
|
13313
|
+
readonly trigger_type: io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType;
|
|
13314
|
+
}
|
|
13315
|
+
interface B2BFeeShippingTaxTriggerMetadata {
|
|
13316
|
+
readonly discriminator: 'b2b_fee_shipping_tax_trigger_metadata';
|
|
13317
|
+
readonly trigger_type: io.flow.internal.v0.enums.B2BFeeShippingTaxTriggerType;
|
|
13318
|
+
}
|
|
13308
13319
|
interface B2BTaxLedger {
|
|
13309
13320
|
readonly id: string;
|
|
13310
13321
|
readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
|
|
@@ -13322,6 +13333,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13322
13333
|
readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
13323
13334
|
readonly document_date: string;
|
|
13324
13335
|
readonly ledger_report_id?: string;
|
|
13336
|
+
readonly voids_invoice_number?: string;
|
|
13337
|
+
readonly document_number?: string;
|
|
13325
13338
|
}
|
|
13326
13339
|
interface B2BTaxLedgerForm {
|
|
13327
13340
|
readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
|
|
@@ -13339,6 +13352,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13339
13352
|
readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
13340
13353
|
readonly document_date: string;
|
|
13341
13354
|
readonly ledger_report_id?: string;
|
|
13355
|
+
readonly voids_invoice_number?: string;
|
|
13356
|
+
readonly document_number?: string;
|
|
13357
|
+
}
|
|
13358
|
+
interface B2BTaxTransaction {
|
|
13359
|
+
readonly id: string;
|
|
13360
|
+
readonly organization_id: string;
|
|
13361
|
+
readonly order_number: string;
|
|
13362
|
+
readonly transaction_source_id: string;
|
|
13363
|
+
readonly transaction_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
13364
|
+
readonly transaction_date: string;
|
|
13365
|
+
readonly currency: string;
|
|
13366
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
13367
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
13368
|
+
readonly taxable_items: io.flow.internal.v0.models.B2BTransactionTaxableItem[];
|
|
13369
|
+
readonly taxable_amount_total: io.flow.common.v0.models.Money;
|
|
13370
|
+
readonly tax_total: io.flow.common.v0.models.Money;
|
|
13371
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
13372
|
+
readonly document_number?: string;
|
|
13373
|
+
}
|
|
13374
|
+
interface B2BTaxTransactionDeleted {
|
|
13375
|
+
readonly discriminator: 'b2b_tax_transaction_deleted';
|
|
13376
|
+
readonly event_id: string;
|
|
13377
|
+
readonly timestamp: string;
|
|
13378
|
+
readonly organization: string;
|
|
13379
|
+
readonly id: string;
|
|
13380
|
+
}
|
|
13381
|
+
interface B2BTaxTransactionUpserted {
|
|
13382
|
+
readonly discriminator: 'b2b_tax_transaction_upserted';
|
|
13383
|
+
readonly event_id: string;
|
|
13384
|
+
readonly timestamp: string;
|
|
13385
|
+
readonly organization: string;
|
|
13386
|
+
readonly b2b_tax_transaction: io.flow.internal.v0.models.B2BTaxTransaction;
|
|
13387
|
+
}
|
|
13388
|
+
interface B2BTransactionTaxLine {
|
|
13389
|
+
readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
|
|
13390
|
+
readonly tax_rate: number;
|
|
13391
|
+
readonly tax_amount: io.flow.common.v0.models.Money;
|
|
13392
|
+
readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
|
|
13393
|
+
}
|
|
13394
|
+
interface B2BTransactionTaxableItem {
|
|
13395
|
+
readonly line_item_reference: string;
|
|
13396
|
+
readonly label: string;
|
|
13397
|
+
readonly taxable_amount: io.flow.common.v0.models.Money;
|
|
13398
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
13399
|
+
readonly taxes: io.flow.internal.v0.models.B2BTransactionTaxLine[];
|
|
13342
13400
|
}
|
|
13343
13401
|
interface BankAccount {
|
|
13344
13402
|
readonly status: io.flow.internal.v0.enums.BankAccountStatus;
|
|
@@ -13608,6 +13666,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13608
13666
|
readonly tax_refund: io.flow.common.v0.models.Price;
|
|
13609
13667
|
readonly b2b_tax: io.flow.common.v0.models.Price;
|
|
13610
13668
|
readonly b2b_tax_refund: io.flow.common.v0.models.Price;
|
|
13669
|
+
readonly merchant_fee: io.flow.common.v0.models.Price;
|
|
13670
|
+
readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
|
|
13671
|
+
readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
|
|
13672
|
+
readonly flat_rate_label: io.flow.common.v0.models.Price;
|
|
13611
13673
|
}
|
|
13612
13674
|
interface BillingStatementUpserted {
|
|
13613
13675
|
readonly discriminator: 'billing_statement_upserted';
|
|
@@ -13665,6 +13727,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13665
13727
|
readonly public_key: string;
|
|
13666
13728
|
readonly secret_key: string;
|
|
13667
13729
|
}
|
|
13730
|
+
interface BojanaItem {
|
|
13731
|
+
readonly id: string;
|
|
13732
|
+
readonly number: string;
|
|
13733
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
13734
|
+
readonly description?: string;
|
|
13735
|
+
readonly type: io.flow.internal.v0.enums.BojanaItemType;
|
|
13736
|
+
readonly added_on: string;
|
|
13737
|
+
}
|
|
13738
|
+
interface BojanaItemDeleted {
|
|
13739
|
+
readonly discriminator: 'bojana_item_deleted';
|
|
13740
|
+
readonly event_id: string;
|
|
13741
|
+
readonly timestamp: string;
|
|
13742
|
+
readonly id: string;
|
|
13743
|
+
}
|
|
13744
|
+
interface BojanaItemForm {
|
|
13745
|
+
readonly number: string;
|
|
13746
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
13747
|
+
readonly description?: string;
|
|
13748
|
+
readonly type: io.flow.internal.v0.enums.BojanaItemType;
|
|
13749
|
+
readonly added_on: string;
|
|
13750
|
+
}
|
|
13751
|
+
interface BojanaItemUpserted {
|
|
13752
|
+
readonly discriminator: 'bojana_item_upserted';
|
|
13753
|
+
readonly event_id: string;
|
|
13754
|
+
readonly timestamp: string;
|
|
13755
|
+
readonly item: io.flow.internal.v0.models.BojanaItem;
|
|
13756
|
+
}
|
|
13668
13757
|
interface BooleanFeatureDefaultValue {
|
|
13669
13758
|
readonly discriminator: 'boolean';
|
|
13670
13759
|
readonly value: boolean;
|
|
@@ -14541,6 +14630,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14541
14630
|
readonly url: string;
|
|
14542
14631
|
readonly type: io.flow.internal.v0.enums.CheckoutUrlType;
|
|
14543
14632
|
}
|
|
14633
|
+
interface ChenglinItem {
|
|
14634
|
+
readonly id: string;
|
|
14635
|
+
readonly number: string;
|
|
14636
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
14637
|
+
readonly description?: string;
|
|
14638
|
+
readonly type: io.flow.internal.v0.enums.GabrielItemType;
|
|
14639
|
+
readonly added_on: string;
|
|
14640
|
+
}
|
|
14641
|
+
interface ChenglinItemDeleted {
|
|
14642
|
+
readonly discriminator: 'chenglin_item_deleted';
|
|
14643
|
+
readonly event_id: string;
|
|
14644
|
+
readonly timestamp: string;
|
|
14645
|
+
readonly id: string;
|
|
14646
|
+
}
|
|
14647
|
+
interface ChenglinItemForm {
|
|
14648
|
+
readonly number: string;
|
|
14649
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
14650
|
+
readonly description?: string;
|
|
14651
|
+
readonly type: io.flow.internal.v0.enums.GabrielItemType;
|
|
14652
|
+
readonly added_on: string;
|
|
14653
|
+
}
|
|
14654
|
+
interface ChenglinItemUpserted {
|
|
14655
|
+
readonly discriminator: 'chenglin_item_upserted';
|
|
14656
|
+
readonly event_id: string;
|
|
14657
|
+
readonly timestamp: string;
|
|
14658
|
+
readonly item: io.flow.internal.v0.models.ChenglinItem;
|
|
14659
|
+
}
|
|
14544
14660
|
interface Cipher {
|
|
14545
14661
|
readonly id: string;
|
|
14546
14662
|
readonly attributes: Record<string, string>;
|
|
@@ -15039,7 +15155,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15039
15155
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
15040
15156
|
readonly transactions: io.flow.internal.v0.models.DebugOrderTransactionDetails[];
|
|
15041
15157
|
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
15042
|
-
readonly banking
|
|
15158
|
+
readonly banking?: io.flow.internal.v0.models.DebugBankingDetails;
|
|
15043
15159
|
}
|
|
15044
15160
|
interface DebugOrderTransactionDetails {
|
|
15045
15161
|
readonly transaction: io.flow.billing.v0.models.Transaction;
|
|
@@ -16060,6 +16176,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16060
16176
|
readonly status?: io.flow.internal.v0.enums.ProcessorEntityStatus;
|
|
16061
16177
|
readonly organization_capability?: io.flow.internal.v0.enums.OrganizationCapability;
|
|
16062
16178
|
}
|
|
16179
|
+
interface FlatRate {
|
|
16180
|
+
readonly mail_class: io.flow.internal.v0.enums.MailClass;
|
|
16181
|
+
readonly carrier_id: string;
|
|
16182
|
+
readonly service_id: string;
|
|
16183
|
+
readonly price: io.flow.common.v0.models.Money;
|
|
16184
|
+
readonly free_shipping_threshold?: io.flow.common.v0.models.Money;
|
|
16185
|
+
readonly min_delivery_days?: number;
|
|
16186
|
+
readonly max_delivery_days?: number;
|
|
16187
|
+
}
|
|
16188
|
+
interface FlatRateLabelTransaction {
|
|
16189
|
+
readonly discriminator: 'flat_rate_label_transaction';
|
|
16190
|
+
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
16191
|
+
readonly id: string;
|
|
16192
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
16193
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
16194
|
+
readonly posted_at?: string;
|
|
16195
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
16196
|
+
readonly description: string;
|
|
16197
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
16198
|
+
readonly created_at: string;
|
|
16199
|
+
}
|
|
16063
16200
|
interface FlexeWebhook {
|
|
16064
16201
|
readonly placeholder?: boolean;
|
|
16065
16202
|
}
|
|
@@ -16356,15 +16493,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16356
16493
|
readonly organization: string;
|
|
16357
16494
|
readonly ftp_file: io.flow.ftp.v0.models.FtpFile;
|
|
16358
16495
|
}
|
|
16359
|
-
interface FuelSurchargeServiceFeeAmountByWeightPutForm {
|
|
16360
|
-
readonly discriminator: 'fuel_surcharge_service_fee_amount_by_weight_put_form';
|
|
16361
|
-
readonly amount: io.flow.common.v0.models.Money;
|
|
16362
|
-
readonly weight: io.flow.ratecard.v0.models.FeeWeight;
|
|
16363
|
-
}
|
|
16364
|
-
interface FuelSurchargeServiceFeePercentPutForm {
|
|
16365
|
-
readonly discriminator: 'fuel_surcharge_service_fee_percent_put_form';
|
|
16366
|
-
readonly percent: number;
|
|
16367
|
-
}
|
|
16368
16496
|
interface Fulfillment {
|
|
16369
16497
|
readonly id: string;
|
|
16370
16498
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
@@ -16613,6 +16741,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16613
16741
|
readonly organization_ids: string[];
|
|
16614
16742
|
readonly num_events: number;
|
|
16615
16743
|
}
|
|
16744
|
+
interface GenerateLoadRate {
|
|
16745
|
+
readonly organization_ids: string[];
|
|
16746
|
+
readonly events_per_second: number;
|
|
16747
|
+
readonly duration_seconds: number;
|
|
16748
|
+
}
|
|
16616
16749
|
interface GenerateLoadSingleOrg {
|
|
16617
16750
|
readonly discriminator: 'generate_load_single_org';
|
|
16618
16751
|
readonly organization_id: string;
|
|
@@ -16758,39 +16891,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16758
16891
|
readonly organization: string;
|
|
16759
16892
|
readonly export_id: string;
|
|
16760
16893
|
}
|
|
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
16894
|
interface Hs6 {
|
|
16789
16895
|
readonly code: string;
|
|
16790
16896
|
readonly description: string;
|
|
16791
16897
|
}
|
|
16792
16898
|
interface Hs6Metadata {
|
|
16793
|
-
readonly description
|
|
16899
|
+
readonly description?: string;
|
|
16900
|
+
readonly classification_source?: io.flow.internal.v0.enums.ClassificationSource;
|
|
16794
16901
|
}
|
|
16795
16902
|
interface ImportCompleted {
|
|
16796
16903
|
readonly discriminator: 'import_completed';
|
|
@@ -17241,10 +17348,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17241
17348
|
interface ItemValuesForm {
|
|
17242
17349
|
readonly values: string[];
|
|
17243
17350
|
}
|
|
17244
|
-
interface JeanDemoItem {
|
|
17245
|
-
readonly id: string;
|
|
17246
|
-
readonly name: string;
|
|
17247
|
-
}
|
|
17248
17351
|
interface Journal {
|
|
17249
17352
|
readonly name: string;
|
|
17250
17353
|
readonly queued: number;
|
|
@@ -17346,30 +17449,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17346
17449
|
readonly country: string;
|
|
17347
17450
|
readonly postal?: string;
|
|
17348
17451
|
}
|
|
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
17452
|
interface LabelInvoiceRequest {
|
|
17374
17453
|
readonly id: string;
|
|
17375
17454
|
readonly label: io.flow.internal.v0.models.TrueupLabelSummary;
|
|
@@ -17447,6 +17526,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17447
17526
|
readonly reference_id?: string;
|
|
17448
17527
|
readonly logistics_integration_provider?: string;
|
|
17449
17528
|
readonly tax_lrp_liabilities?: io.flow.internal.v0.models.Liability[];
|
|
17529
|
+
readonly channel_id?: string;
|
|
17450
17530
|
}
|
|
17451
17531
|
interface LabelSummary {
|
|
17452
17532
|
readonly id: string;
|
|
@@ -17817,6 +17897,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17817
17897
|
readonly original_transaction?: io.flow.internal.v0.models.TransactionReference;
|
|
17818
17898
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
17819
17899
|
readonly attributes?: Record<string, string>;
|
|
17900
|
+
readonly recoup?: boolean;
|
|
17820
17901
|
readonly id: string;
|
|
17821
17902
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
17822
17903
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -17833,6 +17914,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17833
17914
|
readonly category?: io.flow.internal.v0.enums.ManualTransactionCategory;
|
|
17834
17915
|
readonly order?: io.flow.internal.v0.models.ManualTransactionFormOrder;
|
|
17835
17916
|
readonly original_transaction_id?: string;
|
|
17917
|
+
readonly recoup?: boolean;
|
|
17836
17918
|
readonly attributes?: Record<string, string>;
|
|
17837
17919
|
}
|
|
17838
17920
|
interface ManualTransactionFormOrder {
|
|
@@ -18000,12 +18082,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18000
18082
|
readonly transactions: io.flow.internal.v0.models.MerchantTransactions;
|
|
18001
18083
|
readonly total: number;
|
|
18002
18084
|
}
|
|
18085
|
+
interface MerchantSurcharge {
|
|
18086
|
+
readonly type: io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
18087
|
+
readonly amount: number;
|
|
18088
|
+
}
|
|
18003
18089
|
interface MerchantTransactions {
|
|
18004
18090
|
readonly adjustment: number;
|
|
18005
18091
|
readonly reversal: number;
|
|
18006
18092
|
readonly tax: number;
|
|
18007
18093
|
readonly duty: number;
|
|
18008
18094
|
readonly freight: number;
|
|
18095
|
+
readonly base_amount?: number;
|
|
18096
|
+
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
18009
18097
|
readonly total: number;
|
|
18010
18098
|
readonly tax_refund?: number;
|
|
18011
18099
|
readonly tax_reversal?: number;
|
|
@@ -18031,6 +18119,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18031
18119
|
readonly id: string;
|
|
18032
18120
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
18033
18121
|
}
|
|
18122
|
+
interface MorCostDeleted {
|
|
18123
|
+
readonly discriminator: 'mor_cost_deleted';
|
|
18124
|
+
readonly event_id: string;
|
|
18125
|
+
readonly timestamp: string;
|
|
18126
|
+
readonly organization: string;
|
|
18127
|
+
readonly id: string;
|
|
18128
|
+
}
|
|
18129
|
+
interface MorCostSummary {
|
|
18130
|
+
readonly id: string;
|
|
18131
|
+
readonly organization_id: string;
|
|
18132
|
+
readonly order_number: string;
|
|
18133
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
18134
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
18135
|
+
}
|
|
18136
|
+
interface MorCostUpserted {
|
|
18137
|
+
readonly discriminator: 'mor_cost_upserted';
|
|
18138
|
+
readonly event_id: string;
|
|
18139
|
+
readonly timestamp: string;
|
|
18140
|
+
readonly organization: string;
|
|
18141
|
+
readonly mor_cost: io.flow.internal.v0.models.MorCostSummary;
|
|
18142
|
+
}
|
|
18034
18143
|
interface NegativeDebitMetrics {
|
|
18035
18144
|
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
18036
18145
|
readonly first_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
@@ -18043,33 +18152,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18043
18152
|
readonly amount: io.flow.common.v0.models.Price;
|
|
18044
18153
|
readonly conditions?: string;
|
|
18045
18154
|
}
|
|
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
18155
|
interface NoCalculatedTaxAmount {
|
|
18074
18156
|
readonly discriminator: 'no_calculated_tax_amount';
|
|
18075
18157
|
readonly amount: number;
|
|
@@ -18142,6 +18224,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18142
18224
|
readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
18143
18225
|
readonly blocked_since?: string;
|
|
18144
18226
|
readonly onboarding_segment?: string;
|
|
18227
|
+
readonly country?: string;
|
|
18145
18228
|
}
|
|
18146
18229
|
interface OnboardingStateForm {
|
|
18147
18230
|
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
@@ -18367,7 +18450,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18367
18450
|
readonly organization_id: string;
|
|
18368
18451
|
readonly shopify_order_id: string;
|
|
18369
18452
|
readonly order_number: string;
|
|
18370
|
-
readonly tax_and_duty_inclusivity_setting: io.flow.
|
|
18453
|
+
readonly tax_and_duty_inclusivity_setting: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
18371
18454
|
}
|
|
18372
18455
|
interface OrderTaxAndDutyInclusivitySettingDeleted {
|
|
18373
18456
|
readonly discriminator: 'order_tax_and_duty_inclusivity_setting_deleted';
|
|
@@ -18699,6 +18782,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18699
18782
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
18700
18783
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
18701
18784
|
}
|
|
18785
|
+
interface OrganizationPromotion {
|
|
18786
|
+
readonly status: io.flow.internal.v0.enums.OrganizationPromotionStatus;
|
|
18787
|
+
readonly prod_org: string;
|
|
18788
|
+
}
|
|
18789
|
+
interface OrganizationPromotionWarning {
|
|
18790
|
+
readonly prod_org: string;
|
|
18791
|
+
readonly message: string;
|
|
18792
|
+
}
|
|
18702
18793
|
interface OrganizationRestrictionNoteForm {
|
|
18703
18794
|
readonly note: string;
|
|
18704
18795
|
readonly note_type: io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -18864,7 +18955,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18864
18955
|
readonly label_created_at: string;
|
|
18865
18956
|
readonly carrier_id: string;
|
|
18866
18957
|
readonly carrier_tracking_number: string;
|
|
18867
|
-
readonly revenue_share_percentage
|
|
18958
|
+
readonly revenue_share_percentage?: number;
|
|
18868
18959
|
readonly outbound_transaction_id?: string;
|
|
18869
18960
|
}
|
|
18870
18961
|
interface OtherRecordMetadataChannel {
|
|
@@ -18893,6 +18984,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18893
18984
|
readonly label_transaction_id: string;
|
|
18894
18985
|
readonly label_invoice_request_id: string;
|
|
18895
18986
|
readonly carrier_charge_id: string;
|
|
18987
|
+
readonly subtype?: string;
|
|
18896
18988
|
}
|
|
18897
18989
|
interface OtherRecordOrderSummary {
|
|
18898
18990
|
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
@@ -19433,21 +19525,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19433
19525
|
readonly minimum_amount_base: number;
|
|
19434
19526
|
readonly rate: number;
|
|
19435
19527
|
}
|
|
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
19528
|
interface Prediction {
|
|
19452
19529
|
readonly main_material: string;
|
|
19453
19530
|
readonly gender: string;
|
|
@@ -19503,6 +19580,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19503
19580
|
readonly last_request: string;
|
|
19504
19581
|
}
|
|
19505
19582
|
interface PreonboardingSellabilityResult {
|
|
19583
|
+
readonly id?: string;
|
|
19506
19584
|
readonly merchant_id: string;
|
|
19507
19585
|
readonly product_id: string;
|
|
19508
19586
|
readonly channel: string;
|
|
@@ -19514,10 +19592,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19514
19592
|
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
19515
19593
|
readonly rule_ids?: string[];
|
|
19516
19594
|
readonly matching_positive_keywords?: string[];
|
|
19595
|
+
readonly matching_sellability_positive_keywords?: string[];
|
|
19517
19596
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
19518
19597
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19519
19598
|
readonly fingerprint: string;
|
|
19520
19599
|
}
|
|
19600
|
+
interface PreonboardingSellabilityResultDeleted {
|
|
19601
|
+
readonly discriminator: 'preonboarding_sellability_result_deleted';
|
|
19602
|
+
readonly event_id: string;
|
|
19603
|
+
readonly timestamp: string;
|
|
19604
|
+
readonly id: string;
|
|
19605
|
+
}
|
|
19606
|
+
interface PreonboardingSellabilityResultInserted {
|
|
19607
|
+
readonly discriminator: 'preonboarding_sellability_result_inserted';
|
|
19608
|
+
readonly event_id: string;
|
|
19609
|
+
readonly timestamp: string;
|
|
19610
|
+
readonly preonboarding_sellability_result: io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
19611
|
+
}
|
|
19612
|
+
interface PreonboardingSellabilityResultUpdated {
|
|
19613
|
+
readonly discriminator: 'preonboarding_sellability_result_updated';
|
|
19614
|
+
readonly event_id: string;
|
|
19615
|
+
readonly timestamp: string;
|
|
19616
|
+
readonly previous_preonboarding_sellability_result: io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
19617
|
+
readonly preonboarding_sellability_result: io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
19618
|
+
}
|
|
19521
19619
|
interface PriceInclusivity {
|
|
19522
19620
|
readonly tax?: boolean;
|
|
19523
19621
|
readonly duty?: boolean;
|
|
@@ -19753,9 +19851,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19753
19851
|
}
|
|
19754
19852
|
interface ProductSellabilityInternalResult {
|
|
19755
19853
|
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
19756
|
-
readonly
|
|
19854
|
+
readonly rule_matches: io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch[];
|
|
19855
|
+
readonly matching_positive_keywords?: string[];
|
|
19856
|
+
readonly matching_sellability_positive_keywords?: string[];
|
|
19857
|
+
}
|
|
19858
|
+
interface ProductSellabilityInternalRuleMatch {
|
|
19859
|
+
readonly rule_id: string;
|
|
19860
|
+
readonly match_types: io.flow.internal.v0.enums.SellabilityInternalMatchType[];
|
|
19757
19861
|
}
|
|
19758
19862
|
interface ProductSellabilityResult {
|
|
19863
|
+
readonly id?: string;
|
|
19759
19864
|
readonly shop_id: string;
|
|
19760
19865
|
readonly product_number: string;
|
|
19761
19866
|
readonly request_id: string;
|
|
@@ -19764,6 +19869,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19764
19869
|
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
19765
19870
|
readonly rule_ids?: string[];
|
|
19766
19871
|
readonly taxonomy_category?: string;
|
|
19872
|
+
readonly fingerprint?: string;
|
|
19873
|
+
readonly processed_at?: string;
|
|
19874
|
+
}
|
|
19875
|
+
interface ProductSellabilityResultDeleted {
|
|
19876
|
+
readonly discriminator: 'product_sellability_result_deleted';
|
|
19877
|
+
readonly event_id: string;
|
|
19878
|
+
readonly timestamp: string;
|
|
19879
|
+
readonly id: string;
|
|
19880
|
+
}
|
|
19881
|
+
interface ProductSellabilityResultInserted {
|
|
19882
|
+
readonly discriminator: 'product_sellability_result_inserted';
|
|
19883
|
+
readonly event_id: string;
|
|
19884
|
+
readonly timestamp: string;
|
|
19885
|
+
readonly product_sellability_result: io.flow.internal.v0.models.ProductSellabilityResult;
|
|
19886
|
+
}
|
|
19887
|
+
interface ProductSellabilityResultUpdated {
|
|
19888
|
+
readonly discriminator: 'product_sellability_result_updated';
|
|
19889
|
+
readonly event_id: string;
|
|
19890
|
+
readonly timestamp: string;
|
|
19891
|
+
readonly previous_product_sellability_result: io.flow.internal.v0.models.ProductSellabilityResult;
|
|
19892
|
+
readonly product_sellability_result: io.flow.internal.v0.models.ProductSellabilityResult;
|
|
19767
19893
|
}
|
|
19768
19894
|
interface ProductTransaction {
|
|
19769
19895
|
readonly transaction_amount: number;
|
|
@@ -20123,34 +20249,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20123
20249
|
interface RatecardServiceFeesOverrideForm {
|
|
20124
20250
|
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
20125
20251
|
}
|
|
20126
|
-
interface RatecardStandardConfiguration {
|
|
20127
|
-
readonly id: string;
|
|
20128
|
-
readonly key: string;
|
|
20129
|
-
readonly source_ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
20130
|
-
readonly settings: io.flow.internal.v0.models.RatecardStandardSettings;
|
|
20131
|
-
}
|
|
20132
|
-
interface RatecardStandardConfigurationDeleted {
|
|
20133
|
-
readonly discriminator: 'ratecard_standard_configuration_deleted';
|
|
20134
|
-
readonly event_id: string;
|
|
20135
|
-
readonly timestamp: string;
|
|
20136
|
-
readonly organization: string;
|
|
20137
|
-
readonly id: string;
|
|
20138
|
-
}
|
|
20139
|
-
interface RatecardStandardConfigurationForm {
|
|
20140
|
-
readonly source_ratecard_organization: string;
|
|
20141
|
-
readonly source_ratecard_number: string;
|
|
20142
|
-
readonly margin: number;
|
|
20143
|
-
}
|
|
20144
|
-
interface RatecardStandardConfigurationUpserted {
|
|
20145
|
-
readonly discriminator: 'ratecard_standard_configuration_upserted';
|
|
20146
|
-
readonly event_id: string;
|
|
20147
|
-
readonly timestamp: string;
|
|
20148
|
-
readonly organization: string;
|
|
20149
|
-
readonly configuration: io.flow.internal.v0.models.RatecardStandardConfiguration;
|
|
20150
|
-
}
|
|
20151
|
-
interface RatecardStandardSettings {
|
|
20152
|
-
readonly margin: number;
|
|
20153
|
-
}
|
|
20154
20252
|
interface RatesChanged {
|
|
20155
20253
|
readonly event_id: string;
|
|
20156
20254
|
readonly timestamp: string;
|
|
@@ -20163,6 +20261,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20163
20261
|
readonly destination: io.flow.reference.v0.models.Country;
|
|
20164
20262
|
readonly summaries: io.flow.internal.v0.models.RateNameSummary[];
|
|
20165
20263
|
}
|
|
20264
|
+
interface RaveenaItem {
|
|
20265
|
+
readonly id: string;
|
|
20266
|
+
readonly number: string;
|
|
20267
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20268
|
+
readonly description?: string;
|
|
20269
|
+
readonly type: io.flow.internal.v0.enums.RaveenaItemType;
|
|
20270
|
+
readonly added_on: string;
|
|
20271
|
+
}
|
|
20272
|
+
interface RaveenaItemForm {
|
|
20273
|
+
readonly number: string;
|
|
20274
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20275
|
+
readonly description?: string;
|
|
20276
|
+
readonly type: io.flow.internal.v0.enums.RaveenaItemType;
|
|
20277
|
+
readonly added_on: string;
|
|
20278
|
+
}
|
|
20166
20279
|
interface RecordReference {
|
|
20167
20280
|
readonly id: string;
|
|
20168
20281
|
}
|
|
@@ -20233,6 +20346,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20233
20346
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
20234
20347
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20235
20348
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
20349
|
+
readonly account_currency?: io.flow.internal.v0.enums.AccountCurrencyFilter;
|
|
20350
|
+
readonly channel_id?: string;
|
|
20236
20351
|
}
|
|
20237
20352
|
interface ReportForm {
|
|
20238
20353
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
@@ -20408,6 +20523,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20408
20523
|
readonly td_fx_diff?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20409
20524
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20410
20525
|
}
|
|
20526
|
+
interface ReportingMerchantFreight {
|
|
20527
|
+
readonly base_amount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20528
|
+
readonly surcharges?: io.flow.internal.v0.models.ReportingMerchantFreightSurcharges;
|
|
20529
|
+
}
|
|
20530
|
+
interface ReportingMerchantFreightSurcharges {
|
|
20531
|
+
readonly duties_paid?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20532
|
+
readonly fixed_ddp?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20533
|
+
readonly fixed_currency_conversion?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20534
|
+
}
|
|
20411
20535
|
interface ReportingMerchantSubsidies {
|
|
20412
20536
|
readonly shipping: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20413
20537
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -20421,6 +20545,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20421
20545
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20422
20546
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20423
20547
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20548
|
+
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
20424
20549
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20425
20550
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20426
20551
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -20531,6 +20656,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20531
20656
|
readonly exempt_regions?: string[];
|
|
20532
20657
|
readonly excluded_rules?: string[];
|
|
20533
20658
|
}
|
|
20659
|
+
interface RestrictionBlanketOrganizationExemptionForm {
|
|
20660
|
+
readonly organization_id: string;
|
|
20661
|
+
readonly description: string;
|
|
20662
|
+
readonly is_all_rules_exempt: boolean;
|
|
20663
|
+
readonly exempt_regions?: string[];
|
|
20664
|
+
readonly excluded_rules?: string[];
|
|
20665
|
+
}
|
|
20534
20666
|
interface RestrictionCategory {
|
|
20535
20667
|
readonly category: string;
|
|
20536
20668
|
}
|
|
@@ -20783,8 +20915,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20783
20915
|
readonly id: string;
|
|
20784
20916
|
readonly rule_id: string;
|
|
20785
20917
|
readonly description: string;
|
|
20786
|
-
readonly
|
|
20787
|
-
readonly
|
|
20918
|
+
readonly origin_regions: string[];
|
|
20919
|
+
readonly destination_regions: string[];
|
|
20920
|
+
}
|
|
20921
|
+
interface RestrictionRuleLaneExemptionForm {
|
|
20922
|
+
readonly rule_id: string;
|
|
20923
|
+
readonly description: string;
|
|
20924
|
+
readonly origin_regions: string[];
|
|
20925
|
+
readonly destination_regions: string[];
|
|
20788
20926
|
}
|
|
20789
20927
|
interface RestrictionRuleOrganizationExemption {
|
|
20790
20928
|
readonly id: string;
|
|
@@ -20797,6 +20935,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20797
20935
|
readonly community_exemption_override?: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
20798
20936
|
readonly is_rule_active?: boolean;
|
|
20799
20937
|
}
|
|
20938
|
+
interface RestrictionRuleOrganizationExemptionForm {
|
|
20939
|
+
readonly organization_id: string;
|
|
20940
|
+
readonly rule_id: string;
|
|
20941
|
+
readonly description: string;
|
|
20942
|
+
readonly exempt_regions?: string[];
|
|
20943
|
+
readonly ignored_keywords?: string[];
|
|
20944
|
+
readonly additional_keywords?: string[];
|
|
20945
|
+
readonly community_exemption_override?: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
20946
|
+
readonly is_rule_active?: boolean;
|
|
20947
|
+
}
|
|
20800
20948
|
interface RestrictionRuleOverride {
|
|
20801
20949
|
readonly id: string;
|
|
20802
20950
|
readonly organization_id: string;
|
|
@@ -20965,33 +21113,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20965
21113
|
readonly organization: string;
|
|
20966
21114
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
20967
21115
|
}
|
|
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
21116
|
interface RoutingAccount {
|
|
20996
21117
|
readonly discriminator: 'routing_account';
|
|
20997
21118
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -21023,6 +21144,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21023
21144
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
21024
21145
|
readonly destination_country: string;
|
|
21025
21146
|
readonly fulfilled_at?: string;
|
|
21147
|
+
readonly reconciliation?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
21148
|
+
readonly is_eu_destination?: boolean;
|
|
21149
|
+
readonly debug_url?: string;
|
|
21026
21150
|
}
|
|
21027
21151
|
interface SandboxSetup {
|
|
21028
21152
|
readonly requested_by: string;
|
|
@@ -21030,33 +21154,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21030
21154
|
interface SandboxSetupForm {
|
|
21031
21155
|
readonly requested_by: string;
|
|
21032
21156
|
}
|
|
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
21157
|
interface ScheduledPayment {
|
|
21061
21158
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
21062
21159
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -21178,6 +21275,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21178
21275
|
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
21179
21276
|
readonly cost: io.flow.common.v0.models.Money;
|
|
21180
21277
|
}
|
|
21278
|
+
interface ShippingCostDeleted {
|
|
21279
|
+
readonly discriminator: 'shipping_cost_deleted';
|
|
21280
|
+
readonly event_id: string;
|
|
21281
|
+
readonly timestamp: string;
|
|
21282
|
+
readonly organization: string;
|
|
21283
|
+
readonly id: string;
|
|
21284
|
+
}
|
|
21285
|
+
interface ShippingCostSummary {
|
|
21286
|
+
readonly id: string;
|
|
21287
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
21288
|
+
readonly organization_id: string;
|
|
21289
|
+
readonly order_number: string;
|
|
21290
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
21291
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
21292
|
+
readonly label_id?: string;
|
|
21293
|
+
readonly base?: io.flow.trueup.v0.models.LabelBase;
|
|
21294
|
+
readonly surcharges?: io.flow.trueup.v0.models.LabelSurcharge[];
|
|
21295
|
+
}
|
|
21296
|
+
interface ShippingCostUpserted {
|
|
21297
|
+
readonly discriminator: 'shipping_cost_upserted';
|
|
21298
|
+
readonly event_id: string;
|
|
21299
|
+
readonly timestamp: string;
|
|
21300
|
+
readonly organization: string;
|
|
21301
|
+
readonly shipping_cost: io.flow.internal.v0.models.ShippingCostSummary;
|
|
21302
|
+
}
|
|
21181
21303
|
interface ShippingLane {
|
|
21182
21304
|
readonly origin: string;
|
|
21183
21305
|
readonly destination: string;
|
|
@@ -21231,6 +21353,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21231
21353
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
21232
21354
|
readonly include_unpublished?: boolean;
|
|
21233
21355
|
}
|
|
21356
|
+
interface ShopifyAddress {
|
|
21357
|
+
readonly address1: string;
|
|
21358
|
+
readonly city: string;
|
|
21359
|
+
readonly country_code: string;
|
|
21360
|
+
readonly address2?: string;
|
|
21361
|
+
readonly postal_code?: string;
|
|
21362
|
+
readonly province?: string;
|
|
21363
|
+
}
|
|
21364
|
+
interface ShopifyCallbackError {
|
|
21365
|
+
readonly errors: io.flow.internal.v0.models.ShopifyCallbackErrorItem[];
|
|
21366
|
+
}
|
|
21367
|
+
interface ShopifyCallbackErrorItem {
|
|
21368
|
+
readonly code: io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
|
|
21369
|
+
readonly message: string;
|
|
21370
|
+
readonly field?: string;
|
|
21371
|
+
}
|
|
21234
21372
|
interface ShopifyCatalogPublication {
|
|
21235
21373
|
readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
21236
21374
|
}
|
|
@@ -21241,6 +21379,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21241
21379
|
readonly token: io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
21242
21380
|
readonly service: io.flow.internal.v0.enums.ShopifyService;
|
|
21243
21381
|
}
|
|
21382
|
+
interface ShopifyContactDetails {
|
|
21383
|
+
readonly company?: string;
|
|
21384
|
+
readonly email?: string;
|
|
21385
|
+
readonly name?: string;
|
|
21386
|
+
readonly phone?: string;
|
|
21387
|
+
}
|
|
21244
21388
|
interface ShopifyDispute {
|
|
21245
21389
|
readonly id: string;
|
|
21246
21390
|
readonly organization_id: string;
|
|
@@ -21476,6 +21620,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21476
21620
|
readonly access_token_masked?: string;
|
|
21477
21621
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
21478
21622
|
readonly catalog_publication_owner?: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
21623
|
+
readonly fast_sellability_completed_at?: string;
|
|
21479
21624
|
}
|
|
21480
21625
|
interface ShopifyMarketsShopDeleted {
|
|
21481
21626
|
readonly discriminator: 'shopify_markets_shop_deleted';
|
|
@@ -21548,6 +21693,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21548
21693
|
readonly organization: string;
|
|
21549
21694
|
readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
21550
21695
|
}
|
|
21696
|
+
interface ShopifyMeasurements {
|
|
21697
|
+
readonly dimension_unit: io.flow.internal.v0.enums.ShopifyDimensionUnit;
|
|
21698
|
+
readonly height: number;
|
|
21699
|
+
readonly length: number;
|
|
21700
|
+
readonly width: number;
|
|
21701
|
+
readonly weight: number;
|
|
21702
|
+
readonly weight_unit: io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
21703
|
+
}
|
|
21551
21704
|
interface ShopifyMerchantPlan {
|
|
21552
21705
|
readonly id: string;
|
|
21553
21706
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -21571,6 +21724,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21571
21724
|
readonly catalog_publication?: io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
21572
21725
|
readonly token: string;
|
|
21573
21726
|
}
|
|
21727
|
+
interface ShopifyMoney {
|
|
21728
|
+
readonly amount: number;
|
|
21729
|
+
readonly currency_code: string;
|
|
21730
|
+
}
|
|
21574
21731
|
interface ShopifyMonitoringCarrierService {
|
|
21575
21732
|
readonly service: string;
|
|
21576
21733
|
}
|
|
@@ -21810,6 +21967,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21810
21967
|
readonly shopify_product: io.flow.shopify.external.v0.models.Product;
|
|
21811
21968
|
readonly deleted_at?: string;
|
|
21812
21969
|
}
|
|
21970
|
+
interface ShopifyRateCustomsDetail {
|
|
21971
|
+
readonly incoterm: io.flow.internal.v0.enums.ShopifyIncoterm;
|
|
21972
|
+
readonly net_value: io.flow.internal.v0.models.ShopifyMoney;
|
|
21973
|
+
}
|
|
21974
|
+
interface ShopifyRatePickupPoint {
|
|
21975
|
+
readonly partner_reference_id: string;
|
|
21976
|
+
}
|
|
21813
21977
|
interface ShopifyReportFileDeleted {
|
|
21814
21978
|
readonly discriminator: 'shopify_report_file_deleted';
|
|
21815
21979
|
readonly event_id: string;
|
|
@@ -21822,6 +21986,73 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21822
21986
|
readonly timestamp: string;
|
|
21823
21987
|
readonly shopify_report_file: io.flow.internal.v0.models.ReportFile;
|
|
21824
21988
|
}
|
|
21989
|
+
interface ShopifyShipmentRateAvailable {
|
|
21990
|
+
readonly carrier_service_id: string;
|
|
21991
|
+
readonly total_charges: io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
21992
|
+
readonly charges: io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
21993
|
+
readonly shipment_options: io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
21994
|
+
readonly expected_delivery_date?: string;
|
|
21995
|
+
readonly guaranteed_delivery_date?: string;
|
|
21996
|
+
readonly incoterm?: io.flow.internal.v0.enums.ShopifyIncoterm;
|
|
21997
|
+
}
|
|
21998
|
+
interface ShopifyShipmentRateCharge {
|
|
21999
|
+
readonly code: io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
22000
|
+
readonly cost: io.flow.internal.v0.models.ShopifyMoney;
|
|
22001
|
+
}
|
|
22002
|
+
interface ShopifyShipmentRateOption {
|
|
22003
|
+
readonly code: io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
22004
|
+
readonly cost: io.flow.internal.v0.models.ShopifyMoney;
|
|
22005
|
+
readonly optional?: boolean;
|
|
22006
|
+
}
|
|
22007
|
+
interface ShopifyShipmentRatePackage {
|
|
22008
|
+
readonly type: io.flow.internal.v0.enums.ShopifyPackageType;
|
|
22009
|
+
readonly measurements: io.flow.internal.v0.models.ShopifyMeasurements;
|
|
22010
|
+
}
|
|
22011
|
+
interface ShopifyShipmentRateReason {
|
|
22012
|
+
readonly code: io.flow.internal.v0.enums.ShopifyUnavailableRateReasonCode;
|
|
22013
|
+
readonly field?: string;
|
|
22014
|
+
readonly message?: string;
|
|
22015
|
+
}
|
|
22016
|
+
interface ShopifyShipmentRateRequest {
|
|
22017
|
+
readonly idempotency_key: string;
|
|
22018
|
+
readonly webhook_id: string;
|
|
22019
|
+
readonly test: boolean;
|
|
22020
|
+
readonly shipper: io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
22021
|
+
readonly shipment: io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
22022
|
+
}
|
|
22023
|
+
interface ShopifyShipmentRateResponse {
|
|
22024
|
+
readonly rates: io.flow.internal.v0.models.ShopifyShipmentRateAvailable[];
|
|
22025
|
+
readonly unavailable_rates: io.flow.internal.v0.models.ShopifyShipmentRateUnavailable[];
|
|
22026
|
+
}
|
|
22027
|
+
interface ShopifyShipmentRateShipment {
|
|
22028
|
+
readonly carrier_id: string;
|
|
22029
|
+
readonly delivery_method_type: io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
22030
|
+
readonly shipping_date_time: string;
|
|
22031
|
+
readonly return: boolean;
|
|
22032
|
+
readonly origin: io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
22033
|
+
readonly destination: io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
22034
|
+
readonly package: io.flow.internal.v0.models.ShopifyShipmentRatePackage;
|
|
22035
|
+
readonly pickup_point?: io.flow.internal.v0.models.ShopifyRatePickupPoint;
|
|
22036
|
+
readonly customs_detail?: io.flow.internal.v0.models.ShopifyRateCustomsDetail;
|
|
22037
|
+
}
|
|
22038
|
+
interface ShopifyShipmentRateShipper {
|
|
22039
|
+
readonly account_id: string;
|
|
22040
|
+
readonly carrier_account_reference_id: string;
|
|
22041
|
+
readonly byoa: boolean;
|
|
22042
|
+
}
|
|
22043
|
+
interface ShopifyShipmentRateTotalCharges {
|
|
22044
|
+
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
22045
|
+
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
22046
|
+
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
22047
|
+
}
|
|
22048
|
+
interface ShopifyShipmentRateUnavailable {
|
|
22049
|
+
readonly carrier_service_id: string;
|
|
22050
|
+
readonly reasons: io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
22051
|
+
}
|
|
22052
|
+
interface ShopifyShippingLocation {
|
|
22053
|
+
readonly address: io.flow.internal.v0.models.ShopifyAddress;
|
|
22054
|
+
readonly contact_details: io.flow.internal.v0.models.ShopifyContactDetails;
|
|
22055
|
+
}
|
|
21825
22056
|
interface ShopifyShopStatistics {
|
|
21826
22057
|
readonly id: string;
|
|
21827
22058
|
readonly initial_catalog_synced_at?: string;
|
|
@@ -21857,6 +22088,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21857
22088
|
}
|
|
21858
22089
|
interface ShopifyTestOrder {
|
|
21859
22090
|
readonly id: string;
|
|
22091
|
+
readonly submitted_at: string;
|
|
21860
22092
|
}
|
|
21861
22093
|
interface ShopifyTestOrderDeleted {
|
|
21862
22094
|
readonly discriminator: 'shopify_test_order_deleted';
|
|
@@ -21878,6 +22110,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21878
22110
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21879
22111
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21880
22112
|
readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22113
|
+
readonly subtotal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21881
22114
|
readonly total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21882
22115
|
}
|
|
21883
22116
|
interface ShopperFees {
|
|
@@ -23097,7 +23330,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23097
23330
|
readonly fulfillment_key?: string;
|
|
23098
23331
|
readonly rex_number?: string;
|
|
23099
23332
|
readonly weee_number?: string;
|
|
23100
|
-
readonly generate_commercial_invoice_only: boolean;
|
|
23101
23333
|
readonly liability_remittance_plan?: io.flow.internal.v0.models.LiabilityRemittancePlan;
|
|
23102
23334
|
readonly shipment_cost_summary?: io.flow.internal.v0.models.ShipmentCostSummary;
|
|
23103
23335
|
readonly shipping_label_hop_cost_itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
@@ -23176,7 +23408,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23176
23408
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23177
23409
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23178
23410
|
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;
|
|
23411
|
+
type Event = io.flow.internal.v0.models.AdaptiveShippingRateUpserted | io.flow.internal.v0.models.AdaptiveShippingRateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.ShippingCostUpserted | io.flow.internal.v0.models.ShippingCostDeleted | io.flow.internal.v0.models.MorCostUpserted | io.flow.internal.v0.models.MorCostDeleted | io.flow.internal.v0.models.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.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.B2BTaxTransactionUpserted | io.flow.internal.v0.models.B2BTaxTransactionDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.ChenglinItemUpserted | io.flow.internal.v0.models.ChenglinItemDeleted | io.flow.internal.v0.models.BojanaItemUpserted | io.flow.internal.v0.models.BojanaItemDeleted | io.flow.internal.v0.models.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
23412
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23181
23413
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23182
23414
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23186,7 +23418,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23186
23418
|
type FeatureValue = io.flow.internal.v0.models.BooleanFeatureValue | io.flow.internal.v0.models.StringFeatureValue;
|
|
23187
23419
|
type FraudProviderConfiguration = io.flow.internal.v0.models.FraudProviderConfigurationRiskified;
|
|
23188
23420
|
type FraudProviderConfigurationForm = io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified;
|
|
23189
|
-
type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
23190
23421
|
type FulfillmentProof = io.flow.internal.v0.models.FulfillmentProofLabelTrackingReference | io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference | io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference | io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference;
|
|
23191
23422
|
type FulfillmentTrigger = io.flow.internal.v0.models.FulfillmentTriggerProof | io.flow.internal.v0.models.FulfillmentTriggerTime;
|
|
23192
23423
|
type GenerateLoad = io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
@@ -23220,10 +23451,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23220
23451
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
23221
23452
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23222
23453
|
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;
|
|
23454
|
+
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
23455
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
23225
23456
|
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
|
-
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;
|
|
23457
|
+
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 | io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
23227
23458
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
23228
23459
|
}
|
|
23229
23460
|
export declare type Acceptance = io.flow.internal.v0.models.Acceptance;
|
|
@@ -23231,6 +23462,7 @@ export declare type AccountContact = io.flow.internal.v0.models.AccountContact;
|
|
|
23231
23462
|
export declare type AccountContactDeleted = io.flow.internal.v0.models.AccountContactDeleted;
|
|
23232
23463
|
export declare type AccountContactForm = io.flow.internal.v0.models.AccountContactForm;
|
|
23233
23464
|
export declare type AccountContactUpserted = io.flow.internal.v0.models.AccountContactUpserted;
|
|
23465
|
+
export declare type AccountCurrencyFilter = io.flow.internal.v0.enums.AccountCurrencyFilter;
|
|
23234
23466
|
export declare type AccountDeletedV2 = io.flow.internal.v0.models.AccountDeletedV2;
|
|
23235
23467
|
export declare type AccountDepositRule = io.flow.internal.v0.models.AccountDepositRule;
|
|
23236
23468
|
export declare type AccountDepositRuleForm = io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
@@ -23261,6 +23493,9 @@ export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsert
|
|
|
23261
23493
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
23262
23494
|
export declare type AccountingReturnMetadata = io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
23263
23495
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
23496
|
+
export declare type AdaptiveShippingRate = io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
23497
|
+
export declare type AdaptiveShippingRateDeleted = io.flow.internal.v0.models.AdaptiveShippingRateDeleted;
|
|
23498
|
+
export declare type AdaptiveShippingRateUpserted = io.flow.internal.v0.models.AdaptiveShippingRateUpserted;
|
|
23264
23499
|
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
23265
23500
|
export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
23266
23501
|
export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
@@ -23318,28 +23553,12 @@ export declare type AfterpayRefund = io.flow.internal.v0.models.AfterpayRefund;
|
|
|
23318
23553
|
export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayRefundDeleted;
|
|
23319
23554
|
export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
23320
23555
|
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
23556
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
23327
|
-
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
23328
23557
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
23329
23558
|
export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
23330
23559
|
export declare type AmruthaItem = io.flow.internal.v0.models.AmruthaItem;
|
|
23331
23560
|
export declare type AmruthaItemForm = io.flow.internal.v0.models.AmruthaItemForm;
|
|
23332
23561
|
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
23562
|
export declare type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
|
|
23344
23563
|
export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
23345
23564
|
export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
@@ -23362,10 +23581,19 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
|
|
|
23362
23581
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
23363
23582
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
23364
23583
|
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
23584
|
+
export declare type B2BFeeMorTaxTriggerMetadata = io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata;
|
|
23585
|
+
export declare type B2BFeeMorTaxTriggerType = io.flow.internal.v0.enums.B2BFeeMorTaxTriggerType;
|
|
23586
|
+
export declare type B2BFeeShippingTaxTriggerMetadata = io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata;
|
|
23587
|
+
export declare type B2BFeeShippingTaxTriggerType = io.flow.internal.v0.enums.B2BFeeShippingTaxTriggerType;
|
|
23365
23588
|
export declare type B2BTaxLedger = io.flow.internal.v0.models.B2BTaxLedger;
|
|
23366
23589
|
export declare type B2BTaxLedgerDocumentType = io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
23367
23590
|
export declare type B2BTaxLedgerForm = io.flow.internal.v0.models.B2BTaxLedgerForm;
|
|
23368
23591
|
export declare type B2BTaxRateType = io.flow.internal.v0.enums.B2BTaxRateType;
|
|
23592
|
+
export declare type B2BTaxTransaction = io.flow.internal.v0.models.B2BTaxTransaction;
|
|
23593
|
+
export declare type B2BTaxTransactionDeleted = io.flow.internal.v0.models.B2BTaxTransactionDeleted;
|
|
23594
|
+
export declare type B2BTaxTransactionUpserted = io.flow.internal.v0.models.B2BTaxTransactionUpserted;
|
|
23595
|
+
export declare type B2BTransactionTaxLine = io.flow.internal.v0.models.B2BTransactionTaxLine;
|
|
23596
|
+
export declare type B2BTransactionTaxableItem = io.flow.internal.v0.models.B2BTransactionTaxableItem;
|
|
23369
23597
|
export declare type BankAccount = io.flow.internal.v0.models.BankAccount;
|
|
23370
23598
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
23371
23599
|
export declare type BankAccountStatus = io.flow.internal.v0.enums.BankAccountStatus;
|
|
@@ -23423,6 +23651,11 @@ export declare type BitpayAccountPutForm = io.flow.internal.v0.models.BitpayAcco
|
|
|
23423
23651
|
export declare type BitpayAuthentication = io.flow.internal.v0.models.BitpayAuthentication;
|
|
23424
23652
|
export declare type BitpayAuthenticationDataReference = io.flow.internal.v0.models.BitpayAuthenticationDataReference;
|
|
23425
23653
|
export declare type BitpayAuthenticationForm = io.flow.internal.v0.models.BitpayAuthenticationForm;
|
|
23654
|
+
export declare type BojanaItem = io.flow.internal.v0.models.BojanaItem;
|
|
23655
|
+
export declare type BojanaItemDeleted = io.flow.internal.v0.models.BojanaItemDeleted;
|
|
23656
|
+
export declare type BojanaItemForm = io.flow.internal.v0.models.BojanaItemForm;
|
|
23657
|
+
export declare type BojanaItemType = io.flow.internal.v0.enums.BojanaItemType;
|
|
23658
|
+
export declare type BojanaItemUpserted = io.flow.internal.v0.models.BojanaItemUpserted;
|
|
23426
23659
|
export declare type BooleanFeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue;
|
|
23427
23660
|
export declare type BooleanFeatureRule = io.flow.internal.v0.models.BooleanFeatureRule;
|
|
23428
23661
|
export declare type BooleanFeatureRuleForm = io.flow.internal.v0.models.BooleanFeatureRuleForm;
|
|
@@ -23594,6 +23827,11 @@ export declare type CheckoutSettings = io.flow.internal.v0.models.CheckoutSettin
|
|
|
23594
23827
|
export declare type CheckoutShippingMethodPromptBehavior = io.flow.internal.v0.enums.CheckoutShippingMethodPromptBehavior;
|
|
23595
23828
|
export declare type CheckoutUrl = io.flow.internal.v0.models.CheckoutUrl;
|
|
23596
23829
|
export declare type CheckoutUrlType = io.flow.internal.v0.enums.CheckoutUrlType;
|
|
23830
|
+
export declare type ChenglinItem = io.flow.internal.v0.models.ChenglinItem;
|
|
23831
|
+
export declare type ChenglinItemDeleted = io.flow.internal.v0.models.ChenglinItemDeleted;
|
|
23832
|
+
export declare type ChenglinItemForm = io.flow.internal.v0.models.ChenglinItemForm;
|
|
23833
|
+
export declare type ChenglinItemType = io.flow.internal.v0.enums.ChenglinItemType;
|
|
23834
|
+
export declare type ChenglinItemUpserted = io.flow.internal.v0.models.ChenglinItemUpserted;
|
|
23597
23835
|
export declare type Cipher = io.flow.internal.v0.models.Cipher;
|
|
23598
23836
|
export declare type CipherForm = io.flow.internal.v0.models.CipherForm;
|
|
23599
23837
|
export declare type CipherReference = io.flow.internal.v0.models.CipherReference;
|
|
@@ -23627,6 +23865,7 @@ export declare type ClassificationProductSummaryPage = io.flow.internal.v0.model
|
|
|
23627
23865
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
23628
23866
|
export declare type ClassificationResponse = io.flow.internal.v0.unions.ClassificationResponse;
|
|
23629
23867
|
export declare type ClassificationScope = io.flow.internal.v0.enums.ClassificationScope;
|
|
23868
|
+
export declare type ClassificationSource = io.flow.internal.v0.enums.ClassificationSource;
|
|
23630
23869
|
export declare type ClassificationStatistics = io.flow.internal.v0.models.ClassificationStatistics;
|
|
23631
23870
|
export declare type ClassificationSummaryReportPayload = io.flow.internal.v0.models.ClassificationSummaryReportPayload;
|
|
23632
23871
|
export declare type ClassificationTaxonomy = io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
@@ -23880,6 +24119,9 @@ export declare type FiservAuthenticationForm = io.flow.internal.v0.models.Fiserv
|
|
|
23880
24119
|
export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
23881
24120
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
23882
24121
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
24122
|
+
export declare type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
24123
|
+
export declare type FlatRateLabelTransaction = io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
24124
|
+
export declare type FlatRateLabelTransactionType = io.flow.internal.v0.enums.FlatRateLabelTransactionType;
|
|
23883
24125
|
export declare type FlexeWebhook = io.flow.internal.v0.models.FlexeWebhook;
|
|
23884
24126
|
export declare type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
23885
24127
|
export declare type FlowBillingStatement = io.flow.internal.v0.models.FlowBillingStatement;
|
|
@@ -23925,9 +24167,6 @@ export declare type FraudSummary = io.flow.internal.v0.models.FraudSummary;
|
|
|
23925
24167
|
export declare type FtpFileDeleted = io.flow.internal.v0.models.FtpFileDeleted;
|
|
23926
24168
|
export declare type FtpFileToProcessUploaded = io.flow.internal.v0.models.FtpFileToProcessUploaded;
|
|
23927
24169
|
export declare type FtpFileUpserted = io.flow.internal.v0.models.FtpFileUpserted;
|
|
23928
|
-
export declare type FuelSurchargeServiceFeeAmountByWeightPutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
23929
|
-
export declare type FuelSurchargeServiceFeePercentPutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm;
|
|
23930
|
-
export declare type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.unions.FuelSurchargeServiceFeePutForm;
|
|
23931
24170
|
export declare type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
23932
24171
|
export declare type FulfillmentActionForm = io.flow.internal.v0.models.FulfillmentActionForm;
|
|
23933
24172
|
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
@@ -23971,6 +24210,7 @@ export declare type GeRevenueShareTransaction = io.flow.internal.v0.models.GeRev
|
|
|
23971
24210
|
export declare type GeRevenueShareTransactionType = io.flow.internal.v0.enums.GeRevenueShareTransactionType;
|
|
23972
24211
|
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
23973
24212
|
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
24213
|
+
export declare type GenerateLoadRate = io.flow.internal.v0.models.GenerateLoadRate;
|
|
23974
24214
|
export declare type GenerateLoadSingleOrg = io.flow.internal.v0.models.GenerateLoadSingleOrg;
|
|
23975
24215
|
export declare type GenericValidationError = io.flow.internal.v0.models.GenericValidationError;
|
|
23976
24216
|
export declare type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
@@ -24000,11 +24240,6 @@ export declare type HarmonizationThresholdForm = io.flow.internal.v0.models.Harm
|
|
|
24000
24240
|
export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics;
|
|
24001
24241
|
export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
24002
24242
|
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
24243
|
export declare type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
24009
24244
|
export declare type Hs6CodeSource = io.flow.internal.v0.enums.Hs6CodeSource;
|
|
24010
24245
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
@@ -24078,7 +24313,6 @@ export declare type ItemSalesMarginVersion = io.flow.internal.v0.models.ItemSale
|
|
|
24078
24313
|
export declare type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
24079
24314
|
export declare type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
24080
24315
|
export declare type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
24081
|
-
export declare type JeanDemoItem = io.flow.internal.v0.models.JeanDemoItem;
|
|
24082
24316
|
export declare type Journal = io.flow.internal.v0.models.Journal;
|
|
24083
24317
|
export declare type JournalFailure = io.flow.internal.v0.models.JournalFailure;
|
|
24084
24318
|
export declare type JournalOperation = io.flow.internal.v0.enums.JournalOperation;
|
|
@@ -24105,10 +24339,6 @@ export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreatio
|
|
|
24105
24339
|
export declare type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
24106
24340
|
export declare type LabelEventMedium = io.flow.internal.v0.enums.LabelEventMedium;
|
|
24107
24341
|
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
24342
|
export declare type LabelInvoiceRequest = io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
24113
24343
|
export declare type LabelInvoiceRequestDeleted = io.flow.internal.v0.models.LabelInvoiceRequestDeleted;
|
|
24114
24344
|
export declare type LabelInvoiceRequestUpserted = io.flow.internal.v0.models.LabelInvoiceRequestUpserted;
|
|
@@ -24166,6 +24396,7 @@ export declare type LoyaltyProgram = io.flow.internal.v0.models.LoyaltyProgram;
|
|
|
24166
24396
|
export declare type LoyaltyProgramMessage = io.flow.internal.v0.models.LoyaltyProgramMessage;
|
|
24167
24397
|
export declare type LoyaltyProgramReward = io.flow.internal.v0.models.LoyaltyProgramReward;
|
|
24168
24398
|
export declare type LoyaltyProgramRewards = io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
24399
|
+
export declare type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
24169
24400
|
export declare type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
24170
24401
|
export declare type MainTransactionDeleted = io.flow.internal.v0.models.MainTransactionDeleted;
|
|
24171
24402
|
export declare type MainTransactionDeletedV2 = io.flow.internal.v0.models.MainTransactionDeletedV2;
|
|
@@ -24207,20 +24438,19 @@ export declare type MerchantOverrideUpserted = io.flow.internal.v0.models.Mercha
|
|
|
24207
24438
|
export declare type MerchantSearchResult = io.flow.internal.v0.models.MerchantSearchResult;
|
|
24208
24439
|
export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
24209
24440
|
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
24441
|
+
export declare type MerchantSurcharge = io.flow.internal.v0.models.MerchantSurcharge;
|
|
24210
24442
|
export declare type MerchantTransactions = io.flow.internal.v0.models.MerchantTransactions;
|
|
24211
24443
|
export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpserted;
|
|
24212
24444
|
export declare type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
24213
24445
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
24214
24446
|
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
24215
24447
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
24448
|
+
export declare type MorCostDeleted = io.flow.internal.v0.models.MorCostDeleted;
|
|
24449
|
+
export declare type MorCostSummary = io.flow.internal.v0.models.MorCostSummary;
|
|
24450
|
+
export declare type MorCostUpserted = io.flow.internal.v0.models.MorCostUpserted;
|
|
24216
24451
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
24217
24452
|
export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
24218
24453
|
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
24454
|
export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
24225
24455
|
export declare type NoClassificationForm = io.flow.internal.v0.models.NoClassificationForm;
|
|
24226
24456
|
export declare type NoLiabilityReasonCode = io.flow.internal.v0.enums.NoLiabilityReasonCode;
|
|
@@ -24336,6 +24566,9 @@ export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.
|
|
|
24336
24566
|
export declare type OrganizationPaymentSettingUpserted = io.flow.internal.v0.models.OrganizationPaymentSettingUpserted;
|
|
24337
24567
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
24338
24568
|
export declare type OrganizationPaymentStatus = io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
24569
|
+
export declare type OrganizationPromotion = io.flow.internal.v0.models.OrganizationPromotion;
|
|
24570
|
+
export declare type OrganizationPromotionStatus = io.flow.internal.v0.enums.OrganizationPromotionStatus;
|
|
24571
|
+
export declare type OrganizationPromotionWarning = io.flow.internal.v0.models.OrganizationPromotionWarning;
|
|
24339
24572
|
export declare type OrganizationRestrictionApprovalStatus = io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
24340
24573
|
export declare type OrganizationRestrictionNoteForm = io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
24341
24574
|
export declare type OrganizationRestrictionNoteType = io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -24458,9 +24691,6 @@ export declare type PlatformFeeFlat = io.flow.internal.v0.models.PlatformFeeFlat
|
|
|
24458
24691
|
export declare type PlatformFeePause = io.flow.internal.v0.models.PlatformFeePause;
|
|
24459
24692
|
export declare type PlatformFeePercentage = io.flow.internal.v0.models.PlatformFeePercentage;
|
|
24460
24693
|
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
24694
|
export declare type Prediction = io.flow.internal.v0.models.Prediction;
|
|
24465
24695
|
export declare type PreferredBillingSchedule = io.flow.internal.v0.enums.PreferredBillingSchedule;
|
|
24466
24696
|
export declare type PreonboardingClassificationDecision = io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
@@ -24473,6 +24703,9 @@ export declare type PreonboardingClassificationType = io.flow.internal.v0.enums.
|
|
|
24473
24703
|
export declare type PreonboardingMerchant = io.flow.internal.v0.models.PreonboardingMerchant;
|
|
24474
24704
|
export declare type PreonboardingRequestStatus = io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
24475
24705
|
export declare type PreonboardingSellabilityResult = io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
24706
|
+
export declare type PreonboardingSellabilityResultDeleted = io.flow.internal.v0.models.PreonboardingSellabilityResultDeleted;
|
|
24707
|
+
export declare type PreonboardingSellabilityResultInserted = io.flow.internal.v0.models.PreonboardingSellabilityResultInserted;
|
|
24708
|
+
export declare type PreonboardingSellabilityResultUpdated = io.flow.internal.v0.models.PreonboardingSellabilityResultUpdated;
|
|
24476
24709
|
export declare type PriceInclusivity = io.flow.internal.v0.models.PriceInclusivity;
|
|
24477
24710
|
export declare type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
24478
24711
|
export declare type PrioritizedCenterReference = io.flow.internal.v0.models.PrioritizedCenterReference;
|
|
@@ -24516,7 +24749,11 @@ export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductRev
|
|
|
24516
24749
|
export declare type ProductSellabilityInternal = io.flow.internal.v0.models.ProductSellabilityInternal;
|
|
24517
24750
|
export declare type ProductSellabilityInternalForm = io.flow.internal.v0.models.ProductSellabilityInternalForm;
|
|
24518
24751
|
export declare type ProductSellabilityInternalResult = io.flow.internal.v0.models.ProductSellabilityInternalResult;
|
|
24752
|
+
export declare type ProductSellabilityInternalRuleMatch = io.flow.internal.v0.models.ProductSellabilityInternalRuleMatch;
|
|
24519
24753
|
export declare type ProductSellabilityResult = io.flow.internal.v0.models.ProductSellabilityResult;
|
|
24754
|
+
export declare type ProductSellabilityResultDeleted = io.flow.internal.v0.models.ProductSellabilityResultDeleted;
|
|
24755
|
+
export declare type ProductSellabilityResultInserted = io.flow.internal.v0.models.ProductSellabilityResultInserted;
|
|
24756
|
+
export declare type ProductSellabilityResultUpdated = io.flow.internal.v0.models.ProductSellabilityResultUpdated;
|
|
24520
24757
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
24521
24758
|
export declare type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
24522
24759
|
export declare type ProofOfPosting = io.flow.internal.v0.unions.ProofOfPosting;
|
|
@@ -24580,13 +24817,11 @@ export declare type RatecardServiceFeeDeleted = io.flow.internal.v0.models.Ratec
|
|
|
24580
24817
|
export declare type RatecardServiceFeeUpserted = io.flow.internal.v0.models.RatecardServiceFeeUpserted;
|
|
24581
24818
|
export declare type RatecardServiceFeesOverride = io.flow.internal.v0.models.RatecardServiceFeesOverride;
|
|
24582
24819
|
export declare type RatecardServiceFeesOverrideForm = io.flow.internal.v0.models.RatecardServiceFeesOverrideForm;
|
|
24583
|
-
export declare type RatecardStandardConfiguration = io.flow.internal.v0.models.RatecardStandardConfiguration;
|
|
24584
|
-
export declare type RatecardStandardConfigurationDeleted = io.flow.internal.v0.models.RatecardStandardConfigurationDeleted;
|
|
24585
|
-
export declare type RatecardStandardConfigurationForm = io.flow.internal.v0.models.RatecardStandardConfigurationForm;
|
|
24586
|
-
export declare type RatecardStandardConfigurationUpserted = io.flow.internal.v0.models.RatecardStandardConfigurationUpserted;
|
|
24587
|
-
export declare type RatecardStandardSettings = io.flow.internal.v0.models.RatecardStandardSettings;
|
|
24588
24820
|
export declare type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
24589
24821
|
export declare type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
24822
|
+
export declare type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
24823
|
+
export declare type RaveenaItemForm = io.flow.internal.v0.models.RaveenaItemForm;
|
|
24824
|
+
export declare type RaveenaItemType = io.flow.internal.v0.enums.RaveenaItemType;
|
|
24590
24825
|
export declare type RecordReference = io.flow.internal.v0.models.RecordReference;
|
|
24591
24826
|
export declare type Redirect = io.flow.internal.v0.models.Redirect;
|
|
24592
24827
|
export declare type RedirectActionCompleted = io.flow.internal.v0.models.RedirectActionCompleted;
|
|
@@ -24635,6 +24870,8 @@ export declare type ReportingFulfillmentIsVirtual = io.flow.internal.v0.enums.Re
|
|
|
24635
24870
|
export declare type ReportingFx = io.flow.internal.v0.models.ReportingFx;
|
|
24636
24871
|
export declare type ReportingMerchantBreakdown = io.flow.internal.v0.models.ReportingMerchantBreakdown;
|
|
24637
24872
|
export declare type ReportingMerchantFees = io.flow.internal.v0.models.ReportingMerchantFees;
|
|
24873
|
+
export declare type ReportingMerchantFreight = io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
24874
|
+
export declare type ReportingMerchantFreightSurcharges = io.flow.internal.v0.models.ReportingMerchantFreightSurcharges;
|
|
24638
24875
|
export declare type ReportingMerchantSubsidies = io.flow.internal.v0.models.ReportingMerchantSubsidies;
|
|
24639
24876
|
export declare type ReportingMerchantTransactions = io.flow.internal.v0.models.ReportingMerchantTransactions;
|
|
24640
24877
|
export declare type ReportingMonetaryValue = io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -24664,6 +24901,7 @@ export declare type RestrictionAttributeResult = io.flow.internal.v0.enums.Restr
|
|
|
24664
24901
|
export declare type RestrictionAttributeRule = io.flow.internal.v0.models.RestrictionAttributeRule;
|
|
24665
24902
|
export declare type RestrictionAttributeRuleCondition = io.flow.internal.v0.unions.RestrictionAttributeRuleCondition;
|
|
24666
24903
|
export declare type RestrictionBlanketOrganizationExemption = io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption;
|
|
24904
|
+
export declare type RestrictionBlanketOrganizationExemptionForm = io.flow.internal.v0.models.RestrictionBlanketOrganizationExemptionForm;
|
|
24667
24905
|
export declare type RestrictionCategory = io.flow.internal.v0.models.RestrictionCategory;
|
|
24668
24906
|
export declare type RestrictionDecision = io.flow.internal.v0.enums.RestrictionDecision;
|
|
24669
24907
|
export declare type RestrictionFilter = io.flow.internal.v0.models.RestrictionFilter;
|
|
@@ -24698,7 +24936,9 @@ export declare type RestrictionRuleEffectUpserted = io.flow.internal.v0.models.R
|
|
|
24698
24936
|
export declare type RestrictionRuleExceptionAction = io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
|
|
24699
24937
|
export declare type RestrictionRuleForm = io.flow.internal.v0.models.RestrictionRuleForm;
|
|
24700
24938
|
export declare type RestrictionRuleLaneExemption = io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
24939
|
+
export declare type RestrictionRuleLaneExemptionForm = io.flow.internal.v0.models.RestrictionRuleLaneExemptionForm;
|
|
24701
24940
|
export declare type RestrictionRuleOrganizationExemption = io.flow.internal.v0.models.RestrictionRuleOrganizationExemption;
|
|
24941
|
+
export declare type RestrictionRuleOrganizationExemptionForm = io.flow.internal.v0.models.RestrictionRuleOrganizationExemptionForm;
|
|
24702
24942
|
export declare type RestrictionRuleOverride = io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
24703
24943
|
export declare type RestrictionRuleSummary = io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
24704
24944
|
export declare type RestrictionRuleUpserted = io.flow.internal.v0.models.RestrictionRuleUpserted;
|
|
@@ -24727,11 +24967,6 @@ export declare type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordT
|
|
|
24727
24967
|
export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
24728
24968
|
export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
24729
24969
|
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
24970
|
export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
24736
24971
|
export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
24737
24972
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
@@ -24739,11 +24974,6 @@ export declare type RoutingProcessor = io.flow.internal.v0.models.RoutingProcess
|
|
|
24739
24974
|
export declare type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
|
|
24740
24975
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
24741
24976
|
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
24977
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
24748
24978
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
24749
24979
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -24759,20 +24989,32 @@ export declare type SearchProviderExport = io.flow.internal.v0.models.SearchProv
|
|
|
24759
24989
|
export declare type SearchTrackingSummary = io.flow.internal.v0.models.SearchTrackingSummary;
|
|
24760
24990
|
export declare type SellabilityCheckResult = io.flow.internal.v0.models.SellabilityCheckResult;
|
|
24761
24991
|
export declare type SellabilityCheckStatus = io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
24992
|
+
export declare type SellabilityInternalMatchType = io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
24762
24993
|
export declare type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
24763
24994
|
export declare type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
24764
24995
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
24765
24996
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
24766
24997
|
export declare type ShipmentCostSummary = io.flow.internal.v0.models.ShipmentCostSummary;
|
|
24998
|
+
export declare type ShippingCostDeleted = io.flow.internal.v0.models.ShippingCostDeleted;
|
|
24999
|
+
export declare type ShippingCostSummary = io.flow.internal.v0.models.ShippingCostSummary;
|
|
25000
|
+
export declare type ShippingCostUpserted = io.flow.internal.v0.models.ShippingCostUpserted;
|
|
24767
25001
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
24768
25002
|
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
24769
25003
|
export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
|
|
24770
25004
|
export declare type ShippingRateEstimateAvailableInternal = io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
|
|
24771
25005
|
export declare type ShippingRateEstimateInternal = io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
24772
25006
|
export declare type ShippingRateEstimateRequestInternal = io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
|
|
25007
|
+
export declare type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
|
|
25008
|
+
export declare type ShopifyCallbackError = io.flow.internal.v0.models.ShopifyCallbackError;
|
|
25009
|
+
export declare type ShopifyCallbackErrorCode = io.flow.internal.v0.enums.ShopifyCallbackErrorCode;
|
|
25010
|
+
export declare type ShopifyCallbackErrorItem = io.flow.internal.v0.models.ShopifyCallbackErrorItem;
|
|
24773
25011
|
export declare type ShopifyCatalogPublication = io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
24774
25012
|
export declare type ShopifyChannelOrganizationToken = io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
24775
25013
|
export declare type ShopifyChannelOrganizationTokens = io.flow.internal.v0.models.ShopifyChannelOrganizationTokens;
|
|
25014
|
+
export declare type ShopifyChargeCode = io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
25015
|
+
export declare type ShopifyContactDetails = io.flow.internal.v0.models.ShopifyContactDetails;
|
|
25016
|
+
export declare type ShopifyDeliveryMethodType = io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
25017
|
+
export declare type ShopifyDimensionUnit = io.flow.internal.v0.enums.ShopifyDimensionUnit;
|
|
24776
25018
|
export declare type ShopifyDispute = io.flow.internal.v0.models.ShopifyDispute;
|
|
24777
25019
|
export declare type ShopifyDisputeDeleted = io.flow.internal.v0.models.ShopifyDisputeDeleted;
|
|
24778
25020
|
export declare type ShopifyDisputeUpserted = io.flow.internal.v0.models.ShopifyDisputeUpserted;
|
|
@@ -24780,6 +25022,7 @@ export declare type ShopifyHs10Code = io.flow.internal.v0.models.ShopifyHs10Code
|
|
|
24780
25022
|
export declare type ShopifyHs10Codes = io.flow.internal.v0.models.ShopifyHs10Codes;
|
|
24781
25023
|
export declare type ShopifyHs10CodesDeleted = io.flow.internal.v0.models.ShopifyHs10CodesDeleted;
|
|
24782
25024
|
export declare type ShopifyHs10CodesUpserted = io.flow.internal.v0.models.ShopifyHs10CodesUpserted;
|
|
25025
|
+
export declare type ShopifyIncoterm = io.flow.internal.v0.enums.ShopifyIncoterm;
|
|
24783
25026
|
export declare type ShopifyIncotermConfiguration = io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
|
|
24784
25027
|
export declare type ShopifyIncotermIncludes = io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
24785
25028
|
export declare type ShopifyIncotermSummaryErrorData = io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
@@ -24826,10 +25069,12 @@ export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.Shopif
|
|
|
24826
25069
|
export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
24827
25070
|
export declare type ShopifyMarketsWebhookRegistrationDeleted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
24828
25071
|
export declare type ShopifyMarketsWebhookRegistrationUpserted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
25072
|
+
export declare type ShopifyMeasurements = io.flow.internal.v0.models.ShopifyMeasurements;
|
|
24829
25073
|
export declare type ShopifyMerchantPlan = io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
24830
25074
|
export declare type ShopifyMerchantPlanDeleted = io.flow.internal.v0.models.ShopifyMerchantPlanDeleted;
|
|
24831
25075
|
export declare type ShopifyMerchantPlanUpserted = io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
|
|
24832
25076
|
export declare type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
25077
|
+
export declare type ShopifyMoney = io.flow.internal.v0.models.ShopifyMoney;
|
|
24833
25078
|
export declare type ShopifyMonitoringCarrierService = io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
24834
25079
|
export declare type ShopifyMonitoringFulfillmentExternal = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal;
|
|
24835
25080
|
export declare type ShopifyMonitoringFulfillmentMissingDetails = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
@@ -24853,6 +25098,7 @@ export declare type ShopifyOrderRiskAssessmentUpserted = io.flow.internal.v0.mod
|
|
|
24853
25098
|
export declare type ShopifyOrderTransaction = io.flow.internal.v0.models.ShopifyOrderTransaction;
|
|
24854
25099
|
export declare type ShopifyOrderTransactionDeleted = io.flow.internal.v0.models.ShopifyOrderTransactionDeleted;
|
|
24855
25100
|
export declare type ShopifyOrderTransactionUpserted = io.flow.internal.v0.models.ShopifyOrderTransactionUpserted;
|
|
25101
|
+
export declare type ShopifyPackageType = io.flow.internal.v0.enums.ShopifyPackageType;
|
|
24856
25102
|
export declare type ShopifyPartnerWebhook = io.flow.internal.v0.models.ShopifyPartnerWebhook;
|
|
24857
25103
|
export declare type ShopifyPartnerWebhookRaw = io.flow.internal.v0.models.ShopifyPartnerWebhookRaw;
|
|
24858
25104
|
export declare type ShopifyPlanType = io.flow.internal.v0.enums.ShopifyPlanType;
|
|
@@ -24876,9 +25122,24 @@ export declare type ShopifyProductUpdateDeleted = io.flow.internal.v0.models.Sho
|
|
|
24876
25122
|
export declare type ShopifyProductUpdateUpserted = io.flow.internal.v0.models.ShopifyProductUpdateUpserted;
|
|
24877
25123
|
export declare type ShopifyProductUpdateWebhookEvent = io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
24878
25124
|
export declare type ShopifyProductWrapper = io.flow.internal.v0.models.ShopifyProductWrapper;
|
|
25125
|
+
export declare type ShopifyRateCustomsDetail = io.flow.internal.v0.models.ShopifyRateCustomsDetail;
|
|
25126
|
+
export declare type ShopifyRatePickupPoint = io.flow.internal.v0.models.ShopifyRatePickupPoint;
|
|
24879
25127
|
export declare type ShopifyReportFileDeleted = io.flow.internal.v0.models.ShopifyReportFileDeleted;
|
|
24880
25128
|
export declare type ShopifyReportFileUpserted = io.flow.internal.v0.models.ShopifyReportFileUpserted;
|
|
24881
25129
|
export declare type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
|
|
25130
|
+
export declare type ShopifyShipmentOptionCode = io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
25131
|
+
export declare type ShopifyShipmentRateAvailable = io.flow.internal.v0.models.ShopifyShipmentRateAvailable;
|
|
25132
|
+
export declare type ShopifyShipmentRateCharge = io.flow.internal.v0.models.ShopifyShipmentRateCharge;
|
|
25133
|
+
export declare type ShopifyShipmentRateOption = io.flow.internal.v0.models.ShopifyShipmentRateOption;
|
|
25134
|
+
export declare type ShopifyShipmentRatePackage = io.flow.internal.v0.models.ShopifyShipmentRatePackage;
|
|
25135
|
+
export declare type ShopifyShipmentRateReason = io.flow.internal.v0.models.ShopifyShipmentRateReason;
|
|
25136
|
+
export declare type ShopifyShipmentRateRequest = io.flow.internal.v0.models.ShopifyShipmentRateRequest;
|
|
25137
|
+
export declare type ShopifyShipmentRateResponse = io.flow.internal.v0.models.ShopifyShipmentRateResponse;
|
|
25138
|
+
export declare type ShopifyShipmentRateShipment = io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
25139
|
+
export declare type ShopifyShipmentRateShipper = io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
25140
|
+
export declare type ShopifyShipmentRateTotalCharges = io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
25141
|
+
export declare type ShopifyShipmentRateUnavailable = io.flow.internal.v0.models.ShopifyShipmentRateUnavailable;
|
|
25142
|
+
export declare type ShopifyShippingLocation = io.flow.internal.v0.models.ShopifyShippingLocation;
|
|
24882
25143
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
24883
25144
|
export declare type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
|
|
24884
25145
|
export declare type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
|
|
@@ -24887,6 +25148,8 @@ export declare type ShopifyTaxonomyAlignmentConfigForm = io.flow.internal.v0.mod
|
|
|
24887
25148
|
export declare type ShopifyTestOrder = io.flow.internal.v0.models.ShopifyTestOrder;
|
|
24888
25149
|
export declare type ShopifyTestOrderDeleted = io.flow.internal.v0.models.ShopifyTestOrderDeleted;
|
|
24889
25150
|
export declare type ShopifyTestOrderUpserted = io.flow.internal.v0.models.ShopifyTestOrderUpserted;
|
|
25151
|
+
export declare type ShopifyUnavailableRateReasonCode = io.flow.internal.v0.enums.ShopifyUnavailableRateReasonCode;
|
|
25152
|
+
export declare type ShopifyWeightUnit = io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
24890
25153
|
export declare type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
|
|
24891
25154
|
export declare type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
24892
25155
|
export declare type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
|
@@ -24977,7 +25240,6 @@ export declare type TaskProcessQueuedEvent = io.flow.internal.v0.models.TaskProc
|
|
|
24977
25240
|
export declare type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
24978
25241
|
export declare type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
24979
25242
|
export declare type TaxAmount = io.flow.internal.v0.unions.TaxAmount;
|
|
24980
|
-
export declare type TaxAndDutyInclusivitySetting = io.flow.internal.v0.enums.TaxAndDutyInclusivitySetting;
|
|
24981
25243
|
export declare type TaxCalculation = io.flow.internal.v0.models.TaxCalculation;
|
|
24982
25244
|
export declare type TaxCalculationError = io.flow.internal.v0.models.TaxCalculationError;
|
|
24983
25245
|
export declare type TaxCalculationErrorCode = io.flow.internal.v0.enums.TaxCalculationErrorCode;
|