@flowio/types 11.24.123 → 11.24.124
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +418 -26
- package/dist/api.d.ts +342 -1735
- package/package.json +2 -2
- package/src/api-internal.ts +559 -26
- package/src/api.ts +470 -2334
package/src/api-internal.ts
CHANGED
|
@@ -6845,6 +6845,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
6845
6845
|
| 'sync_product_catalog'
|
|
6846
6846
|
| 'shopify_webhook';
|
|
6847
6847
|
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
6848
|
+
type SellabilityStatus = 'complete' | 'incomplete';
|
|
6848
6849
|
type ShopifyMarketsDangerousGoods =
|
|
6849
6850
|
| 'aerosols'
|
|
6850
6851
|
| 'air_bag_inflators_or_seat_belt_pretensioners'
|
|
@@ -6919,6 +6920,22 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6919
6920
|
readonly identifier: string;
|
|
6920
6921
|
}
|
|
6921
6922
|
|
|
6923
|
+
interface ChannelOrganizationPublicationOwner {
|
|
6924
|
+
readonly owner: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
6925
|
+
}
|
|
6926
|
+
|
|
6927
|
+
interface ChannelOrganizationPublicationOwnerPutForm {
|
|
6928
|
+
readonly owner: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
6929
|
+
}
|
|
6930
|
+
|
|
6931
|
+
interface ChannelOrganizationSellabilityStatus {
|
|
6932
|
+
readonly status: io.flow.shopify.markets.internal.v0.enums.SellabilityStatus;
|
|
6933
|
+
}
|
|
6934
|
+
|
|
6935
|
+
interface ChannelOrganizationSellabilityStatusPutForm {
|
|
6936
|
+
readonly status: io.flow.shopify.markets.internal.v0.enums.SellabilityStatus;
|
|
6937
|
+
}
|
|
6938
|
+
|
|
6922
6939
|
interface FlowShopValidationError {
|
|
6923
6940
|
readonly message: string;
|
|
6924
6941
|
readonly reason: string;
|
|
@@ -6962,6 +6979,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6962
6979
|
readonly next_action_from: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
6963
6980
|
}
|
|
6964
6981
|
|
|
6982
|
+
interface PaymentRequestAuthorization {
|
|
6983
|
+
readonly payment_request_id: string;
|
|
6984
|
+
readonly authorization_id: string;
|
|
6985
|
+
}
|
|
6986
|
+
|
|
6965
6987
|
interface ProductRestrictionResultValidationError {
|
|
6966
6988
|
readonly message: string;
|
|
6967
6989
|
readonly reason: string;
|
|
@@ -7043,6 +7065,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7043
7065
|
readonly api_password_masked?: string;
|
|
7044
7066
|
readonly access_token_masked?: string;
|
|
7045
7067
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
7068
|
+
readonly catalog_publication_owner?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
7046
7069
|
}
|
|
7047
7070
|
|
|
7048
7071
|
interface ShopifyMarketsShopForm {
|
|
@@ -7110,6 +7133,22 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7110
7133
|
readonly product_ids: string[];
|
|
7111
7134
|
}
|
|
7112
7135
|
|
|
7136
|
+
interface ShopifyProductTaxonomyAttribute {
|
|
7137
|
+
readonly id: string;
|
|
7138
|
+
readonly handle: string;
|
|
7139
|
+
readonly name: string;
|
|
7140
|
+
readonly friendly_id: string;
|
|
7141
|
+
readonly description?: string;
|
|
7142
|
+
}
|
|
7143
|
+
|
|
7144
|
+
interface ShopifyProductTaxonomyAttributeValue {
|
|
7145
|
+
readonly id: string;
|
|
7146
|
+
readonly attribute_id: string;
|
|
7147
|
+
readonly handle: string;
|
|
7148
|
+
readonly name: string;
|
|
7149
|
+
readonly friendly_id: string;
|
|
7150
|
+
}
|
|
7151
|
+
|
|
7113
7152
|
interface ShopifyProductWrapper {
|
|
7114
7153
|
readonly shopify_product: io.flow.shopify.external.v0.models.Product;
|
|
7115
7154
|
readonly deleted_at?: string;
|
|
@@ -7969,6 +8008,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
7969
8008
|
interface GraphqlMetaobjectField {
|
|
7970
8009
|
readonly key: string;
|
|
7971
8010
|
readonly value?: string;
|
|
8011
|
+
readonly type?: string;
|
|
7972
8012
|
}
|
|
7973
8013
|
|
|
7974
8014
|
interface GraphqlOption {
|
|
@@ -9910,6 +9950,13 @@ declare namespace io.flow.order.price.v0.enums {
|
|
|
9910
9950
|
| 'discount'
|
|
9911
9951
|
| 'surcharges'
|
|
9912
9952
|
| 'tip';
|
|
9953
|
+
type OrderPriceFeeType =
|
|
9954
|
+
| 'service'
|
|
9955
|
+
| 'fx'
|
|
9956
|
+
| 'tax'
|
|
9957
|
+
| 'duties'
|
|
9958
|
+
| 'tax_and_duties'
|
|
9959
|
+
| 'product';
|
|
9913
9960
|
}
|
|
9914
9961
|
|
|
9915
9962
|
declare namespace io.flow.order.price.v0.models {
|
|
@@ -9924,6 +9971,12 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
9924
9971
|
readonly rate?: number;
|
|
9925
9972
|
readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
|
|
9926
9973
|
readonly rate_label?: string;
|
|
9974
|
+
readonly breakdown?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
|
|
9975
|
+
}
|
|
9976
|
+
|
|
9977
|
+
interface OrderPriceDetailBreakdown {
|
|
9978
|
+
readonly purchase_price: io.flow.order.price.v0.models.PurchasePriceBreakdown;
|
|
9979
|
+
readonly fees: io.flow.order.price.v0.models.OrderPriceFee[];
|
|
9927
9980
|
}
|
|
9928
9981
|
|
|
9929
9982
|
interface OrderPriceDetailComponent {
|
|
@@ -9934,6 +9987,18 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
9934
9987
|
readonly base: io.flow.common.v0.models.Price;
|
|
9935
9988
|
readonly name?: string;
|
|
9936
9989
|
}
|
|
9990
|
+
|
|
9991
|
+
interface OrderPriceFee {
|
|
9992
|
+
readonly key: string;
|
|
9993
|
+
readonly value: io.flow.common.v0.models.PriceWithBase;
|
|
9994
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceFeeType;
|
|
9995
|
+
}
|
|
9996
|
+
|
|
9997
|
+
interface PurchasePriceBreakdown {
|
|
9998
|
+
readonly total_price: io.flow.common.v0.models.PriceWithBase;
|
|
9999
|
+
readonly product_price: io.flow.common.v0.models.PriceWithBase;
|
|
10000
|
+
readonly fees: io.flow.order.price.v0.models.OrderPriceFee[];
|
|
10001
|
+
}
|
|
9937
10002
|
}
|
|
9938
10003
|
|
|
9939
10004
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
@@ -10014,6 +10079,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10014
10079
|
readonly channel_id: string;
|
|
10015
10080
|
readonly external_order_reference: string;
|
|
10016
10081
|
readonly payment_request_id?: string;
|
|
10082
|
+
readonly order_payment_request_ids?: string[];
|
|
10017
10083
|
readonly order_edit_payment_request_ids?: string[];
|
|
10018
10084
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
10019
10085
|
readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
@@ -10953,6 +11019,34 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10953
11019
|
readonly organization: string;
|
|
10954
11020
|
readonly shopify_product_bundle: io.flow.shopify.markets.internal.v0.models.ShopifyProductBundle;
|
|
10955
11021
|
}
|
|
11022
|
+
|
|
11023
|
+
interface ShopifyProductTaxonomyAttributeDeleted {
|
|
11024
|
+
readonly discriminator: 'shopify_product_taxonomy_attribute_deleted';
|
|
11025
|
+
readonly event_id: string;
|
|
11026
|
+
readonly timestamp: string;
|
|
11027
|
+
readonly id: string;
|
|
11028
|
+
}
|
|
11029
|
+
|
|
11030
|
+
interface ShopifyProductTaxonomyAttributeUpserted {
|
|
11031
|
+
readonly discriminator: 'shopify_product_taxonomy_attribute_upserted';
|
|
11032
|
+
readonly event_id: string;
|
|
11033
|
+
readonly timestamp: string;
|
|
11034
|
+
readonly shopify_product_taxonomy_attribute: io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttribute;
|
|
11035
|
+
}
|
|
11036
|
+
|
|
11037
|
+
interface ShopifyProductTaxonomyAttributeValueDeleted {
|
|
11038
|
+
readonly discriminator: 'shopify_product_taxonomy_attribute_value_deleted';
|
|
11039
|
+
readonly event_id: string;
|
|
11040
|
+
readonly timestamp: string;
|
|
11041
|
+
readonly id: string;
|
|
11042
|
+
}
|
|
11043
|
+
|
|
11044
|
+
interface ShopifyProductTaxonomyAttributeValueUpserted {
|
|
11045
|
+
readonly discriminator: 'shopify_product_taxonomy_attribute_value_upserted';
|
|
11046
|
+
readonly event_id: string;
|
|
11047
|
+
readonly timestamp: string;
|
|
11048
|
+
readonly shopify_product_taxonomy_attribute_value: io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
11049
|
+
}
|
|
10956
11050
|
}
|
|
10957
11051
|
|
|
10958
11052
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
@@ -10965,6 +11059,10 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
10965
11059
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted
|
|
10966
11060
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted
|
|
10967
11061
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted
|
|
11062
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted
|
|
11063
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted
|
|
11064
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted
|
|
11065
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted
|
|
10968
11066
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted
|
|
10969
11067
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted
|
|
10970
11068
|
| io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted
|
|
@@ -11328,6 +11426,11 @@ declare namespace io.flow.experience.v0.models {
|
|
|
11328
11426
|
readonly targets: io.flow.experience.v0.enums.DiscountRuleSubsidyTarget[];
|
|
11329
11427
|
}
|
|
11330
11428
|
|
|
11429
|
+
interface EditSummary {
|
|
11430
|
+
readonly id: string;
|
|
11431
|
+
readonly edited_at: string;
|
|
11432
|
+
}
|
|
11433
|
+
|
|
11331
11434
|
interface Experience {
|
|
11332
11435
|
readonly discriminator: 'experience';
|
|
11333
11436
|
readonly id: string;
|
|
@@ -11618,6 +11721,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
11618
11721
|
readonly local: io.flow.catalog.v0.models.Local;
|
|
11619
11722
|
readonly shipment_estimate?: io.flow.common.v0.models.DatetimeRange;
|
|
11620
11723
|
readonly price_source?: io.flow.common.v0.unions.PriceSource;
|
|
11724
|
+
readonly breakdown?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
|
|
11621
11725
|
}
|
|
11622
11726
|
|
|
11623
11727
|
interface LocalizedLineItemDiscount {
|
|
@@ -11663,6 +11767,8 @@ declare namespace io.flow.experience.v0.models {
|
|
|
11663
11767
|
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
11664
11768
|
readonly incoterm_summary?: io.flow.experience.v0.models.IncotermSummary;
|
|
11665
11769
|
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
11770
|
+
readonly edits?: io.flow.experience.v0.models.EditSummary[];
|
|
11771
|
+
readonly rates?: io.flow.experience.v0.models.OrderRate[];
|
|
11666
11772
|
}
|
|
11667
11773
|
|
|
11668
11774
|
interface OrderAddress {
|
|
@@ -11867,6 +11973,12 @@ declare namespace io.flow.experience.v0.models {
|
|
|
11867
11973
|
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
11868
11974
|
}
|
|
11869
11975
|
|
|
11976
|
+
interface OrderRate {
|
|
11977
|
+
readonly from: string;
|
|
11978
|
+
readonly to: string;
|
|
11979
|
+
readonly rate: number;
|
|
11980
|
+
}
|
|
11981
|
+
|
|
11870
11982
|
interface OrderReference {
|
|
11871
11983
|
readonly discriminator: 'order_reference';
|
|
11872
11984
|
readonly id: string;
|
|
@@ -13249,7 +13361,8 @@ declare namespace io.flow.trueup.v0.enums {
|
|
|
13249
13361
|
| 'direct_delivery'
|
|
13250
13362
|
| 'saturday_stop'
|
|
13251
13363
|
| 'residential_extended_area_pickup'
|
|
13252
|
-
| 'package_level_detail'
|
|
13364
|
+
| 'package_level_detail'
|
|
13365
|
+
| 'pickup';
|
|
13253
13366
|
}
|
|
13254
13367
|
|
|
13255
13368
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -13458,6 +13571,12 @@ declare namespace io.flow.product.v0.models {
|
|
|
13458
13571
|
interface ProductTaxonomyData {
|
|
13459
13572
|
readonly key: string;
|
|
13460
13573
|
readonly value: string[];
|
|
13574
|
+
readonly value_obj?: io.flow.product.v0.models.ProductTaxonomyValue[];
|
|
13575
|
+
}
|
|
13576
|
+
|
|
13577
|
+
interface ProductTaxonomyValue {
|
|
13578
|
+
readonly handle: string;
|
|
13579
|
+
readonly name: string;
|
|
13461
13580
|
}
|
|
13462
13581
|
}
|
|
13463
13582
|
|
|
@@ -14115,6 +14234,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
14115
14234
|
readonly amount: number;
|
|
14116
14235
|
readonly label: string;
|
|
14117
14236
|
readonly base: io.flow.common.v0.models.Price;
|
|
14237
|
+
readonly breakdown?: io.flow.order.price.v0.models.OrderPriceDetailBreakdown;
|
|
14118
14238
|
}
|
|
14119
14239
|
|
|
14120
14240
|
interface Options {
|
|
@@ -15793,6 +15913,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
15793
15913
|
| 'checkout_payments_api'
|
|
15794
15914
|
| 'classic_authorise_api';
|
|
15795
15915
|
type AldoItemType = 'physical' | 'digital';
|
|
15916
|
+
type AnirbanItemType = 'physical' | 'digital';
|
|
15796
15917
|
type AnshItemType = 'physical' | 'digital';
|
|
15797
15918
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
15798
15919
|
type ApiCallReferenceId =
|
|
@@ -16010,6 +16131,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16010
16131
|
| 'sp_billable_label_transactions_count'
|
|
16011
16132
|
| 'sp_billable_label_transactions_count_for_unique_orders'
|
|
16012
16133
|
| 'sp_billable_label_transactions_total'
|
|
16134
|
+
| 'capture_transactions_standard_count'
|
|
16135
|
+
| 'capture_transactions_standard_total'
|
|
16136
|
+
| 'capture_transactions_shopify_plus_count'
|
|
16137
|
+
| 'capture_transactions_shopify_plus_total'
|
|
16013
16138
|
| 'sp_capture_transactions_count'
|
|
16014
16139
|
| 'sp_capture_transactions_total'
|
|
16015
16140
|
| 'sp_carrier_charge_transactions_count'
|
|
@@ -16091,6 +16216,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16091
16216
|
| 'charge'
|
|
16092
16217
|
| 'revenue_share';
|
|
16093
16218
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
16219
|
+
type CarrierDocumentType = 'commercial_invoice';
|
|
16094
16220
|
type CarrierFileType = 'freight' | 'tax';
|
|
16095
16221
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
16096
16222
|
type CarrierValidationStatus = 'success' | 'error';
|
|
@@ -16148,6 +16274,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16148
16274
|
| 'partial'
|
|
16149
16275
|
| 'cancelled';
|
|
16150
16276
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
16277
|
+
type ChapterCheckStatus = 'apparel_like' | 'similar' | 'does_not_match';
|
|
16151
16278
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
16152
16279
|
type ChargeInputType =
|
|
16153
16280
|
| 'fuelsc'
|
|
@@ -16245,8 +16372,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16245
16372
|
| 'preferential_rate';
|
|
16246
16373
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
16247
16374
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
|
|
16375
|
+
type DutyVarianceStatus = 'acceptable' | 'exceeded';
|
|
16248
16376
|
type EmptyAttribute = 'irrelevant';
|
|
16249
16377
|
type ErpFileType = 'vendor';
|
|
16378
|
+
type EvaluationCheckResult = 'pass' | 'fail';
|
|
16250
16379
|
type EventType =
|
|
16251
16380
|
| 'adyen_authorization_deleted'
|
|
16252
16381
|
| 'adyen_authorization_upserted'
|
|
@@ -16431,6 +16560,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16431
16560
|
| 'rate_freshness_summary_deleted'
|
|
16432
16561
|
| 'item_harmonization_upserted'
|
|
16433
16562
|
| 'item_harmonization_deleted'
|
|
16563
|
+
| 'merchant_override_upserted'
|
|
16564
|
+
| 'merchant_override_deleted'
|
|
16434
16565
|
| 'harmonization_classification_statistics_published'
|
|
16435
16566
|
| 'item_form_import_request'
|
|
16436
16567
|
| 'label_request_error_upserted'
|
|
@@ -16488,6 +16619,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16488
16619
|
| 'authorization_bundle_deleted'
|
|
16489
16620
|
| 'organization_payment_setting_upserted'
|
|
16490
16621
|
| 'organization_payment_setting_deleted'
|
|
16622
|
+
| 'order_refund_transaction_upserted'
|
|
16623
|
+
| 'order_refund_transaction_deleted'
|
|
16491
16624
|
| 'paypal_payment_deleted'
|
|
16492
16625
|
| 'paypal_payment_upserted'
|
|
16493
16626
|
| 'paypal_execution_deleted'
|
|
@@ -16539,6 +16672,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16539
16672
|
| 'shopify_markets_webhook_registration_deleted'
|
|
16540
16673
|
| 'shopify_markets_shop_statistics_upserted'
|
|
16541
16674
|
| 'shopify_markets_shop_statistics_deleted'
|
|
16675
|
+
| 'shopify_product_taxonomy_attribute_upserted'
|
|
16676
|
+
| 'shopify_product_taxonomy_attribute_deleted'
|
|
16677
|
+
| 'shopify_product_taxonomy_attribute_value_upserted'
|
|
16678
|
+
| 'shopify_product_taxonomy_attribute_value_deleted'
|
|
16542
16679
|
| 'shopify_markets_metrics_upserted'
|
|
16543
16680
|
| 'shopify_markets_metrics_deleted'
|
|
16544
16681
|
| 'channel_order_summary_upserted'
|
|
@@ -16620,6 +16757,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16620
16757
|
type FeatureStatus = 'draft' | 'active' | 'archived';
|
|
16621
16758
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
16622
16759
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
16760
|
+
type FileType = 'pdf';
|
|
16623
16761
|
type FraudProvider =
|
|
16624
16762
|
| 'flow'
|
|
16625
16763
|
| 'forter'
|
|
@@ -16672,7 +16810,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16672
16810
|
| 'waiting_for_classification'
|
|
16673
16811
|
| 'classified'
|
|
16674
16812
|
| 'non_classifiable_not_enough_information'
|
|
16675
|
-
| 'exempt'
|
|
16813
|
+
| 'exempt'
|
|
16814
|
+
| 'manual_classification_required';
|
|
16676
16815
|
type ItemQuantityAction =
|
|
16677
16816
|
| 'fulfillment_ship'
|
|
16678
16817
|
| 'fulfillment_cancel'
|
|
@@ -16931,6 +17070,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16931
17070
|
| 'paid_on_delivery';
|
|
16932
17071
|
type ResponsibleParty = 'flow' | 'organization';
|
|
16933
17072
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
17073
|
+
type RestrictionAttributeConditionMultipleOperator = 'in' | 'not_in';
|
|
17074
|
+
type RestrictionAttributeConditionSingleOperator = 'equals' | 'not_equals';
|
|
17075
|
+
type RestrictionAttributeOperator = 'and' | 'or';
|
|
17076
|
+
type RestrictionAttributeResult =
|
|
17077
|
+
| 'pending_classification'
|
|
17078
|
+
| 'pending_verification'
|
|
17079
|
+
| 'accepted'
|
|
17080
|
+
| 'restricted';
|
|
16934
17081
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
16935
17082
|
type RestrictionOrganizationChannel =
|
|
16936
17083
|
| 'shopify'
|
|
@@ -16938,6 +17085,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16938
17085
|
| 'shopify-sandbox'
|
|
16939
17086
|
| 'enterprise-sandbox';
|
|
16940
17087
|
type RestrictionOrganizationSource = 'shopify' | 'enterprise';
|
|
17088
|
+
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
16941
17089
|
type RestrictionRuleCommunityExemption =
|
|
16942
17090
|
| 'domestic_exemption'
|
|
16943
17091
|
| 'intra_eu_exemption';
|
|
@@ -16959,6 +17107,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16959
17107
|
| 'none';
|
|
16960
17108
|
type RohanItemType = 'physical' | 'digital';
|
|
16961
17109
|
type SarveshItemType = 'physical' | 'digital';
|
|
17110
|
+
type SellabilityCheckStatus =
|
|
17111
|
+
| 'more_restrictive'
|
|
17112
|
+
| 'less_restrictive'
|
|
17113
|
+
| 'similar'
|
|
17114
|
+
| 'regions_differ'
|
|
17115
|
+
| 'rules_differ';
|
|
17116
|
+
type SellabilityStatus = 'complete' | 'incomplete';
|
|
16962
17117
|
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
16963
17118
|
type ShopifyMarketsDangerousGoods =
|
|
16964
17119
|
| 'aerosols'
|
|
@@ -17314,6 +17469,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17314
17469
|
readonly fulfillment_id: string;
|
|
17315
17470
|
}
|
|
17316
17471
|
|
|
17472
|
+
interface AccountingReturnMetadata {
|
|
17473
|
+
readonly discriminator: 'accounting_return_metadata';
|
|
17474
|
+
readonly transactions_until: string;
|
|
17475
|
+
readonly refund?: io.flow.payment.v0.models.RefundReference;
|
|
17476
|
+
readonly tax_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
17477
|
+
readonly duty_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
17478
|
+
}
|
|
17479
|
+
|
|
17317
17480
|
interface ActionQuantity {
|
|
17318
17481
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
17319
17482
|
readonly quantity: number;
|
|
@@ -17792,6 +17955,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17792
17955
|
readonly labels: Record<string, string[]>;
|
|
17793
17956
|
}
|
|
17794
17957
|
|
|
17958
|
+
interface AnirbanItem {
|
|
17959
|
+
readonly id: string;
|
|
17960
|
+
readonly number: string;
|
|
17961
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17962
|
+
readonly description?: string;
|
|
17963
|
+
readonly type: io.flow.internal.v0.enums.AnirbanItemType;
|
|
17964
|
+
readonly added_on: string;
|
|
17965
|
+
}
|
|
17966
|
+
|
|
17967
|
+
interface AnirbanItemForm {
|
|
17968
|
+
readonly number: string;
|
|
17969
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17970
|
+
readonly description?: string;
|
|
17971
|
+
readonly type: io.flow.internal.v0.enums.AnirbanItemType;
|
|
17972
|
+
readonly added_on: string;
|
|
17973
|
+
}
|
|
17974
|
+
|
|
17795
17975
|
interface AnshItem {
|
|
17796
17976
|
readonly id: string;
|
|
17797
17977
|
readonly number: string;
|
|
@@ -17831,6 +18011,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17831
18011
|
readonly unverified: boolean;
|
|
17832
18012
|
}
|
|
17833
18013
|
|
|
18014
|
+
interface AttributeRule {
|
|
18015
|
+
readonly restriction_attribute_rules: io.flow.internal.v0.models.RestrictionAttributeRule[];
|
|
18016
|
+
readonly default_result?: io.flow.internal.v0.enums.RestrictionAttributeResult;
|
|
18017
|
+
}
|
|
18018
|
+
|
|
17834
18019
|
interface AuthenticationForm {
|
|
17835
18020
|
readonly password: string;
|
|
17836
18021
|
}
|
|
@@ -18036,6 +18221,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18036
18221
|
readonly bank_payment: io.flow.internal.v0.models.BankPayment;
|
|
18037
18222
|
}
|
|
18038
18223
|
|
|
18224
|
+
interface Base64CarrierDocumentContent {
|
|
18225
|
+
readonly discriminator: 'base_64_carrier_document_content';
|
|
18226
|
+
readonly base64_string: string;
|
|
18227
|
+
readonly file_type: io.flow.internal.v0.enums.FileType;
|
|
18228
|
+
}
|
|
18229
|
+
|
|
18039
18230
|
interface BillingAuthorizationReference {
|
|
18040
18231
|
readonly id: string;
|
|
18041
18232
|
}
|
|
@@ -18564,6 +18755,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18564
18755
|
readonly carrier_charge: io.flow.internal.v0.models.CarrierCharge;
|
|
18565
18756
|
}
|
|
18566
18757
|
|
|
18758
|
+
interface CarrierDocument {
|
|
18759
|
+
readonly document_type: io.flow.internal.v0.enums.CarrierDocumentType;
|
|
18760
|
+
readonly document_content: io.flow.internal.v0.unions.CarrierDocumentContent;
|
|
18761
|
+
}
|
|
18762
|
+
|
|
18567
18763
|
interface CarrierFile {
|
|
18568
18764
|
readonly id: string;
|
|
18569
18765
|
readonly type: io.flow.internal.v0.enums.CarrierFileType;
|
|
@@ -18909,6 +19105,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18909
19105
|
readonly channel_id: string;
|
|
18910
19106
|
readonly external_order_reference: string;
|
|
18911
19107
|
readonly payment_request_id?: string;
|
|
19108
|
+
readonly order_payment_request_ids?: string[];
|
|
18912
19109
|
readonly order_edit_payment_request_ids?: string[];
|
|
18913
19110
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
18914
19111
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
@@ -19020,6 +19217,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19020
19217
|
readonly channel_organization_identifier: io.flow.internal.v0.models.ChannelOrganizationIdentifier;
|
|
19021
19218
|
}
|
|
19022
19219
|
|
|
19220
|
+
interface ChannelOrganizationPublicationOwner {
|
|
19221
|
+
readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
19222
|
+
}
|
|
19223
|
+
|
|
19224
|
+
interface ChannelOrganizationPublicationOwnerPutForm {
|
|
19225
|
+
readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
19226
|
+
}
|
|
19227
|
+
|
|
19228
|
+
interface ChannelOrganizationSellabilityStatus {
|
|
19229
|
+
readonly status: io.flow.internal.v0.enums.SellabilityStatus;
|
|
19230
|
+
}
|
|
19231
|
+
|
|
19232
|
+
interface ChannelOrganizationSellabilityStatusPutForm {
|
|
19233
|
+
readonly status: io.flow.internal.v0.enums.SellabilityStatus;
|
|
19234
|
+
}
|
|
19235
|
+
|
|
19023
19236
|
interface ChannelOrganizationShopify {
|
|
19024
19237
|
readonly organization: io.flow.channel.v0.models.ChannelOrganization;
|
|
19025
19238
|
readonly tokens: io.flow.internal.v0.models.ShopifyChannelOrganizationTokens[];
|
|
@@ -19088,6 +19301,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19088
19301
|
readonly channel_transaction: io.flow.internal.v0.models.ChannelTransaction;
|
|
19089
19302
|
}
|
|
19090
19303
|
|
|
19304
|
+
interface ChapterCheckResult {
|
|
19305
|
+
readonly status: io.flow.internal.v0.enums.ChapterCheckStatus;
|
|
19306
|
+
readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
19307
|
+
readonly current_chapter: string;
|
|
19308
|
+
readonly merchant_chapter: string;
|
|
19309
|
+
}
|
|
19310
|
+
|
|
19091
19311
|
interface ChargeInput {
|
|
19092
19312
|
readonly charge_input_code: io.flow.internal.v0.enums.ChargeInputType;
|
|
19093
19313
|
readonly price: io.flow.common.v0.models.Money;
|
|
@@ -19918,6 +20138,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19918
20138
|
readonly display?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
19919
20139
|
}
|
|
19920
20140
|
|
|
20141
|
+
interface DestinationDutyComparison {
|
|
20142
|
+
readonly country: string;
|
|
20143
|
+
readonly current_duty?: number;
|
|
20144
|
+
readonly merchant_duty?: number;
|
|
20145
|
+
readonly current_error?: number;
|
|
20146
|
+
readonly merchant_error?: number;
|
|
20147
|
+
}
|
|
20148
|
+
|
|
19921
20149
|
interface DestinationError {
|
|
19922
20150
|
readonly id: string;
|
|
19923
20151
|
readonly failed_at: string;
|
|
@@ -20243,6 +20471,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20243
20471
|
readonly duty_transaction: io.flow.internal.v0.models.DutyTransaction;
|
|
20244
20472
|
}
|
|
20245
20473
|
|
|
20474
|
+
interface DutyVarianceResult {
|
|
20475
|
+
readonly status: io.flow.internal.v0.enums.DutyVarianceStatus;
|
|
20476
|
+
readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
20477
|
+
readonly destinations: io.flow.internal.v0.models.DestinationDutyComparison[];
|
|
20478
|
+
}
|
|
20479
|
+
|
|
20246
20480
|
interface EmailForm {
|
|
20247
20481
|
readonly to: string[];
|
|
20248
20482
|
readonly cc?: string[];
|
|
@@ -20492,9 +20726,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20492
20726
|
}
|
|
20493
20727
|
|
|
20494
20728
|
interface EvaluationResults {
|
|
20495
|
-
readonly chapter_result:
|
|
20496
|
-
readonly sellability_result:
|
|
20497
|
-
readonly duty_variance_result:
|
|
20729
|
+
readonly chapter_result: io.flow.internal.v0.models.ChapterCheckResult;
|
|
20730
|
+
readonly sellability_result: io.flow.internal.v0.models.SellabilityCheckResult;
|
|
20731
|
+
readonly duty_variance_result: io.flow.internal.v0.models.DutyVarianceResult;
|
|
20732
|
+
readonly taxonomy_alignment_result?: io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
|
|
20498
20733
|
}
|
|
20499
20734
|
|
|
20500
20735
|
interface ExclusionRuleDeleted {
|
|
@@ -20652,6 +20887,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20652
20887
|
readonly fulfilled_via_replacement_order?: boolean;
|
|
20653
20888
|
}
|
|
20654
20889
|
|
|
20890
|
+
interface ExternalRatecardLink {
|
|
20891
|
+
readonly external_ratecard_id: string;
|
|
20892
|
+
readonly flow_ratecard_ids: string[];
|
|
20893
|
+
}
|
|
20894
|
+
|
|
20895
|
+
interface ExternalRatecardLinkResponse {
|
|
20896
|
+
readonly external_ratecard_id: string;
|
|
20897
|
+
readonly flow_ratecard_ids: string[];
|
|
20898
|
+
}
|
|
20899
|
+
|
|
20655
20900
|
interface FacebookPixel {
|
|
20656
20901
|
readonly discriminator: 'facebook_pixel';
|
|
20657
20902
|
readonly name?: string;
|
|
@@ -20773,6 +21018,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20773
21018
|
readonly account_number: string;
|
|
20774
21019
|
}
|
|
20775
21020
|
|
|
21021
|
+
interface FedexCarrierLabelAttributes {
|
|
21022
|
+
readonly discriminator: 'fedex_carrier_label_attributes';
|
|
21023
|
+
readonly origin_location_id?: string;
|
|
21024
|
+
readonly destination_location_id?: string;
|
|
21025
|
+
}
|
|
21026
|
+
|
|
20776
21027
|
interface FedexCrossborder {
|
|
20777
21028
|
readonly discriminator: 'fedex_crossborder';
|
|
20778
21029
|
readonly api_key: string;
|
|
@@ -21920,6 +22171,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21920
22171
|
readonly gender?: string;
|
|
21921
22172
|
readonly material?: string;
|
|
21922
22173
|
readonly url?: string;
|
|
22174
|
+
readonly preferential_rate_statement?: string;
|
|
21923
22175
|
}
|
|
21924
22176
|
|
|
21925
22177
|
interface InvoiceInfoForm {
|
|
@@ -21947,6 +22199,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21947
22199
|
readonly total_price: number;
|
|
21948
22200
|
readonly manufacturer_id?: string;
|
|
21949
22201
|
readonly export_control_classification_number: string;
|
|
22202
|
+
readonly preferential_rate_statement?: string;
|
|
21950
22203
|
}
|
|
21951
22204
|
|
|
21952
22205
|
interface InvoiceTransaction {
|
|
@@ -22216,6 +22469,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22216
22469
|
readonly id: string;
|
|
22217
22470
|
}
|
|
22218
22471
|
|
|
22472
|
+
interface KeywordCancelling {
|
|
22473
|
+
readonly positive_keyword: string;
|
|
22474
|
+
readonly negative_keywords: string[];
|
|
22475
|
+
}
|
|
22476
|
+
|
|
22219
22477
|
interface KlarnaAuthorizationParameters {
|
|
22220
22478
|
readonly discriminator: 'klarna_authorization_parameters';
|
|
22221
22479
|
readonly client_token: string;
|
|
@@ -22454,6 +22712,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22454
22712
|
readonly saturday_stop?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
22455
22713
|
readonly residential_extended_area_pickup?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
22456
22714
|
readonly package_level_detail?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
22715
|
+
readonly pickup?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
22457
22716
|
}
|
|
22458
22717
|
|
|
22459
22718
|
interface LabelSurchargeSingleForm {
|
|
@@ -22976,6 +23235,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22976
23235
|
readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
22977
23236
|
}
|
|
22978
23237
|
|
|
23238
|
+
interface MerchantOverrideDeleted {
|
|
23239
|
+
readonly discriminator: 'merchant_override_deleted';
|
|
23240
|
+
readonly event_id: string;
|
|
23241
|
+
readonly timestamp: string;
|
|
23242
|
+
readonly id: string;
|
|
23243
|
+
}
|
|
23244
|
+
|
|
23245
|
+
interface MerchantOverrideUpserted {
|
|
23246
|
+
readonly discriminator: 'merchant_override_upserted';
|
|
23247
|
+
readonly event_id: string;
|
|
23248
|
+
readonly timestamp: string;
|
|
23249
|
+
readonly merchant_override: io.flow.internal.v0.models.MerchantOverride;
|
|
23250
|
+
}
|
|
23251
|
+
|
|
22979
23252
|
interface MerchantSearchResult {
|
|
22980
23253
|
readonly organization_id: string;
|
|
22981
23254
|
readonly shop_name?: string;
|
|
@@ -23007,6 +23280,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23007
23280
|
readonly freight: number;
|
|
23008
23281
|
readonly total: number;
|
|
23009
23282
|
readonly tax_refund?: number;
|
|
23283
|
+
readonly tax_reversal?: number;
|
|
23284
|
+
readonly duty_reversal?: number;
|
|
23285
|
+
readonly tax_reversal_for_lvg_order?: boolean;
|
|
23286
|
+
readonly duty_reversal_for_lvg_order?: boolean;
|
|
23010
23287
|
}
|
|
23011
23288
|
|
|
23012
23289
|
interface MerchantUpserted {
|
|
@@ -23078,6 +23355,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23078
23355
|
readonly account: io.flow.internal.v0.models.ReportAccount;
|
|
23079
23356
|
}
|
|
23080
23357
|
|
|
23358
|
+
interface NonL4LTaxDutyFxFeeMetadata {
|
|
23359
|
+
readonly discriminator: 'non_l4l_tax_duty_fx_fee_metadata';
|
|
23360
|
+
readonly tax?: io.flow.internal.v0.models.TransactionReference;
|
|
23361
|
+
readonly duty?: io.flow.internal.v0.models.TransactionReference;
|
|
23362
|
+
}
|
|
23363
|
+
|
|
23081
23364
|
interface NonL4LTaxDutyFxTransaction {
|
|
23082
23365
|
readonly discriminator: 'non_l4l_tax_duty_fx_transaction';
|
|
23083
23366
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -23114,15 +23397,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23114
23397
|
readonly execution_time_ms?: number;
|
|
23115
23398
|
}
|
|
23116
23399
|
|
|
23117
|
-
interface OnboardingAuditSnapshot {
|
|
23118
|
-
readonly id: string;
|
|
23119
|
-
readonly organization: io.flow.common.v0.models.Organization;
|
|
23120
|
-
readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
23121
|
-
readonly theme_reports: io.flow.internal.v0.models.OnboardingAuditThemeReport[];
|
|
23122
|
-
readonly requested_by: io.flow.common.v0.models.User;
|
|
23123
|
-
readonly requested_at: string;
|
|
23124
|
-
}
|
|
23125
|
-
|
|
23126
23400
|
interface OnboardingAuditThemeReport {
|
|
23127
23401
|
readonly name: string;
|
|
23128
23402
|
readonly key: io.flow.internal.v0.enums.OnboardingAuditThemeKey;
|
|
@@ -23339,6 +23613,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23339
23613
|
readonly number: string;
|
|
23340
23614
|
}
|
|
23341
23615
|
|
|
23616
|
+
interface OrderRefundTransaction {
|
|
23617
|
+
readonly id: string;
|
|
23618
|
+
readonly organization_id: string;
|
|
23619
|
+
readonly order_number: string;
|
|
23620
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
23621
|
+
}
|
|
23622
|
+
|
|
23623
|
+
interface OrderRefundTransactionDeleted {
|
|
23624
|
+
readonly discriminator: 'order_refund_transaction_deleted';
|
|
23625
|
+
readonly event_id: string;
|
|
23626
|
+
readonly timestamp: string;
|
|
23627
|
+
readonly organization: string;
|
|
23628
|
+
readonly id: string;
|
|
23629
|
+
}
|
|
23630
|
+
|
|
23631
|
+
interface OrderRefundTransactionUpserted {
|
|
23632
|
+
readonly discriminator: 'order_refund_transaction_upserted';
|
|
23633
|
+
readonly event_id: string;
|
|
23634
|
+
readonly timestamp: string;
|
|
23635
|
+
readonly organization: string;
|
|
23636
|
+
readonly transaction: io.flow.internal.v0.models.OrderRefundTransaction;
|
|
23637
|
+
}
|
|
23638
|
+
|
|
23342
23639
|
interface OrderRevenueRegionChart {
|
|
23343
23640
|
readonly total: io.flow.common.v0.models.Price;
|
|
23344
23641
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
@@ -23709,6 +24006,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23709
24006
|
readonly pending_classification_count?: number;
|
|
23710
24007
|
readonly oldest_pending_restriction_date?: string;
|
|
23711
24008
|
readonly oldest_pending_verification_date?: string;
|
|
24009
|
+
readonly oldest_pending_classification_date?: string;
|
|
23712
24010
|
readonly product_count: number;
|
|
23713
24011
|
readonly restricted_product_count: number;
|
|
23714
24012
|
readonly last_order_submitted_at?: string;
|
|
@@ -24252,6 +24550,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24252
24550
|
readonly merchant: io.flow.internal.v0.unions.ProcessorMerchant;
|
|
24253
24551
|
}
|
|
24254
24552
|
|
|
24553
|
+
interface PaymentRequestAuthorization {
|
|
24554
|
+
readonly payment_request_id: string;
|
|
24555
|
+
readonly authorization_id: string;
|
|
24556
|
+
}
|
|
24557
|
+
|
|
24255
24558
|
interface PaymentShortUrl {
|
|
24256
24559
|
readonly id: string;
|
|
24257
24560
|
readonly key: string;
|
|
@@ -24850,6 +25153,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24850
25153
|
readonly pending_classification_count?: number;
|
|
24851
25154
|
readonly oldest_pending_restriction_date?: string;
|
|
24852
25155
|
readonly oldest_pending_verification_date?: string;
|
|
25156
|
+
readonly oldest_pending_classification_date?: string;
|
|
24853
25157
|
}
|
|
24854
25158
|
|
|
24855
25159
|
interface ProductRestrictionStateDeleted {
|
|
@@ -24912,6 +25216,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24912
25216
|
readonly restricted_regions?: string[];
|
|
24913
25217
|
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
24914
25218
|
readonly rule_ids?: string[];
|
|
25219
|
+
readonly taxonomy_category?: string;
|
|
24915
25220
|
}
|
|
24916
25221
|
|
|
24917
25222
|
interface ProductTransaction {
|
|
@@ -25656,6 +25961,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25656
25961
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
25657
25962
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
25658
25963
|
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
25964
|
+
readonly tax_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
25965
|
+
readonly duty_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
25966
|
+
readonly tax_reversal_for_lvg_order?: boolean;
|
|
25967
|
+
readonly duty_reversal_for_lvg_order?: boolean;
|
|
25659
25968
|
}
|
|
25660
25969
|
|
|
25661
25970
|
interface ReportingMonetaryValue {
|
|
@@ -25672,6 +25981,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25672
25981
|
readonly number: string;
|
|
25673
25982
|
readonly submitted_at: string;
|
|
25674
25983
|
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
25984
|
+
readonly is_edited?: boolean;
|
|
25675
25985
|
}
|
|
25676
25986
|
|
|
25677
25987
|
interface ReportingOrganizationSummary {
|
|
@@ -25748,6 +26058,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25748
26058
|
readonly placeholder?: boolean;
|
|
25749
26059
|
}
|
|
25750
26060
|
|
|
26061
|
+
interface RestrictionAttributeConditionMultiple {
|
|
26062
|
+
readonly discriminator: 'multiple';
|
|
26063
|
+
readonly attribute: string;
|
|
26064
|
+
readonly operator: io.flow.internal.v0.enums.RestrictionAttributeConditionMultipleOperator;
|
|
26065
|
+
readonly values: string[];
|
|
26066
|
+
}
|
|
26067
|
+
|
|
26068
|
+
interface RestrictionAttributeConditionSingle {
|
|
26069
|
+
readonly discriminator: 'single';
|
|
26070
|
+
readonly attribute: string;
|
|
26071
|
+
readonly operator: io.flow.internal.v0.enums.RestrictionAttributeConditionSingleOperator;
|
|
26072
|
+
readonly value: string;
|
|
26073
|
+
}
|
|
26074
|
+
|
|
26075
|
+
interface RestrictionAttributeRule {
|
|
26076
|
+
readonly conditions: io.flow.internal.v0.unions.RestrictionAttributeRuleCondition[];
|
|
26077
|
+
readonly operator?: io.flow.internal.v0.enums.RestrictionAttributeOperator;
|
|
26078
|
+
readonly result: io.flow.internal.v0.enums.RestrictionAttributeResult;
|
|
26079
|
+
}
|
|
26080
|
+
|
|
25751
26081
|
interface RestrictionBlanketOrganizationExemption {
|
|
25752
26082
|
readonly id: string;
|
|
25753
26083
|
readonly organization_id: string;
|
|
@@ -25791,6 +26121,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25791
26121
|
readonly price: io.flow.common.v0.models.Price;
|
|
25792
26122
|
readonly hs_code?: string;
|
|
25793
26123
|
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
26124
|
+
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
25794
26125
|
readonly description: string;
|
|
25795
26126
|
readonly category?: string;
|
|
25796
26127
|
readonly categories: string[];
|
|
@@ -25918,6 +26249,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25918
26249
|
readonly thumbnails: io.flow.catalog.v0.models.Image[];
|
|
25919
26250
|
readonly hs_code?: string;
|
|
25920
26251
|
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
26252
|
+
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
25921
26253
|
readonly url?: string;
|
|
25922
26254
|
readonly reviews: io.flow.internal.v0.models.RestrictionItemReview[];
|
|
25923
26255
|
readonly created_at: string;
|
|
@@ -25962,6 +26294,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25962
26294
|
readonly sellability_positive_keywords?: string[];
|
|
25963
26295
|
readonly community_exemption: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
25964
26296
|
readonly reason_code: string;
|
|
26297
|
+
readonly attribute_names?: string[];
|
|
26298
|
+
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
26299
|
+
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
26300
|
+
readonly activation_status?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
25965
26301
|
}
|
|
25966
26302
|
|
|
25967
26303
|
interface RestrictionRuleDecisionForm {
|
|
@@ -26019,6 +26355,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26019
26355
|
readonly sellability_positive_keywords?: string[];
|
|
26020
26356
|
readonly community_exemption: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
26021
26357
|
readonly reason_code: string;
|
|
26358
|
+
readonly attribute_names?: string[];
|
|
26359
|
+
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
26360
|
+
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
26361
|
+
readonly activation_status?: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
26022
26362
|
}
|
|
26023
26363
|
|
|
26024
26364
|
interface RestrictionRuleLaneExemption {
|
|
@@ -26039,6 +26379,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26039
26379
|
readonly ignored_keywords?: string[];
|
|
26040
26380
|
readonly additional_keywords?: string[];
|
|
26041
26381
|
readonly community_exemption_override?: io.flow.internal.v0.enums.RestrictionRuleCommunityExemption[];
|
|
26382
|
+
readonly is_rule_active?: boolean;
|
|
26042
26383
|
}
|
|
26043
26384
|
|
|
26044
26385
|
interface RestrictionRuleOverride {
|
|
@@ -26204,6 +26545,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26204
26545
|
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
26205
26546
|
}
|
|
26206
26547
|
|
|
26548
|
+
interface ReturnTriggerReversal {
|
|
26549
|
+
readonly discriminator: 'by_reversal';
|
|
26550
|
+
readonly reversal: io.flow.internal.v0.models.TransactionReference;
|
|
26551
|
+
}
|
|
26552
|
+
|
|
26207
26553
|
interface RevenueRecord {
|
|
26208
26554
|
readonly id: string;
|
|
26209
26555
|
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
@@ -26275,6 +26621,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26275
26621
|
interface SalesPaymentRecord {
|
|
26276
26622
|
readonly id: string;
|
|
26277
26623
|
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
26624
|
+
readonly vendor?: io.flow.internal.v0.models.ReportingVendor;
|
|
26278
26625
|
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
26279
26626
|
readonly order_total: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
26280
26627
|
readonly shopper_breakdown: io.flow.internal.v0.models.ShopperBreakdown;
|
|
@@ -26406,6 +26753,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26406
26753
|
readonly label: io.flow.internal.v0.models.LabelSummary;
|
|
26407
26754
|
}
|
|
26408
26755
|
|
|
26756
|
+
interface SellabilityCheckResult {
|
|
26757
|
+
readonly status: io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
26758
|
+
readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
26759
|
+
readonly current_rule_ids?: string[];
|
|
26760
|
+
readonly current_restricted_regions?: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
26761
|
+
readonly merchant_rule_ids?: string[];
|
|
26762
|
+
readonly merchant_restricted_regions?: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
26763
|
+
readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
26764
|
+
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
26765
|
+
}
|
|
26766
|
+
|
|
26409
26767
|
interface SessionOrderData {
|
|
26410
26768
|
readonly id: string;
|
|
26411
26769
|
readonly session: io.flow.common.v0.models.SessionReference;
|
|
@@ -26727,6 +27085,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26727
27085
|
readonly api_password_masked?: string;
|
|
26728
27086
|
readonly access_token_masked?: string;
|
|
26729
27087
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
27088
|
+
readonly catalog_publication_owner?: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
26730
27089
|
}
|
|
26731
27090
|
|
|
26732
27091
|
interface ShopifyMarketsShopDeleted {
|
|
@@ -26883,12 +27242,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26883
27242
|
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
26884
27243
|
}
|
|
26885
27244
|
|
|
26886
|
-
interface ShopifyMonitoringOrderMonitorReview {
|
|
26887
|
-
readonly id: string;
|
|
26888
|
-
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
26889
|
-
readonly status: io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
26890
|
-
}
|
|
26891
|
-
|
|
26892
27245
|
interface ShopifyMonitoringTrackingNumber {
|
|
26893
27246
|
readonly number: string;
|
|
26894
27247
|
}
|
|
@@ -27054,6 +27407,50 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27054
27407
|
readonly product_delete: io.flow.shopify.external.v0.models.ProductDelete;
|
|
27055
27408
|
}
|
|
27056
27409
|
|
|
27410
|
+
interface ShopifyProductTaxonomyAttribute {
|
|
27411
|
+
readonly id: string;
|
|
27412
|
+
readonly handle: string;
|
|
27413
|
+
readonly name: string;
|
|
27414
|
+
readonly friendly_id: string;
|
|
27415
|
+
readonly description?: string;
|
|
27416
|
+
}
|
|
27417
|
+
|
|
27418
|
+
interface ShopifyProductTaxonomyAttributeDeleted {
|
|
27419
|
+
readonly discriminator: 'shopify_product_taxonomy_attribute_deleted';
|
|
27420
|
+
readonly event_id: string;
|
|
27421
|
+
readonly timestamp: string;
|
|
27422
|
+
readonly id: string;
|
|
27423
|
+
}
|
|
27424
|
+
|
|
27425
|
+
interface ShopifyProductTaxonomyAttributeUpserted {
|
|
27426
|
+
readonly discriminator: 'shopify_product_taxonomy_attribute_upserted';
|
|
27427
|
+
readonly event_id: string;
|
|
27428
|
+
readonly timestamp: string;
|
|
27429
|
+
readonly shopify_product_taxonomy_attribute: io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute;
|
|
27430
|
+
}
|
|
27431
|
+
|
|
27432
|
+
interface ShopifyProductTaxonomyAttributeValue {
|
|
27433
|
+
readonly id: string;
|
|
27434
|
+
readonly attribute_id: string;
|
|
27435
|
+
readonly handle: string;
|
|
27436
|
+
readonly name: string;
|
|
27437
|
+
readonly friendly_id: string;
|
|
27438
|
+
}
|
|
27439
|
+
|
|
27440
|
+
interface ShopifyProductTaxonomyAttributeValueDeleted {
|
|
27441
|
+
readonly discriminator: 'shopify_product_taxonomy_attribute_value_deleted';
|
|
27442
|
+
readonly event_id: string;
|
|
27443
|
+
readonly timestamp: string;
|
|
27444
|
+
readonly id: string;
|
|
27445
|
+
}
|
|
27446
|
+
|
|
27447
|
+
interface ShopifyProductTaxonomyAttributeValueUpserted {
|
|
27448
|
+
readonly discriminator: 'shopify_product_taxonomy_attribute_value_upserted';
|
|
27449
|
+
readonly event_id: string;
|
|
27450
|
+
readonly timestamp: string;
|
|
27451
|
+
readonly shopify_product_taxonomy_attribute_value: io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
27452
|
+
}
|
|
27453
|
+
|
|
27057
27454
|
interface ShopifyProductUpdateDeleted {
|
|
27058
27455
|
readonly discriminator: 'shopify_product_update_deleted';
|
|
27059
27456
|
readonly event_id: string;
|
|
@@ -27116,6 +27513,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27116
27513
|
readonly request?: any /*object*/;
|
|
27117
27514
|
}
|
|
27118
27515
|
|
|
27516
|
+
interface ShopifyTaxonomyAlignmentConfig {
|
|
27517
|
+
readonly id: string;
|
|
27518
|
+
readonly taxonomy_category: string;
|
|
27519
|
+
readonly allowable_hs_prefixes: string[];
|
|
27520
|
+
readonly default_hs6_code?: string;
|
|
27521
|
+
readonly auto_correct: boolean;
|
|
27522
|
+
readonly created_at: string;
|
|
27523
|
+
readonly updated_at: string;
|
|
27524
|
+
readonly updated_by_user_id: string;
|
|
27525
|
+
}
|
|
27526
|
+
|
|
27527
|
+
interface ShopifyTaxonomyAlignmentConfigForm {
|
|
27528
|
+
readonly taxonomy_category: string;
|
|
27529
|
+
readonly allowable_hs_prefixes: string[];
|
|
27530
|
+
readonly default_hs6_code?: string;
|
|
27531
|
+
readonly auto_correct: boolean;
|
|
27532
|
+
}
|
|
27533
|
+
|
|
27119
27534
|
interface ShopperBreakdown {
|
|
27120
27535
|
readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27121
27536
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -27855,6 +28270,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27855
28270
|
readonly tax_transaction: io.flow.internal.v0.models.TaxTransaction;
|
|
27856
28271
|
}
|
|
27857
28272
|
|
|
28273
|
+
interface TaxonomyAlignmentCheckResult {
|
|
28274
|
+
readonly status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
28275
|
+
readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
28276
|
+
readonly merchant_taxonomy_status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
28277
|
+
readonly current_taxonomy_status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
28278
|
+
}
|
|
28279
|
+
|
|
27858
28280
|
interface TaxonomyCategory {
|
|
27859
28281
|
readonly discriminator: 'category';
|
|
27860
28282
|
readonly name: string;
|
|
@@ -28504,6 +28926,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28504
28926
|
readonly provided_charges?: io.flow.internal.v0.models.ChargeInput[];
|
|
28505
28927
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
28506
28928
|
readonly package_dimensions_source: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
28929
|
+
readonly shipping_date_time?: string;
|
|
28507
28930
|
}
|
|
28508
28931
|
|
|
28509
28932
|
interface ViesResult {
|
|
@@ -28581,6 +29004,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
28581
29004
|
| io.flow.internal.v0.models.Ups
|
|
28582
29005
|
| io.flow.internal.v0.models.Fedex
|
|
28583
29006
|
| io.flow.internal.v0.models.FedexApi;
|
|
29007
|
+
type CarrierDocumentContent =
|
|
29008
|
+
io.flow.internal.v0.models.Base64CarrierDocumentContent;
|
|
29009
|
+
type CarrierLabelAttributes =
|
|
29010
|
+
io.flow.internal.v0.models.FedexCarrierLabelAttributes;
|
|
28584
29011
|
type ChannelRateMetadata =
|
|
28585
29012
|
| io.flow.internal.v0.models.ChannelRateMetadataIdentity
|
|
28586
29013
|
| io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
@@ -28812,6 +29239,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
28812
29239
|
| io.flow.internal.v0.models.RateFreshnessSummaryDeleted
|
|
28813
29240
|
| io.flow.internal.v0.models.ItemHarmonizationUpserted
|
|
28814
29241
|
| io.flow.internal.v0.models.ItemHarmonizationDeleted
|
|
29242
|
+
| io.flow.internal.v0.models.MerchantOverrideUpserted
|
|
29243
|
+
| io.flow.internal.v0.models.MerchantOverrideDeleted
|
|
28815
29244
|
| io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished
|
|
28816
29245
|
| io.flow.internal.v0.models.ItemFormImportRequest
|
|
28817
29246
|
| io.flow.internal.v0.models.LabelRequestErrorUpserted
|
|
@@ -28869,6 +29298,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
28869
29298
|
| io.flow.internal.v0.models.AuthorizationBundleDeleted
|
|
28870
29299
|
| io.flow.internal.v0.models.OrganizationPaymentSettingUpserted
|
|
28871
29300
|
| io.flow.internal.v0.models.OrganizationPaymentSettingDeleted
|
|
29301
|
+
| io.flow.internal.v0.models.OrderRefundTransactionUpserted
|
|
29302
|
+
| io.flow.internal.v0.models.OrderRefundTransactionDeleted
|
|
28872
29303
|
| io.flow.internal.v0.models.PaypalPaymentDeleted
|
|
28873
29304
|
| io.flow.internal.v0.models.PaypalPaymentUpserted
|
|
28874
29305
|
| io.flow.internal.v0.models.PaypalExecutionDeleted
|
|
@@ -28920,6 +29351,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
28920
29351
|
| io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted
|
|
28921
29352
|
| io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted
|
|
28922
29353
|
| io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted
|
|
29354
|
+
| io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted
|
|
29355
|
+
| io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted
|
|
29356
|
+
| io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted
|
|
29357
|
+
| io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted
|
|
28923
29358
|
| io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted
|
|
28924
29359
|
| io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted
|
|
28925
29360
|
| io.flow.internal.v0.models.ChannelOrderSummaryUpserted
|
|
@@ -29123,7 +29558,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29123
29558
|
| io.flow.internal.v0.models.ProofOfPostingOrderCancellation
|
|
29124
29559
|
| io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment
|
|
29125
29560
|
| io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
29126
|
-
type
|
|
29561
|
+
type RestrictionAttributeRuleCondition =
|
|
29562
|
+
| io.flow.internal.v0.models.RestrictionAttributeConditionSingle
|
|
29563
|
+
| io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
|
|
29564
|
+
type ReturnTrigger =
|
|
29565
|
+
| io.flow.internal.v0.models.ReturnTriggerRefund
|
|
29566
|
+
| io.flow.internal.v0.models.ReturnTriggerReversal;
|
|
29127
29567
|
type RoutingEntity =
|
|
29128
29568
|
| io.flow.internal.v0.models.RoutingProcessor
|
|
29129
29569
|
| io.flow.internal.v0.models.RoutingAccount
|
|
@@ -29152,7 +29592,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29152
29592
|
type TaskMetadata =
|
|
29153
29593
|
| io.flow.internal.v0.models.StatementCreationMetadata
|
|
29154
29594
|
| io.flow.internal.v0.models.AccountingPendingOrderMetadata
|
|
29155
|
-
| io.flow.internal.v0.models.TaxDutyReasonCodeMetadata
|
|
29595
|
+
| io.flow.internal.v0.models.TaxDutyReasonCodeMetadata
|
|
29596
|
+
| io.flow.internal.v0.models.AccountingReturnMetadata
|
|
29597
|
+
| io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata;
|
|
29156
29598
|
type TaxAmount =
|
|
29157
29599
|
| io.flow.internal.v0.models.CalculatedTaxAmount
|
|
29158
29600
|
| io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
@@ -29237,6 +29679,8 @@ export type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
|
|
|
29237
29679
|
export type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
|
|
29238
29680
|
export type AccountingPendingOrderMetadata =
|
|
29239
29681
|
io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
29682
|
+
export type AccountingReturnMetadata =
|
|
29683
|
+
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
29240
29684
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
29241
29685
|
export type AdditionalImportTax =
|
|
29242
29686
|
io.flow.internal.v0.models.AdditionalImportTax;
|
|
@@ -29350,6 +29794,9 @@ export type AllOrganizationsMembership =
|
|
|
29350
29794
|
export type AllocationItemReference =
|
|
29351
29795
|
io.flow.internal.v0.models.AllocationItemReference;
|
|
29352
29796
|
export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
29797
|
+
export type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
|
|
29798
|
+
export type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
|
|
29799
|
+
export type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
|
|
29353
29800
|
export type AnshItem = io.flow.internal.v0.models.AnshItem;
|
|
29354
29801
|
export type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
|
|
29355
29802
|
export type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
|
|
@@ -29362,6 +29809,7 @@ export type ApplicablePreferentialRate =
|
|
|
29362
29809
|
export type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
29363
29810
|
export type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
29364
29811
|
export type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
29812
|
+
export type AttributeRule = io.flow.internal.v0.models.AttributeRule;
|
|
29365
29813
|
export type AuthenticationForm = io.flow.internal.v0.models.AuthenticationForm;
|
|
29366
29814
|
export type AuthorizationBundle =
|
|
29367
29815
|
io.flow.internal.v0.models.AuthorizationBundle;
|
|
@@ -29425,6 +29873,8 @@ export type BankPaymentUpserted =
|
|
|
29425
29873
|
io.flow.internal.v0.models.BankPaymentUpserted;
|
|
29426
29874
|
export type BankPaymentUpsertedV2 =
|
|
29427
29875
|
io.flow.internal.v0.models.BankPaymentUpsertedV2;
|
|
29876
|
+
export type Base64CarrierDocumentContent =
|
|
29877
|
+
io.flow.internal.v0.models.Base64CarrierDocumentContent;
|
|
29428
29878
|
export type BillingAllocationKey =
|
|
29429
29879
|
io.flow.internal.v0.enums.BillingAllocationKey;
|
|
29430
29880
|
export type BillingAuthorizationReference =
|
|
@@ -29554,11 +30004,17 @@ export type CarrierChargeUnits = io.flow.internal.v0.models.CarrierChargeUnits;
|
|
|
29554
30004
|
export type CarrierChargeUpserted =
|
|
29555
30005
|
io.flow.internal.v0.models.CarrierChargeUpserted;
|
|
29556
30006
|
export type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
|
|
30007
|
+
export type CarrierDocument = io.flow.internal.v0.models.CarrierDocument;
|
|
30008
|
+
export type CarrierDocumentContent =
|
|
30009
|
+
io.flow.internal.v0.unions.CarrierDocumentContent;
|
|
30010
|
+
export type CarrierDocumentType = io.flow.internal.v0.enums.CarrierDocumentType;
|
|
29557
30011
|
export type CarrierFile = io.flow.internal.v0.models.CarrierFile;
|
|
29558
30012
|
export type CarrierFileForm = io.flow.internal.v0.models.CarrierFileForm;
|
|
29559
30013
|
export type CarrierFileResult = io.flow.internal.v0.models.CarrierFileResult;
|
|
29560
30014
|
export type CarrierFileType = io.flow.internal.v0.enums.CarrierFileType;
|
|
29561
30015
|
export type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
|
|
30016
|
+
export type CarrierLabelAttributes =
|
|
30017
|
+
io.flow.internal.v0.unions.CarrierLabelAttributes;
|
|
29562
30018
|
export type CarrierLabelGenerationMethod =
|
|
29563
30019
|
io.flow.internal.v0.enums.CarrierLabelGenerationMethod;
|
|
29564
30020
|
export type CarrierTaxForm = io.flow.internal.v0.models.CarrierTaxForm;
|
|
@@ -29685,6 +30141,14 @@ export type ChannelOrganizationIdentifierDeleted =
|
|
|
29685
30141
|
io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted;
|
|
29686
30142
|
export type ChannelOrganizationIdentifierUpserted =
|
|
29687
30143
|
io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted;
|
|
30144
|
+
export type ChannelOrganizationPublicationOwner =
|
|
30145
|
+
io.flow.internal.v0.models.ChannelOrganizationPublicationOwner;
|
|
30146
|
+
export type ChannelOrganizationPublicationOwnerPutForm =
|
|
30147
|
+
io.flow.internal.v0.models.ChannelOrganizationPublicationOwnerPutForm;
|
|
30148
|
+
export type ChannelOrganizationSellabilityStatus =
|
|
30149
|
+
io.flow.internal.v0.models.ChannelOrganizationSellabilityStatus;
|
|
30150
|
+
export type ChannelOrganizationSellabilityStatusPutForm =
|
|
30151
|
+
io.flow.internal.v0.models.ChannelOrganizationSellabilityStatusPutForm;
|
|
29688
30152
|
export type ChannelOrganizationShopify =
|
|
29689
30153
|
io.flow.internal.v0.models.ChannelOrganizationShopify;
|
|
29690
30154
|
export type ChannelOrganizationShopifyForm =
|
|
@@ -29706,6 +30170,8 @@ export type ChannelTransactionType =
|
|
|
29706
30170
|
io.flow.internal.v0.enums.ChannelTransactionType;
|
|
29707
30171
|
export type ChannelTransactionUpserted =
|
|
29708
30172
|
io.flow.internal.v0.models.ChannelTransactionUpserted;
|
|
30173
|
+
export type ChapterCheckResult = io.flow.internal.v0.models.ChapterCheckResult;
|
|
30174
|
+
export type ChapterCheckStatus = io.flow.internal.v0.enums.ChapterCheckStatus;
|
|
29709
30175
|
export type ChargeEstimateSource =
|
|
29710
30176
|
io.flow.internal.v0.enums.ChargeEstimateSource;
|
|
29711
30177
|
export type ChargeInput = io.flow.internal.v0.models.ChargeInput;
|
|
@@ -29944,6 +30410,8 @@ export type DeliveredDutyPreferenceForm =
|
|
|
29944
30410
|
io.flow.internal.v0.models.DeliveredDutyPreferenceForm;
|
|
29945
30411
|
export type DeminimisAdjustmentType =
|
|
29946
30412
|
io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
30413
|
+
export type DestinationDutyComparison =
|
|
30414
|
+
io.flow.internal.v0.models.DestinationDutyComparison;
|
|
29947
30415
|
export type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
29948
30416
|
export type Dhl = io.flow.internal.v0.models.Dhl;
|
|
29949
30417
|
export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
@@ -30037,6 +30505,8 @@ export type DutyTransactionDeleted =
|
|
|
30037
30505
|
export type DutyTransactionType = io.flow.internal.v0.enums.DutyTransactionType;
|
|
30038
30506
|
export type DutyTransactionUpserted =
|
|
30039
30507
|
io.flow.internal.v0.models.DutyTransactionUpserted;
|
|
30508
|
+
export type DutyVarianceResult = io.flow.internal.v0.models.DutyVarianceResult;
|
|
30509
|
+
export type DutyVarianceStatus = io.flow.internal.v0.enums.DutyVarianceStatus;
|
|
30040
30510
|
export type EmailForm = io.flow.internal.v0.models.EmailForm;
|
|
30041
30511
|
export type EmailModificationForm =
|
|
30042
30512
|
io.flow.internal.v0.models.EmailModificationForm;
|
|
@@ -30069,6 +30539,8 @@ export type ErpVendorStatusFlowFile =
|
|
|
30069
30539
|
io.flow.internal.v0.models.ErpVendorStatusFlowFile;
|
|
30070
30540
|
export type ErpVendorStatusPriorityFile =
|
|
30071
30541
|
io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
|
|
30542
|
+
export type EvaluationCheckResult =
|
|
30543
|
+
io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
30072
30544
|
export type EvaluationResults = io.flow.internal.v0.models.EvaluationResults;
|
|
30073
30545
|
export type Event = io.flow.internal.v0.unions.Event;
|
|
30074
30546
|
export type EventType = io.flow.internal.v0.enums.EventType;
|
|
@@ -30119,6 +30591,10 @@ export type ExternalFulfillmentProofTracking =
|
|
|
30119
30591
|
io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
30120
30592
|
export type ExternalFulfillmentProofTrackingForm =
|
|
30121
30593
|
io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
30594
|
+
export type ExternalRatecardLink =
|
|
30595
|
+
io.flow.internal.v0.models.ExternalRatecardLink;
|
|
30596
|
+
export type ExternalRatecardLinkResponse =
|
|
30597
|
+
io.flow.internal.v0.models.ExternalRatecardLinkResponse;
|
|
30122
30598
|
export type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
|
|
30123
30599
|
export type FailedDimensionEstimateOpsInputWithReason =
|
|
30124
30600
|
io.flow.internal.v0.models.FailedDimensionEstimateOpsInputWithReason;
|
|
@@ -30149,10 +30625,13 @@ export type FeatureValueForm = io.flow.internal.v0.models.FeatureValueForm;
|
|
|
30149
30625
|
export type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
|
|
30150
30626
|
export type Fedex = io.flow.internal.v0.models.Fedex;
|
|
30151
30627
|
export type FedexApi = io.flow.internal.v0.models.FedexApi;
|
|
30628
|
+
export type FedexCarrierLabelAttributes =
|
|
30629
|
+
io.flow.internal.v0.models.FedexCarrierLabelAttributes;
|
|
30152
30630
|
export type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
30153
30631
|
export type Fee = io.flow.internal.v0.models.Fee;
|
|
30154
30632
|
export type Fees = io.flow.internal.v0.models.Fees;
|
|
30155
30633
|
export type FeesSource = io.flow.internal.v0.enums.FeesSource;
|
|
30634
|
+
export type FileType = io.flow.internal.v0.enums.FileType;
|
|
30156
30635
|
export type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
|
|
30157
30636
|
export type FinanceBankAccountOwner =
|
|
30158
30637
|
io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
@@ -30495,6 +30974,7 @@ export type JournalFailure = io.flow.internal.v0.models.JournalFailure;
|
|
|
30495
30974
|
export type JournalOperation = io.flow.internal.v0.enums.JournalOperation;
|
|
30496
30975
|
export type Key = io.flow.internal.v0.models.Key;
|
|
30497
30976
|
export type KeyReference = io.flow.internal.v0.models.KeyReference;
|
|
30977
|
+
export type KeywordCancelling = io.flow.internal.v0.models.KeywordCancelling;
|
|
30498
30978
|
export type KeywordType = io.flow.internal.v0.enums.KeywordType;
|
|
30499
30979
|
export type KlarnaAuthorizationParameters =
|
|
30500
30980
|
io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
@@ -30675,8 +31155,12 @@ export type MerchantOfRecordEntitySettingsForm =
|
|
|
30675
31155
|
export type MerchantOverride = io.flow.internal.v0.models.MerchantOverride;
|
|
30676
31156
|
export type MerchantOverrideDecisionForm =
|
|
30677
31157
|
io.flow.internal.v0.models.MerchantOverrideDecisionForm;
|
|
31158
|
+
export type MerchantOverrideDeleted =
|
|
31159
|
+
io.flow.internal.v0.models.MerchantOverrideDeleted;
|
|
30678
31160
|
export type MerchantOverrideStatus =
|
|
30679
31161
|
io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
31162
|
+
export type MerchantOverrideUpserted =
|
|
31163
|
+
io.flow.internal.v0.models.MerchantOverrideUpserted;
|
|
30680
31164
|
export type MerchantSearchResult =
|
|
30681
31165
|
io.flow.internal.v0.models.MerchantSearchResult;
|
|
30682
31166
|
export type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
@@ -30705,6 +31189,8 @@ export type NoLiabilityReasonCode =
|
|
|
30705
31189
|
io.flow.internal.v0.enums.NoLiabilityReasonCode;
|
|
30706
31190
|
export type NonChannelPaymentBankAccount =
|
|
30707
31191
|
io.flow.internal.v0.models.NonChannelPaymentBankAccount;
|
|
31192
|
+
export type NonL4LTaxDutyFxFeeMetadata =
|
|
31193
|
+
io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata;
|
|
30708
31194
|
export type NonL4LTaxDutyFxTransaction =
|
|
30709
31195
|
io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
|
|
30710
31196
|
export type NonL4LTaxDutyFxTransactionType =
|
|
@@ -30720,8 +31206,6 @@ export type OnboardingAuditReportLine =
|
|
|
30720
31206
|
io.flow.internal.v0.models.OnboardingAuditReportLine;
|
|
30721
31207
|
export type OnboardingAuditResult =
|
|
30722
31208
|
io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
30723
|
-
export type OnboardingAuditSnapshot =
|
|
30724
|
-
io.flow.internal.v0.models.OnboardingAuditSnapshot;
|
|
30725
31209
|
export type OnboardingAuditThemeKey =
|
|
30726
31210
|
io.flow.internal.v0.enums.OnboardingAuditThemeKey;
|
|
30727
31211
|
export type OnboardingAuditThemeReport =
|
|
@@ -30793,6 +31277,12 @@ export type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
|
30793
31277
|
export type OrderRatesPublishedV3 =
|
|
30794
31278
|
io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
30795
31279
|
export type OrderReference = io.flow.internal.v0.models.OrderReference;
|
|
31280
|
+
export type OrderRefundTransaction =
|
|
31281
|
+
io.flow.internal.v0.models.OrderRefundTransaction;
|
|
31282
|
+
export type OrderRefundTransactionDeleted =
|
|
31283
|
+
io.flow.internal.v0.models.OrderRefundTransactionDeleted;
|
|
31284
|
+
export type OrderRefundTransactionUpserted =
|
|
31285
|
+
io.flow.internal.v0.models.OrderRefundTransactionUpserted;
|
|
30796
31286
|
export type OrderRevenueRegionChart =
|
|
30797
31287
|
io.flow.internal.v0.models.OrderRevenueRegionChart;
|
|
30798
31288
|
export type OrderRevenueRegionDataPoint =
|
|
@@ -31042,6 +31532,8 @@ export type PaymentProcessorMerchantDeleted =
|
|
|
31042
31532
|
export type PaymentProcessorMerchantUpserted =
|
|
31043
31533
|
io.flow.internal.v0.models.PaymentProcessorMerchantUpserted;
|
|
31044
31534
|
export type PaymentRedirect = io.flow.internal.v0.unions.PaymentRedirect;
|
|
31535
|
+
export type PaymentRequestAuthorization =
|
|
31536
|
+
io.flow.internal.v0.models.PaymentRequestAuthorization;
|
|
31045
31537
|
export type PaymentShortUrl = io.flow.internal.v0.models.PaymentShortUrl;
|
|
31046
31538
|
export type PaymentShortUrlDiscriminator =
|
|
31047
31539
|
io.flow.internal.v0.enums.PaymentShortUrlDiscriminator;
|
|
@@ -31412,6 +31904,22 @@ export type RescreenRestrictionsProducts =
|
|
|
31412
31904
|
io.flow.internal.v0.models.RescreenRestrictionsProducts;
|
|
31413
31905
|
export type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
31414
31906
|
export type RestrictionAction = io.flow.internal.v0.enums.RestrictionAction;
|
|
31907
|
+
export type RestrictionAttributeConditionMultiple =
|
|
31908
|
+
io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
|
|
31909
|
+
export type RestrictionAttributeConditionMultipleOperator =
|
|
31910
|
+
io.flow.internal.v0.enums.RestrictionAttributeConditionMultipleOperator;
|
|
31911
|
+
export type RestrictionAttributeConditionSingle =
|
|
31912
|
+
io.flow.internal.v0.models.RestrictionAttributeConditionSingle;
|
|
31913
|
+
export type RestrictionAttributeConditionSingleOperator =
|
|
31914
|
+
io.flow.internal.v0.enums.RestrictionAttributeConditionSingleOperator;
|
|
31915
|
+
export type RestrictionAttributeOperator =
|
|
31916
|
+
io.flow.internal.v0.enums.RestrictionAttributeOperator;
|
|
31917
|
+
export type RestrictionAttributeResult =
|
|
31918
|
+
io.flow.internal.v0.enums.RestrictionAttributeResult;
|
|
31919
|
+
export type RestrictionAttributeRule =
|
|
31920
|
+
io.flow.internal.v0.models.RestrictionAttributeRule;
|
|
31921
|
+
export type RestrictionAttributeRuleCondition =
|
|
31922
|
+
io.flow.internal.v0.unions.RestrictionAttributeRuleCondition;
|
|
31415
31923
|
export type RestrictionBlanketOrganizationExemption =
|
|
31416
31924
|
io.flow.internal.v0.models.RestrictionBlanketOrganizationExemption;
|
|
31417
31925
|
export type RestrictionCategory =
|
|
@@ -31455,6 +31963,8 @@ export type RestrictionProductRequestForm =
|
|
|
31455
31963
|
export type RestrictionProductSummary =
|
|
31456
31964
|
io.flow.internal.v0.models.RestrictionProductSummary;
|
|
31457
31965
|
export type RestrictionRule = io.flow.internal.v0.models.RestrictionRule;
|
|
31966
|
+
export type RestrictionRuleActivationStatus =
|
|
31967
|
+
io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
31458
31968
|
export type RestrictionRuleCommunityExemption =
|
|
31459
31969
|
io.flow.internal.v0.enums.RestrictionRuleCommunityExemption;
|
|
31460
31970
|
export type RestrictionRuleDecisionForm =
|
|
@@ -31514,6 +32024,8 @@ export type ReturnSummary = io.flow.internal.v0.models.ReturnSummary;
|
|
|
31514
32024
|
export type ReturnTrigger = io.flow.internal.v0.unions.ReturnTrigger;
|
|
31515
32025
|
export type ReturnTriggerRefund =
|
|
31516
32026
|
io.flow.internal.v0.models.ReturnTriggerRefund;
|
|
32027
|
+
export type ReturnTriggerReversal =
|
|
32028
|
+
io.flow.internal.v0.models.ReturnTriggerReversal;
|
|
31517
32029
|
export type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
|
|
31518
32030
|
export type RevenueRecordDeleted =
|
|
31519
32031
|
io.flow.internal.v0.models.RevenueRecordDeleted;
|
|
@@ -31556,6 +32068,11 @@ export type SearchProviderExport =
|
|
|
31556
32068
|
io.flow.internal.v0.models.SearchProviderExport;
|
|
31557
32069
|
export type SearchTrackingSummary =
|
|
31558
32070
|
io.flow.internal.v0.models.SearchTrackingSummary;
|
|
32071
|
+
export type SellabilityCheckResult =
|
|
32072
|
+
io.flow.internal.v0.models.SellabilityCheckResult;
|
|
32073
|
+
export type SellabilityCheckStatus =
|
|
32074
|
+
io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
32075
|
+
export type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
31559
32076
|
export type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
31560
32077
|
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
31561
32078
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
@@ -31691,8 +32208,6 @@ export type ShopifyMonitoringOrderMonitorEventDeleted =
|
|
|
31691
32208
|
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted;
|
|
31692
32209
|
export type ShopifyMonitoringOrderMonitorEventUpserted =
|
|
31693
32210
|
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted;
|
|
31694
|
-
export type ShopifyMonitoringOrderMonitorReview =
|
|
31695
|
-
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview;
|
|
31696
32211
|
export type ShopifyMonitoringOrderMonitorType =
|
|
31697
32212
|
io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
31698
32213
|
export type ShopifyMonitoringTrackingField =
|
|
@@ -31750,6 +32265,18 @@ export type ShopifyProductDeleteUpserted =
|
|
|
31750
32265
|
io.flow.internal.v0.models.ShopifyProductDeleteUpserted;
|
|
31751
32266
|
export type ShopifyProductDeleteWebhookEvent =
|
|
31752
32267
|
io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
32268
|
+
export type ShopifyProductTaxonomyAttribute =
|
|
32269
|
+
io.flow.internal.v0.models.ShopifyProductTaxonomyAttribute;
|
|
32270
|
+
export type ShopifyProductTaxonomyAttributeDeleted =
|
|
32271
|
+
io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted;
|
|
32272
|
+
export type ShopifyProductTaxonomyAttributeUpserted =
|
|
32273
|
+
io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted;
|
|
32274
|
+
export type ShopifyProductTaxonomyAttributeValue =
|
|
32275
|
+
io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
32276
|
+
export type ShopifyProductTaxonomyAttributeValueDeleted =
|
|
32277
|
+
io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted;
|
|
32278
|
+
export type ShopifyProductTaxonomyAttributeValueUpserted =
|
|
32279
|
+
io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted;
|
|
31753
32280
|
export type ShopifyProductUpdateDeleted =
|
|
31754
32281
|
io.flow.internal.v0.models.ShopifyProductUpdateDeleted;
|
|
31755
32282
|
export type ShopifyProductUpdateUpserted =
|
|
@@ -31767,6 +32294,10 @@ export type ShopifyShopStatistics =
|
|
|
31767
32294
|
io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
31768
32295
|
export type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
|
|
31769
32296
|
export type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
|
|
32297
|
+
export type ShopifyTaxonomyAlignmentConfig =
|
|
32298
|
+
io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig;
|
|
32299
|
+
export type ShopifyTaxonomyAlignmentConfigForm =
|
|
32300
|
+
io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm;
|
|
31770
32301
|
export type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
|
|
31771
32302
|
export type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
31772
32303
|
export type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
|
@@ -31937,6 +32468,8 @@ export type TaxTransactionDeleted =
|
|
|
31937
32468
|
export type TaxTransactionType = io.flow.internal.v0.enums.TaxTransactionType;
|
|
31938
32469
|
export type TaxTransactionUpserted =
|
|
31939
32470
|
io.flow.internal.v0.models.TaxTransactionUpserted;
|
|
32471
|
+
export type TaxonomyAlignmentCheckResult =
|
|
32472
|
+
io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
|
|
31940
32473
|
export type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
|
|
31941
32474
|
export type TaxonomyCategoryClassificationAlignment =
|
|
31942
32475
|
io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|