@flowio/api-internal-prop-types 9.24.113 → 9.24.115
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 +417 -53
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +417 -53
- package/src/api-internal.js +1227 -842
package/src/api-internal.d.ts
CHANGED
|
@@ -2231,11 +2231,10 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2231
2231
|
interface Transfer {
|
|
2232
2232
|
readonly 'id': string;
|
|
2233
2233
|
readonly 'type': io.flow.payment.v0.enums.TransferType;
|
|
2234
|
-
readonly '
|
|
2235
|
-
readonly 'transferred_money': io.flow.payment.v0.models.ExchangedMoney;
|
|
2234
|
+
readonly 'base': io.flow.common.v0.models.Money;
|
|
2236
2235
|
readonly 'status': io.flow.payment.v0.enums.TransferStatus;
|
|
2237
2236
|
readonly 'created_at': string;
|
|
2238
|
-
readonly '
|
|
2237
|
+
readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
|
|
2239
2238
|
readonly 'transferred_at': string;
|
|
2240
2239
|
}
|
|
2241
2240
|
|
|
@@ -5110,6 +5109,12 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5110
5109
|
readonly 'order_note'?: string;
|
|
5111
5110
|
}
|
|
5112
5111
|
|
|
5112
|
+
interface ShopifyOrderRiskAssessment {
|
|
5113
|
+
readonly 'id': string;
|
|
5114
|
+
readonly 'risk_level': string;
|
|
5115
|
+
readonly 'assessment_created_at': string;
|
|
5116
|
+
}
|
|
5117
|
+
|
|
5113
5118
|
interface ShopifyProductBundle {
|
|
5114
5119
|
readonly 'id': string;
|
|
5115
5120
|
readonly 'underlying': io.flow.shopify.markets.internal.v0.models.ShopifyProductBundleUnderlying;
|
|
@@ -6679,7 +6684,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6679
6684
|
type ShopifyOrderValueType = 'string' | 'integer';
|
|
6680
6685
|
type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
|
|
6681
6686
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
6682
|
-
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update' | 'bulk_operations/finish' | 'shop/update';
|
|
6687
|
+
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'order_transactions/create' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'orders/risk_assessment_changed' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update' | 'bulk_operations/finish' | 'shop/update';
|
|
6683
6688
|
}
|
|
6684
6689
|
|
|
6685
6690
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
@@ -7211,6 +7216,12 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7211
7216
|
readonly 'total_tax_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7212
7217
|
}
|
|
7213
7218
|
|
|
7219
|
+
interface ShopifyOrderRiskAssessmentChanged {
|
|
7220
|
+
readonly 'order_id': number;
|
|
7221
|
+
readonly 'risk_level': string;
|
|
7222
|
+
readonly 'created_at': string;
|
|
7223
|
+
}
|
|
7224
|
+
|
|
7214
7225
|
interface ShopifyOrderShippingLine {
|
|
7215
7226
|
readonly 'code'?: string;
|
|
7216
7227
|
readonly 'price': string;
|
|
@@ -8397,6 +8408,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8397
8408
|
readonly 'registration': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
8398
8409
|
}
|
|
8399
8410
|
|
|
8411
|
+
interface ShopifyOrderRiskAssessmentDeleted {
|
|
8412
|
+
readonly 'discriminator': 'shopify_order_risk_assessment_deleted';
|
|
8413
|
+
readonly 'event_id': string;
|
|
8414
|
+
readonly 'timestamp': string;
|
|
8415
|
+
readonly 'organization': string;
|
|
8416
|
+
readonly 'id': string;
|
|
8417
|
+
}
|
|
8418
|
+
|
|
8419
|
+
interface ShopifyOrderRiskAssessmentUpserted {
|
|
8420
|
+
readonly 'discriminator': 'shopify_order_risk_assessment_upserted';
|
|
8421
|
+
readonly 'event_id': string;
|
|
8422
|
+
readonly 'timestamp': string;
|
|
8423
|
+
readonly 'organization': string;
|
|
8424
|
+
readonly 'assessment': io.flow.shopify.markets.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
8425
|
+
}
|
|
8426
|
+
|
|
8400
8427
|
interface ShopifyProductBundleDeleted {
|
|
8401
8428
|
readonly 'discriminator': 'shopify_product_bundle_deleted';
|
|
8402
8429
|
readonly 'event_id': string;
|
|
@@ -8415,7 +8442,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8415
8442
|
}
|
|
8416
8443
|
|
|
8417
8444
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8418
|
-
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);
|
|
8445
|
+
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);
|
|
8419
8446
|
}
|
|
8420
8447
|
|
|
8421
8448
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -9746,6 +9773,13 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9746
9773
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
9747
9774
|
}
|
|
9748
9775
|
|
|
9776
|
+
interface OverweightPieceSurchargeServiceFee {
|
|
9777
|
+
readonly 'discriminator': 'overweight_piece_surcharge_service_fee';
|
|
9778
|
+
readonly 'weight_threshold'?: number;
|
|
9779
|
+
readonly 'weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9780
|
+
readonly 'amount': io.flow.common.v0.models.Money;
|
|
9781
|
+
}
|
|
9782
|
+
|
|
9749
9783
|
interface PeakSurchargeByWeightServiceFee {
|
|
9750
9784
|
readonly 'discriminator': 'peak_surcharge_by_weight_service_fee';
|
|
9751
9785
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -9866,6 +9900,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9866
9900
|
interface RatecardForm {
|
|
9867
9901
|
readonly 'direction': io.flow.label.v0.enums.Direction;
|
|
9868
9902
|
readonly 'effective_at': string;
|
|
9903
|
+
readonly 'published_at'?: string;
|
|
9869
9904
|
readonly 'origination_zones': io.flow.common.v0.models.Zone[];
|
|
9870
9905
|
readonly 'service': string;
|
|
9871
9906
|
readonly 'number'?: string;
|
|
@@ -10023,7 +10058,7 @@ declare namespace io.flow.ratecard.v0.unions {
|
|
|
10023
10058
|
type FuelSurchargeRate = (io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight);
|
|
10024
10059
|
type RatecardEstimate = (io.flow.ratecard.v0.models.RatecardEstimateV1 | io.flow.ratecard.v0.models.RatecardEstimateV2 | io.flow.ratecard.v0.models.RatecardEstimateV3 | io.flow.ratecard.v0.models.RatecardEstimateV4);
|
|
10025
10060
|
type RatecardFee = (io.flow.ratecard.v0.models.DdpRatecardFee | io.flow.ratecard.v0.models.FuelSurchargeRatecardFee | io.flow.ratecard.v0.models.OversizePieceSurchargeRatecardFee | io.flow.ratecard.v0.models.ReturnPackageRatecardFee | io.flow.ratecard.v0.models.CrossdockRatecardFee | io.flow.ratecard.v0.models.RemoteAreaRatecardFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.ratecard.v0.models.PeakSurchargeRatecardFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee | io.flow.ratecard.v0.models.SecurityRatecardFee | io.flow.ratecard.v0.models.EeiFilingRatecardFee | io.flow.ratecard.v0.models.FixedDdpRatecardFee | io.flow.ratecard.v0.models.FixedCurrencyConversionRatecardFee);
|
|
10026
|
-
type ServiceFee = (io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee | io.flow.ratecard.v0.models.RemoteAreaByWeightServiceFee | io.flow.ratecard.v0.models.AdditionalHandlingServiceFee | io.flow.ratecard.v0.models.LargePackageServiceFee | io.flow.ratecard.v0.models.SecurityServiceFee | io.flow.ratecard.v0.models.FixedDdpServiceFee | io.flow.ratecard.v0.models.FixedCurrencyConversionServiceFee | io.flow.ratecard.v0.models.EeiFilingServiceFee);
|
|
10061
|
+
type ServiceFee = (io.flow.ratecard.v0.models.FuelSurchargeServiceFee | io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.ratecard.v0.models.RemoteAreaServiceFee | io.flow.ratecard.v0.models.EmergencySituationSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeServiceFee | io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee | io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee | io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee | io.flow.ratecard.v0.models.OverweightPieceSurchargeServiceFee | io.flow.ratecard.v0.models.RemoteAreaByWeightServiceFee | io.flow.ratecard.v0.models.AdditionalHandlingServiceFee | io.flow.ratecard.v0.models.LargePackageServiceFee | io.flow.ratecard.v0.models.SecurityServiceFee | io.flow.ratecard.v0.models.FixedDdpServiceFee | io.flow.ratecard.v0.models.FixedCurrencyConversionServiceFee | io.flow.ratecard.v0.models.EeiFilingServiceFee);
|
|
10027
10062
|
}
|
|
10028
10063
|
|
|
10029
10064
|
declare namespace io.flow.token.v0.models {
|
|
@@ -13387,7 +13422,8 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
13387
13422
|
|
|
13388
13423
|
declare namespace io.flow.sellability.v0.enums {
|
|
13389
13424
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
13390
|
-
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
|
|
13425
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity';
|
|
13426
|
+
type SellabilityRequestStatus = 'commit';
|
|
13391
13427
|
}
|
|
13392
13428
|
|
|
13393
13429
|
declare namespace io.flow.sellability.v0.models {
|
|
@@ -13402,11 +13438,11 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13402
13438
|
interface ProductSellabilityForm {
|
|
13403
13439
|
readonly 'shop_id': string;
|
|
13404
13440
|
readonly 'product_id'?: string;
|
|
13405
|
-
readonly 'request_id': string;
|
|
13406
13441
|
readonly 'name': string;
|
|
13407
13442
|
readonly 'price': io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
13408
13443
|
readonly 'description': string;
|
|
13409
13444
|
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13445
|
+
readonly 'status'?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
13410
13446
|
}
|
|
13411
13447
|
|
|
13412
13448
|
interface ProductSellabilityPrice {
|
|
@@ -13542,19 +13578,6 @@ declare namespace io.flow.organization.v0.models {
|
|
|
13542
13578
|
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
13543
13579
|
}
|
|
13544
13580
|
|
|
13545
|
-
interface OrganizationConfigurationReference {
|
|
13546
|
-
readonly 'id': string;
|
|
13547
|
-
}
|
|
13548
|
-
|
|
13549
|
-
interface OrganizationDefaultConfigurations {
|
|
13550
|
-
readonly 'id': string;
|
|
13551
|
-
readonly 'checkout_configuration': io.flow.organization.v0.models.OrganizationConfigurationReference;
|
|
13552
|
-
}
|
|
13553
|
-
|
|
13554
|
-
interface OrganizationDefaultConfigurationsForm {
|
|
13555
|
-
readonly 'id': string;
|
|
13556
|
-
}
|
|
13557
|
-
|
|
13558
13581
|
interface OrganizationForm {
|
|
13559
13582
|
readonly 'id'?: string;
|
|
13560
13583
|
readonly 'name'?: string;
|
|
@@ -13732,6 +13755,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13732
13755
|
type AnshItemType = 'physical' | 'digital';
|
|
13733
13756
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
13734
13757
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
13758
|
+
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
13735
13759
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
13736
13760
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
13737
13761
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -13771,9 +13795,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13771
13795
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
13772
13796
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
13773
13797
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
13798
|
+
type CommercialInvoiceVersion = 'v2_2_1';
|
|
13774
13799
|
type Company = 'globale' | 'flow';
|
|
13775
13800
|
type ComplianceType = 'weee';
|
|
13776
|
-
type
|
|
13801
|
+
type ConnectReportPaymentTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
|
|
13802
|
+
type ConnectReportTransferTransferType = 'ManagedMarketsChargeCredit' | 'ManagedMarketsDisputeWonAmountCredit' | 'ManagedMarketsDutiesAndTaxesAdjustmentCredit';
|
|
13777
13803
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
13778
13804
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
13779
13805
|
type ContentType = 'text' | 'html';
|
|
@@ -13804,7 +13830,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13804
13830
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
|
|
13805
13831
|
type EmptyAttribute = 'irrelevant';
|
|
13806
13832
|
type ErpFileType = 'vendor';
|
|
13807
|
-
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' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | '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' | 'customer_purge_upserted' | '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' | 'issuer_upserted' | 'issuer_deleted' | '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' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_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' | '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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_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_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' | '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';
|
|
13833
|
+
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' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | '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' | 'customer_purge_upserted' | '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' | 'issuer_upserted' | 'issuer_deleted' | '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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_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_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' | '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';
|
|
13808
13834
|
type ExperienceImportType = 'experience_with_settings';
|
|
13809
13835
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13810
13836
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13821,6 +13847,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13821
13847
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
13822
13848
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
13823
13849
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
13850
|
+
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
13824
13851
|
type GoogleAnalyticsPlugin = 'ec';
|
|
13825
13852
|
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';
|
|
13826
13853
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
@@ -13850,7 +13877,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13850
13877
|
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
13851
13878
|
type MixedBagWeight = '0' | '1' | '2';
|
|
13852
13879
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
13880
|
+
type NiallItemType = 'physical' | 'digital';
|
|
13853
13881
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
13882
|
+
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
13854
13883
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
13855
13884
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
13856
13885
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
@@ -13873,12 +13902,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13873
13902
|
type OrganizationRestrictionReviewType = 'all_pending' | 'pending_verification';
|
|
13874
13903
|
type OrganizationRestrictionRiskLevel = '5' | '15';
|
|
13875
13904
|
type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
|
|
13905
|
+
type OrganizationSource = 'shopify' | 'enterprise';
|
|
13876
13906
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
13877
13907
|
type Owner = 'flow' | 'organization';
|
|
13878
13908
|
type PaymentShortUrlDiscriminator = 'adyen_3ds2';
|
|
13879
13909
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
13880
13910
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
13881
13911
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
13912
|
+
type PrateekItemType = 'physical' | 'digital';
|
|
13882
13913
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
13883
13914
|
type PriceSelector = 'minimum' | 'maximum';
|
|
13884
13915
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
@@ -13905,6 +13936,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13905
13936
|
type ResponsibleParty = 'flow' | 'organization';
|
|
13906
13937
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
13907
13938
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
13939
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
|
|
13940
|
+
type RestrictionOrganizationSource = 'shopify' | 'enterprise';
|
|
13941
|
+
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
13942
|
+
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
13908
13943
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
13909
13944
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
13910
13945
|
type RiskCheck = 'three_d_secure';
|
|
@@ -15106,6 +15141,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15106
15141
|
readonly 'duty': io.flow.common.v0.models.Price;
|
|
15107
15142
|
readonly 'trueup': io.flow.common.v0.models.Price;
|
|
15108
15143
|
readonly 'carrier_charge': io.flow.common.v0.models.Price;
|
|
15144
|
+
readonly 'duty_refund': io.flow.common.v0.models.Price;
|
|
15145
|
+
readonly 'ge_revenue_share': io.flow.common.v0.models.Price;
|
|
15146
|
+
readonly 'non_l4l_tax_duty_fx': io.flow.common.v0.models.Price;
|
|
15109
15147
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
15110
15148
|
readonly 'tax_refund': io.flow.common.v0.models.Price;
|
|
15111
15149
|
}
|
|
@@ -17335,10 +17373,40 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17335
17373
|
readonly 'passphrase_ids': string[];
|
|
17336
17374
|
}
|
|
17337
17375
|
|
|
17376
|
+
interface EnrichedLineItemForm {
|
|
17377
|
+
readonly 'form': io.flow.common.v0.models.LineItemForm;
|
|
17378
|
+
readonly 'customs_product_name'?: string;
|
|
17379
|
+
readonly 'tariff_code'?: string;
|
|
17380
|
+
readonly 'customs_description'?: string;
|
|
17381
|
+
readonly 'hs_description'?: string;
|
|
17382
|
+
readonly 'country_of_origin': string;
|
|
17383
|
+
readonly 'price_composition_rate': number;
|
|
17384
|
+
readonly 'duty_composition_rate': number;
|
|
17385
|
+
readonly 'export_control_classification_number': string;
|
|
17386
|
+
readonly 'sub_item_number'?: string;
|
|
17387
|
+
readonly 'item_type'?: string;
|
|
17388
|
+
readonly 'material'?: string;
|
|
17389
|
+
readonly 'construction'?: string;
|
|
17390
|
+
readonly 'gender'?: string;
|
|
17391
|
+
}
|
|
17392
|
+
|
|
17393
|
+
interface EnrichedShippingLabelPackage {
|
|
17394
|
+
readonly 'dimensions': io.flow.common.v0.models.Dimension;
|
|
17395
|
+
readonly 'items': io.flow.internal.v0.models.EnrichedLineItemForm[];
|
|
17396
|
+
readonly 'reference_number'?: string;
|
|
17397
|
+
}
|
|
17398
|
+
|
|
17338
17399
|
interface EntityReference {
|
|
17339
17400
|
readonly 'id': string;
|
|
17340
17401
|
}
|
|
17341
17402
|
|
|
17403
|
+
interface EntityReferenceNumber {
|
|
17404
|
+
readonly 'short_name': string;
|
|
17405
|
+
readonly 'number': string;
|
|
17406
|
+
readonly 'issuing_country'?: io.flow.reference.v0.models.Country;
|
|
17407
|
+
readonly 'display_name'?: string;
|
|
17408
|
+
}
|
|
17409
|
+
|
|
17342
17410
|
interface ErpFlowFile {
|
|
17343
17411
|
readonly 'id': string;
|
|
17344
17412
|
readonly 'type': io.flow.internal.v0.enums.ErpFileType;
|
|
@@ -18845,6 +18913,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18845
18913
|
readonly 'fiserv_authentication_data': io.flow.internal.v0.models.FiservAuthenticationDataReference;
|
|
18846
18914
|
}
|
|
18847
18915
|
|
|
18916
|
+
interface InternalItem {
|
|
18917
|
+
readonly 'id': string;
|
|
18918
|
+
readonly 'organization': string;
|
|
18919
|
+
readonly 'catalog': string;
|
|
18920
|
+
readonly 'name': string;
|
|
18921
|
+
readonly 'number': string;
|
|
18922
|
+
readonly 'currency': string;
|
|
18923
|
+
readonly 'price': number;
|
|
18924
|
+
readonly 'categories': string[];
|
|
18925
|
+
readonly 'attributes': Record<string, string>;
|
|
18926
|
+
readonly 'sku'?: string;
|
|
18927
|
+
readonly 'barcode'?: string;
|
|
18928
|
+
}
|
|
18929
|
+
|
|
18848
18930
|
interface InternalItemForm {
|
|
18849
18931
|
readonly 'id': string;
|
|
18850
18932
|
readonly 'item_form': io.flow.catalog.v0.models.ItemForm;
|
|
@@ -18908,6 +18990,78 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18908
18990
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
18909
18991
|
}
|
|
18910
18992
|
|
|
18993
|
+
interface InvoiceData {
|
|
18994
|
+
readonly 'organization_id': string;
|
|
18995
|
+
readonly 'order_number': string;
|
|
18996
|
+
readonly 'invoice_reference': string;
|
|
18997
|
+
readonly 'signature_url': string;
|
|
18998
|
+
readonly 'signature_date': string;
|
|
18999
|
+
readonly 'signature_name': string;
|
|
19000
|
+
readonly 'line_items': io.flow.internal.v0.models.InvoiceDataLineItem[];
|
|
19001
|
+
readonly 'currency': io.flow.reference.v0.models.Currency;
|
|
19002
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
19003
|
+
readonly 'delivered_duty_text': string;
|
|
19004
|
+
readonly 'transaction_date': string;
|
|
19005
|
+
readonly 'origin': io.flow.internal.v0.models.ValidatedAddress;
|
|
19006
|
+
readonly 'destination': io.flow.internal.v0.models.ValidatedAddress;
|
|
19007
|
+
readonly 'billing_address'?: io.flow.internal.v0.models.ValidatedAddress;
|
|
19008
|
+
readonly 'service': io.flow.reference.v0.models.CarrierService;
|
|
19009
|
+
readonly 'flow_tracking_number': string;
|
|
19010
|
+
readonly 'rex_number'?: string;
|
|
19011
|
+
readonly 'weee_number'?: string;
|
|
19012
|
+
readonly 'business_gst_numbers': io.flow.internal.v0.models.EntityReferenceNumber[];
|
|
19013
|
+
readonly 'destination_identification_numbers'?: io.flow.internal.v0.models.EntityReferenceNumber[];
|
|
19014
|
+
readonly 'vat_name': string;
|
|
19015
|
+
readonly 'item_identifier_column_name': string;
|
|
19016
|
+
readonly 'feature_show_merchant_id': boolean;
|
|
19017
|
+
readonly 'shipping_pricing': io.flow.internal.v0.models.ShippingPricing;
|
|
19018
|
+
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
19019
|
+
readonly 'eu_preferential_origin'?: string;
|
|
19020
|
+
readonly 'customs_master_file_number'?: string;
|
|
19021
|
+
readonly 'merchant_of_record_entity'?: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
19022
|
+
readonly 'weight_measured'?: string;
|
|
19023
|
+
readonly 'notes_export_declaration'?: string;
|
|
19024
|
+
readonly 'notes_import_duty_taxes_due'?: string;
|
|
19025
|
+
readonly 'invoice_id': string;
|
|
19026
|
+
readonly 'invoice_date': string;
|
|
19027
|
+
readonly 'invoice_number'?: string;
|
|
19028
|
+
readonly 'invoice_version': io.flow.internal.v0.enums.CommercialInvoiceVersion;
|
|
19029
|
+
readonly 'shipping_price': number;
|
|
19030
|
+
readonly 'goods_value': number;
|
|
19031
|
+
readonly 'total_taxes': number;
|
|
19032
|
+
readonly 'total_duties': number;
|
|
19033
|
+
readonly 'customs_value': number;
|
|
19034
|
+
readonly 'total_value': number;
|
|
19035
|
+
readonly 'usa_exporter_identifier_number_if_value_over_threshold'?: string;
|
|
19036
|
+
readonly 'feature_israel_notes_import_duty_and_taxes_due': boolean;
|
|
19037
|
+
readonly 'feature_new_export_declaration': boolean;
|
|
19038
|
+
}
|
|
19039
|
+
|
|
19040
|
+
interface InvoiceDataLineItem {
|
|
19041
|
+
readonly 'i': number;
|
|
19042
|
+
readonly 'number': string;
|
|
19043
|
+
readonly 'quantity': number;
|
|
19044
|
+
readonly 'description': string;
|
|
19045
|
+
readonly 'tariff_code': string;
|
|
19046
|
+
readonly 'country_of_origin': string;
|
|
19047
|
+
readonly 'display_country_of_origin': string;
|
|
19048
|
+
readonly 'gst_paid': boolean;
|
|
19049
|
+
readonly 'gst_paid_text': string;
|
|
19050
|
+
readonly 'unit_price': number;
|
|
19051
|
+
readonly 'vat_price': number;
|
|
19052
|
+
readonly 'duty_price': number;
|
|
19053
|
+
readonly 'discount_price': number;
|
|
19054
|
+
readonly 'total_price': number;
|
|
19055
|
+
readonly 'export_control_classification_number': string;
|
|
19056
|
+
readonly 'manufacturer_id'?: string;
|
|
19057
|
+
readonly 'display_number': string;
|
|
19058
|
+
readonly 'item_type'?: string;
|
|
19059
|
+
readonly 'construction'?: string;
|
|
19060
|
+
readonly 'gender'?: string;
|
|
19061
|
+
readonly 'material'?: string;
|
|
19062
|
+
readonly 'url'?: string;
|
|
19063
|
+
}
|
|
19064
|
+
|
|
18911
19065
|
interface InvoiceInfoForm {
|
|
18912
19066
|
readonly 'invoice_number': string;
|
|
18913
19067
|
readonly 'invoice_date': string;
|
|
@@ -19027,6 +19181,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19027
19181
|
readonly 'duty_composition_rate': number;
|
|
19028
19182
|
readonly 'export_control_classification_number'?: string;
|
|
19029
19183
|
readonly 'labels'?: io.flow.internal.v0.models.CustomsProductLabels;
|
|
19184
|
+
readonly 'applicable_preferential_rate'?: io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
19030
19185
|
}
|
|
19031
19186
|
|
|
19032
19187
|
interface ItemDimensionEstimate {
|
|
@@ -20122,6 +20277,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20122
20277
|
readonly 'conditions'?: string;
|
|
20123
20278
|
}
|
|
20124
20279
|
|
|
20280
|
+
interface NiallItem {
|
|
20281
|
+
readonly 'id': string;
|
|
20282
|
+
readonly 'number': string;
|
|
20283
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20284
|
+
readonly 'description'?: string;
|
|
20285
|
+
readonly 'type': io.flow.internal.v0.enums.NiallItemType;
|
|
20286
|
+
readonly 'added_on': string;
|
|
20287
|
+
}
|
|
20288
|
+
|
|
20289
|
+
interface NiallItemForm {
|
|
20290
|
+
readonly 'number': string;
|
|
20291
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20292
|
+
readonly 'description'?: string;
|
|
20293
|
+
readonly 'type': io.flow.internal.v0.enums.NiallItemType;
|
|
20294
|
+
readonly 'added_on': string;
|
|
20295
|
+
}
|
|
20296
|
+
|
|
20125
20297
|
interface NoCalculatedTaxAmount {
|
|
20126
20298
|
readonly 'discriminator': 'no_calculated_tax_amount';
|
|
20127
20299
|
readonly 'amount': number;
|
|
@@ -21731,6 +21903,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21731
21903
|
readonly 'rate': number;
|
|
21732
21904
|
}
|
|
21733
21905
|
|
|
21906
|
+
interface PrateekItem {
|
|
21907
|
+
readonly 'id': string;
|
|
21908
|
+
readonly 'number': string;
|
|
21909
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
21910
|
+
readonly 'description'?: string;
|
|
21911
|
+
readonly 'type': io.flow.internal.v0.enums.PrateekItemType;
|
|
21912
|
+
readonly 'added_on': string;
|
|
21913
|
+
}
|
|
21914
|
+
|
|
21915
|
+
interface PrateekItemForm {
|
|
21916
|
+
readonly 'number': string;
|
|
21917
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
21918
|
+
readonly 'description'?: string;
|
|
21919
|
+
readonly 'type': io.flow.internal.v0.enums.PrateekItemType;
|
|
21920
|
+
readonly 'added_on': string;
|
|
21921
|
+
}
|
|
21922
|
+
|
|
21734
21923
|
interface Prediction {
|
|
21735
21924
|
readonly 'main_material': string;
|
|
21736
21925
|
readonly 'gender': string;
|
|
@@ -21937,11 +22126,55 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21937
22126
|
readonly 'product_restriction_rule_decision': io.flow.internal.v0.models.ProductRestrictionRuleDecision;
|
|
21938
22127
|
}
|
|
21939
22128
|
|
|
22129
|
+
interface ProductRestrictionState {
|
|
22130
|
+
readonly 'id': string;
|
|
22131
|
+
readonly 'organization_id': string;
|
|
22132
|
+
readonly 'product_number': string;
|
|
22133
|
+
readonly 'review_status': io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
22134
|
+
readonly 'pending_restriction_count'?: number;
|
|
22135
|
+
readonly 'pending_verification_count'?: number;
|
|
22136
|
+
readonly 'oldest_pending_restriction_date'?: string;
|
|
22137
|
+
readonly 'oldest_pending_verification_date'?: string;
|
|
22138
|
+
}
|
|
22139
|
+
|
|
22140
|
+
interface ProductRestrictionStateDeleted {
|
|
22141
|
+
readonly 'discriminator': 'product_restriction_state_deleted';
|
|
22142
|
+
readonly 'event_id': string;
|
|
22143
|
+
readonly 'timestamp': string;
|
|
22144
|
+
readonly 'organization': string;
|
|
22145
|
+
readonly 'product_restriction_state': io.flow.internal.v0.models.ProductRestrictionState;
|
|
22146
|
+
}
|
|
22147
|
+
|
|
22148
|
+
interface ProductRestrictionStateInserted {
|
|
22149
|
+
readonly 'discriminator': 'product_restriction_state_inserted';
|
|
22150
|
+
readonly 'event_id': string;
|
|
22151
|
+
readonly 'timestamp': string;
|
|
22152
|
+
readonly 'organization': string;
|
|
22153
|
+
readonly 'product_restriction_state': io.flow.internal.v0.models.ProductRestrictionState;
|
|
22154
|
+
}
|
|
22155
|
+
|
|
22156
|
+
interface ProductRestrictionStateUpdated {
|
|
22157
|
+
readonly 'discriminator': 'product_restriction_state_updated';
|
|
22158
|
+
readonly 'event_id': string;
|
|
22159
|
+
readonly 'timestamp': string;
|
|
22160
|
+
readonly 'organization': string;
|
|
22161
|
+
readonly 'previous_product_restriction_state': io.flow.internal.v0.models.ProductRestrictionState;
|
|
22162
|
+
readonly 'product_restriction_state': io.flow.internal.v0.models.ProductRestrictionState;
|
|
22163
|
+
}
|
|
22164
|
+
|
|
21940
22165
|
interface ProductReviewHistory {
|
|
21941
22166
|
readonly 'product_id': string;
|
|
21942
22167
|
readonly 'reviews': io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
21943
22168
|
}
|
|
21944
22169
|
|
|
22170
|
+
interface ProductSellabilityResult {
|
|
22171
|
+
readonly 'shop_id': string;
|
|
22172
|
+
readonly 'product_number': string;
|
|
22173
|
+
readonly 'request_id': string;
|
|
22174
|
+
readonly 'hs6_code': string;
|
|
22175
|
+
readonly 'restricted_regions': string[];
|
|
22176
|
+
}
|
|
22177
|
+
|
|
21945
22178
|
interface ProductTransaction {
|
|
21946
22179
|
readonly 'transaction_amount': number;
|
|
21947
22180
|
readonly 'destination_amount': number;
|
|
@@ -22642,6 +22875,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22642
22875
|
readonly 'tax_inclusive'?: boolean;
|
|
22643
22876
|
readonly 'duty_inclusive'?: boolean;
|
|
22644
22877
|
readonly 'manual_payment'?: boolean;
|
|
22878
|
+
readonly 'manual_capture'?: boolean;
|
|
22645
22879
|
readonly 'partial_fulfillment'?: boolean;
|
|
22646
22880
|
readonly 'partial_refund'?: boolean;
|
|
22647
22881
|
}
|
|
@@ -22926,6 +23160,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22926
23160
|
readonly 'restriction_organization_status': io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
22927
23161
|
}
|
|
22928
23162
|
|
|
23163
|
+
interface RestrictionOrganizationSummary {
|
|
23164
|
+
readonly 'id': string;
|
|
23165
|
+
readonly 'name': string;
|
|
23166
|
+
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
23167
|
+
readonly 'source': io.flow.internal.v0.enums.OrganizationSource;
|
|
23168
|
+
}
|
|
23169
|
+
|
|
22929
23170
|
interface RestrictionPending {
|
|
22930
23171
|
readonly 'rule': io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
22931
23172
|
readonly 'count': number;
|
|
@@ -22982,6 +23223,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22982
23223
|
readonly 'negative_keywords': string[];
|
|
22983
23224
|
readonly 'value_threshold_usd'?: number;
|
|
22984
23225
|
readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
23226
|
+
readonly 'source': io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
22985
23227
|
}
|
|
22986
23228
|
|
|
22987
23229
|
interface RestrictionRuleDecisionForm {
|
|
@@ -23035,6 +23277,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23035
23277
|
readonly 'negative_keywords': string[];
|
|
23036
23278
|
readonly 'value_threshold_usd'?: number;
|
|
23037
23279
|
readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
23280
|
+
readonly 'source'?: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
23038
23281
|
}
|
|
23039
23282
|
|
|
23040
23283
|
interface RestrictionRuleMetadata {
|
|
@@ -23395,6 +23638,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23395
23638
|
readonly 'customer_id': string;
|
|
23396
23639
|
}
|
|
23397
23640
|
|
|
23641
|
+
interface ShipmentCostSummary {
|
|
23642
|
+
readonly 'lane_id'?: string;
|
|
23643
|
+
readonly 'ratecard_id'?: string;
|
|
23644
|
+
readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
23645
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
23646
|
+
readonly 'glbe_proposition_name'?: string;
|
|
23647
|
+
readonly 'weight_break'?: number;
|
|
23648
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
23649
|
+
readonly 'rate_level_key'?: string;
|
|
23650
|
+
readonly 'cost_estimate_source': io.flow.label.v0.enums.CostEstimateSource;
|
|
23651
|
+
readonly 'cost': io.flow.common.v0.models.Money;
|
|
23652
|
+
}
|
|
23653
|
+
|
|
23398
23654
|
interface ShippingLane {
|
|
23399
23655
|
readonly 'origin': string;
|
|
23400
23656
|
readonly 'destination': string;
|
|
@@ -23404,6 +23660,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23404
23660
|
readonly 'id': string;
|
|
23405
23661
|
}
|
|
23406
23662
|
|
|
23663
|
+
interface ShippingPricing {
|
|
23664
|
+
readonly 'freight_cost': number;
|
|
23665
|
+
readonly 'customer_price': number;
|
|
23666
|
+
}
|
|
23667
|
+
|
|
23407
23668
|
interface Shop {
|
|
23408
23669
|
readonly 'id': string;
|
|
23409
23670
|
readonly 'organization'?: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -24000,6 +24261,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24000
24261
|
readonly 'attributes': io.flow.internal.v0.models.ShopifyOrderLineAttribute[];
|
|
24001
24262
|
}
|
|
24002
24263
|
|
|
24264
|
+
interface ShopifyOrderRiskAssessment {
|
|
24265
|
+
readonly 'id': string;
|
|
24266
|
+
readonly 'risk_level': string;
|
|
24267
|
+
readonly 'assessment_created_at': string;
|
|
24268
|
+
}
|
|
24269
|
+
|
|
24270
|
+
interface ShopifyOrderRiskAssessmentDeleted {
|
|
24271
|
+
readonly 'discriminator': 'shopify_order_risk_assessment_deleted';
|
|
24272
|
+
readonly 'event_id': string;
|
|
24273
|
+
readonly 'timestamp': string;
|
|
24274
|
+
readonly 'organization': string;
|
|
24275
|
+
readonly 'id': string;
|
|
24276
|
+
}
|
|
24277
|
+
|
|
24278
|
+
interface ShopifyOrderRiskAssessmentUpserted {
|
|
24279
|
+
readonly 'discriminator': 'shopify_order_risk_assessment_upserted';
|
|
24280
|
+
readonly 'event_id': string;
|
|
24281
|
+
readonly 'timestamp': string;
|
|
24282
|
+
readonly 'organization': string;
|
|
24283
|
+
readonly 'assessment': io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
24284
|
+
}
|
|
24285
|
+
|
|
24003
24286
|
interface ShopifyOrganizationSettings {
|
|
24004
24287
|
readonly 'id': string;
|
|
24005
24288
|
readonly 'process_label': boolean;
|
|
@@ -24431,26 +24714,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24431
24714
|
readonly 'spot_rate': io.flow.internal.v0.models.SpotRate;
|
|
24432
24715
|
}
|
|
24433
24716
|
|
|
24434
|
-
interface SppTrackerUpdateRequest {
|
|
24435
|
-
readonly 'id': string;
|
|
24436
|
-
readonly 'tracking_subscription': io.flow.internal.v0.models.TrackingSubscription;
|
|
24437
|
-
readonly 'created_at': string;
|
|
24438
|
-
}
|
|
24439
|
-
|
|
24440
|
-
interface SppTrackerUpdateRequestDeleted {
|
|
24441
|
-
readonly 'discriminator': 'spp_tracker_update_request_deleted';
|
|
24442
|
-
readonly 'event_id': string;
|
|
24443
|
-
readonly 'timestamp': string;
|
|
24444
|
-
readonly 'id': string;
|
|
24445
|
-
}
|
|
24446
|
-
|
|
24447
|
-
interface SppTrackerUpdateRequestUpserted {
|
|
24448
|
-
readonly 'discriminator': 'spp_tracker_update_request_upserted';
|
|
24449
|
-
readonly 'event_id': string;
|
|
24450
|
-
readonly 'timestamp': string;
|
|
24451
|
-
readonly 'spp_tracker_update_request': io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
24452
|
-
}
|
|
24453
|
-
|
|
24454
24717
|
interface StandaloneAttachment {
|
|
24455
24718
|
readonly 'id': string;
|
|
24456
24719
|
readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -24613,8 +24876,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24613
24876
|
readonly 'payment_method_type'?: string;
|
|
24614
24877
|
readonly 'card_brand'?: string;
|
|
24615
24878
|
readonly 'statement_descriptor'?: string;
|
|
24616
|
-
readonly '
|
|
24617
|
-
readonly 'transfer_metadata'?: any/*object*/;
|
|
24879
|
+
readonly 'metadata'?: io.flow.internal.v0.unions.StripeConnectReportRecordMetadata;
|
|
24618
24880
|
}
|
|
24619
24881
|
|
|
24620
24882
|
interface StripeConnectReportRecordDeleted {
|
|
@@ -24625,20 +24887,40 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24625
24887
|
}
|
|
24626
24888
|
|
|
24627
24889
|
interface StripeConnectReportRecordPaymentMetadata {
|
|
24890
|
+
readonly 'discriminator': 'stripe_connect_report_record_payment_metadata';
|
|
24628
24891
|
readonly 'shop_id'?: number;
|
|
24629
24892
|
readonly 'shop_plan'?: io.flow.internal.v0.enums.ShopifyPlanType;
|
|
24630
24893
|
readonly 'checkout_id'?: string;
|
|
24631
24894
|
readonly 'order_id'?: number;
|
|
24632
24895
|
readonly 'order_transaction_id'?: number;
|
|
24633
|
-
readonly 'transfer_type'?: io.flow.internal.v0.enums.
|
|
24896
|
+
readonly 'transfer_type'?: io.flow.internal.v0.enums.ConnectReportPaymentTransferType;
|
|
24634
24897
|
readonly 'transfer_exchange_rate'?: number;
|
|
24635
24898
|
readonly 'charge_total'?: number;
|
|
24636
24899
|
readonly 'charge_currency'?: string;
|
|
24637
24900
|
readonly 'charge_exchange_rate'?: number;
|
|
24901
|
+
readonly 'refund_exchange_rate'?: number;
|
|
24638
24902
|
readonly 'duties'?: number;
|
|
24639
24903
|
readonly 'import_taxes'?: number;
|
|
24640
|
-
readonly '
|
|
24641
|
-
readonly '
|
|
24904
|
+
readonly 'mor_fees'?: number;
|
|
24905
|
+
readonly 'mor_foreign_exchange_fees'?: number;
|
|
24906
|
+
}
|
|
24907
|
+
|
|
24908
|
+
interface StripeConnectReportRecordTransferMetadata {
|
|
24909
|
+
readonly 'discriminator': 'stripe_connect_report_record_transfer_metadata';
|
|
24910
|
+
readonly 'shop_id'?: number;
|
|
24911
|
+
readonly 'order_id'?: number;
|
|
24912
|
+
readonly 'order_transaction_id'?: number;
|
|
24913
|
+
readonly 'transfer_type'?: io.flow.internal.v0.enums.ConnectReportTransferTransferType;
|
|
24914
|
+
readonly 'charge_total'?: number;
|
|
24915
|
+
readonly 'charge_currency'?: string;
|
|
24916
|
+
readonly 'charge_exchange_rate'?: number;
|
|
24917
|
+
readonly 'duties'?: number;
|
|
24918
|
+
readonly 'import_taxes'?: number;
|
|
24919
|
+
readonly 'mor_fees'?: number;
|
|
24920
|
+
readonly 'mor_foreign_exchange_fees'?: number;
|
|
24921
|
+
readonly 'merchant_account_currency'?: string;
|
|
24922
|
+
readonly 'amount_in_merchant_account_currency'?: number;
|
|
24923
|
+
readonly 'payout_exchange_rate'?: number;
|
|
24642
24924
|
}
|
|
24643
24925
|
|
|
24644
24926
|
interface StripeConnectReportRecordUpserted {
|
|
@@ -25612,6 +25894,53 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25612
25894
|
readonly 'customer_bundle'?: io.flow.customer.v0.models.CustomerBundle;
|
|
25613
25895
|
}
|
|
25614
25896
|
|
|
25897
|
+
interface ValidatedAddress {
|
|
25898
|
+
readonly 'company_name': string;
|
|
25899
|
+
readonly 'person_name': string;
|
|
25900
|
+
readonly 'phone': string;
|
|
25901
|
+
readonly 'email': string;
|
|
25902
|
+
readonly 'original_streets': string[];
|
|
25903
|
+
readonly 'city': string;
|
|
25904
|
+
readonly 'province': string;
|
|
25905
|
+
readonly 'postal': string;
|
|
25906
|
+
readonly 'country': io.flow.reference.v0.models.Country;
|
|
25907
|
+
readonly 'original_address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
25908
|
+
}
|
|
25909
|
+
|
|
25910
|
+
interface ValidatedShippingData {
|
|
25911
|
+
readonly 'organization': string;
|
|
25912
|
+
readonly 'reference_id'?: string;
|
|
25913
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
25914
|
+
readonly 'merchant_of_record_entity'?: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
25915
|
+
readonly 'destination': io.flow.internal.v0.models.ValidatedAddress;
|
|
25916
|
+
readonly 'origin': io.flow.internal.v0.models.ValidatedAddress;
|
|
25917
|
+
readonly 'service': io.flow.reference.v0.models.CarrierService;
|
|
25918
|
+
readonly 'package': io.flow.internal.v0.models.EnrichedShippingLabelPackage;
|
|
25919
|
+
readonly 'total_catalog_item_value': io.flow.common.v0.models.Money;
|
|
25920
|
+
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
25921
|
+
readonly 'distance_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
25922
|
+
readonly 'flow_tracking_number': string;
|
|
25923
|
+
readonly 'center'?: io.flow.fulfillment.v0.models.Center;
|
|
25924
|
+
readonly 'catalog_items': io.flow.internal.v0.models.InternalItem[];
|
|
25925
|
+
readonly 'order': io.flow.experience.v0.models.Order;
|
|
25926
|
+
readonly 'window': io.flow.common.v0.models.DatetimeRange;
|
|
25927
|
+
readonly 'id': string;
|
|
25928
|
+
readonly 'shipment_recipient': io.flow.label.v0.enums.ShipmentRecipient;
|
|
25929
|
+
readonly 'request_id': string;
|
|
25930
|
+
readonly 'commercial_invoice_data'?: io.flow.internal.v0.models.InvoiceData;
|
|
25931
|
+
readonly 'order_identifier'?: string;
|
|
25932
|
+
readonly 'fulfillment_key'?: string;
|
|
25933
|
+
readonly 'rex_number'?: string;
|
|
25934
|
+
readonly 'weee_number'?: string;
|
|
25935
|
+
readonly 'generate_commercial_invoice_only': boolean;
|
|
25936
|
+
readonly 'liability_remittance_plan'?: io.flow.internal.v0.models.LiabilityRemittancePlan;
|
|
25937
|
+
readonly 'shipment_cost_summary'?: io.flow.internal.v0.models.ShipmentCostSummary;
|
|
25938
|
+
readonly 'shipping_label_hop_cost_itemized_estimate'?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
25939
|
+
readonly 'additional_services_requested'?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
25940
|
+
readonly 'provided_charges'?: io.flow.internal.v0.models.ChargeInput[];
|
|
25941
|
+
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
25942
|
+
}
|
|
25943
|
+
|
|
25615
25944
|
interface ValidationCharacterLength {
|
|
25616
25945
|
readonly 'discriminator': 'validation_character_length';
|
|
25617
25946
|
readonly 'min'?: number;
|
|
@@ -25694,7 +26023,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25694
26023
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25695
26024
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25696
26025
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25697
|
-
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.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | 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.CustomerPurgeUpserted | 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.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | 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.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | 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.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.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | 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.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.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);
|
|
26026
|
+
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.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | 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.CustomerPurgeUpserted | 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.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | 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.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | 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.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.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);
|
|
25698
26027
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25699
26028
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25700
26029
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -25739,6 +26068,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25739
26068
|
type ShopifyPromotionPrerequisite = (io.flow.internal.v0.models.ShopifyPromotionItemPrerequisite | io.flow.internal.v0.models.ShopifyPromotionOrderPrerequisite);
|
|
25740
26069
|
type SimplifiedClassificationTaxonomy = (io.flow.internal.v0.models.SimplifiedTaxonomyCategory | io.flow.internal.v0.models.SimplifiedItemLabel);
|
|
25741
26070
|
type SpotRateMetadata = (io.flow.internal.v0.models.SpotRateMetadataIdentity | io.flow.internal.v0.models.SpotRateMetadataRate);
|
|
26071
|
+
type StripeConnectReportRecordMetadata = (io.flow.internal.v0.models.StripeConnectReportRecordPaymentMetadata | io.flow.internal.v0.models.StripeConnectReportRecordTransferMetadata);
|
|
25742
26072
|
type TariffEligibilityData = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData);
|
|
25743
26073
|
type TariffEligibilityForm = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm);
|
|
25744
26074
|
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);
|
|
@@ -25760,6 +26090,7 @@ export const aldoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AldoI
|
|
|
25760
26090
|
export const anshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnshItemType>;
|
|
25761
26091
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
25762
26092
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
26093
|
+
export const applicablePreferentialRate: PropTypes.Requireable<io.flow.internal.v0.enums.ApplicablePreferentialRate>;
|
|
25763
26094
|
export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
|
|
25764
26095
|
export const bankAccountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BankAccountStatus>;
|
|
25765
26096
|
export const bankPaymentPromiseCompletedMethod: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod>;
|
|
@@ -25799,9 +26130,11 @@ export const classificationErrorCode: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
25799
26130
|
export const classificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationPlatform>;
|
|
25800
26131
|
export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationType>;
|
|
25801
26132
|
export const clothingAgeClassification: PropTypes.Requireable<io.flow.internal.v0.enums.ClothingAgeClassification>;
|
|
26133
|
+
export const commercialInvoiceVersion: PropTypes.Requireable<io.flow.internal.v0.enums.CommercialInvoiceVersion>;
|
|
25802
26134
|
export const company: PropTypes.Requireable<io.flow.internal.v0.enums.Company>;
|
|
25803
26135
|
export const complianceType: PropTypes.Requireable<io.flow.internal.v0.enums.ComplianceType>;
|
|
25804
|
-
export const
|
|
26136
|
+
export const connectReportPaymentTransferType: PropTypes.Requireable<io.flow.internal.v0.enums.ConnectReportPaymentTransferType>;
|
|
26137
|
+
export const connectReportTransferTransferType: PropTypes.Requireable<io.flow.internal.v0.enums.ConnectReportTransferTransferType>;
|
|
25805
26138
|
export const contentElementType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentElementType>;
|
|
25806
26139
|
export const contentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ContentStatus>;
|
|
25807
26140
|
export const contentType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentType>;
|
|
@@ -25849,6 +26182,7 @@ export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enum
|
|
|
25849
26182
|
export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.FraudReviewResponsibleParty>;
|
|
25850
26183
|
export const ftpIntent: PropTypes.Requireable<io.flow.internal.v0.enums.FtpIntent>;
|
|
25851
26184
|
export const ftpProtocol: PropTypes.Requireable<io.flow.internal.v0.enums.FtpProtocol>;
|
|
26185
|
+
export const geIngestionFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.GeIngestionFileStatus>;
|
|
25852
26186
|
export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
|
|
25853
26187
|
export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
|
|
25854
26188
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
@@ -25878,7 +26212,9 @@ export const merchantOfRecord: PropTypes.Requireable<io.flow.internal.v0.enums.M
|
|
|
25878
26212
|
export const merchantOverrideStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MerchantOverrideStatus>;
|
|
25879
26213
|
export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
|
|
25880
26214
|
export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
|
|
26215
|
+
export const niallItemType: PropTypes.Requireable<io.flow.internal.v0.enums.NiallItemType>;
|
|
25881
26216
|
export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
|
|
26217
|
+
export const nonL4LTaxDutyFxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.NonL4LTaxDutyFxTransactionType>;
|
|
25882
26218
|
export const onboardingAuditMessageLevel: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAuditMessageLevel>;
|
|
25883
26219
|
export const onboardingAuditResult: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAuditResult>;
|
|
25884
26220
|
export const onboardingAuditThemeKey: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAuditThemeKey>;
|
|
@@ -25901,12 +26237,14 @@ export const organizationRestrictionNoteType: PropTypes.Requireable<io.flow.inte
|
|
|
25901
26237
|
export const organizationRestrictionReviewType: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionReviewType>;
|
|
25902
26238
|
export const organizationRestrictionRiskLevel: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionRiskLevel>;
|
|
25903
26239
|
export const organizationRestrictionScreeningStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus>;
|
|
26240
|
+
export const organizationSource: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationSource>;
|
|
25904
26241
|
export const outputStyle: PropTypes.Requireable<io.flow.internal.v0.enums.OutputStyle>;
|
|
25905
26242
|
export const owner: PropTypes.Requireable<io.flow.internal.v0.enums.Owner>;
|
|
25906
26243
|
export const paymentShortUrlDiscriminator: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentShortUrlDiscriminator>;
|
|
25907
26244
|
export const paymentSummaryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryStatus>;
|
|
25908
26245
|
export const paymentSummaryType: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryType>;
|
|
25909
26246
|
export const paymentTerm: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentTerm>;
|
|
26247
|
+
export const prateekItemType: PropTypes.Requireable<io.flow.internal.v0.enums.PrateekItemType>;
|
|
25910
26248
|
export const preferredBillingSchedule: PropTypes.Requireable<io.flow.internal.v0.enums.PreferredBillingSchedule>;
|
|
25911
26249
|
export const priceSelector: PropTypes.Requireable<io.flow.internal.v0.enums.PriceSelector>;
|
|
25912
26250
|
export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessingTransactionType>;
|
|
@@ -25933,6 +26271,10 @@ export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.Re
|
|
|
25933
26271
|
export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
|
|
25934
26272
|
export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
|
|
25935
26273
|
export const restrictionDecision: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionDecision>;
|
|
26274
|
+
export const restrictionOrganizationChannel: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationChannel>;
|
|
26275
|
+
export const restrictionOrganizationSource: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationSource>;
|
|
26276
|
+
export const restrictionRuleExceptionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleExceptionAction>;
|
|
26277
|
+
export const restrictionStateReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStateReviewStatus>;
|
|
25936
26278
|
export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStatus>;
|
|
25937
26279
|
export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueRecordType>;
|
|
25938
26280
|
export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
|
|
@@ -26424,7 +26766,10 @@ export const emailForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailFo
|
|
|
26424
26766
|
export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailModificationForm>;
|
|
26425
26767
|
export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
|
|
26426
26768
|
export const encryption: PropTypes.Requireable<io.flow.internal.v0.models.Encryption>;
|
|
26769
|
+
export const enrichedLineItemForm: PropTypes.Requireable<io.flow.internal.v0.models.EnrichedLineItemForm>;
|
|
26770
|
+
export const enrichedShippingLabelPackage: PropTypes.Requireable<io.flow.internal.v0.models.EnrichedShippingLabelPackage>;
|
|
26427
26771
|
export const entityReference: PropTypes.Requireable<io.flow.internal.v0.models.EntityReference>;
|
|
26772
|
+
export const entityReferenceNumber: PropTypes.Requireable<io.flow.internal.v0.models.EntityReferenceNumber>;
|
|
26428
26773
|
export const erpFlowFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowFile>;
|
|
26429
26774
|
export const erpFlowFileForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowFileForm>;
|
|
26430
26775
|
export const erpFlowVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowVendor>;
|
|
@@ -26611,6 +26956,7 @@ export const internalChannelRateUpserted: PropTypes.Requireable<io.flow.internal
|
|
|
26611
26956
|
export const internalDebugTransaction: PropTypes.Requireable<io.flow.internal.v0.models.InternalDebugTransaction>;
|
|
26612
26957
|
export const internalExclusionRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.InternalExclusionRuleForm>;
|
|
26613
26958
|
export const internalFiservAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalFiservAuthorizationDetails>;
|
|
26959
|
+
export const internalItem: PropTypes.Requireable<io.flow.internal.v0.models.InternalItem>;
|
|
26614
26960
|
export const internalItemForm: PropTypes.Requireable<io.flow.internal.v0.models.InternalItemForm>;
|
|
26615
26961
|
export const internalOrder: PropTypes.Requireable<io.flow.internal.v0.models.InternalOrder>;
|
|
26616
26962
|
export const internalPaymentRequest: PropTypes.Requireable<io.flow.internal.v0.models.InternalPaymentRequest>;
|
|
@@ -26621,6 +26967,8 @@ export const internalTransactionDetailsCard: PropTypes.Requireable<io.flow.inter
|
|
|
26621
26967
|
export const invariant: PropTypes.Requireable<io.flow.internal.v0.models.Invariant>;
|
|
26622
26968
|
export const inventoryItemWrapper: PropTypes.Requireable<io.flow.internal.v0.models.InventoryItemWrapper>;
|
|
26623
26969
|
export const invoice: PropTypes.Requireable<io.flow.internal.v0.models.Invoice>;
|
|
26970
|
+
export const invoiceData: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceData>;
|
|
26971
|
+
export const invoiceDataLineItem: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceDataLineItem>;
|
|
26624
26972
|
export const invoiceInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceInfoForm>;
|
|
26625
26973
|
export const invoiceLine: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLine>;
|
|
26626
26974
|
export const invoiceLineItem: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLineItem>;
|
|
@@ -26775,6 +27123,8 @@ export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26775
27123
|
export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
|
|
26776
27124
|
export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
|
|
26777
27125
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
27126
|
+
export const niallItem: PropTypes.Requireable<io.flow.internal.v0.models.NiallItem>;
|
|
27127
|
+
export const niallItemForm: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemForm>;
|
|
26778
27128
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
26779
27129
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
26780
27130
|
export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
|
|
@@ -26980,6 +27330,8 @@ export const platformFeeFlat: PropTypes.Requireable<io.flow.internal.v0.models.P
|
|
|
26980
27330
|
export const platformFeePause: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePause>;
|
|
26981
27331
|
export const platformFeePercentage: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePercentage>;
|
|
26982
27332
|
export const platformFeePercentageTier: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePercentageTier>;
|
|
27333
|
+
export const prateekItem: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItem>;
|
|
27334
|
+
export const prateekItemForm: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItemForm>;
|
|
26983
27335
|
export const prediction: PropTypes.Requireable<io.flow.internal.v0.models.Prediction>;
|
|
26984
27336
|
export const prioritizedCenterReference: PropTypes.Requireable<io.flow.internal.v0.models.PrioritizedCenterReference>;
|
|
26985
27337
|
export const processingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransaction>;
|
|
@@ -27004,7 +27356,12 @@ export const productRestrictionResultValidationError: PropTypes.Requireable<io.f
|
|
|
27004
27356
|
export const productRestrictionRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecision>;
|
|
27005
27357
|
export const productRestrictionRuleDecisionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted>;
|
|
27006
27358
|
export const productRestrictionRuleDecisionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted>;
|
|
27359
|
+
export const productRestrictionState: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionState>;
|
|
27360
|
+
export const productRestrictionStateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionStateDeleted>;
|
|
27361
|
+
export const productRestrictionStateInserted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionStateInserted>;
|
|
27362
|
+
export const productRestrictionStateUpdated: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionStateUpdated>;
|
|
27007
27363
|
export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
|
|
27364
|
+
export const productSellabilityResult: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityResult>;
|
|
27008
27365
|
export const productTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProductTransaction>;
|
|
27009
27366
|
export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
|
|
27010
27367
|
export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
|
|
@@ -27141,6 +27498,7 @@ export const restrictionOrganizationDecisionSummary: PropTypes.Requireable<io.fl
|
|
|
27141
27498
|
export const restrictionOrganizationStatus: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionOrganizationStatus>;
|
|
27142
27499
|
export const restrictionOrganizationStatusDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted>;
|
|
27143
27500
|
export const restrictionOrganizationStatusUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted>;
|
|
27501
|
+
export const restrictionOrganizationSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionOrganizationSummary>;
|
|
27144
27502
|
export const restrictionPending: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionPending>;
|
|
27145
27503
|
export const restrictionProduct: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProduct>;
|
|
27146
27504
|
export const restrictionProductDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionProductDecisionForm>;
|
|
@@ -27204,8 +27562,10 @@ export const sessionRollout: PropTypes.Requireable<io.flow.internal.v0.models.Se
|
|
|
27204
27562
|
export const sessionRolloutForm: PropTypes.Requireable<io.flow.internal.v0.models.SessionRolloutForm>;
|
|
27205
27563
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
27206
27564
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
27565
|
+
export const shipmentCostSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShipmentCostSummary>;
|
|
27207
27566
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
27208
27567
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
27568
|
+
export const shippingPricing: PropTypes.Requireable<io.flow.internal.v0.models.ShippingPricing>;
|
|
27209
27569
|
export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
|
|
27210
27570
|
export const shopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopForm>;
|
|
27211
27571
|
export const shopVersion: PropTypes.Requireable<io.flow.internal.v0.models.ShopVersion>;
|
|
@@ -27293,6 +27653,9 @@ export const shopifyOrderFulfillmentsSnapshotUpserted: PropTypes.Requireable<io.
|
|
|
27293
27653
|
export const shopifyOrderInventoryCheck: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderInventoryCheck>;
|
|
27294
27654
|
export const shopifyOrderLineAttribute: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderLineAttribute>;
|
|
27295
27655
|
export const shopifyOrderLineContent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderLineContent>;
|
|
27656
|
+
export const shopifyOrderRiskAssessment: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderRiskAssessment>;
|
|
27657
|
+
export const shopifyOrderRiskAssessmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted>;
|
|
27658
|
+
export const shopifyOrderRiskAssessmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted>;
|
|
27296
27659
|
export const shopifyOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrganizationSettings>;
|
|
27297
27660
|
export const shopifyOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrganizationSettingsForm>;
|
|
27298
27661
|
export const shopifyPartnerWebhook: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyPartnerWebhook>;
|
|
@@ -27356,9 +27719,6 @@ export const spotRateMetadataIdentity: PropTypes.Requireable<io.flow.internal.v0
|
|
|
27356
27719
|
export const spotRateMetadataRate: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateMetadataRate>;
|
|
27357
27720
|
export const spotRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateUpserted>;
|
|
27358
27721
|
export const spotRateVersion: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateVersion>;
|
|
27359
|
-
export const sppTrackerUpdateRequest: PropTypes.Requireable<io.flow.internal.v0.models.SppTrackerUpdateRequest>;
|
|
27360
|
-
export const sppTrackerUpdateRequestDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted>;
|
|
27361
|
-
export const sppTrackerUpdateRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted>;
|
|
27362
27722
|
export const standaloneAttachment: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachment>;
|
|
27363
27723
|
export const standaloneAttachmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentDeleted>;
|
|
27364
27724
|
export const standaloneAttachmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentUpserted>;
|
|
@@ -27382,6 +27742,7 @@ export const stripeCaptureUpserted: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
27382
27742
|
export const stripeConnectReportRecord: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecord>;
|
|
27383
27743
|
export const stripeConnectReportRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordDeleted>;
|
|
27384
27744
|
export const stripeConnectReportRecordPaymentMetadata: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordPaymentMetadata>;
|
|
27745
|
+
export const stripeConnectReportRecordTransferMetadata: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordTransferMetadata>;
|
|
27385
27746
|
export const stripeConnectReportRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordUpserted>;
|
|
27386
27747
|
export const stripeDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeDisputeDeleted>;
|
|
27387
27748
|
export const stripeDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeDisputeUpserted>;
|
|
@@ -27506,6 +27867,8 @@ export const userStatusRule: PropTypes.Requireable<io.flow.internal.v0.models.Us
|
|
|
27506
27867
|
export const userStatusRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.UserStatusRuleForm>;
|
|
27507
27868
|
export const userUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.UserUpsertedV2>;
|
|
27508
27869
|
export const v1Checkout: PropTypes.Requireable<io.flow.internal.v0.models.V1Checkout>;
|
|
27870
|
+
export const validatedAddress: PropTypes.Requireable<io.flow.internal.v0.models.ValidatedAddress>;
|
|
27871
|
+
export const validatedShippingData: PropTypes.Requireable<io.flow.internal.v0.models.ValidatedShippingData>;
|
|
27509
27872
|
export const validationCharacterLength: PropTypes.Requireable<io.flow.internal.v0.models.ValidationCharacterLength>;
|
|
27510
27873
|
export const viesResult: PropTypes.Requireable<io.flow.internal.v0.models.ViesResult>;
|
|
27511
27874
|
export const virtualCardTransaction: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardTransaction>;
|
|
@@ -27581,6 +27944,7 @@ export const shopifyPromotionOfferMax: PropTypes.Requireable<io.flow.internal.v0
|
|
|
27581
27944
|
export const shopifyPromotionPrerequisite: PropTypes.Requireable<io.flow.internal.v0.unions.ShopifyPromotionPrerequisite>;
|
|
27582
27945
|
export const simplifiedClassificationTaxonomy: PropTypes.Requireable<io.flow.internal.v0.unions.SimplifiedClassificationTaxonomy>;
|
|
27583
27946
|
export const spotRateMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.SpotRateMetadata>;
|
|
27947
|
+
export const stripeConnectReportRecordMetadata: PropTypes.Requireable<io.flow.internal.v0.unions.StripeConnectReportRecordMetadata>;
|
|
27584
27948
|
export const tariffEligibilityData: PropTypes.Requireable<io.flow.internal.v0.unions.TariffEligibilityData>;
|
|
27585
27949
|
export const tariffEligibilityForm: PropTypes.Requireable<io.flow.internal.v0.unions.TariffEligibilityForm>;
|
|
27586
27950
|
export const taskData: PropTypes.Requireable<io.flow.internal.v0.unions.TaskData>;
|