@flowio/api-internal-prop-types 9.24.122 → 9.24.123
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +474 -28
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +474 -28
- package/src/api-internal.js +1093 -589
package/lib/api-internal.d.ts
CHANGED
|
@@ -4426,6 +4426,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4426
4426
|
readonly 'package_dimensions_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
4427
4427
|
readonly 'origin_location_source'?: io.flow.label.v0.enums.OriginLocationSource;
|
|
4428
4428
|
readonly 'reference_id'?: string;
|
|
4429
|
+
readonly 'shipping_date_time'?: string;
|
|
4429
4430
|
}
|
|
4430
4431
|
|
|
4431
4432
|
interface DetailedShippingNotificationForm {
|
|
@@ -5521,6 +5522,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
5521
5522
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
5522
5523
|
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';
|
|
5523
5524
|
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
5525
|
+
type SellabilityStatus = 'complete' | 'incomplete';
|
|
5524
5526
|
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';
|
|
5525
5527
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
5526
5528
|
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';
|
|
@@ -5559,6 +5561,22 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5559
5561
|
readonly 'identifier': string;
|
|
5560
5562
|
}
|
|
5561
5563
|
|
|
5564
|
+
interface ChannelOrganizationPublicationOwner {
|
|
5565
|
+
readonly 'owner': io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
5566
|
+
}
|
|
5567
|
+
|
|
5568
|
+
interface ChannelOrganizationPublicationOwnerPutForm {
|
|
5569
|
+
readonly 'owner': io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
5570
|
+
}
|
|
5571
|
+
|
|
5572
|
+
interface ChannelOrganizationSellabilityStatus {
|
|
5573
|
+
readonly 'status': io.flow.shopify.markets.internal.v0.enums.SellabilityStatus;
|
|
5574
|
+
}
|
|
5575
|
+
|
|
5576
|
+
interface ChannelOrganizationSellabilityStatusPutForm {
|
|
5577
|
+
readonly 'status': io.flow.shopify.markets.internal.v0.enums.SellabilityStatus;
|
|
5578
|
+
}
|
|
5579
|
+
|
|
5562
5580
|
interface FlowShopValidationError {
|
|
5563
5581
|
readonly 'message': string;
|
|
5564
5582
|
readonly 'reason': string;
|
|
@@ -5602,6 +5620,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5602
5620
|
readonly 'next_action_from': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
5603
5621
|
}
|
|
5604
5622
|
|
|
5623
|
+
interface PaymentRequestAuthorization {
|
|
5624
|
+
readonly 'payment_request_id': string;
|
|
5625
|
+
readonly 'authorization_id': string;
|
|
5626
|
+
}
|
|
5627
|
+
|
|
5605
5628
|
interface ProductRestrictionResultValidationError {
|
|
5606
5629
|
readonly 'message': string;
|
|
5607
5630
|
readonly 'reason': string;
|
|
@@ -5683,6 +5706,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5683
5706
|
readonly 'api_password_masked'?: string;
|
|
5684
5707
|
readonly 'access_token_masked'?: string;
|
|
5685
5708
|
readonly 'shopify_plan_name'?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
5709
|
+
readonly 'catalog_publication_owner'?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
5686
5710
|
}
|
|
5687
5711
|
|
|
5688
5712
|
interface ShopifyMarketsShopForm {
|
|
@@ -5750,6 +5774,22 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5750
5774
|
readonly 'product_ids': string[];
|
|
5751
5775
|
}
|
|
5752
5776
|
|
|
5777
|
+
interface ShopifyProductTaxonomyAttribute {
|
|
5778
|
+
readonly 'id': string;
|
|
5779
|
+
readonly 'handle': string;
|
|
5780
|
+
readonly 'name': string;
|
|
5781
|
+
readonly 'friendly_id': string;
|
|
5782
|
+
readonly 'description'?: string;
|
|
5783
|
+
}
|
|
5784
|
+
|
|
5785
|
+
interface ShopifyProductTaxonomyAttributeValue {
|
|
5786
|
+
readonly 'id': string;
|
|
5787
|
+
readonly 'attribute_id': string;
|
|
5788
|
+
readonly 'handle': string;
|
|
5789
|
+
readonly 'name': string;
|
|
5790
|
+
readonly 'friendly_id': string;
|
|
5791
|
+
}
|
|
5792
|
+
|
|
5753
5793
|
interface ShopifyProductWrapper {
|
|
5754
5794
|
readonly 'shopify_product': io.flow.shopify.external.v0.models.Product;
|
|
5755
5795
|
readonly 'deleted_at'?: string;
|
|
@@ -6330,6 +6370,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6330
6370
|
interface GraphqlMetaobjectField {
|
|
6331
6371
|
readonly 'key': string;
|
|
6332
6372
|
readonly 'value'?: string;
|
|
6373
|
+
readonly 'type'?: string;
|
|
6333
6374
|
}
|
|
6334
6375
|
|
|
6335
6376
|
interface GraphqlOption {
|
|
@@ -8069,6 +8110,7 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
8069
8110
|
declare namespace io.flow.order.price.v0.enums {
|
|
8070
8111
|
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';
|
|
8071
8112
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
8113
|
+
type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
|
|
8072
8114
|
}
|
|
8073
8115
|
|
|
8074
8116
|
declare namespace io.flow.order.price.v0.models {
|
|
@@ -8083,6 +8125,12 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
8083
8125
|
readonly 'rate'?: number;
|
|
8084
8126
|
readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
|
|
8085
8127
|
readonly 'rate_label'?: string;
|
|
8128
|
+
readonly 'breakdown'?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
|
|
8129
|
+
}
|
|
8130
|
+
|
|
8131
|
+
interface OrderPriceDetailBreakdown {
|
|
8132
|
+
readonly 'purchase_price': io.flow.order.price.v0.models.PurchasePriceBreakdown;
|
|
8133
|
+
readonly 'fees': io.flow.order.price.v0.models.OrderPriceFee[];
|
|
8086
8134
|
}
|
|
8087
8135
|
|
|
8088
8136
|
interface OrderPriceDetailComponent {
|
|
@@ -8093,6 +8141,18 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
8093
8141
|
readonly 'base': io.flow.common.v0.models.Price;
|
|
8094
8142
|
readonly 'name'?: string;
|
|
8095
8143
|
}
|
|
8144
|
+
|
|
8145
|
+
interface OrderPriceFee {
|
|
8146
|
+
readonly 'key': string;
|
|
8147
|
+
readonly 'value': io.flow.common.v0.models.PriceWithBase;
|
|
8148
|
+
readonly 'type': io.flow.order.price.v0.enums.OrderPriceFeeType;
|
|
8149
|
+
}
|
|
8150
|
+
|
|
8151
|
+
interface PurchasePriceBreakdown {
|
|
8152
|
+
readonly 'total_price': io.flow.common.v0.models.PriceWithBase;
|
|
8153
|
+
readonly 'product_price': io.flow.common.v0.models.PriceWithBase;
|
|
8154
|
+
readonly 'fees': io.flow.order.price.v0.models.OrderPriceFee[];
|
|
8155
|
+
}
|
|
8096
8156
|
}
|
|
8097
8157
|
|
|
8098
8158
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
@@ -8141,6 +8201,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
8141
8201
|
readonly 'channel_id': string;
|
|
8142
8202
|
readonly 'external_order_reference': string;
|
|
8143
8203
|
readonly 'payment_request_id'?: string;
|
|
8204
|
+
readonly 'order_payment_request_ids'?: string[];
|
|
8144
8205
|
readonly 'order_edit_payment_request_ids'?: string[];
|
|
8145
8206
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
8146
8207
|
readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
@@ -9013,10 +9074,38 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
9013
9074
|
readonly 'organization': string;
|
|
9014
9075
|
readonly 'shopify_product_bundle': io.flow.shopify.markets.internal.v0.models.ShopifyProductBundle;
|
|
9015
9076
|
}
|
|
9077
|
+
|
|
9078
|
+
interface ShopifyProductTaxonomyAttributeDeleted {
|
|
9079
|
+
readonly 'discriminator': 'shopify_product_taxonomy_attribute_deleted';
|
|
9080
|
+
readonly 'event_id': string;
|
|
9081
|
+
readonly 'timestamp': string;
|
|
9082
|
+
readonly 'id': string;
|
|
9083
|
+
}
|
|
9084
|
+
|
|
9085
|
+
interface ShopifyProductTaxonomyAttributeUpserted {
|
|
9086
|
+
readonly 'discriminator': 'shopify_product_taxonomy_attribute_upserted';
|
|
9087
|
+
readonly 'event_id': string;
|
|
9088
|
+
readonly 'timestamp': string;
|
|
9089
|
+
readonly 'shopify_product_taxonomy_attribute': io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttribute;
|
|
9090
|
+
}
|
|
9091
|
+
|
|
9092
|
+
interface ShopifyProductTaxonomyAttributeValueDeleted {
|
|
9093
|
+
readonly 'discriminator': 'shopify_product_taxonomy_attribute_value_deleted';
|
|
9094
|
+
readonly 'event_id': string;
|
|
9095
|
+
readonly 'timestamp': string;
|
|
9096
|
+
readonly 'id': string;
|
|
9097
|
+
}
|
|
9098
|
+
|
|
9099
|
+
interface ShopifyProductTaxonomyAttributeValueUpserted {
|
|
9100
|
+
readonly 'discriminator': 'shopify_product_taxonomy_attribute_value_upserted';
|
|
9101
|
+
readonly 'event_id': string;
|
|
9102
|
+
readonly 'timestamp': string;
|
|
9103
|
+
readonly 'shopify_product_taxonomy_attribute_value': io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
9104
|
+
}
|
|
9016
9105
|
}
|
|
9017
9106
|
|
|
9018
9107
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
9019
|
-
type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted);
|
|
9108
|
+
type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted);
|
|
9020
9109
|
}
|
|
9021
9110
|
|
|
9022
9111
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -9319,6 +9408,11 @@ declare namespace io.flow.experience.v0.models {
|
|
|
9319
9408
|
readonly 'targets': io.flow.experience.v0.enums.DiscountRuleSubsidyTarget[];
|
|
9320
9409
|
}
|
|
9321
9410
|
|
|
9411
|
+
interface EditSummary {
|
|
9412
|
+
readonly 'id': string;
|
|
9413
|
+
readonly 'edited_at': string;
|
|
9414
|
+
}
|
|
9415
|
+
|
|
9322
9416
|
interface Experience {
|
|
9323
9417
|
readonly 'discriminator': 'experience';
|
|
9324
9418
|
readonly 'id': string;
|
|
@@ -9609,6 +9703,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
9609
9703
|
readonly 'local': io.flow.catalog.v0.models.Local;
|
|
9610
9704
|
readonly 'shipment_estimate'?: io.flow.common.v0.models.DatetimeRange;
|
|
9611
9705
|
readonly 'price_source'?: io.flow.common.v0.unions.PriceSource;
|
|
9706
|
+
readonly 'breakdown'?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
|
|
9612
9707
|
}
|
|
9613
9708
|
|
|
9614
9709
|
interface LocalizedLineItemDiscount {
|
|
@@ -9654,6 +9749,8 @@ declare namespace io.flow.experience.v0.models {
|
|
|
9654
9749
|
readonly 'destination_contact_details'?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
9655
9750
|
readonly 'incoterm_summary'?: io.flow.experience.v0.models.IncotermSummary;
|
|
9656
9751
|
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
9752
|
+
readonly 'edits'?: io.flow.experience.v0.models.EditSummary[];
|
|
9753
|
+
readonly 'rates'?: io.flow.experience.v0.models.OrderRate[];
|
|
9657
9754
|
}
|
|
9658
9755
|
|
|
9659
9756
|
interface OrderAddress {
|
|
@@ -9858,6 +9955,12 @@ declare namespace io.flow.experience.v0.models {
|
|
|
9858
9955
|
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
9859
9956
|
}
|
|
9860
9957
|
|
|
9958
|
+
interface OrderRate {
|
|
9959
|
+
readonly 'from': string;
|
|
9960
|
+
readonly 'to': string;
|
|
9961
|
+
readonly 'rate': number;
|
|
9962
|
+
}
|
|
9963
|
+
|
|
9861
9964
|
interface OrderReference {
|
|
9862
9965
|
readonly 'discriminator': 'order_reference';
|
|
9863
9966
|
readonly 'id': string;
|
|
@@ -11118,7 +11221,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
11118
11221
|
|
|
11119
11222
|
declare namespace io.flow.trueup.v0.enums {
|
|
11120
11223
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
11121
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
|
|
11224
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail' | 'pickup';
|
|
11122
11225
|
}
|
|
11123
11226
|
|
|
11124
11227
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -11305,6 +11408,12 @@ declare namespace io.flow.product.v0.models {
|
|
|
11305
11408
|
interface ProductTaxonomyData {
|
|
11306
11409
|
readonly 'key': string;
|
|
11307
11410
|
readonly 'value': string[];
|
|
11411
|
+
readonly 'value_obj'?: io.flow.product.v0.models.ProductTaxonomyValue[];
|
|
11412
|
+
}
|
|
11413
|
+
|
|
11414
|
+
interface ProductTaxonomyValue {
|
|
11415
|
+
readonly 'handle': string;
|
|
11416
|
+
readonly 'name': string;
|
|
11308
11417
|
}
|
|
11309
11418
|
}
|
|
11310
11419
|
|
|
@@ -11842,6 +11951,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11842
11951
|
readonly 'amount': number;
|
|
11843
11952
|
readonly 'label': string;
|
|
11844
11953
|
readonly 'base': io.flow.common.v0.models.Price;
|
|
11954
|
+
readonly 'breakdown'?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
|
|
11845
11955
|
}
|
|
11846
11956
|
|
|
11847
11957
|
interface Options {
|
|
@@ -13327,6 +13437,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13327
13437
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
13328
13438
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
13329
13439
|
type AldoItemType = 'physical' | 'digital';
|
|
13440
|
+
type AnirbanItemType = 'physical' | 'digital';
|
|
13330
13441
|
type AnshItemType = 'physical' | 'digital';
|
|
13331
13442
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
13332
13443
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
@@ -13336,13 +13447,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13336
13447
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
13337
13448
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13338
13449
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
13339
|
-
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' | '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';
|
|
13450
|
+
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';
|
|
13340
13451
|
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';
|
|
13341
13452
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13342
13453
|
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_payout' | 'merchant_refund';
|
|
13343
13454
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
13344
13455
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13345
13456
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
13457
|
+
type CarrierDocumentType = 'commercial_invoice';
|
|
13346
13458
|
type CarrierFileType = 'freight' | 'tax';
|
|
13347
13459
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
13348
13460
|
type CarrierValidationStatus = 'success' | 'error';
|
|
@@ -13356,6 +13468,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13356
13468
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
13357
13469
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
13358
13470
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
13471
|
+
type ChapterCheckStatus = 'apparel_like' | 'similar' | 'does_not_match';
|
|
13359
13472
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
13360
13473
|
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge' | 'peak_surcharge';
|
|
13361
13474
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -13399,9 +13512,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13399
13512
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
13400
13513
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
13401
13514
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
|
|
13515
|
+
type DutyVarianceStatus = 'acceptable' | 'exceeded';
|
|
13402
13516
|
type EmptyAttribute = 'irrelevant';
|
|
13403
13517
|
type ErpFileType = 'vendor';
|
|
13404
|
-
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' | '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' | 'organization_boolean_value_upserted' | 'organization_boolean_value_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' | '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' | '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_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | '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';
|
|
13518
|
+
type EvaluationCheckResult = 'pass' | 'fail';
|
|
13519
|
+
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' | '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' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | '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';
|
|
13405
13520
|
type ExperienceImportType = 'experience_with_settings';
|
|
13406
13521
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13407
13522
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13410,6 +13525,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13410
13525
|
type FeatureStatus = 'draft' | 'active' | 'archived';
|
|
13411
13526
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
13412
13527
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
13528
|
+
type FileType = 'pdf';
|
|
13413
13529
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
13414
13530
|
type FraudProviderStatus = 'active' | 'archived';
|
|
13415
13531
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
@@ -13423,7 +13539,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13423
13539
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
13424
13540
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
13425
13541
|
type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
|
|
13426
|
-
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt';
|
|
13542
|
+
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt' | 'manual_classification_required';
|
|
13427
13543
|
type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
|
|
13428
13544
|
type ItemType = 'standard' | 'multi_product';
|
|
13429
13545
|
type JournalOperation = 'insert' | 'update' | 'delete';
|
|
@@ -13501,9 +13617,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13501
13617
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
13502
13618
|
type ResponsibleParty = 'flow' | 'organization';
|
|
13503
13619
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
13620
|
+
type RestrictionAttributeConditionMultipleOperator = 'in' | 'not_in';
|
|
13621
|
+
type RestrictionAttributeConditionSingleOperator = 'equals' | 'not_equals';
|
|
13622
|
+
type RestrictionAttributeOperator = 'and' | 'or';
|
|
13623
|
+
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
13504
13624
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
13505
13625
|
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
|
|
13506
13626
|
type RestrictionOrganizationSource = 'shopify' | 'enterprise';
|
|
13627
|
+
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
13507
13628
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
13508
13629
|
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
13509
13630
|
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
@@ -13513,6 +13634,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13513
13634
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
13514
13635
|
type RohanItemType = 'physical' | 'digital';
|
|
13515
13636
|
type SarveshItemType = 'physical' | 'digital';
|
|
13637
|
+
type SellabilityCheckStatus = 'more_restrictive' | 'less_restrictive' | 'similar' | 'regions_differ' | 'rules_differ';
|
|
13638
|
+
type SellabilityStatus = 'complete' | 'incomplete';
|
|
13516
13639
|
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
13517
13640
|
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';
|
|
13518
13641
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -13789,6 +13912,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13789
13912
|
readonly 'fulfillment_id': string;
|
|
13790
13913
|
}
|
|
13791
13914
|
|
|
13915
|
+
interface AccountingReturnMetadata {
|
|
13916
|
+
readonly 'discriminator': 'accounting_return_metadata';
|
|
13917
|
+
readonly 'transactions_until': string;
|
|
13918
|
+
readonly 'refund'?: io.flow.payment.v0.models.RefundReference;
|
|
13919
|
+
readonly 'tax_reversal'?: io.flow.internal.v0.models.TransactionReference;
|
|
13920
|
+
readonly 'duty_reversal'?: io.flow.internal.v0.models.TransactionReference;
|
|
13921
|
+
}
|
|
13922
|
+
|
|
13792
13923
|
interface ActionQuantity {
|
|
13793
13924
|
readonly 'action': io.flow.internal.v0.enums.ItemQuantityAction;
|
|
13794
13925
|
readonly 'quantity': number;
|
|
@@ -14267,6 +14398,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14267
14398
|
readonly 'labels': Record<string, string[]>;
|
|
14268
14399
|
}
|
|
14269
14400
|
|
|
14401
|
+
interface AnirbanItem {
|
|
14402
|
+
readonly 'id': string;
|
|
14403
|
+
readonly 'number': string;
|
|
14404
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
14405
|
+
readonly 'description'?: string;
|
|
14406
|
+
readonly 'type': io.flow.internal.v0.enums.AnirbanItemType;
|
|
14407
|
+
readonly 'added_on': string;
|
|
14408
|
+
}
|
|
14409
|
+
|
|
14410
|
+
interface AnirbanItemForm {
|
|
14411
|
+
readonly 'number': string;
|
|
14412
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
14413
|
+
readonly 'description'?: string;
|
|
14414
|
+
readonly 'type': io.flow.internal.v0.enums.AnirbanItemType;
|
|
14415
|
+
readonly 'added_on': string;
|
|
14416
|
+
}
|
|
14417
|
+
|
|
14270
14418
|
interface AnshItem {
|
|
14271
14419
|
readonly 'id': string;
|
|
14272
14420
|
readonly 'number': string;
|
|
@@ -14306,6 +14454,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14306
14454
|
readonly 'unverified': boolean;
|
|
14307
14455
|
}
|
|
14308
14456
|
|
|
14457
|
+
interface AttributeRule {
|
|
14458
|
+
readonly 'restriction_attribute_rules': io.flow.internal.v0.models.RestrictionAttributeRule[];
|
|
14459
|
+
readonly 'default_result'?: io.flow.internal.v0.enums.RestrictionAttributeResult;
|
|
14460
|
+
}
|
|
14461
|
+
|
|
14309
14462
|
interface AuthenticationForm {
|
|
14310
14463
|
readonly 'password': string;
|
|
14311
14464
|
}
|
|
@@ -14511,6 +14664,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14511
14664
|
readonly 'bank_payment': io.flow.internal.v0.models.BankPayment;
|
|
14512
14665
|
}
|
|
14513
14666
|
|
|
14667
|
+
interface Base64CarrierDocumentContent {
|
|
14668
|
+
readonly 'discriminator': 'base_64_carrier_document_content';
|
|
14669
|
+
readonly 'base64_string': string;
|
|
14670
|
+
readonly 'file_type': io.flow.internal.v0.enums.FileType;
|
|
14671
|
+
}
|
|
14672
|
+
|
|
14514
14673
|
interface BillingAuthorizationReference {
|
|
14515
14674
|
readonly 'id': string;
|
|
14516
14675
|
}
|
|
@@ -15039,6 +15198,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15039
15198
|
readonly 'carrier_charge': io.flow.internal.v0.models.CarrierCharge;
|
|
15040
15199
|
}
|
|
15041
15200
|
|
|
15201
|
+
interface CarrierDocument {
|
|
15202
|
+
readonly 'document_type': io.flow.internal.v0.enums.CarrierDocumentType;
|
|
15203
|
+
readonly 'document_content': io.flow.internal.v0.unions.CarrierDocumentContent;
|
|
15204
|
+
}
|
|
15205
|
+
|
|
15042
15206
|
interface CarrierFile {
|
|
15043
15207
|
readonly 'id': string;
|
|
15044
15208
|
readonly 'type': io.flow.internal.v0.enums.CarrierFileType;
|
|
@@ -15384,6 +15548,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15384
15548
|
readonly 'channel_id': string;
|
|
15385
15549
|
readonly 'external_order_reference': string;
|
|
15386
15550
|
readonly 'payment_request_id'?: string;
|
|
15551
|
+
readonly 'order_payment_request_ids'?: string[];
|
|
15387
15552
|
readonly 'order_edit_payment_request_ids'?: string[];
|
|
15388
15553
|
readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
15389
15554
|
readonly 'reasons': io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
@@ -15495,6 +15660,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15495
15660
|
readonly 'channel_organization_identifier': io.flow.internal.v0.models.ChannelOrganizationIdentifier;
|
|
15496
15661
|
}
|
|
15497
15662
|
|
|
15663
|
+
interface ChannelOrganizationPublicationOwner {
|
|
15664
|
+
readonly 'owner': io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
15665
|
+
}
|
|
15666
|
+
|
|
15667
|
+
interface ChannelOrganizationPublicationOwnerPutForm {
|
|
15668
|
+
readonly 'owner': io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
15669
|
+
}
|
|
15670
|
+
|
|
15671
|
+
interface ChannelOrganizationSellabilityStatus {
|
|
15672
|
+
readonly 'status': io.flow.internal.v0.enums.SellabilityStatus;
|
|
15673
|
+
}
|
|
15674
|
+
|
|
15675
|
+
interface ChannelOrganizationSellabilityStatusPutForm {
|
|
15676
|
+
readonly 'status': io.flow.internal.v0.enums.SellabilityStatus;
|
|
15677
|
+
}
|
|
15678
|
+
|
|
15498
15679
|
interface ChannelOrganizationShopify {
|
|
15499
15680
|
readonly 'organization': io.flow.channel.v0.models.ChannelOrganization;
|
|
15500
15681
|
readonly 'tokens': io.flow.internal.v0.models.ShopifyChannelOrganizationTokens[];
|
|
@@ -15563,6 +15744,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15563
15744
|
readonly 'channel_transaction': io.flow.internal.v0.models.ChannelTransaction;
|
|
15564
15745
|
}
|
|
15565
15746
|
|
|
15747
|
+
interface ChapterCheckResult {
|
|
15748
|
+
readonly 'status': io.flow.internal.v0.enums.ChapterCheckStatus;
|
|
15749
|
+
readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
15750
|
+
readonly 'current_chapter': string;
|
|
15751
|
+
readonly 'merchant_chapter': string;
|
|
15752
|
+
}
|
|
15753
|
+
|
|
15566
15754
|
interface ChargeInput {
|
|
15567
15755
|
readonly 'charge_input_code': io.flow.internal.v0.enums.ChargeInputType;
|
|
15568
15756
|
readonly 'price': io.flow.common.v0.models.Money;
|
|
@@ -16387,6 +16575,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16387
16575
|
readonly 'display'?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
16388
16576
|
}
|
|
16389
16577
|
|
|
16578
|
+
interface DestinationDutyComparison {
|
|
16579
|
+
readonly 'country': string;
|
|
16580
|
+
readonly 'current_duty'?: number;
|
|
16581
|
+
readonly 'merchant_duty'?: number;
|
|
16582
|
+
readonly 'current_error'?: number;
|
|
16583
|
+
readonly 'merchant_error'?: number;
|
|
16584
|
+
}
|
|
16585
|
+
|
|
16390
16586
|
interface DestinationError {
|
|
16391
16587
|
readonly 'id': string;
|
|
16392
16588
|
readonly 'failed_at': string;
|
|
@@ -16712,6 +16908,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16712
16908
|
readonly 'duty_transaction': io.flow.internal.v0.models.DutyTransaction;
|
|
16713
16909
|
}
|
|
16714
16910
|
|
|
16911
|
+
interface DutyVarianceResult {
|
|
16912
|
+
readonly 'status': io.flow.internal.v0.enums.DutyVarianceStatus;
|
|
16913
|
+
readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
16914
|
+
readonly 'destinations': io.flow.internal.v0.models.DestinationDutyComparison[];
|
|
16915
|
+
}
|
|
16916
|
+
|
|
16715
16917
|
interface EmailForm {
|
|
16716
16918
|
readonly 'to': string[];
|
|
16717
16919
|
readonly 'cc'?: string[];
|
|
@@ -16961,9 +17163,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16961
17163
|
}
|
|
16962
17164
|
|
|
16963
17165
|
interface EvaluationResults {
|
|
16964
|
-
readonly 'chapter_result':
|
|
16965
|
-
readonly 'sellability_result':
|
|
16966
|
-
readonly 'duty_variance_result':
|
|
17166
|
+
readonly 'chapter_result': io.flow.internal.v0.models.ChapterCheckResult;
|
|
17167
|
+
readonly 'sellability_result': io.flow.internal.v0.models.SellabilityCheckResult;
|
|
17168
|
+
readonly 'duty_variance_result': io.flow.internal.v0.models.DutyVarianceResult;
|
|
17169
|
+
readonly 'taxonomy_alignment_result'?: io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
|
|
16967
17170
|
}
|
|
16968
17171
|
|
|
16969
17172
|
interface ExclusionRuleDeleted {
|
|
@@ -17121,6 +17324,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17121
17324
|
readonly 'fulfilled_via_replacement_order'?: boolean;
|
|
17122
17325
|
}
|
|
17123
17326
|
|
|
17327
|
+
interface ExternalRatecardLink {
|
|
17328
|
+
readonly 'external_ratecard_id': string;
|
|
17329
|
+
readonly 'flow_ratecard_ids': string[];
|
|
17330
|
+
}
|
|
17331
|
+
|
|
17332
|
+
interface ExternalRatecardLinkResponse {
|
|
17333
|
+
readonly 'external_ratecard_id': string;
|
|
17334
|
+
readonly 'flow_ratecard_ids': string[];
|
|
17335
|
+
}
|
|
17336
|
+
|
|
17124
17337
|
interface FacebookPixel {
|
|
17125
17338
|
readonly 'discriminator': 'facebook_pixel';
|
|
17126
17339
|
readonly 'name'?: string;
|
|
@@ -17242,6 +17455,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17242
17455
|
readonly 'account_number': string;
|
|
17243
17456
|
}
|
|
17244
17457
|
|
|
17458
|
+
interface FedexCarrierLabelAttributes {
|
|
17459
|
+
readonly 'discriminator': 'fedex_carrier_label_attributes';
|
|
17460
|
+
readonly 'origin_location_id'?: string;
|
|
17461
|
+
readonly 'destination_location_id'?: string;
|
|
17462
|
+
}
|
|
17463
|
+
|
|
17245
17464
|
interface FedexCrossborder {
|
|
17246
17465
|
readonly 'discriminator': 'fedex_crossborder';
|
|
17247
17466
|
readonly 'api_key': string;
|
|
@@ -18389,6 +18608,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18389
18608
|
readonly 'gender'?: string;
|
|
18390
18609
|
readonly 'material'?: string;
|
|
18391
18610
|
readonly 'url'?: string;
|
|
18611
|
+
readonly 'preferential_rate_statement'?: string;
|
|
18392
18612
|
}
|
|
18393
18613
|
|
|
18394
18614
|
interface InvoiceInfoForm {
|
|
@@ -18416,6 +18636,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18416
18636
|
readonly 'total_price': number;
|
|
18417
18637
|
readonly 'manufacturer_id'?: string;
|
|
18418
18638
|
readonly 'export_control_classification_number': string;
|
|
18639
|
+
readonly 'preferential_rate_statement'?: string;
|
|
18419
18640
|
}
|
|
18420
18641
|
|
|
18421
18642
|
interface InvoiceTransaction {
|
|
@@ -18682,6 +18903,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18682
18903
|
readonly 'id': string;
|
|
18683
18904
|
}
|
|
18684
18905
|
|
|
18906
|
+
interface KeywordCancelling {
|
|
18907
|
+
readonly 'positive_keyword': string;
|
|
18908
|
+
readonly 'negative_keywords': string[];
|
|
18909
|
+
}
|
|
18910
|
+
|
|
18685
18911
|
interface KlarnaAuthorizationParameters {
|
|
18686
18912
|
readonly 'discriminator': 'klarna_authorization_parameters';
|
|
18687
18913
|
readonly 'client_token': string;
|
|
@@ -18920,6 +19146,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18920
19146
|
readonly 'saturday_stop'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18921
19147
|
readonly 'residential_extended_area_pickup'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18922
19148
|
readonly 'package_level_detail'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19149
|
+
readonly 'pickup'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18923
19150
|
}
|
|
18924
19151
|
|
|
18925
19152
|
interface LabelSurchargeSingleForm {
|
|
@@ -19442,6 +19669,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19442
19669
|
readonly 'status': io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
19443
19670
|
}
|
|
19444
19671
|
|
|
19672
|
+
interface MerchantOverrideDeleted {
|
|
19673
|
+
readonly 'discriminator': 'merchant_override_deleted';
|
|
19674
|
+
readonly 'event_id': string;
|
|
19675
|
+
readonly 'timestamp': string;
|
|
19676
|
+
readonly 'id': string;
|
|
19677
|
+
}
|
|
19678
|
+
|
|
19679
|
+
interface MerchantOverrideUpserted {
|
|
19680
|
+
readonly 'discriminator': 'merchant_override_upserted';
|
|
19681
|
+
readonly 'event_id': string;
|
|
19682
|
+
readonly 'timestamp': string;
|
|
19683
|
+
readonly 'merchant_override': io.flow.internal.v0.models.MerchantOverride;
|
|
19684
|
+
}
|
|
19685
|
+
|
|
19445
19686
|
interface MerchantSearchResult {
|
|
19446
19687
|
readonly 'organization_id': string;
|
|
19447
19688
|
readonly 'shop_name'?: string;
|
|
@@ -19473,6 +19714,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19473
19714
|
readonly 'freight': number;
|
|
19474
19715
|
readonly 'total': number;
|
|
19475
19716
|
readonly 'tax_refund'?: number;
|
|
19717
|
+
readonly 'tax_reversal'?: number;
|
|
19718
|
+
readonly 'duty_reversal'?: number;
|
|
19719
|
+
readonly 'tax_reversal_for_lvg_order'?: boolean;
|
|
19720
|
+
readonly 'duty_reversal_for_lvg_order'?: boolean;
|
|
19476
19721
|
}
|
|
19477
19722
|
|
|
19478
19723
|
interface MerchantUpserted {
|
|
@@ -19544,6 +19789,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19544
19789
|
readonly 'account': io.flow.internal.v0.models.ReportAccount;
|
|
19545
19790
|
}
|
|
19546
19791
|
|
|
19792
|
+
interface NonL4LTaxDutyFxFeeMetadata {
|
|
19793
|
+
readonly 'discriminator': 'non_l4l_tax_duty_fx_fee_metadata';
|
|
19794
|
+
readonly 'tax'?: io.flow.internal.v0.models.TransactionReference;
|
|
19795
|
+
readonly 'duty'?: io.flow.internal.v0.models.TransactionReference;
|
|
19796
|
+
}
|
|
19797
|
+
|
|
19547
19798
|
interface NonL4LTaxDutyFxTransaction {
|
|
19548
19799
|
readonly 'discriminator': 'non_l4l_tax_duty_fx_transaction';
|
|
19549
19800
|
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -19580,15 +19831,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19580
19831
|
readonly 'execution_time_ms'?: number;
|
|
19581
19832
|
}
|
|
19582
19833
|
|
|
19583
|
-
interface OnboardingAuditSnapshot {
|
|
19584
|
-
readonly 'id': string;
|
|
19585
|
-
readonly 'organization': io.flow.common.v0.models.Organization;
|
|
19586
|
-
readonly 'result': io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
19587
|
-
readonly 'theme_reports': io.flow.internal.v0.models.OnboardingAuditThemeReport[];
|
|
19588
|
-
readonly 'requested_by': io.flow.common.v0.models.User;
|
|
19589
|
-
readonly 'requested_at': string;
|
|
19590
|
-
}
|
|
19591
|
-
|
|
19592
19834
|
interface OnboardingAuditThemeReport {
|
|
19593
19835
|
readonly 'name': string;
|
|
19594
19836
|
readonly 'key': io.flow.internal.v0.enums.OnboardingAuditThemeKey;
|
|
@@ -19805,6 +20047,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19805
20047
|
readonly 'number': string;
|
|
19806
20048
|
}
|
|
19807
20049
|
|
|
20050
|
+
interface OrderRefundTransaction {
|
|
20051
|
+
readonly 'id': string;
|
|
20052
|
+
readonly 'organization_id': string;
|
|
20053
|
+
readonly 'order_number': string;
|
|
20054
|
+
readonly 'price': io.flow.common.v0.models.PriceWithBase;
|
|
20055
|
+
}
|
|
20056
|
+
|
|
20057
|
+
interface OrderRefundTransactionDeleted {
|
|
20058
|
+
readonly 'discriminator': 'order_refund_transaction_deleted';
|
|
20059
|
+
readonly 'event_id': string;
|
|
20060
|
+
readonly 'timestamp': string;
|
|
20061
|
+
readonly 'organization': string;
|
|
20062
|
+
readonly 'id': string;
|
|
20063
|
+
}
|
|
20064
|
+
|
|
20065
|
+
interface OrderRefundTransactionUpserted {
|
|
20066
|
+
readonly 'discriminator': 'order_refund_transaction_upserted';
|
|
20067
|
+
readonly 'event_id': string;
|
|
20068
|
+
readonly 'timestamp': string;
|
|
20069
|
+
readonly 'organization': string;
|
|
20070
|
+
readonly 'transaction': io.flow.internal.v0.models.OrderRefundTransaction;
|
|
20071
|
+
}
|
|
20072
|
+
|
|
19808
20073
|
interface OrderRevenueRegionChart {
|
|
19809
20074
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
19810
20075
|
readonly 'period': io.flow.common.v0.models.DatetimeRange;
|
|
@@ -20175,6 +20440,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20175
20440
|
readonly 'pending_classification_count'?: number;
|
|
20176
20441
|
readonly 'oldest_pending_restriction_date'?: string;
|
|
20177
20442
|
readonly 'oldest_pending_verification_date'?: string;
|
|
20443
|
+
readonly 'oldest_pending_classification_date'?: string;
|
|
20178
20444
|
readonly 'product_count': number;
|
|
20179
20445
|
readonly 'restricted_product_count': number;
|
|
20180
20446
|
readonly 'last_order_submitted_at'?: string;
|
|
@@ -20718,6 +20984,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20718
20984
|
readonly 'merchant': io.flow.internal.v0.unions.ProcessorMerchant;
|
|
20719
20985
|
}
|
|
20720
20986
|
|
|
20987
|
+
interface PaymentRequestAuthorization {
|
|
20988
|
+
readonly 'payment_request_id': string;
|
|
20989
|
+
readonly 'authorization_id': string;
|
|
20990
|
+
}
|
|
20991
|
+
|
|
20721
20992
|
interface PaymentShortUrl {
|
|
20722
20993
|
readonly 'id': string;
|
|
20723
20994
|
readonly 'key': string;
|
|
@@ -21316,6 +21587,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21316
21587
|
readonly 'pending_classification_count'?: number;
|
|
21317
21588
|
readonly 'oldest_pending_restriction_date'?: string;
|
|
21318
21589
|
readonly 'oldest_pending_verification_date'?: string;
|
|
21590
|
+
readonly 'oldest_pending_classification_date'?: string;
|
|
21319
21591
|
}
|
|
21320
21592
|
|
|
21321
21593
|
interface ProductRestrictionStateDeleted {
|
|
@@ -21378,6 +21650,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21378
21650
|
readonly 'restricted_regions'?: string[];
|
|
21379
21651
|
readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
21380
21652
|
readonly 'rule_ids'?: string[];
|
|
21653
|
+
readonly 'taxonomy_category'?: string;
|
|
21381
21654
|
}
|
|
21382
21655
|
|
|
21383
21656
|
interface ProductTransaction {
|
|
@@ -22122,6 +22395,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22122
22395
|
readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22123
22396
|
readonly 'tax_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22124
22397
|
readonly 'duty_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22398
|
+
readonly 'tax_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22399
|
+
readonly 'duty_reversal'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22400
|
+
readonly 'tax_reversal_for_lvg_order'?: boolean;
|
|
22401
|
+
readonly 'duty_reversal_for_lvg_order'?: boolean;
|
|
22125
22402
|
}
|
|
22126
22403
|
|
|
22127
22404
|
interface ReportingMonetaryValue {
|
|
@@ -22138,6 +22415,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22138
22415
|
readonly 'number': string;
|
|
22139
22416
|
readonly 'submitted_at': string;
|
|
22140
22417
|
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
22418
|
+
readonly 'is_edited'?: boolean;
|
|
22141
22419
|
}
|
|
22142
22420
|
|
|
22143
22421
|
interface ReportingOrganizationSummary {
|
|
@@ -22214,6 +22492,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22214
22492
|
readonly 'placeholder'?: boolean;
|
|
22215
22493
|
}
|
|
22216
22494
|
|
|
22495
|
+
interface RestrictionAttributeConditionMultiple {
|
|
22496
|
+
readonly 'discriminator': 'multiple';
|
|
22497
|
+
readonly 'attribute': string;
|
|
22498
|
+
readonly 'operator': io.flow.internal.v0.enums.RestrictionAttributeConditionMultipleOperator;
|
|
22499
|
+
readonly 'values': string[];
|
|
22500
|
+
}
|
|
22501
|
+
|
|
22502
|
+
interface RestrictionAttributeConditionSingle {
|
|
22503
|
+
readonly 'discriminator': 'single';
|
|
22504
|
+
readonly 'attribute': string;
|
|
22505
|
+
readonly 'operator': io.flow.internal.v0.enums.RestrictionAttributeConditionSingleOperator;
|
|
22506
|
+
readonly 'value': string;
|
|
22507
|
+
}
|
|
22508
|
+
|
|
22509
|
+
interface RestrictionAttributeRule {
|
|
22510
|
+
readonly 'conditions': io.flow.internal.v0.unions.RestrictionAttributeRuleCondition[];
|
|
22511
|
+
readonly 'operator'?: io.flow.internal.v0.enums.RestrictionAttributeOperator;
|
|
22512
|
+
readonly 'result': io.flow.internal.v0.enums.RestrictionAttributeResult;
|
|
22513
|
+
}
|
|
22514
|
+
|
|
22217
22515
|
interface RestrictionBlanketOrganizationExemption {
|
|
22218
22516
|
readonly 'id': string;
|
|
22219
22517
|
readonly 'organization_id': string;
|
|
@@ -22257,6 +22555,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22257
22555
|
readonly 'price': io.flow.common.v0.models.Price;
|
|
22258
22556
|
readonly 'hs_code'?: string;
|
|
22259
22557
|
readonly 'hs_code_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
22558
|
+
readonly 'classification_scope'?: io.flow.internal.v0.enums.ClassificationScope;
|
|
22260
22559
|
readonly 'description': string;
|
|
22261
22560
|
readonly 'category'?: string;
|
|
22262
22561
|
readonly 'categories': string[];
|
|
@@ -22384,6 +22683,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22384
22683
|
readonly 'thumbnails': io.flow.catalog.v0.models.Image[];
|
|
22385
22684
|
readonly 'hs_code'?: string;
|
|
22386
22685
|
readonly 'hs_code_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
22686
|
+
readonly 'classification_scope'?: io.flow.internal.v0.enums.ClassificationScope;
|
|
22387
22687
|
readonly 'url'?: string;
|
|
22388
22688
|
readonly 'reviews': io.flow.internal.v0.models.RestrictionItemReview[];
|
|
22389
22689
|
readonly 'created_at': string;
|
|
@@ -22428,6 +22728,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22428
22728
|
readonly 'sellability_positive_keywords'?: string[];
|
|
22429
22729
|
readonly 'community_exemption': io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
22430
22730
|
readonly 'reason_code': string;
|
|
22731
|
+
readonly 'attribute_names'?: string[];
|
|
22732
|
+
readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
|
|
22733
|
+
readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
22734
|
+
readonly 'activation_status'?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
22431
22735
|
}
|
|
22432
22736
|
|
|
22433
22737
|
interface RestrictionRuleDecisionForm {
|
|
@@ -22485,6 +22789,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22485
22789
|
readonly 'sellability_positive_keywords'?: string[];
|
|
22486
22790
|
readonly 'community_exemption': io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
22487
22791
|
readonly 'reason_code': string;
|
|
22792
|
+
readonly 'attribute_names'?: string[];
|
|
22793
|
+
readonly 'attribute_rule_conditions'?: io.flow.internal.v0.models.AttributeRule;
|
|
22794
|
+
readonly 'keyword_cancelling'?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
22795
|
+
readonly 'activation_status'?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
22488
22796
|
}
|
|
22489
22797
|
|
|
22490
22798
|
interface RestrictionRuleLaneExemption {
|
|
@@ -22505,6 +22813,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22505
22813
|
readonly 'ignored_keywords'?: string[];
|
|
22506
22814
|
readonly 'additional_keywords'?: string[];
|
|
22507
22815
|
readonly 'community_exemption_override'?: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
22816
|
+
readonly 'is_rule_active'?: boolean;
|
|
22508
22817
|
}
|
|
22509
22818
|
|
|
22510
22819
|
interface RestrictionRuleOverride {
|
|
@@ -22670,6 +22979,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22670
22979
|
readonly 'refund': io.flow.payment.v0.models.RefundReference;
|
|
22671
22980
|
}
|
|
22672
22981
|
|
|
22982
|
+
interface ReturnTriggerReversal {
|
|
22983
|
+
readonly 'discriminator': 'by_reversal';
|
|
22984
|
+
readonly 'reversal': io.flow.internal.v0.models.TransactionReference;
|
|
22985
|
+
}
|
|
22986
|
+
|
|
22673
22987
|
interface RevenueRecord {
|
|
22674
22988
|
readonly 'id': string;
|
|
22675
22989
|
readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
@@ -22741,6 +23055,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22741
23055
|
interface SalesPaymentRecord {
|
|
22742
23056
|
readonly 'id': string;
|
|
22743
23057
|
readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
23058
|
+
readonly 'vendor'?: io.flow.internal.v0.models.ReportingVendor;
|
|
22744
23059
|
readonly 'order': io.flow.internal.v0.models.ReportingOrderSummary;
|
|
22745
23060
|
readonly 'order_total': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22746
23061
|
readonly 'shopper_breakdown': io.flow.internal.v0.models.ShopperBreakdown;
|
|
@@ -22872,6 +23187,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22872
23187
|
readonly 'label': io.flow.internal.v0.models.LabelSummary;
|
|
22873
23188
|
}
|
|
22874
23189
|
|
|
23190
|
+
interface SellabilityCheckResult {
|
|
23191
|
+
readonly 'status': io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
23192
|
+
readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
23193
|
+
readonly 'current_rule_ids'?: string[];
|
|
23194
|
+
readonly 'current_restricted_regions'?: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
23195
|
+
readonly 'merchant_rule_ids'?: string[];
|
|
23196
|
+
readonly 'merchant_restricted_regions'?: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
23197
|
+
readonly 'current_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
23198
|
+
readonly 'merchant_error'?: io.flow.sellability.v0.models.SellabilityError[];
|
|
23199
|
+
}
|
|
23200
|
+
|
|
22875
23201
|
interface SessionOrderData {
|
|
22876
23202
|
readonly 'id': string;
|
|
22877
23203
|
readonly 'session': io.flow.common.v0.models.SessionReference;
|
|
@@ -23193,6 +23519,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23193
23519
|
readonly 'api_password_masked'?: string;
|
|
23194
23520
|
readonly 'access_token_masked'?: string;
|
|
23195
23521
|
readonly 'shopify_plan_name'?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
23522
|
+
readonly 'catalog_publication_owner'?: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
23196
23523
|
}
|
|
23197
23524
|
|
|
23198
23525
|
interface ShopifyMarketsShopDeleted {
|
|
@@ -23349,12 +23676,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23349
23676
|
readonly 'order_monitor': io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
23350
23677
|
}
|
|
23351
23678
|
|
|
23352
|
-
interface ShopifyMonitoringOrderMonitorReview {
|
|
23353
|
-
readonly 'id': string;
|
|
23354
|
-
readonly 'order_monitor': io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
23355
|
-
readonly 'status': io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
23356
|
-
}
|
|
23357
|
-
|
|
23358
23679
|
interface ShopifyMonitoringTrackingNumber {
|
|
23359
23680
|
readonly 'number': string;
|
|
23360
23681
|
}
|
|
@@ -23520,6 +23841,50 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23520
23841
|
readonly 'product_delete': io.flow.shopify.external.v0.models.ProductDelete;
|
|
23521
23842
|
}
|
|
23522
23843
|
|
|
23844
|
+
interface ShopifyProductTaxonomyAttribute {
|
|
23845
|
+
readonly 'id': string;
|
|
23846
|
+
readonly 'handle': string;
|
|
23847
|
+
readonly 'name': string;
|
|
23848
|
+
readonly 'friendly_id': string;
|
|
23849
|
+
readonly 'description'?: string;
|
|
23850
|
+
}
|
|
23851
|
+
|
|
23852
|
+
interface ShopifyProductTaxonomyAttributeDeleted {
|
|
23853
|
+
readonly 'discriminator': 'shopify_product_taxonomy_attribute_deleted';
|
|
23854
|
+
readonly 'event_id': string;
|
|
23855
|
+
readonly 'timestamp': string;
|
|
23856
|
+
readonly 'id': string;
|
|
23857
|
+
}
|
|
23858
|
+
|
|
23859
|
+
interface ShopifyProductTaxonomyAttributeUpserted {
|
|
23860
|
+
readonly 'discriminator': 'shopify_product_taxonomy_attribute_upserted';
|
|
23861
|
+
readonly 'event_id': string;
|
|
23862
|
+
readonly 'timestamp': string;
|
|
23863
|
+
readonly 'shopify_product_taxonomy_attribute': io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute;
|
|
23864
|
+
}
|
|
23865
|
+
|
|
23866
|
+
interface ShopifyProductTaxonomyAttributeValue {
|
|
23867
|
+
readonly 'id': string;
|
|
23868
|
+
readonly 'attribute_id': string;
|
|
23869
|
+
readonly 'handle': string;
|
|
23870
|
+
readonly 'name': string;
|
|
23871
|
+
readonly 'friendly_id': string;
|
|
23872
|
+
}
|
|
23873
|
+
|
|
23874
|
+
interface ShopifyProductTaxonomyAttributeValueDeleted {
|
|
23875
|
+
readonly 'discriminator': 'shopify_product_taxonomy_attribute_value_deleted';
|
|
23876
|
+
readonly 'event_id': string;
|
|
23877
|
+
readonly 'timestamp': string;
|
|
23878
|
+
readonly 'id': string;
|
|
23879
|
+
}
|
|
23880
|
+
|
|
23881
|
+
interface ShopifyProductTaxonomyAttributeValueUpserted {
|
|
23882
|
+
readonly 'discriminator': 'shopify_product_taxonomy_attribute_value_upserted';
|
|
23883
|
+
readonly 'event_id': string;
|
|
23884
|
+
readonly 'timestamp': string;
|
|
23885
|
+
readonly 'shopify_product_taxonomy_attribute_value': io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
23886
|
+
}
|
|
23887
|
+
|
|
23523
23888
|
interface ShopifyProductUpdateDeleted {
|
|
23524
23889
|
readonly 'discriminator': 'shopify_product_update_deleted';
|
|
23525
23890
|
readonly 'event_id': string;
|
|
@@ -23582,6 +23947,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23582
23947
|
readonly 'request'?: any/*object*/;
|
|
23583
23948
|
}
|
|
23584
23949
|
|
|
23950
|
+
interface ShopifyTaxonomyAlignmentConfig {
|
|
23951
|
+
readonly 'id': string;
|
|
23952
|
+
readonly 'taxonomy_category': string;
|
|
23953
|
+
readonly 'allowable_hs_prefixes': string[];
|
|
23954
|
+
readonly 'default_hs6_code'?: string;
|
|
23955
|
+
readonly 'auto_correct': boolean;
|
|
23956
|
+
readonly 'created_at': string;
|
|
23957
|
+
readonly 'updated_at': string;
|
|
23958
|
+
readonly 'updated_by_user_id': string;
|
|
23959
|
+
}
|
|
23960
|
+
|
|
23961
|
+
interface ShopifyTaxonomyAlignmentConfigForm {
|
|
23962
|
+
readonly 'taxonomy_category': string;
|
|
23963
|
+
readonly 'allowable_hs_prefixes': string[];
|
|
23964
|
+
readonly 'default_hs6_code'?: string;
|
|
23965
|
+
readonly 'auto_correct': boolean;
|
|
23966
|
+
}
|
|
23967
|
+
|
|
23585
23968
|
interface ShopperBreakdown {
|
|
23586
23969
|
readonly 'product': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23587
23970
|
readonly 'tax': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -24321,6 +24704,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24321
24704
|
readonly 'tax_transaction': io.flow.internal.v0.models.TaxTransaction;
|
|
24322
24705
|
}
|
|
24323
24706
|
|
|
24707
|
+
interface TaxonomyAlignmentCheckResult {
|
|
24708
|
+
readonly 'status': io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
24709
|
+
readonly 'result': io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
24710
|
+
readonly 'merchant_taxonomy_status': io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
24711
|
+
readonly 'current_taxonomy_status': io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
24712
|
+
}
|
|
24713
|
+
|
|
24324
24714
|
interface TaxonomyCategory {
|
|
24325
24715
|
readonly 'discriminator': 'category';
|
|
24326
24716
|
readonly 'name': string;
|
|
@@ -24970,6 +25360,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24970
25360
|
readonly 'provided_charges'?: io.flow.internal.v0.models.ChargeInput[];
|
|
24971
25361
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
24972
25362
|
readonly 'package_dimensions_source': io.flow.label.v0.enums.PackageDimensionsSource;
|
|
25363
|
+
readonly 'shipping_date_time'?: string;
|
|
24973
25364
|
}
|
|
24974
25365
|
|
|
24975
25366
|
interface ViesResult {
|
|
@@ -25027,6 +25418,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25027
25418
|
type CalculatorStamp = (io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep);
|
|
25028
25419
|
type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther);
|
|
25029
25420
|
type CarrierCredentials = (io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex | io.flow.internal.v0.models.FedexApi);
|
|
25421
|
+
type CarrierDocumentContent = (io.flow.internal.v0.models.Base64CarrierDocumentContent);
|
|
25422
|
+
type CarrierLabelAttributes = (io.flow.internal.v0.models.FedexCarrierLabelAttributes);
|
|
25030
25423
|
type ChannelRateMetadata = (io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate);
|
|
25031
25424
|
type ClassificationAction = (io.flow.internal.v0.models.SingleClassificationAction | io.flow.internal.v0.models.BulkClassificationAction);
|
|
25032
25425
|
type ClassificationActionForm = (io.flow.internal.v0.models.ClassificationActionFormUndo);
|
|
@@ -25047,7 +25440,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25047
25440
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25048
25441
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25049
25442
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25050
|
-
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.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.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | 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.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.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.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.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);
|
|
25443
|
+
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.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.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.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);
|
|
25051
25444
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25052
25445
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25053
25446
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -25081,7 +25474,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25081
25474
|
type ProcessorMerchantModificationForm = (io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm);
|
|
25082
25475
|
type ProcessorMerchantPutForm = (io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm);
|
|
25083
25476
|
type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment | io.flow.internal.v0.models.ProofOfPostingTimeElapsed);
|
|
25084
|
-
type
|
|
25477
|
+
type RestrictionAttributeRuleCondition = (io.flow.internal.v0.models.RestrictionAttributeConditionSingle | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple);
|
|
25478
|
+
type ReturnTrigger = (io.flow.internal.v0.models.ReturnTriggerRefund | io.flow.internal.v0.models.ReturnTriggerReversal);
|
|
25085
25479
|
type RoutingEntity = (io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant);
|
|
25086
25480
|
type ShopifyMonitoringOrderMonitorType = (io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails);
|
|
25087
25481
|
type SimplifiedClassificationTaxonomy = (io.flow.internal.v0.models.SimplifiedTaxonomyCategory | io.flow.internal.v0.models.SimplifiedItemLabel);
|
|
@@ -25090,7 +25484,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25090
25484
|
type TariffEligibilityData = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData);
|
|
25091
25485
|
type TariffEligibilityForm = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm);
|
|
25092
25486
|
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);
|
|
25093
|
-
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata);
|
|
25487
|
+
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);
|
|
25094
25488
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
25095
25489
|
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);
|
|
25096
25490
|
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);
|
|
@@ -25103,6 +25497,7 @@ export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.Accoun
|
|
|
25103
25497
|
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
25104
25498
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
25105
25499
|
export const aldoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AldoItemType>;
|
|
25500
|
+
export const anirbanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnirbanItemType>;
|
|
25106
25501
|
export const anshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnshItemType>;
|
|
25107
25502
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
25108
25503
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
@@ -25119,6 +25514,7 @@ export const billingTransactionType: PropTypes.Requireable<io.flow.internal.v0.e
|
|
|
25119
25514
|
export const calculatorEngine: PropTypes.Requireable<io.flow.internal.v0.enums.CalculatorEngine>;
|
|
25120
25515
|
export const carrierChargeTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeTransactionType>;
|
|
25121
25516
|
export const carrierChargeType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierChargeType>;
|
|
25517
|
+
export const carrierDocumentType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierDocumentType>;
|
|
25122
25518
|
export const carrierFileType: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierFileType>;
|
|
25123
25519
|
export const carrierLabelGenerationMethod: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierLabelGenerationMethod>;
|
|
25124
25520
|
export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.CarrierValidationStatus>;
|
|
@@ -25132,6 +25528,7 @@ export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flo
|
|
|
25132
25528
|
export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
|
|
25133
25529
|
export const channelOrderFulfillmentStatusCode: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderFulfillmentStatusCode>;
|
|
25134
25530
|
export const channelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelTransactionType>;
|
|
25531
|
+
export const chapterCheckStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChapterCheckStatus>;
|
|
25135
25532
|
export const chargeEstimateSource: PropTypes.Requireable<io.flow.internal.v0.enums.ChargeEstimateSource>;
|
|
25136
25533
|
export const chargeInputType: PropTypes.Requireable<io.flow.internal.v0.enums.ChargeInputType>;
|
|
25137
25534
|
export const chargebackPaymentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChargebackPaymentStatus>;
|
|
@@ -25175,8 +25572,10 @@ export const dutyRateUnitOfMeasure: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
25175
25572
|
export const dutySelectionRule: PropTypes.Requireable<io.flow.internal.v0.enums.DutySelectionRule>;
|
|
25176
25573
|
export const dutySimpleExpressionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutySimpleExpressionType>;
|
|
25177
25574
|
export const dutyTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.DutyTransactionType>;
|
|
25575
|
+
export const dutyVarianceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.DutyVarianceStatus>;
|
|
25178
25576
|
export const emptyAttribute: PropTypes.Requireable<io.flow.internal.v0.enums.EmptyAttribute>;
|
|
25179
25577
|
export const erpFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ErpFileType>;
|
|
25578
|
+
export const evaluationCheckResult: PropTypes.Requireable<io.flow.internal.v0.enums.EvaluationCheckResult>;
|
|
25180
25579
|
export const eventType: PropTypes.Requireable<io.flow.internal.v0.enums.EventType>;
|
|
25181
25580
|
export const experienceImportType: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceImportType>;
|
|
25182
25581
|
export const experienceOrderAction: PropTypes.Requireable<io.flow.internal.v0.enums.ExperienceOrderAction>;
|
|
@@ -25186,6 +25585,7 @@ export const featureScope: PropTypes.Requireable<io.flow.internal.v0.enums.Featu
|
|
|
25186
25585
|
export const featureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureStatus>;
|
|
25187
25586
|
export const featureType: PropTypes.Requireable<io.flow.internal.v0.enums.FeatureType>;
|
|
25188
25587
|
export const feesSource: PropTypes.Requireable<io.flow.internal.v0.enums.FeesSource>;
|
|
25588
|
+
export const fileType: PropTypes.Requireable<io.flow.internal.v0.enums.FileType>;
|
|
25189
25589
|
export const fraudProvider: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProvider>;
|
|
25190
25590
|
export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enums.FraudProviderStatus>;
|
|
25191
25591
|
export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.FraudReviewResponsibleParty>;
|
|
@@ -25277,9 +25677,14 @@ export const reportingFulfillmentIsVirtual: PropTypes.Requireable<io.flow.intern
|
|
|
25277
25677
|
export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.ReportingScheme>;
|
|
25278
25678
|
export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
|
|
25279
25679
|
export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
|
|
25680
|
+
export const restrictionAttributeConditionMultipleOperator: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAttributeConditionMultipleOperator>;
|
|
25681
|
+
export const restrictionAttributeConditionSingleOperator: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAttributeConditionSingleOperator>;
|
|
25682
|
+
export const restrictionAttributeOperator: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAttributeOperator>;
|
|
25683
|
+
export const restrictionAttributeResult: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAttributeResult>;
|
|
25280
25684
|
export const restrictionDecision: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionDecision>;
|
|
25281
25685
|
export const restrictionOrganizationChannel: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationChannel>;
|
|
25282
25686
|
export const restrictionOrganizationSource: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationSource>;
|
|
25687
|
+
export const restrictionRuleActivationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleActivationStatus>;
|
|
25283
25688
|
export const restrictionRuleCommunityExemption: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleCommunityExemption>;
|
|
25284
25689
|
export const restrictionRuleExceptionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleExceptionAction>;
|
|
25285
25690
|
export const restrictionStateReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStateReviewStatus>;
|
|
@@ -25289,6 +25694,8 @@ export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskChec
|
|
|
25289
25694
|
export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
|
|
25290
25695
|
export const rohanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.RohanItemType>;
|
|
25291
25696
|
export const sarveshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.SarveshItemType>;
|
|
25697
|
+
export const sellabilityCheckStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SellabilityCheckStatus>;
|
|
25698
|
+
export const sellabilityStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SellabilityStatus>;
|
|
25292
25699
|
export const shopifyIncotermConfiguration: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyIncotermConfiguration>;
|
|
25293
25700
|
export const shopifyMarketsDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods>;
|
|
25294
25701
|
export const shopifyMarketsHtsNumberAvailable: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyMarketsHtsNumberAvailable>;
|
|
@@ -25350,6 +25757,7 @@ export const accountTransactionsExportRequest: PropTypes.Requireable<io.flow.int
|
|
|
25350
25757
|
export const accountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpserted>;
|
|
25351
25758
|
export const accountUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpsertedV2>;
|
|
25352
25759
|
export const accountingPendingOrderMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingPendingOrderMetadata>;
|
|
25760
|
+
export const accountingReturnMetadata: PropTypes.Requireable<io.flow.internal.v0.models.AccountingReturnMetadata>;
|
|
25353
25761
|
export const actionQuantity: PropTypes.Requireable<io.flow.internal.v0.models.ActionQuantity>;
|
|
25354
25762
|
export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.models.AdditionalImportTax>;
|
|
25355
25763
|
export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
|
|
@@ -25410,12 +25818,15 @@ export const allItemsExport: PropTypes.Requireable<io.flow.internal.v0.models.Al
|
|
|
25410
25818
|
export const allOrganizationsMembership: PropTypes.Requireable<io.flow.internal.v0.models.AllOrganizationsMembership>;
|
|
25411
25819
|
export const allocationItemReference: PropTypes.Requireable<io.flow.internal.v0.models.AllocationItemReference>;
|
|
25412
25820
|
export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.AllowedLabels>;
|
|
25821
|
+
export const anirbanItem: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItem>;
|
|
25822
|
+
export const anirbanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnirbanItemForm>;
|
|
25413
25823
|
export const anshItem: PropTypes.Requireable<io.flow.internal.v0.models.AnshItem>;
|
|
25414
25824
|
export const anshItemForm: PropTypes.Requireable<io.flow.internal.v0.models.AnshItemForm>;
|
|
25415
25825
|
export const applePayAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.ApplePayAuthorizationPayload>;
|
|
25416
25826
|
export const applyAtValueForm: PropTypes.Requireable<io.flow.internal.v0.models.ApplyAtValueForm>;
|
|
25417
25827
|
export const attemptStatistics: PropTypes.Requireable<io.flow.internal.v0.models.AttemptStatistics>;
|
|
25418
25828
|
export const attributeLabel: PropTypes.Requireable<io.flow.internal.v0.models.AttributeLabel>;
|
|
25829
|
+
export const attributeRule: PropTypes.Requireable<io.flow.internal.v0.models.AttributeRule>;
|
|
25419
25830
|
export const authenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.AuthenticationForm>;
|
|
25420
25831
|
export const authorizationBundle: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizationBundle>;
|
|
25421
25832
|
export const authorizationBundleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizationBundleDeleted>;
|
|
@@ -25446,6 +25857,7 @@ export const bankPaymentStatusSentImportForm: PropTypes.Requireable<io.flow.inte
|
|
|
25446
25857
|
export const bankPaymentStatusSingleForm: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentStatusSingleForm>;
|
|
25447
25858
|
export const bankPaymentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentUpserted>;
|
|
25448
25859
|
export const bankPaymentUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.BankPaymentUpsertedV2>;
|
|
25860
|
+
export const base64CarrierDocumentContent: PropTypes.Requireable<io.flow.internal.v0.models.Base64CarrierDocumentContent>;
|
|
25449
25861
|
export const billingAuthorizationReference: PropTypes.Requireable<io.flow.internal.v0.models.BillingAuthorizationReference>;
|
|
25450
25862
|
export const billingCsvTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.BillingCsvTransactionDeleted>;
|
|
25451
25863
|
export const billingCsvTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.BillingCsvTransactionUpserted>;
|
|
@@ -25508,6 +25920,7 @@ export const carrierChargeReference: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
25508
25920
|
export const carrierChargeTransaction: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeTransaction>;
|
|
25509
25921
|
export const carrierChargeUnits: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeUnits>;
|
|
25510
25922
|
export const carrierChargeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CarrierChargeUpserted>;
|
|
25923
|
+
export const carrierDocument: PropTypes.Requireable<io.flow.internal.v0.models.CarrierDocument>;
|
|
25511
25924
|
export const carrierFile: PropTypes.Requireable<io.flow.internal.v0.models.CarrierFile>;
|
|
25512
25925
|
export const carrierFileForm: PropTypes.Requireable<io.flow.internal.v0.models.CarrierFileForm>;
|
|
25513
25926
|
export const carrierFileResult: PropTypes.Requireable<io.flow.internal.v0.models.CarrierFileResult>;
|
|
@@ -25570,6 +25983,10 @@ export const channelOrderSummaryUpserted: PropTypes.Requireable<io.flow.internal
|
|
|
25570
25983
|
export const channelOrganizationIdentifier: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifier>;
|
|
25571
25984
|
export const channelOrganizationIdentifierDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted>;
|
|
25572
25985
|
export const channelOrganizationIdentifierUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted>;
|
|
25986
|
+
export const channelOrganizationPublicationOwner: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationPublicationOwner>;
|
|
25987
|
+
export const channelOrganizationPublicationOwnerPutForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationPublicationOwnerPutForm>;
|
|
25988
|
+
export const channelOrganizationSellabilityStatus: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationSellabilityStatus>;
|
|
25989
|
+
export const channelOrganizationSellabilityStatusPutForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationSellabilityStatusPutForm>;
|
|
25573
25990
|
export const channelOrganizationShopify: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopify>;
|
|
25574
25991
|
export const channelOrganizationShopifyForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopifyForm>;
|
|
25575
25992
|
export const channelOrganizationShopifyPostForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrganizationShopifyPostForm>;
|
|
@@ -25579,6 +25996,7 @@ export const channelTransaction: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
25579
25996
|
export const channelTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionDeleted>;
|
|
25580
25997
|
export const channelTransactionRate: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionRate>;
|
|
25581
25998
|
export const channelTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelTransactionUpserted>;
|
|
25999
|
+
export const chapterCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.ChapterCheckResult>;
|
|
25582
26000
|
export const chargeInput: PropTypes.Requireable<io.flow.internal.v0.models.ChargeInput>;
|
|
25583
26001
|
export const chargeback: PropTypes.Requireable<io.flow.internal.v0.models.Chargeback>;
|
|
25584
26002
|
export const chargebackDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChargebackDeleted>;
|
|
@@ -25689,6 +26107,7 @@ export const deliveredDutyOptions: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
25689
26107
|
export const deliveredDutyOptionsMessage: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyOptionsMessage>;
|
|
25690
26108
|
export const deliveredDutyPreference: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreference>;
|
|
25691
26109
|
export const deliveredDutyPreferenceForm: PropTypes.Requireable<io.flow.internal.v0.models.DeliveredDutyPreferenceForm>;
|
|
26110
|
+
export const destinationDutyComparison: PropTypes.Requireable<io.flow.internal.v0.models.DestinationDutyComparison>;
|
|
25692
26111
|
export const destinationError: PropTypes.Requireable<io.flow.internal.v0.models.DestinationError>;
|
|
25693
26112
|
export const dhl: PropTypes.Requireable<io.flow.internal.v0.models.Dhl>;
|
|
25694
26113
|
export const dhlEcommerce: PropTypes.Requireable<io.flow.internal.v0.models.DhlEcommerce>;
|
|
@@ -25731,6 +26150,7 @@ export const dutySimpleExpression: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
25731
26150
|
export const dutyTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransaction>;
|
|
25732
26151
|
export const dutyTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionDeleted>;
|
|
25733
26152
|
export const dutyTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DutyTransactionUpserted>;
|
|
26153
|
+
export const dutyVarianceResult: PropTypes.Requireable<io.flow.internal.v0.models.DutyVarianceResult>;
|
|
25734
26154
|
export const emailForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailForm>;
|
|
25735
26155
|
export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailModificationForm>;
|
|
25736
26156
|
export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
|
|
@@ -25772,6 +26192,8 @@ export const externalFulfillmentProof: PropTypes.Requireable<io.flow.internal.v0
|
|
|
25772
26192
|
export const externalFulfillmentProofForm: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofForm>;
|
|
25773
26193
|
export const externalFulfillmentProofTracking: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofTracking>;
|
|
25774
26194
|
export const externalFulfillmentProofTrackingForm: PropTypes.Requireable<io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm>;
|
|
26195
|
+
export const externalRatecardLink: PropTypes.Requireable<io.flow.internal.v0.models.ExternalRatecardLink>;
|
|
26196
|
+
export const externalRatecardLinkResponse: PropTypes.Requireable<io.flow.internal.v0.models.ExternalRatecardLinkResponse>;
|
|
25775
26197
|
export const facebookPixel: PropTypes.Requireable<io.flow.internal.v0.models.FacebookPixel>;
|
|
25776
26198
|
export const failedDimensionEstimateOpsInputWithReason: PropTypes.Requireable<io.flow.internal.v0.models.FailedDimensionEstimateOpsInputWithReason>;
|
|
25777
26199
|
export const feature: PropTypes.Requireable<io.flow.internal.v0.models.Feature>;
|
|
@@ -25790,6 +26212,7 @@ export const featureValueForm: PropTypes.Requireable<io.flow.internal.v0.models.
|
|
|
25790
26212
|
export const featureValueResult: PropTypes.Requireable<io.flow.internal.v0.models.FeatureValueResult>;
|
|
25791
26213
|
export const fedex: PropTypes.Requireable<io.flow.internal.v0.models.Fedex>;
|
|
25792
26214
|
export const fedexApi: PropTypes.Requireable<io.flow.internal.v0.models.FedexApi>;
|
|
26215
|
+
export const fedexCarrierLabelAttributes: PropTypes.Requireable<io.flow.internal.v0.models.FedexCarrierLabelAttributes>;
|
|
25793
26216
|
export const fedexCrossborder: PropTypes.Requireable<io.flow.internal.v0.models.FedexCrossborder>;
|
|
25794
26217
|
export const fee: PropTypes.Requireable<io.flow.internal.v0.models.Fee>;
|
|
25795
26218
|
export const fees: PropTypes.Requireable<io.flow.internal.v0.models.Fees>;
|
|
@@ -25969,6 +26392,7 @@ export const journal: PropTypes.Requireable<io.flow.internal.v0.models.Journal>;
|
|
|
25969
26392
|
export const journalFailure: PropTypes.Requireable<io.flow.internal.v0.models.JournalFailure>;
|
|
25970
26393
|
export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
|
|
25971
26394
|
export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
|
|
26395
|
+
export const keywordCancelling: PropTypes.Requireable<io.flow.internal.v0.models.KeywordCancelling>;
|
|
25972
26396
|
export const klarnaAuthorizationParameters: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaAuthorizationParameters>;
|
|
25973
26397
|
export const klarnaPaymentMethodCategory: PropTypes.Requireable<io.flow.internal.v0.models.KlarnaPaymentMethodCategory>;
|
|
25974
26398
|
export const labProjectSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabProjectSettings>;
|
|
@@ -26063,6 +26487,8 @@ export const merchantOfRecordEntitySettings: PropTypes.Requireable<io.flow.inter
|
|
|
26063
26487
|
export const merchantOfRecordEntitySettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm>;
|
|
26064
26488
|
export const merchantOverride: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverride>;
|
|
26065
26489
|
export const merchantOverrideDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverrideDecisionForm>;
|
|
26490
|
+
export const merchantOverrideDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverrideDeleted>;
|
|
26491
|
+
export const merchantOverrideUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverrideUpserted>;
|
|
26066
26492
|
export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
|
|
26067
26493
|
export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
|
|
26068
26494
|
export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
|
|
@@ -26078,12 +26504,12 @@ export const niallItemForm: PropTypes.Requireable<io.flow.internal.v0.models.Nia
|
|
|
26078
26504
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
26079
26505
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
26080
26506
|
export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
|
|
26507
|
+
export const nonL4LTaxDutyFxFeeMetadata: PropTypes.Requireable<io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata>;
|
|
26081
26508
|
export const nonL4LTaxDutyFxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction>;
|
|
26082
26509
|
export const notification: PropTypes.Requireable<io.flow.internal.v0.models.Notification>;
|
|
26083
26510
|
export const onboardingAuditMessage: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditMessage>;
|
|
26084
26511
|
export const onboardingAuditReport: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditReport>;
|
|
26085
26512
|
export const onboardingAuditReportLine: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditReportLine>;
|
|
26086
|
-
export const onboardingAuditSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditSnapshot>;
|
|
26087
26513
|
export const onboardingAuditThemeReport: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingAuditThemeReport>;
|
|
26088
26514
|
export const onboardingOrganization: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingOrganization>;
|
|
26089
26515
|
export const onboardingStateForm: PropTypes.Requireable<io.flow.internal.v0.models.OnboardingStateForm>;
|
|
@@ -26113,6 +26539,9 @@ export const orderPaymentAuthorization: PropTypes.Requireable<io.flow.internal.v
|
|
|
26113
26539
|
export const orderRatesDataV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesDataV3>;
|
|
26114
26540
|
export const orderRatesPublishedV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesPublishedV3>;
|
|
26115
26541
|
export const orderReference: PropTypes.Requireable<io.flow.internal.v0.models.OrderReference>;
|
|
26542
|
+
export const orderRefundTransaction: PropTypes.Requireable<io.flow.internal.v0.models.OrderRefundTransaction>;
|
|
26543
|
+
export const orderRefundTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderRefundTransactionDeleted>;
|
|
26544
|
+
export const orderRefundTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderRefundTransactionUpserted>;
|
|
26116
26545
|
export const orderRevenueRegionChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueRegionChart>;
|
|
26117
26546
|
export const orderRevenueRegionDataPoint: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueRegionDataPoint>;
|
|
26118
26547
|
export const orderRevenueTimelineChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineChart>;
|
|
@@ -26233,6 +26662,7 @@ export const paymentProcessorAccountDeleted: PropTypes.Requireable<io.flow.inter
|
|
|
26233
26662
|
export const paymentProcessorAccountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorAccountUpserted>;
|
|
26234
26663
|
export const paymentProcessorMerchantDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantDeleted>;
|
|
26235
26664
|
export const paymentProcessorMerchantUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaymentProcessorMerchantUpserted>;
|
|
26665
|
+
export const paymentRequestAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.PaymentRequestAuthorization>;
|
|
26236
26666
|
export const paymentShortUrl: PropTypes.Requireable<io.flow.internal.v0.models.PaymentShortUrl>;
|
|
26237
26667
|
export const paymentSummary: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummary>;
|
|
26238
26668
|
export const paymentSummaryV2: PropTypes.Requireable<io.flow.internal.v0.models.PaymentSummaryV2>;
|
|
@@ -26428,6 +26858,9 @@ export const reportingVatRemittanceRate: PropTypes.Requireable<io.flow.internal.
|
|
|
26428
26858
|
export const reportingVendor: PropTypes.Requireable<io.flow.internal.v0.models.ReportingVendor>;
|
|
26429
26859
|
export const requeueRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.RequeueRequestForm>;
|
|
26430
26860
|
export const rescreenRestrictionsProducts: PropTypes.Requireable<io.flow.internal.v0.models.RescreenRestrictionsProducts>;
|
|
26861
|
+
export const restrictionAttributeConditionMultiple: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionAttributeConditionMultiple>;
|
|
26862
|
+
export const restrictionAttributeConditionSingle: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionAttributeConditionSingle>;
|
|
26863
|
+
export const restrictionAttributeRule: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionAttributeRule>;
|
|
26431
26864
|
export const restrictionBlanketOrganizationExemption: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption>;
|
|
26432
26865
|
export const restrictionCategory: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionCategory>;
|
|
26433
26866
|
export const restrictionFilter: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionFilter>;
|
|
@@ -26476,6 +26909,7 @@ export const returnPolicyItemResultUpserted: PropTypes.Requireable<io.flow.inter
|
|
|
26476
26909
|
export const returnPolicyUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyUpserted>;
|
|
26477
26910
|
export const returnSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReturnSummary>;
|
|
26478
26911
|
export const returnTriggerRefund: PropTypes.Requireable<io.flow.internal.v0.models.ReturnTriggerRefund>;
|
|
26912
|
+
export const returnTriggerReversal: PropTypes.Requireable<io.flow.internal.v0.models.ReturnTriggerReversal>;
|
|
26479
26913
|
export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
|
|
26480
26914
|
export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
|
|
26481
26915
|
export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
|
|
@@ -26502,6 +26936,7 @@ export const searchItemSummary: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
26502
26936
|
export const searchOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchOrderSummary>;
|
|
26503
26937
|
export const searchProviderExport: PropTypes.Requireable<io.flow.internal.v0.models.SearchProviderExport>;
|
|
26504
26938
|
export const searchTrackingSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchTrackingSummary>;
|
|
26939
|
+
export const sellabilityCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.SellabilityCheckResult>;
|
|
26505
26940
|
export const sessionOrderData: PropTypes.Requireable<io.flow.internal.v0.models.SessionOrderData>;
|
|
26506
26941
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
26507
26942
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
@@ -26569,7 +27004,6 @@ export const shopifyMonitoringFulfillmentMissingDetails: PropTypes.Requireable<i
|
|
|
26569
27004
|
export const shopifyMonitoringOrderMonitor: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor>;
|
|
26570
27005
|
export const shopifyMonitoringOrderMonitorEventDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted>;
|
|
26571
27006
|
export const shopifyMonitoringOrderMonitorEventUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted>;
|
|
26572
|
-
export const shopifyMonitoringOrderMonitorReview: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview>;
|
|
26573
27007
|
export const shopifyMonitoringTrackingNumber: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber>;
|
|
26574
27008
|
export const shopifyMonitoringTrackingUrl: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringTrackingUrl>;
|
|
26575
27009
|
export const shopifyOrderCancelForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderCancelForm>;
|
|
@@ -26596,6 +27030,12 @@ export const shopifyProductCreateWebhookEvent: PropTypes.Requireable<io.flow.int
|
|
|
26596
27030
|
export const shopifyProductDeleteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductDeleteDeleted>;
|
|
26597
27031
|
export const shopifyProductDeleteUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductDeleteUpserted>;
|
|
26598
27032
|
export const shopifyProductDeleteWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent>;
|
|
27033
|
+
export const shopifyProductTaxonomyAttribute: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute>;
|
|
27034
|
+
export const shopifyProductTaxonomyAttributeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted>;
|
|
27035
|
+
export const shopifyProductTaxonomyAttributeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted>;
|
|
27036
|
+
export const shopifyProductTaxonomyAttributeValue: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValue>;
|
|
27037
|
+
export const shopifyProductTaxonomyAttributeValueDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted>;
|
|
27038
|
+
export const shopifyProductTaxonomyAttributeValueUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted>;
|
|
26599
27039
|
export const shopifyProductUpdateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateDeleted>;
|
|
26600
27040
|
export const shopifyProductUpdateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateUpserted>;
|
|
26601
27041
|
export const shopifyProductUpdateWebhookEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent>;
|
|
@@ -26605,6 +27045,8 @@ export const shopifyReportFileUpserted: PropTypes.Requireable<io.flow.internal.v
|
|
|
26605
27045
|
export const shopifyShopStatistics: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyShopStatistics>;
|
|
26606
27046
|
export const shopifyStoreDetail: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStoreDetail>;
|
|
26607
27047
|
export const shopifyStripeEvent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyStripeEvent>;
|
|
27048
|
+
export const shopifyTaxonomyAlignmentConfig: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig>;
|
|
27049
|
+
export const shopifyTaxonomyAlignmentConfigForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm>;
|
|
26608
27050
|
export const shopperBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.ShopperBreakdown>;
|
|
26609
27051
|
export const shopperFees: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFees>;
|
|
26610
27052
|
export const shopperFreight: PropTypes.Requireable<io.flow.internal.v0.models.ShopperFreight>;
|
|
@@ -26689,6 +27131,7 @@ export const taxRemittanceTransactionUpserted: PropTypes.Requireable<io.flow.int
|
|
|
26689
27131
|
export const taxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransaction>;
|
|
26690
27132
|
export const taxTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionDeleted>;
|
|
26691
27133
|
export const taxTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionUpserted>;
|
|
27134
|
+
export const taxonomyAlignmentCheckResult: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyAlignmentCheckResult>;
|
|
26692
27135
|
export const taxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategory>;
|
|
26693
27136
|
export const taxonomyCategoryHs6Ref: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategoryHs6Ref>;
|
|
26694
27137
|
export const taxonomyCategoryHs6RefDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted>;
|
|
@@ -26789,6 +27232,8 @@ export const authorizedOrderCharge: PropTypes.Requireable<io.flow.internal.v0.un
|
|
|
26789
27232
|
export const calculatorStamp: PropTypes.Requireable<io.flow.internal.v0.unions.CalculatorStamp>;
|
|
26790
27233
|
export const carrierChargeForm: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierChargeForm>;
|
|
26791
27234
|
export const carrierCredentials: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierCredentials>;
|
|
27235
|
+
export const carrierDocumentContent: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierDocumentContent>;
|
|
27236
|
+
export const carrierLabelAttributes: PropTypes.Requireable<io.flow.internal.v0.unions.CarrierLabelAttributes>;
|
|
26792
27237
|
export const channelRateMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.ChannelRateMetadata>;
|
|
26793
27238
|
export const classificationAction: PropTypes.Requireable<io.flow.internal.v0.unions.ClassificationAction>;
|
|
26794
27239
|
export const classificationActionForm: PropTypes.Requireable<io.flow.internal.v0.unions.ClassificationActionForm>;
|
|
@@ -26838,6 +27283,7 @@ export const processorMerchantForm: PropTypes.Requireable<io.flow.internal.v0.un
|
|
|
26838
27283
|
export const processorMerchantModificationForm: PropTypes.Requireable<io.flow.internal.v0.unions.ProcessorMerchantModificationForm>;
|
|
26839
27284
|
export const processorMerchantPutForm: PropTypes.Requireable<io.flow.internal.v0.unions.ProcessorMerchantPutForm>;
|
|
26840
27285
|
export const proofOfPosting: PropTypes.Requireable<io.flow.internal.v0.unions.ProofOfPosting>;
|
|
27286
|
+
export const restrictionAttributeRuleCondition: PropTypes.Requireable<io.flow.internal.v0.unions.RestrictionAttributeRuleCondition>;
|
|
26841
27287
|
export const returnTrigger: PropTypes.Requireable<io.flow.internal.v0.unions.ReturnTrigger>;
|
|
26842
27288
|
export const routingEntity: PropTypes.Requireable<io.flow.internal.v0.unions.RoutingEntity>;
|
|
26843
27289
|
export const shopifyMonitoringOrderMonitorType: PropTypes.Requireable<io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType>;
|