@flowio/api-internal-constants 4.18.87 → 4.18.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +35 -7
- package/dist/api-internal.js +38 -8
- package/package.json +2 -2
- package/src/api-internal.ts +33 -3
package/dist/api-internal.d.ts
CHANGED
|
@@ -28,6 +28,10 @@ export declare enum AldoItemType {
|
|
|
28
28
|
PHYSICAL = "physical",
|
|
29
29
|
DIGITAL = "digital"
|
|
30
30
|
}
|
|
31
|
+
export declare enum AnshItemType {
|
|
32
|
+
PHYSICAL = "physical",
|
|
33
|
+
DIGITAL = "digital"
|
|
34
|
+
}
|
|
31
35
|
export declare enum AnyDangerousGoods {
|
|
32
36
|
YES = "yes",
|
|
33
37
|
NO = "no",
|
|
@@ -284,8 +288,11 @@ export declare enum BillingTransactionType {
|
|
|
284
288
|
DUTY = "duty",
|
|
285
289
|
TRUEUP = "trueup",
|
|
286
290
|
CARRIER_CHARGE = "carrier_charge",
|
|
291
|
+
ORDER_FX = "order_fx",
|
|
287
292
|
TAX_REFUND = "tax_refund",
|
|
288
|
-
DUTY_REFUND = "duty_refund"
|
|
293
|
+
DUTY_REFUND = "duty_refund",
|
|
294
|
+
GE_REVENUE_SHARE = "ge_revenue_share",
|
|
295
|
+
TAX_DUTY_DELTA = "tax_duty_delta"
|
|
289
296
|
}
|
|
290
297
|
export declare enum BrowserBundleErrorCode {
|
|
291
298
|
GENERIC_ERROR = "generic_error",
|
|
@@ -407,7 +414,8 @@ export declare enum ChargeInputType {
|
|
|
407
414
|
DUTIES_FX_SURCHARGE = "duties_fx_surcharge",
|
|
408
415
|
ELECTRONIC_EXPORT_INFORMATION_SURCHARGE = "electronic_export_information_surcharge",
|
|
409
416
|
ADDITIONAL_HANDLING = "additional_handling",
|
|
410
|
-
LARGE_PACKAGE_SURCHARGE = "large_package_surcharge"
|
|
417
|
+
LARGE_PACKAGE_SURCHARGE = "large_package_surcharge",
|
|
418
|
+
PEAK_SURCHARGE = "peak_surcharge"
|
|
411
419
|
}
|
|
412
420
|
export declare enum ChargebackPaymentStatus {
|
|
413
421
|
CAPTURED = "captured",
|
|
@@ -647,8 +655,6 @@ export declare enum EventType {
|
|
|
647
655
|
ADYEN_REFUND_UPSERTED = "adyen_refund_upserted",
|
|
648
656
|
ADYEN_DISPUTE_UPSERTED = "adyen_dispute_upserted",
|
|
649
657
|
ADYEN_DISPUTE_DELETED = "adyen_dispute_deleted",
|
|
650
|
-
ALDO_ITEM_UPSERTED = "aldo_item_upserted",
|
|
651
|
-
ALDO_ITEM_DELETED = "aldo_item_deleted",
|
|
652
658
|
FULFILLMENT_UPSERTED = "fulfillment_upserted",
|
|
653
659
|
FULFILLMENT_DELETED = "fulfillment_deleted",
|
|
654
660
|
MERCHANT_UPSERTED = "merchant_upserted",
|
|
@@ -813,7 +819,6 @@ export declare enum EventType {
|
|
|
813
819
|
HARMONIZED_ITEMS_HS_6_EXPORT = "harmonized_items_hs6_export",
|
|
814
820
|
UNHARMONIZED_ITEMS_EXPORT = "unharmonized_items_export",
|
|
815
821
|
DUTIED_ITEMS_EXPORT = "dutied_items_export",
|
|
816
|
-
TARIFF_CODES_EXPORT = "tariff_codes_export",
|
|
817
822
|
HARMONIZATION_PHRASE_SUGGESTION_REQUEST_IMPORT = "harmonization_phrase_suggestion_request_import",
|
|
818
823
|
HARMONIZATION_CODES_IMPORT = "harmonization_codes_import",
|
|
819
824
|
ITEM_CLASSIFICATION_CREATED = "item_classification_created",
|
|
@@ -939,6 +944,10 @@ export declare enum EventType {
|
|
|
939
944
|
SCREENING_STATUS_CHANGE_DELETED = "screening_status_change_deleted",
|
|
940
945
|
RESTRICTIONS_DAILYOPS_UPSERTED = "restrictions_dailyops_upserted",
|
|
941
946
|
RESTRICTIONS_DAILYOPS_DELETED = "restrictions_dailyops_deleted",
|
|
947
|
+
RESTRICTION_RULE_UPSERTED = "restriction_rule_upserted",
|
|
948
|
+
RESTRICTION_RULE_DELETED = "restriction_rule_deleted",
|
|
949
|
+
RESTRICTION_RULE_EFFECT_UPSERTED = "restriction_rule_effect_upserted",
|
|
950
|
+
RESTRICTION_RULE_EFFECT_DELETED = "restriction_rule_effect_deleted",
|
|
942
951
|
SHOPIFY_SHOP_UPSERTED = "shopify_shop_upserted",
|
|
943
952
|
SHOPIFY_SHOP_DELETED = "shopify_shop_deleted",
|
|
944
953
|
SHOPIFY_EXPERIENCE_SHORT_ID_UPSERTED = "shopify_experience_short_id_upserted",
|
|
@@ -964,6 +973,18 @@ export declare enum EventType {
|
|
|
964
973
|
SHOPIFY_INCOTERM_SUMMARY_ERROR_PUBLISHED = "shopify_incoterm_summary_error_published",
|
|
965
974
|
SHOPIFY_MARKETS_BEST_SELLING_PRODUCT_UPSERTED = "shopify_markets_best_selling_product_upserted",
|
|
966
975
|
SHOPIFY_MARKETS_BEST_SELLING_PRODUCT_DELETED = "shopify_markets_best_selling_product_deleted",
|
|
976
|
+
SHOPIFY_PRODUCT_CREATE_UPSERTED = "shopify_product_create_upserted",
|
|
977
|
+
SHOPIFY_PRODUCT_CREATE_DELETED = "shopify_product_create_deleted",
|
|
978
|
+
SHOPIFY_PRODUCT_UPDATE_UPSERTED = "shopify_product_update_upserted",
|
|
979
|
+
SHOPIFY_PRODUCT_UPDATE_DELETED = "shopify_product_update_deleted",
|
|
980
|
+
SHOPIFY_PRODUCT_DELETE_UPSERTED = "shopify_product_delete_upserted",
|
|
981
|
+
SHOPIFY_PRODUCT_DELETE_DELETED = "shopify_product_delete_deleted",
|
|
982
|
+
SHOPIFY_INVENTORY_ITEM_CREATE_UPSERTED = "shopify_inventory_item_create_upserted",
|
|
983
|
+
SHOPIFY_INVENTORY_ITEM_CREATE_DELETED = "shopify_inventory_item_create_deleted",
|
|
984
|
+
SHOPIFY_INVENTORY_ITEM_UPDATE_UPSERTED = "shopify_inventory_item_update_upserted",
|
|
985
|
+
SHOPIFY_INVENTORY_ITEM_UPDATE_DELETED = "shopify_inventory_item_update_deleted",
|
|
986
|
+
SHOPIFY_INVENTORY_ITEM_DELETE_UPSERTED = "shopify_inventory_item_delete_upserted",
|
|
987
|
+
SHOPIFY_INVENTORY_ITEM_DELETE_DELETED = "shopify_inventory_item_delete_deleted",
|
|
967
988
|
SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_UPSERTED = "shopify_monitoring_order_monitor_event_upserted",
|
|
968
989
|
SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_DELETED = "shopify_monitoring_order_monitor_event_deleted",
|
|
969
990
|
SHOPIFY_ORDER_FULFILLMENTS_SNAPSHOT_UPSERTED = "shopify_order_fulfillments_snapshot_upserted",
|
|
@@ -1086,7 +1107,8 @@ export declare enum GraphqlServiceTypes {
|
|
|
1086
1107
|
PRODUCT_BUNDLE = "product_bundle",
|
|
1087
1108
|
SHOPIFY_LOCATION = "shopify_location",
|
|
1088
1109
|
SHOPIFY_ORDER = "shopify_order",
|
|
1089
|
-
SYNC_PRODUCT_CATALOG = "sync_product_catalog"
|
|
1110
|
+
SYNC_PRODUCT_CATALOG = "sync_product_catalog",
|
|
1111
|
+
SHOPIFY_WEBHOOK = "shopify_webhook"
|
|
1090
1112
|
}
|
|
1091
1113
|
export declare enum HarmonizationDecisionSource {
|
|
1092
1114
|
HUMAN = "human",
|
|
@@ -1143,6 +1165,11 @@ export declare enum LabelCreationStatus {
|
|
|
1143
1165
|
PENDING = "pending",
|
|
1144
1166
|
CANCELLED = "cancelled"
|
|
1145
1167
|
}
|
|
1168
|
+
export declare enum LabelEventSource {
|
|
1169
|
+
AFTERSHIP = "aftership",
|
|
1170
|
+
CARRIER = "carrier",
|
|
1171
|
+
FLOW = "flow"
|
|
1172
|
+
}
|
|
1146
1173
|
export declare enum LabelRequestErrorHandlingResponsibility {
|
|
1147
1174
|
MERCHANT = "merchant",
|
|
1148
1175
|
MERCHANT_INTEGRATION = "merchant_integration",
|
|
@@ -1719,7 +1746,8 @@ export declare enum ShopifyPromotionStatus {
|
|
|
1719
1746
|
}
|
|
1720
1747
|
export declare enum ShopifyService {
|
|
1721
1748
|
PAYMENT = "payment",
|
|
1722
|
-
DUTY_TAX_CALCULATOR = "duty_tax_calculator"
|
|
1749
|
+
DUTY_TAX_CALCULATOR = "duty_tax_calculator",
|
|
1750
|
+
SELLABILITY = "sellability"
|
|
1723
1751
|
}
|
|
1724
1752
|
export declare enum SimpleRoundingStrategy {
|
|
1725
1753
|
NO_ROUNDING = "no_rounding",
|
package/dist/api-internal.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = exports.TransferMethod = exports.TransactionPostingMethod = exports.TrackingProcessingFailureClassification = exports.TrackingLabelDimensionsSource = exports.TrackingIntegrationType = exports.TaxTransactionType = exports.TaxParty = exports.TaxCalculationErrorCode = exports.TaxAndDutyInclusivitySetting = exports.TaskProcessorKey = exports.TariffEligibilityType = exports.SuggestionAction = exports.SubscriptionFrequency = exports.StatisticType = exports.StatementTransferTransactionLocation = exports.StatementStatus = exports.SourceTypeFilter = exports.SnoozeSourceType = exports.SnoozeNextActionWith = exports.SimpleRoundingStrategy = exports.ShopifyService = exports.ShopifyPromotionStatus = exports.ShopifyPromotionOrderEntitlementComponent = exports.ShopifyPromotionOfferAllocationMethod = void 0;
|
|
3
|
+
exports.ClothingAgeClassification = exports.ClassificationType = exports.ClassificationPlatform = exports.ClassificationErrorCode = exports.ClassificationDecision = exports.CheckoutUrlType = exports.CheckoutShippingMethodPromptBehavior = exports.CheckoutRedirectMethod = exports.CheckoutPromptBehavior = exports.CheckoutErrorCode = exports.CheckoutAssetType = exports.ChargebackProcessStatus = exports.ChargebackPaymentStatus = exports.ChargeInputType = exports.ChargeEstimateSource = exports.ChannelTransactionType = exports.ChannelOrderFulfillmentStatusCode = exports.ChannelOrderAcceptanceStatus = exports.ChannelOrderAcceptanceRejectionReason = exports.ChannelOrderAcceptanceNextActionFrom = exports.ChannelOrderAcceptanceFailureReasonCode = exports.ChannelOrderAcceptanceErrorAction = exports.ChannelBilledTransactionType = exports.CatalogImportType = exports.CarrierValidationStatus = exports.CarrierLabelGenerationMethod = exports.CarrierFileType = exports.CarrierChargeType = exports.CarrierChargeTransactionType = exports.CalculatorEngine = exports.BrowserBundleErrorCode = exports.BillingTransactionType = exports.BillingTransactionStatus = exports.BillingStatementAttachmentKey = exports.BillingMetricKey = exports.BillingAllocationKey = exports.BankPaymentStatusCode = exports.BankPaymentPromiseCompletedMethod = exports.BankAccountStatus = exports.AutoRestrictRule = exports.ApiCallReferenceId = exports.AnyDangerousGoods = exports.AnshItemType = exports.AldoItemType = exports.AdyenIntegrationType = exports.AdjustmentTransactionType = exports.AddressConfigurationSettingProvinceCode = exports.AccountType = exports.AccountSettingLiabilitiesMethod = exports.AccountPaymentHoldReason = void 0;
|
|
4
|
+
exports.GoogleAnalyticsPlugin = exports.FtpProtocol = exports.FtpIntent = exports.FraudReviewResponsibleParty = exports.FraudProviderStatus = exports.FraudProvider = exports.Format = exports.FlowApp = exports.FinancialReportingResponsibleParty = exports.FeesSource = exports.FeatureType = exports.FeatureStatus = exports.FeatureScope = exports.ExportContentType = exports.ExperienceOrderActionTrigger = exports.ExperienceOrderAction = exports.ExperienceImportType = exports.EventType = exports.ErpFileType = exports.EmptyAttribute = exports.DutyTransactionType = exports.DutySimpleExpressionType = exports.DutySelectionRule = exports.DutyRateUnitOfMeasure = exports.DutyRateSource = exports.DutyExemptItemTypes = exports.DutyCompoundExpressionType = exports.DisputeType = exports.DisputeTransactionType = exports.DisputeStatus = exports.DisputeReportingCategory = exports.DisputeProcessor = exports.DisputeLiability = exports.DisputeImportType = exports.DisputeImportStatus = exports.DisputeEvidence = exports.DisputeDefenseOutcome = exports.DisputeCategory = exports.DisputeBillable = exports.DiscountRequestOrderEntitlementKey = exports.DeminimisAdjustmentType = exports.DeliveredDutyOptionMessageType = exports.DebugAccountingTransactionType = exports.CrossdockTrackingStatus = exports.ContentTypeCast = exports.ContentType = exports.ContentStatus = exports.ContentElementType = exports.ComplianceType = exports.Company = void 0;
|
|
5
|
+
exports.OrganizationCapability = exports.OrderValidationStatus = exports.OrderTransactionType = exports.OrderLifecycleEvent = exports.OrderChargeTrigger = exports.OrderCancellationInitiatedBy = exports.OrderAttributeIntent = exports.OrderAddressValidationStatus = exports.OrderAction = exports.OnboardingStateSource = exports.OnboardingAutomationTaskState = exports.OnboardingAutomationProcessState = exports.OnboardingAuditThemeKey = exports.OnboardingAuditResult = exports.OnboardingAuditMessageLevel = exports.NoLiabilityReasonCode = exports.NatureOfSale = exports.MixedBagWeight = exports.MarketingGatewaySchemaCompatibility = exports.MarketingGatewayProductStatus = exports.MarketingGatewayPlatform = exports.MarketingGatewayFeedState = exports.MarketingGatewayFeedDownloadFormat = exports.MarketingGatewayFacebookTokenStatus = exports.MarketingGatewayErrorCode = exports.MarketingGatewayChannelStatus = exports.MarketingGatewayChannelIntegrationType = exports.MarketingGatewayAccountConnectionStatus = exports.ManualTransactionCategory = exports.ManualReviewRuleStatus = exports.LogisticsPayoutResolutionMethod = exports.LogisticsCapability = exports.LiabilityType = exports.LabelTransactionType = exports.LabelRequestResultState = exports.LabelRequestResultOrganizationType = exports.LabelRequestErrorHandlingResponsibility = exports.LabelEventSource = exports.LabelCreationStatus = exports.LabelCancellationErrorCode = exports.LabelBillingStrategy = exports.KeywordType = exports.ItemType = exports.ItemQuantityAction = exports.ItemHarmonizationStatus = exports.ItemClassificationStatus = exports.ItemClassificationAction = exports.HttpMethod = exports.HarmonizationDecisionSource = exports.GraphqlServiceTypes = void 0;
|
|
6
|
+
exports.ShopifyMonitoringMonitorReviewStatus = exports.ShopifyMarketsTradeSector = exports.ShopifyMarketsQueuedRecordType = exports.ShopifyMarketsHtsNumberAvailable = exports.ShopifyMarketsDangerousGoods = exports.ShopifyIncotermConfiguration = exports.ShopifyGrantStatus = exports.ShopifyCheckInventoryErrorCode = exports.SessionCountryStatus = exports.RiskEvaluation = exports.RiskCheck = exports.RevenueRecordType = exports.RestrictionStatus = exports.RestrictionDecision = exports.RestrictionAction = exports.ResponsibleParty = exports.ReportingScheme = exports.ReportingFulfillmentIsVirtual = exports.ReportType = exports.ReportStatus = exports.ReportPaymentType = exports.ReportInterval = exports.RejectionReason = exports.RedirectReason = exports.ReboundConfigurationStatus = exports.RateSource = exports.RateLevelKey = exports.QuoteRequestType = exports.PromptTarget = exports.PromptOptions = exports.PromptCheckoutDisplayPosition = exports.PromptAction = exports.ProductStatus = exports.ProcessorEntityStatus = exports.Processor = exports.ProcessingTransactionType = exports.PriceSelector = exports.PreferredBillingSchedule = exports.PaymentTerm = exports.PaymentSummaryType = exports.PaymentSummaryStatus = exports.Owner = exports.OutputStyle = exports.OrganizationRestrictionScreeningStatus = exports.OrganizationRestrictionRiskLevel = exports.OrganizationRestrictionReviewType = exports.OrganizationRestrictionNoteType = exports.OrganizationRestrictionApprovalStatus = exports.OrganizationPaymentStatus = exports.OrganizationMetricType = void 0;
|
|
7
|
+
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = exports.TransferMethod = exports.TransactionPostingMethod = exports.TrackingProcessingFailureClassification = exports.TrackingLabelDimensionsSource = exports.TrackingIntegrationType = exports.TaxTransactionType = exports.TaxParty = exports.TaxCalculationErrorCode = exports.TaxAndDutyInclusivitySetting = exports.TaskProcessorKey = exports.TariffEligibilityType = exports.SuggestionAction = exports.SubscriptionFrequency = exports.StatisticType = exports.StatementTransferTransactionLocation = exports.StatementStatus = exports.SourceTypeFilter = exports.SnoozeSourceType = exports.SnoozeNextActionWith = exports.SimpleRoundingStrategy = exports.ShopifyService = exports.ShopifyPromotionStatus = exports.ShopifyPromotionOrderEntitlementComponent = exports.ShopifyPromotionOfferAllocationMethod = exports.ShopifyPromotionBehavior = exports.ShopifyMonitoringTrackingField = void 0;
|
|
8
8
|
var AccountPaymentHoldReason;
|
|
9
9
|
(function (AccountPaymentHoldReason) {
|
|
10
10
|
AccountPaymentHoldReason["FRAUDULENT"] = "fraudulent";
|
|
@@ -42,6 +42,11 @@ var AldoItemType;
|
|
|
42
42
|
AldoItemType["PHYSICAL"] = "physical";
|
|
43
43
|
AldoItemType["DIGITAL"] = "digital";
|
|
44
44
|
})(AldoItemType = exports.AldoItemType || (exports.AldoItemType = {}));
|
|
45
|
+
var AnshItemType;
|
|
46
|
+
(function (AnshItemType) {
|
|
47
|
+
AnshItemType["PHYSICAL"] = "physical";
|
|
48
|
+
AnshItemType["DIGITAL"] = "digital";
|
|
49
|
+
})(AnshItemType = exports.AnshItemType || (exports.AnshItemType = {}));
|
|
45
50
|
var AnyDangerousGoods;
|
|
46
51
|
(function (AnyDangerousGoods) {
|
|
47
52
|
AnyDangerousGoods["YES"] = "yes";
|
|
@@ -309,8 +314,11 @@ var BillingTransactionType;
|
|
|
309
314
|
BillingTransactionType["DUTY"] = "duty";
|
|
310
315
|
BillingTransactionType["TRUEUP"] = "trueup";
|
|
311
316
|
BillingTransactionType["CARRIER_CHARGE"] = "carrier_charge";
|
|
317
|
+
BillingTransactionType["ORDER_FX"] = "order_fx";
|
|
312
318
|
BillingTransactionType["TAX_REFUND"] = "tax_refund";
|
|
313
319
|
BillingTransactionType["DUTY_REFUND"] = "duty_refund";
|
|
320
|
+
BillingTransactionType["GE_REVENUE_SHARE"] = "ge_revenue_share";
|
|
321
|
+
BillingTransactionType["TAX_DUTY_DELTA"] = "tax_duty_delta";
|
|
314
322
|
})(BillingTransactionType = exports.BillingTransactionType || (exports.BillingTransactionType = {}));
|
|
315
323
|
var BrowserBundleErrorCode;
|
|
316
324
|
(function (BrowserBundleErrorCode) {
|
|
@@ -451,6 +459,7 @@ var ChargeInputType;
|
|
|
451
459
|
ChargeInputType["ELECTRONIC_EXPORT_INFORMATION_SURCHARGE"] = "electronic_export_information_surcharge";
|
|
452
460
|
ChargeInputType["ADDITIONAL_HANDLING"] = "additional_handling";
|
|
453
461
|
ChargeInputType["LARGE_PACKAGE_SURCHARGE"] = "large_package_surcharge";
|
|
462
|
+
ChargeInputType["PEAK_SURCHARGE"] = "peak_surcharge";
|
|
454
463
|
})(ChargeInputType = exports.ChargeInputType || (exports.ChargeInputType = {}));
|
|
455
464
|
var ChargebackPaymentStatus;
|
|
456
465
|
(function (ChargebackPaymentStatus) {
|
|
@@ -736,8 +745,6 @@ var EventType;
|
|
|
736
745
|
EventType["ADYEN_REFUND_UPSERTED"] = "adyen_refund_upserted";
|
|
737
746
|
EventType["ADYEN_DISPUTE_UPSERTED"] = "adyen_dispute_upserted";
|
|
738
747
|
EventType["ADYEN_DISPUTE_DELETED"] = "adyen_dispute_deleted";
|
|
739
|
-
EventType["ALDO_ITEM_UPSERTED"] = "aldo_item_upserted";
|
|
740
|
-
EventType["ALDO_ITEM_DELETED"] = "aldo_item_deleted";
|
|
741
748
|
EventType["FULFILLMENT_UPSERTED"] = "fulfillment_upserted";
|
|
742
749
|
EventType["FULFILLMENT_DELETED"] = "fulfillment_deleted";
|
|
743
750
|
EventType["MERCHANT_UPSERTED"] = "merchant_upserted";
|
|
@@ -902,7 +909,6 @@ var EventType;
|
|
|
902
909
|
EventType["HARMONIZED_ITEMS_HS_6_EXPORT"] = "harmonized_items_hs6_export";
|
|
903
910
|
EventType["UNHARMONIZED_ITEMS_EXPORT"] = "unharmonized_items_export";
|
|
904
911
|
EventType["DUTIED_ITEMS_EXPORT"] = "dutied_items_export";
|
|
905
|
-
EventType["TARIFF_CODES_EXPORT"] = "tariff_codes_export";
|
|
906
912
|
EventType["HARMONIZATION_PHRASE_SUGGESTION_REQUEST_IMPORT"] = "harmonization_phrase_suggestion_request_import";
|
|
907
913
|
EventType["HARMONIZATION_CODES_IMPORT"] = "harmonization_codes_import";
|
|
908
914
|
EventType["ITEM_CLASSIFICATION_CREATED"] = "item_classification_created";
|
|
@@ -1028,6 +1034,10 @@ var EventType;
|
|
|
1028
1034
|
EventType["SCREENING_STATUS_CHANGE_DELETED"] = "screening_status_change_deleted";
|
|
1029
1035
|
EventType["RESTRICTIONS_DAILYOPS_UPSERTED"] = "restrictions_dailyops_upserted";
|
|
1030
1036
|
EventType["RESTRICTIONS_DAILYOPS_DELETED"] = "restrictions_dailyops_deleted";
|
|
1037
|
+
EventType["RESTRICTION_RULE_UPSERTED"] = "restriction_rule_upserted";
|
|
1038
|
+
EventType["RESTRICTION_RULE_DELETED"] = "restriction_rule_deleted";
|
|
1039
|
+
EventType["RESTRICTION_RULE_EFFECT_UPSERTED"] = "restriction_rule_effect_upserted";
|
|
1040
|
+
EventType["RESTRICTION_RULE_EFFECT_DELETED"] = "restriction_rule_effect_deleted";
|
|
1031
1041
|
EventType["SHOPIFY_SHOP_UPSERTED"] = "shopify_shop_upserted";
|
|
1032
1042
|
EventType["SHOPIFY_SHOP_DELETED"] = "shopify_shop_deleted";
|
|
1033
1043
|
EventType["SHOPIFY_EXPERIENCE_SHORT_ID_UPSERTED"] = "shopify_experience_short_id_upserted";
|
|
@@ -1053,6 +1063,18 @@ var EventType;
|
|
|
1053
1063
|
EventType["SHOPIFY_INCOTERM_SUMMARY_ERROR_PUBLISHED"] = "shopify_incoterm_summary_error_published";
|
|
1054
1064
|
EventType["SHOPIFY_MARKETS_BEST_SELLING_PRODUCT_UPSERTED"] = "shopify_markets_best_selling_product_upserted";
|
|
1055
1065
|
EventType["SHOPIFY_MARKETS_BEST_SELLING_PRODUCT_DELETED"] = "shopify_markets_best_selling_product_deleted";
|
|
1066
|
+
EventType["SHOPIFY_PRODUCT_CREATE_UPSERTED"] = "shopify_product_create_upserted";
|
|
1067
|
+
EventType["SHOPIFY_PRODUCT_CREATE_DELETED"] = "shopify_product_create_deleted";
|
|
1068
|
+
EventType["SHOPIFY_PRODUCT_UPDATE_UPSERTED"] = "shopify_product_update_upserted";
|
|
1069
|
+
EventType["SHOPIFY_PRODUCT_UPDATE_DELETED"] = "shopify_product_update_deleted";
|
|
1070
|
+
EventType["SHOPIFY_PRODUCT_DELETE_UPSERTED"] = "shopify_product_delete_upserted";
|
|
1071
|
+
EventType["SHOPIFY_PRODUCT_DELETE_DELETED"] = "shopify_product_delete_deleted";
|
|
1072
|
+
EventType["SHOPIFY_INVENTORY_ITEM_CREATE_UPSERTED"] = "shopify_inventory_item_create_upserted";
|
|
1073
|
+
EventType["SHOPIFY_INVENTORY_ITEM_CREATE_DELETED"] = "shopify_inventory_item_create_deleted";
|
|
1074
|
+
EventType["SHOPIFY_INVENTORY_ITEM_UPDATE_UPSERTED"] = "shopify_inventory_item_update_upserted";
|
|
1075
|
+
EventType["SHOPIFY_INVENTORY_ITEM_UPDATE_DELETED"] = "shopify_inventory_item_update_deleted";
|
|
1076
|
+
EventType["SHOPIFY_INVENTORY_ITEM_DELETE_UPSERTED"] = "shopify_inventory_item_delete_upserted";
|
|
1077
|
+
EventType["SHOPIFY_INVENTORY_ITEM_DELETE_DELETED"] = "shopify_inventory_item_delete_deleted";
|
|
1056
1078
|
EventType["SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_UPSERTED"] = "shopify_monitoring_order_monitor_event_upserted";
|
|
1057
1079
|
EventType["SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_DELETED"] = "shopify_monitoring_order_monitor_event_deleted";
|
|
1058
1080
|
EventType["SHOPIFY_ORDER_FULFILLMENTS_SNAPSHOT_UPSERTED"] = "shopify_order_fulfillments_snapshot_upserted";
|
|
@@ -1194,6 +1216,7 @@ var GraphqlServiceTypes;
|
|
|
1194
1216
|
GraphqlServiceTypes["SHOPIFY_LOCATION"] = "shopify_location";
|
|
1195
1217
|
GraphqlServiceTypes["SHOPIFY_ORDER"] = "shopify_order";
|
|
1196
1218
|
GraphqlServiceTypes["SYNC_PRODUCT_CATALOG"] = "sync_product_catalog";
|
|
1219
|
+
GraphqlServiceTypes["SHOPIFY_WEBHOOK"] = "shopify_webhook";
|
|
1197
1220
|
})(GraphqlServiceTypes = exports.GraphqlServiceTypes || (exports.GraphqlServiceTypes = {}));
|
|
1198
1221
|
var HarmonizationDecisionSource;
|
|
1199
1222
|
(function (HarmonizationDecisionSource) {
|
|
@@ -1261,6 +1284,12 @@ var LabelCreationStatus;
|
|
|
1261
1284
|
LabelCreationStatus["PENDING"] = "pending";
|
|
1262
1285
|
LabelCreationStatus["CANCELLED"] = "cancelled";
|
|
1263
1286
|
})(LabelCreationStatus = exports.LabelCreationStatus || (exports.LabelCreationStatus = {}));
|
|
1287
|
+
var LabelEventSource;
|
|
1288
|
+
(function (LabelEventSource) {
|
|
1289
|
+
LabelEventSource["AFTERSHIP"] = "aftership";
|
|
1290
|
+
LabelEventSource["CARRIER"] = "carrier";
|
|
1291
|
+
LabelEventSource["FLOW"] = "flow";
|
|
1292
|
+
})(LabelEventSource = exports.LabelEventSource || (exports.LabelEventSource = {}));
|
|
1264
1293
|
var LabelRequestErrorHandlingResponsibility;
|
|
1265
1294
|
(function (LabelRequestErrorHandlingResponsibility) {
|
|
1266
1295
|
LabelRequestErrorHandlingResponsibility["MERCHANT"] = "merchant";
|
|
@@ -1931,6 +1960,7 @@ var ShopifyService;
|
|
|
1931
1960
|
(function (ShopifyService) {
|
|
1932
1961
|
ShopifyService["PAYMENT"] = "payment";
|
|
1933
1962
|
ShopifyService["DUTY_TAX_CALCULATOR"] = "duty_tax_calculator";
|
|
1963
|
+
ShopifyService["SELLABILITY"] = "sellability";
|
|
1934
1964
|
})(ShopifyService = exports.ShopifyService || (exports.ShopifyService = {}));
|
|
1935
1965
|
var SimpleRoundingStrategy;
|
|
1936
1966
|
(function (SimpleRoundingStrategy) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-internal-constants",
|
|
3
|
-
"version": "4.18.
|
|
3
|
+
"version": "4.18.88",
|
|
4
4
|
"description": "Definitions for enumerations found in internal Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"generate": "apibuilder update",
|
|
25
25
|
"postgenerate": "npm run format"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "b6c2f519293efcf70e56cc356ba0b60292295b25"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -35,6 +35,11 @@ export enum AldoItemType {
|
|
|
35
35
|
DIGITAL = 'digital',
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
export enum AnshItemType {
|
|
39
|
+
PHYSICAL = 'physical',
|
|
40
|
+
DIGITAL = 'digital',
|
|
41
|
+
}
|
|
42
|
+
|
|
38
43
|
export enum AnyDangerousGoods {
|
|
39
44
|
YES = 'yes',
|
|
40
45
|
NO = 'no',
|
|
@@ -301,8 +306,11 @@ export enum BillingTransactionType {
|
|
|
301
306
|
DUTY = 'duty',
|
|
302
307
|
TRUEUP = 'trueup',
|
|
303
308
|
CARRIER_CHARGE = 'carrier_charge',
|
|
309
|
+
ORDER_FX = 'order_fx',
|
|
304
310
|
TAX_REFUND = 'tax_refund',
|
|
305
311
|
DUTY_REFUND = 'duty_refund',
|
|
312
|
+
GE_REVENUE_SHARE = 'ge_revenue_share',
|
|
313
|
+
TAX_DUTY_DELTA = 'tax_duty_delta',
|
|
306
314
|
}
|
|
307
315
|
|
|
308
316
|
export enum BrowserBundleErrorCode {
|
|
@@ -443,6 +451,7 @@ export enum ChargeInputType {
|
|
|
443
451
|
ELECTRONIC_EXPORT_INFORMATION_SURCHARGE = 'electronic_export_information_surcharge',
|
|
444
452
|
ADDITIONAL_HANDLING = 'additional_handling',
|
|
445
453
|
LARGE_PACKAGE_SURCHARGE = 'large_package_surcharge',
|
|
454
|
+
PEAK_SURCHARGE = 'peak_surcharge',
|
|
446
455
|
}
|
|
447
456
|
|
|
448
457
|
export enum ChargebackPaymentStatus {
|
|
@@ -728,8 +737,6 @@ export enum EventType {
|
|
|
728
737
|
ADYEN_REFUND_UPSERTED = 'adyen_refund_upserted',
|
|
729
738
|
ADYEN_DISPUTE_UPSERTED = 'adyen_dispute_upserted',
|
|
730
739
|
ADYEN_DISPUTE_DELETED = 'adyen_dispute_deleted',
|
|
731
|
-
ALDO_ITEM_UPSERTED = 'aldo_item_upserted',
|
|
732
|
-
ALDO_ITEM_DELETED = 'aldo_item_deleted',
|
|
733
740
|
FULFILLMENT_UPSERTED = 'fulfillment_upserted',
|
|
734
741
|
FULFILLMENT_DELETED = 'fulfillment_deleted',
|
|
735
742
|
MERCHANT_UPSERTED = 'merchant_upserted',
|
|
@@ -894,7 +901,6 @@ export enum EventType {
|
|
|
894
901
|
HARMONIZED_ITEMS_HS_6_EXPORT = 'harmonized_items_hs6_export',
|
|
895
902
|
UNHARMONIZED_ITEMS_EXPORT = 'unharmonized_items_export',
|
|
896
903
|
DUTIED_ITEMS_EXPORT = 'dutied_items_export',
|
|
897
|
-
TARIFF_CODES_EXPORT = 'tariff_codes_export',
|
|
898
904
|
HARMONIZATION_PHRASE_SUGGESTION_REQUEST_IMPORT = 'harmonization_phrase_suggestion_request_import',
|
|
899
905
|
HARMONIZATION_CODES_IMPORT = 'harmonization_codes_import',
|
|
900
906
|
ITEM_CLASSIFICATION_CREATED = 'item_classification_created',
|
|
@@ -1020,6 +1026,10 @@ export enum EventType {
|
|
|
1020
1026
|
SCREENING_STATUS_CHANGE_DELETED = 'screening_status_change_deleted',
|
|
1021
1027
|
RESTRICTIONS_DAILYOPS_UPSERTED = 'restrictions_dailyops_upserted',
|
|
1022
1028
|
RESTRICTIONS_DAILYOPS_DELETED = 'restrictions_dailyops_deleted',
|
|
1029
|
+
RESTRICTION_RULE_UPSERTED = 'restriction_rule_upserted',
|
|
1030
|
+
RESTRICTION_RULE_DELETED = 'restriction_rule_deleted',
|
|
1031
|
+
RESTRICTION_RULE_EFFECT_UPSERTED = 'restriction_rule_effect_upserted',
|
|
1032
|
+
RESTRICTION_RULE_EFFECT_DELETED = 'restriction_rule_effect_deleted',
|
|
1023
1033
|
SHOPIFY_SHOP_UPSERTED = 'shopify_shop_upserted',
|
|
1024
1034
|
SHOPIFY_SHOP_DELETED = 'shopify_shop_deleted',
|
|
1025
1035
|
SHOPIFY_EXPERIENCE_SHORT_ID_UPSERTED = 'shopify_experience_short_id_upserted',
|
|
@@ -1045,6 +1055,18 @@ export enum EventType {
|
|
|
1045
1055
|
SHOPIFY_INCOTERM_SUMMARY_ERROR_PUBLISHED = 'shopify_incoterm_summary_error_published',
|
|
1046
1056
|
SHOPIFY_MARKETS_BEST_SELLING_PRODUCT_UPSERTED = 'shopify_markets_best_selling_product_upserted',
|
|
1047
1057
|
SHOPIFY_MARKETS_BEST_SELLING_PRODUCT_DELETED = 'shopify_markets_best_selling_product_deleted',
|
|
1058
|
+
SHOPIFY_PRODUCT_CREATE_UPSERTED = 'shopify_product_create_upserted',
|
|
1059
|
+
SHOPIFY_PRODUCT_CREATE_DELETED = 'shopify_product_create_deleted',
|
|
1060
|
+
SHOPIFY_PRODUCT_UPDATE_UPSERTED = 'shopify_product_update_upserted',
|
|
1061
|
+
SHOPIFY_PRODUCT_UPDATE_DELETED = 'shopify_product_update_deleted',
|
|
1062
|
+
SHOPIFY_PRODUCT_DELETE_UPSERTED = 'shopify_product_delete_upserted',
|
|
1063
|
+
SHOPIFY_PRODUCT_DELETE_DELETED = 'shopify_product_delete_deleted',
|
|
1064
|
+
SHOPIFY_INVENTORY_ITEM_CREATE_UPSERTED = 'shopify_inventory_item_create_upserted',
|
|
1065
|
+
SHOPIFY_INVENTORY_ITEM_CREATE_DELETED = 'shopify_inventory_item_create_deleted',
|
|
1066
|
+
SHOPIFY_INVENTORY_ITEM_UPDATE_UPSERTED = 'shopify_inventory_item_update_upserted',
|
|
1067
|
+
SHOPIFY_INVENTORY_ITEM_UPDATE_DELETED = 'shopify_inventory_item_update_deleted',
|
|
1068
|
+
SHOPIFY_INVENTORY_ITEM_DELETE_UPSERTED = 'shopify_inventory_item_delete_upserted',
|
|
1069
|
+
SHOPIFY_INVENTORY_ITEM_DELETE_DELETED = 'shopify_inventory_item_delete_deleted',
|
|
1048
1070
|
SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_UPSERTED = 'shopify_monitoring_order_monitor_event_upserted',
|
|
1049
1071
|
SHOPIFY_MONITORING_ORDER_MONITOR_EVENT_DELETED = 'shopify_monitoring_order_monitor_event_deleted',
|
|
1050
1072
|
SHOPIFY_ORDER_FULFILLMENTS_SNAPSHOT_UPSERTED = 'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -1186,6 +1208,7 @@ export enum GraphqlServiceTypes {
|
|
|
1186
1208
|
SHOPIFY_LOCATION = 'shopify_location',
|
|
1187
1209
|
SHOPIFY_ORDER = 'shopify_order',
|
|
1188
1210
|
SYNC_PRODUCT_CATALOG = 'sync_product_catalog',
|
|
1211
|
+
SHOPIFY_WEBHOOK = 'shopify_webhook',
|
|
1189
1212
|
}
|
|
1190
1213
|
|
|
1191
1214
|
export enum HarmonizationDecisionSource {
|
|
@@ -1254,6 +1277,12 @@ export enum LabelCreationStatus {
|
|
|
1254
1277
|
CANCELLED = 'cancelled',
|
|
1255
1278
|
}
|
|
1256
1279
|
|
|
1280
|
+
export enum LabelEventSource {
|
|
1281
|
+
AFTERSHIP = 'aftership',
|
|
1282
|
+
CARRIER = 'carrier',
|
|
1283
|
+
FLOW = 'flow',
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1257
1286
|
export enum LabelRequestErrorHandlingResponsibility {
|
|
1258
1287
|
MERCHANT = 'merchant',
|
|
1259
1288
|
MERCHANT_INTEGRATION = 'merchant_integration',
|
|
@@ -1923,6 +1952,7 @@ export enum ShopifyPromotionStatus {
|
|
|
1923
1952
|
export enum ShopifyService {
|
|
1924
1953
|
PAYMENT = 'payment',
|
|
1925
1954
|
DUTY_TAX_CALCULATOR = 'duty_tax_calculator',
|
|
1955
|
+
SELLABILITY = 'sellability',
|
|
1926
1956
|
}
|
|
1927
1957
|
|
|
1928
1958
|
export enum SimpleRoundingStrategy {
|