@flowio/api-internal-constants 4.18.50 → 4.18.52
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 +26 -50
- package/dist/api-internal.js +27 -54
- package/package.json +2 -2
- package/src/api-internal.ts +24 -51
package/dist/api-internal.d.ts
CHANGED
|
@@ -76,15 +76,14 @@ export declare enum BillingMetricKey {
|
|
|
76
76
|
CAPTURE_TRANSACTIONS_IGNORED_FRAUD_COUNT = "capture_transactions_ignored_fraud_count",
|
|
77
77
|
CAPTURE_TRANSACTIONS_IGNORED_FULLY_REFUNDED_COUNT = "capture_transactions_ignored_fully_refunded_count",
|
|
78
78
|
CAPTURE_TRANSACTIONS_IGNORED_OTHER_COUNT = "capture_transactions_ignored_other_count",
|
|
79
|
+
CAPTURE_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT = "capture_transactions_ignored_previously_processed_count",
|
|
79
80
|
CAPTURE_TRANSACTIONS_TOTAL = "capture_transactions_total",
|
|
80
|
-
|
|
81
|
-
|
|
81
|
+
CHANNEL_TRANSACTIONS_PROCESSING_COUNT = "channel_transactions_processing_count",
|
|
82
|
+
CHANNEL_TRANSACTIONS_PROCESSING_TOTAL = "channel_transactions_processing_total",
|
|
82
83
|
CHANNEL_TRANSACTIONS_ADJUSTMENT_COUNT = "channel_transactions_adjustment_count",
|
|
83
84
|
CHANNEL_TRANSACTIONS_ADJUSTMENT_TOTAL = "channel_transactions_adjustment_total",
|
|
84
85
|
CHANNEL_TRANSACTIONS_REVERSAL_COUNT = "channel_transactions_reversal_count",
|
|
85
86
|
CHANNEL_TRANSACTIONS_REVERSAL_TOTAL = "channel_transactions_reversal_total",
|
|
86
|
-
CHANNEL_TRANSACTIONS_OTHER_COUNT = "channel_transactions_other_count",
|
|
87
|
-
CHANNEL_TRANSACTIONS_OTHER_TOTAL = "channel_transactions_other_total",
|
|
88
87
|
CHANNEL_BILLED_TRANSACTIONS_COUNT = "channel_billed_transactions_count",
|
|
89
88
|
CHANNEL_BILLED_TRANSACTIONS_TOTAL = "channel_billed_transactions_total",
|
|
90
89
|
CREDIT_PAYMENT_TRANSACTIONS_COUNT = "credit_payment_transactions_count",
|
|
@@ -107,11 +106,16 @@ export declare enum BillingMetricKey {
|
|
|
107
106
|
REFUND_TRANSACTIONS_IGNORED_FRAUD_COUNT = "refund_transactions_ignored_fraud_count",
|
|
108
107
|
REFUND_TRANSACTIONS_IGNORED_FULLY_REFUNDED_COUNT = "refund_transactions_ignored_fully_refunded_count",
|
|
109
108
|
REFUND_TRANSACTIONS_IGNORED_OTHER_COUNT = "refund_transactions_ignored_other_count",
|
|
109
|
+
REFUND_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT = "refund_transactions_ignored_previously_processed_count",
|
|
110
110
|
REFUND_TRANSACTIONS_TOTAL = "refund_transactions_total",
|
|
111
111
|
REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_COUNT = "reversal_order_cancellations_transactions_count",
|
|
112
112
|
REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_TOTAL = "reversal_order_cancellations_transactions_total",
|
|
113
113
|
REVERSAL_EXTERNAL_FULFILLMENT_TRANSACTIONS_COUNT = "reversal_external_fulfillment_transactions_count",
|
|
114
114
|
REVERSAL_EXTERNAL_FULFILLMENT_TRANSACTIONS_TOTAL = "reversal_external_fulfillment_transactions_total",
|
|
115
|
+
REVERSAL_OTHER_TRANSACTIONS_COUNT = "reversal_other_transactions_count",
|
|
116
|
+
REVERSAL_OTHER_TRANSACTIONS_TOTAL = "reversal_other_transactions_total",
|
|
117
|
+
REVERSAL_ALL_TRANSACTIONS_COUNT = "reversal_all_transactions_count",
|
|
118
|
+
REVERSAL_ALL_TRANSACTIONS_TOTAL = "reversal_all_transactions_total",
|
|
115
119
|
TAX_TRANSACTIONS_COUNT = "tax_transactions_count",
|
|
116
120
|
TAX_TRANSACTIONS_TOTAL = "tax_transactions_total",
|
|
117
121
|
TRANSFER_TRANSACTIONS_COUNT = "transfer_transactions_count",
|
|
@@ -122,27 +126,10 @@ export declare enum BillingMetricKey {
|
|
|
122
126
|
PERCENTAGE_ORDERS_WITH_FULFILLMENT_PROOF_4_WEEKS = "percentage_orders_with_fulfillment_proof_4_weeks",
|
|
123
127
|
PERCENTAGE_ORDERS_WITH_FULFILLMENT_PROOF_6_WEEKS = "percentage_orders_with_fulfillment_proof_6_weeks",
|
|
124
128
|
PERCENTAGE_ORDERS_WITH_FULFILLMENT_PROOF_ALL = "percentage_orders_with_fulfillment_proof_all",
|
|
129
|
+
PENDING_PAYOUTS_MAX_AGE_IN_MILLIS = "pending_payouts_max_age_in_millis",
|
|
125
130
|
SHIPPING_NOTIFICATIONS_COUNT = "shipping_notifications_count",
|
|
126
131
|
QUEUED_CAPTURE_UNPROCESSED_COUNT = "queued_capture_unprocessed_count",
|
|
127
|
-
QUEUED_CAPTURE_DELETION_UNPROCESSED_COUNT = "queued_capture_deletion_unprocessed_count",
|
|
128
|
-
QUEUED_CHANNEL_TRANSACTION_UNPROCESSED_COUNT = "queued_channel_transaction_unprocessed_count",
|
|
129
|
-
QUEUED_CHANNEL_ORGANIZATION_UNPROCESSED_COUNT = "queued_channel_organization_unprocessed_count",
|
|
130
|
-
QUEUED_CONSUMER_INVOICE_UNPROCESSED_COUNT = "queued_consumer_invoice_unprocessed_count",
|
|
131
|
-
QUEUED_FULFILLMENT_EXTERNAL_UNPROCESSED_COUNT = "queued_fulfillment_external_unprocessed_count",
|
|
132
|
-
QUEUED_FULFILLMENT_IN_TRANSIT_UNPROCESSED_COUNT = "queued_fulfillment_in_transit_unprocessed_count",
|
|
133
|
-
QUEUED_FULFILLMENT_SHIPPING_NOTIFICATION_UNPROCESSED_COUNT = "queued_fulfillment_shipping_notification_unprocessed_count",
|
|
134
|
-
QUEUED_LABEL_INVOICE_REQUEST_UNPROCESSED_COUNT = "queued_label_invoice_request_unprocessed_count",
|
|
135
|
-
QUEUED_LABEL_TRACKING_SUMMARY_UNPROCESSED_COUNT = "queued_label_tracking_summary_unprocessed_count",
|
|
136
|
-
QUEUED_LABEL_ORIGIN_UNPROCESSED_COUNT = "queued_label_origin_unprocessed_count",
|
|
137
|
-
QUEUED_ORDER_UNPROCESSED_COUNT = "queued_order_unprocessed_count",
|
|
138
|
-
QUEUED_ORDER_IDENTIFIER_UNPROCESSED_COUNT = "queued_order_identifier_unprocessed_count",
|
|
139
132
|
QUEUED_REFUND_UNPROCESSED_COUNT = "queued_refund_unprocessed_count",
|
|
140
|
-
QUEUED_REFUND_DELETION_UNPROCESSED_COUNT = "queued_refund_deletion_unprocessed_count",
|
|
141
|
-
QUEUED_REFUND_OVER_CAPTURE_UNPROCESSED_COUNT = "queued_refund_over_capture_unprocessed_count",
|
|
142
|
-
QUEUED_SALES_RECORD_UNPROCESSED_COUNT = "queued_sales_record_unprocessed_count",
|
|
143
|
-
QUEUED_STATEMENT_BATCH_UNPROCESSED_COUNT = "queued_statement_batch_unprocessed_count",
|
|
144
|
-
QUEUED_STATEMENT_EMAIL_UNPROCESSED_COUNT = "queued_statement_email_unprocessed_count",
|
|
145
|
-
QUEUED_STATEMENT_SUMMARY_EMAIL_UNPROCESSED_COUNT = "queued_statement_summary_email_unprocessed_count",
|
|
146
133
|
QUEUED_RECORD_SNOOZE_COUNT = "queued_record_snooze_count",
|
|
147
134
|
QUEUED_RECORD_SNOOZE_ENDING_IN_48_HOURS_COUNT = "queued_record_snooze_ending_in_48_hours_count",
|
|
148
135
|
STATEMENTS_NO_PAYOUT_COUNT = "statements_no_payout_count",
|
|
@@ -155,10 +142,7 @@ export declare enum BillingMetricKey {
|
|
|
155
142
|
PAYOUTS_SENT_TOTAL = "payouts_sent_total",
|
|
156
143
|
PAYOUTS_FAILED_COUNT = "payouts_failed_count",
|
|
157
144
|
PAYOUTS_FAILED_TOTAL = "payouts_failed_total",
|
|
158
|
-
PENDING_PAYOUTS_MAX_AGE = "pending_payouts_max_age",
|
|
159
145
|
AVERAGE_PAYOUT_AMOUNT = "average_payout_amount",
|
|
160
|
-
ORDERS_WITH_PAYMENTS_COUNT = "orders_with_payments_count",
|
|
161
|
-
ORDERS_WITHOUT_PAYMENTS_COUNT = "orders_without_payments_count",
|
|
162
146
|
CAPTURE_TRANSACTION_WITH_ZERO_FEES_AND_NO_CHANNEL_TRANSACTION_COUNT = "capture_transaction_with_zero_fees_and_no_channel_transaction_count"
|
|
163
147
|
}
|
|
164
148
|
export declare enum BillingStatementAttachmentKey {
|
|
@@ -205,7 +189,8 @@ export declare enum BillingTransactionType {
|
|
|
205
189
|
ORDER = "order",
|
|
206
190
|
CHANNEL_BILLED = "channel_billed",
|
|
207
191
|
TAX = "tax",
|
|
208
|
-
DUTY = "duty"
|
|
192
|
+
DUTY = "duty",
|
|
193
|
+
TRUEUP = "trueup"
|
|
209
194
|
}
|
|
210
195
|
export declare enum BlazeCheckoutEvent {
|
|
211
196
|
BEGIN_CHECKOUT = "begin_checkout",
|
|
@@ -260,7 +245,8 @@ export declare enum ChannelOrderAcceptanceNextActionFrom {
|
|
|
260
245
|
CORE_TEAM_INVESTIGATE = "core_team_investigate",
|
|
261
246
|
MEX_TEAM = "mex_team",
|
|
262
247
|
PAYMENTS_TEAM = "payments_team",
|
|
263
|
-
|
|
248
|
+
TC_TEAM = "tc_team",
|
|
249
|
+
LOGISTICS_TEAM = "logistics_team"
|
|
264
250
|
}
|
|
265
251
|
export declare enum ChannelOrderAcceptanceRejectionReason {
|
|
266
252
|
UNSUPPORTED_ORIGIN_COUNTRY = "unsupported_origin_country",
|
|
@@ -1049,6 +1035,8 @@ export declare enum EventType {
|
|
|
1049
1035
|
LOCALIZED_ITEM_PRICES_EXPORT_REQUEST = "localized_item_prices_export_request",
|
|
1050
1036
|
OPTIN_PROMPT_UPSERTED = "optin_prompt_upserted",
|
|
1051
1037
|
OPTIN_PROMPT_DELETED = "optin_prompt_deleted",
|
|
1038
|
+
ORDER_COMBINED_SHIPMENT_UPSERTED = "order_combined_shipment_upserted",
|
|
1039
|
+
ORDER_COMBINED_SHIPMENT_DELETED = "order_combined_shipment_deleted",
|
|
1052
1040
|
ORDER_FULFILLMENT_DELETED = "order_fulfillment_deleted",
|
|
1053
1041
|
ORDER_FULFILLMENT_UPSERTED = "order_fulfillment_upserted",
|
|
1054
1042
|
ORDER_PLACED = "order_placed",
|
|
@@ -1305,9 +1293,6 @@ export declare enum LabelGenerationAddressFailureStatus {
|
|
|
1305
1293
|
RESOLVED = "resolved",
|
|
1306
1294
|
UNRESOLVED = "unresolved"
|
|
1307
1295
|
}
|
|
1308
|
-
export declare enum LabelInputSource {
|
|
1309
|
-
ESTIMATE = "estimate"
|
|
1310
|
-
}
|
|
1311
1296
|
export declare enum LabelRequestErrorHandlingResponsibility {
|
|
1312
1297
|
MERCHANT = "merchant",
|
|
1313
1298
|
MERCHANT_INTEGRATION = "merchant_integration",
|
|
@@ -1652,24 +1637,25 @@ export declare enum QueuedRecordType {
|
|
|
1652
1637
|
CAPTURE = "capture",
|
|
1653
1638
|
CAPTURE_DELETION = "capture_deletion",
|
|
1654
1639
|
CHANNEL_TRANSACTION = "channel_transaction",
|
|
1655
|
-
CHANNEL_ORGANIZATION = "channel_organization",
|
|
1656
1640
|
CONSUMER_INVOICE = "consumer_invoice",
|
|
1657
1641
|
FULFILLMENT_IN_TRANSIT = "fulfillment_in_transit",
|
|
1658
1642
|
FULFILLMENT_SHIPPING_NOTIFICATION = "fulfillment_shipping_notification",
|
|
1659
1643
|
FULFILLMENT_EXTERNAL = "fulfillment_external",
|
|
1660
1644
|
LABEL_TRACKING_SUMMARY = "label_tracking_summary",
|
|
1661
1645
|
LABEL_INVOICE_REQUEST = "label_invoice_request",
|
|
1646
|
+
LABEL_INVOICE_RESPONSE = "label_invoice_response",
|
|
1647
|
+
LABEL_INVOICE_RESPONSE_FILE = "label_invoice_response_file",
|
|
1662
1648
|
LABEL_ORIGIN = "label_origin",
|
|
1663
1649
|
ORDER = "order",
|
|
1664
1650
|
ORDER_IDENTIFIER = "order_identifier",
|
|
1651
|
+
ORGANIZATION_ONBOARDING_STATE = "organization_onboarding_state",
|
|
1665
1652
|
REFUND = "refund",
|
|
1666
1653
|
REFUND_DELETION = "refund_deletion",
|
|
1667
1654
|
REFUND_OVER_CAPTURE = "refund_over_capture",
|
|
1668
1655
|
SALES_RECORD = "sales_record",
|
|
1669
1656
|
STATEMENT_BATCH = "statement_batch",
|
|
1670
1657
|
STATEMENT_EMAIL = "statement_email",
|
|
1671
|
-
STATEMENT_SUMMARY_EMAIL = "statement_summary_email"
|
|
1672
|
-
WASH = "wash"
|
|
1658
|
+
STATEMENT_SUMMARY_EMAIL = "statement_summary_email"
|
|
1673
1659
|
}
|
|
1674
1660
|
export declare enum QuoteRequestType {
|
|
1675
1661
|
GENERATE = "generate",
|
|
@@ -1905,12 +1891,6 @@ export declare enum SuggestionAction {
|
|
|
1905
1891
|
VALIDATE = "validate",
|
|
1906
1892
|
REVIEW = "review"
|
|
1907
1893
|
}
|
|
1908
|
-
export declare enum SurchargeType {
|
|
1909
|
-
FUEL = "fuel",
|
|
1910
|
-
REMOTE_AREA = "remote_area",
|
|
1911
|
-
OVERSIZE = "oversize",
|
|
1912
|
-
DUTIES_PAID = "duties_paid"
|
|
1913
|
-
}
|
|
1914
1894
|
export declare enum TariffEligibilityType {
|
|
1915
1895
|
REX = "rex"
|
|
1916
1896
|
}
|
|
@@ -1962,7 +1942,13 @@ export declare enum TrueUpSurchargeType {
|
|
|
1962
1942
|
OVERSIZE = "oversize",
|
|
1963
1943
|
DUTIES_PAID = "duties_paid",
|
|
1964
1944
|
EMERGENCY = "emergency",
|
|
1965
|
-
PEAK = "peak"
|
|
1945
|
+
PEAK = "peak",
|
|
1946
|
+
ADDRESS_CORRECTION = "address_correction"
|
|
1947
|
+
}
|
|
1948
|
+
export declare enum TrueupTransactionType {
|
|
1949
|
+
ADJUSTMENT = "adjustment",
|
|
1950
|
+
REVERSAL = "reversal",
|
|
1951
|
+
TRUEUP = "trueup"
|
|
1966
1952
|
}
|
|
1967
1953
|
export declare enum UnclassifiedProductStatus {
|
|
1968
1954
|
IGNORED = "ignored",
|
|
@@ -1972,13 +1958,3 @@ export declare enum UnclassifiedProductStatus {
|
|
|
1972
1958
|
QUEUED = "queued",
|
|
1973
1959
|
UNCONFIDENT = "unconfident"
|
|
1974
1960
|
}
|
|
1975
|
-
export declare enum WashCarrierActualFileStatus {
|
|
1976
|
-
PENDING = "pending",
|
|
1977
|
-
PROCESSING = "processing",
|
|
1978
|
-
PROCESSED = "processed",
|
|
1979
|
-
FAILED = "failed"
|
|
1980
|
-
}
|
|
1981
|
-
export declare enum WeightSelection {
|
|
1982
|
-
DEAD = "dead",
|
|
1983
|
-
DIMENSIONAL = "dimensional"
|
|
1984
|
-
}
|
package/dist/api-internal.js
CHANGED
|
@@ -3,9 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.CheckoutDeleteAddressStreetErrorCode = exports.CheckoutDeleteAddressBookContactErrorCode = exports.CheckoutCreateBySessionErrorCode = exports.CheckoutCreateBySessionByOrderErrorCode = exports.CheckoutCreateBySessionByCustomerTokenErrorCode = exports.CheckoutCreateByOrderQuoteErrorCode = exports.CheckoutCreateByCartTokenErrorCode = exports.CheckoutCreateAuthorizationErrorCode = exports.CheckoutCreateAuthorizationDetailsErrorCode = exports.CheckoutConnectBySessionErrorCode = exports.CheckoutConnectByOrderQuoteErrorCode = exports.CheckoutAssetType = exports.CheckoutAddressType = exports.CheckoutAddressSource = exports.CheckoutAddPaymentDetailsErrorCode = exports.CheckoutAddOrderIdentifierErrorCode = exports.CheckoutAddLineErrorCode = exports.CheckoutAddGiftCardErrorCode = exports.CheckoutAddGiftCardAndPromotionCodeErrorCode = exports.CheckoutAddAuthorizationErrorCode = exports.ChargebackProcessStatus = exports.ChargebackPaymentStatus = exports.ChannelTransactionType = exports.ChannelOrderAcceptanceStatus = exports.ChannelOrderAcceptanceRejectionReason = exports.ChannelOrderAcceptanceNextActionFrom = exports.ChannelOrderAcceptanceErrorAction = exports.ChannelBilledTransactionType = exports.CatalogImportType = exports.CarrierValidationStatus = exports.CarrierLabelGenerationMethod = exports.CalculatorEngine = exports.BrowserBundleErrorCode = exports.BlazeCheckoutStep = exports.BlazeCheckoutEvent = exports.BillingTransactionType = exports.BillingTransactionStatus = exports.BillingStatementBatchFileKey = exports.BillingStatementAttachmentKey = exports.BillingMetricKey = exports.BillingAllocationKey = exports.BankPaymentStatusCode = exports.AutoRestrictRule = exports.ApiCallReferenceId = exports.AnyDangerousGoods = exports.AdyenIntegrationType = exports.AdjustmentTransactionType = exports.AddressConfigurationSettingProvinceCode = exports.AccountType = exports.AccountSettingLiabilitiesMethod = void 0;
|
|
4
4
|
exports.CheckoutSetPromotionCodeErrorCode = exports.CheckoutSetPaymentSourceErrorCode = exports.CheckoutSetOptinPromptErrorCode = exports.CheckoutSetNationalIdNumberErrorCode = exports.CheckoutSetLocaleErrorCode = exports.CheckoutSetLinesErrorCode = exports.CheckoutSetLineQuantityErrorCode = exports.CheckoutSetLineAttributesErrorCode = exports.CheckoutSetLanguageErrorCode = exports.CheckoutSetDeliveryOptionErrorCode = exports.CheckoutSetCurrencyErrorCode = exports.CheckoutSetContactPhoneErrorCode = exports.CheckoutSetContactEmailErrorCode = exports.CheckoutSetAddressStreetErrorCode = exports.CheckoutSetAddressSourceErrorCode = exports.CheckoutSetAddressProvinceErrorCode = exports.CheckoutSetAddressPostalErrorCode = exports.CheckoutSetAddressNameErrorCode = exports.CheckoutSetAddressLastNameErrorCode = exports.CheckoutSetAddressFirstNameErrorCode = exports.CheckoutSetAddressCountryErrorCode = exports.CheckoutSetAddressCityErrorCode = exports.CheckoutSelectAddressBookContactErrorCode = exports.CheckoutSaveAddressBookErrorCode = exports.CheckoutRedirectMethod = exports.CheckoutPromptBehavior = exports.CheckoutPaymentRedirectMethod = exports.CheckoutPaymentGroupType = exports.CheckoutPaymentAuthorizationParametersErrorCode = exports.CheckoutLineErrorCode = exports.CheckoutInitiatePaymentErrorCode = exports.CheckoutInfoTranslationsKeyField = exports.CheckoutInfoPaymentsFormDataKeyField = exports.CheckoutInfoPaymentDetailsKeyField = exports.CheckoutInfoOrderSummaryKeyField = exports.CheckoutInfoNationalIdNumberConfigurationFormDataKeyField = exports.CheckoutInfoDeliveriesFormDataKeyField = exports.CheckoutInfoContentKeyField = exports.CheckoutInfoAddressPredictionsKeyField = exports.CheckoutInfoAddressConfigurationFormDataKeyField = exports.CheckoutInfoAddressBookContactsKeyField = exports.CheckoutHttpSequencedRequestErrorCode = exports.CheckoutGetErrorCode = exports.CheckoutGetAddressPredictionErrorCode = exports.CheckoutFeaturesErrorCode = exports.CheckoutErrorCode = exports.CheckoutDeletePromotionCodeErrorCode = exports.CheckoutDeletePaymentSourceErrorCode = exports.CheckoutDeletePaymentErrorCode = exports.CheckoutDeleteLineErrorCode = void 0;
|
|
5
5
|
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.ExperimentDiscriminatorKey = 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.DisputeProcessor = exports.DisputeLiability = exports.DisputeImportType = exports.DisputeImportStatus = exports.DisputeEvidence = exports.DisputeCategory = exports.DisputeBillable = exports.DiscountRequestOrderEntitlementKey = exports.DeminimisAdjustmentType = exports.DeliveredDutyOptionMessageType = exports.CrossdockTrackingStatus = exports.ContentTypeCast = exports.ContentType = exports.ContentStatus = exports.ContentElementType = exports.ComplianceType = exports.ClassificationErrorCode = exports.CheckoutUrlType = exports.CheckoutSubmitErrorCode = exports.CheckoutShippingMethodPromptBehavior = void 0;
|
|
6
|
-
exports.OrganizationPaymentStatus = exports.OrganizationMetricType = exports.OrganizationCapability = exports.OrderTransactionType = exports.OrderLifecycleEvent = exports.OrderChargeTrigger = exports.OrderCancellationInitiatedBy = exports.OrderAttributeIntent = 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.MainTransactionStatus = exports.LiabilityType = exports.LabelTransactionType = exports.LabelRequestErrorHandlingResponsibility = exports.
|
|
7
|
-
exports.ShopifyPromotionBehavior = exports.ShopifyMonitoringTrackingField = exports.ShopifyMonitoringMonitorReviewStatus = exports.ShopifyMarketsTradeSector = exports.ShopifyMarketsQueuedRecordType = exports.ShopifyMarketsHtsNumberAvailable = exports.ShopifyMarketsDangerousGoods = exports.ShopifyGrantStatus = exports.ShopifyCheckInventoryErrorCode = exports.SessionCountryStatus = exports.ServiceName = exports.SerialReservationError = exports.Scope = exports.RiskEvaluation = exports.RiskCheck = exports.RestrictionStatus = exports.RestrictionDecision = exports.RestrictionAction = exports.ResponsibleParty = exports.ReportingScheme = exports.ReportStatus = exports.ReportInterval = exports.RejectionReason = exports.RedirectReason = exports.ReboundConfigurationStatus = exports.RateSource = exports.RateLevelKey = exports.QuoteRequestType = exports.QueuedRecordType = exports.PromptTarget = exports.PromptOptions = exports.PromptCheckoutDisplayPosition = exports.PromptAction = exports.ProductStatus = exports.ProcessorEntityStatus = exports.Processor = exports.ProcessingTransactionType = exports.PricingIndicatorStatus = exports.PriceSelector = exports.PregenDataKeyField = exports.PreferredBillingSchedule = exports.PaymentTerm = exports.PaymentSummaryType = exports.PaymentSummaryStatus = exports.Owner = exports.OutputStyle = exports.OrganizationRestrictionScreeningStatus = exports.OrganizationRestrictionRiskLevel = exports.OrganizationRestrictionNoteType =
|
|
8
|
-
exports.
|
|
6
|
+
exports.OrganizationRestrictionApprovalStatus = exports.OrganizationPaymentStatus = exports.OrganizationMetricType = exports.OrganizationCapability = exports.OrderTransactionType = exports.OrderLifecycleEvent = exports.OrderChargeTrigger = exports.OrderCancellationInitiatedBy = exports.OrderAttributeIntent = 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.MainTransactionStatus = exports.LiabilityType = exports.LabelTransactionType = exports.LabelRequestErrorHandlingResponsibility = exports.LabelGenerationAddressFailureStatus = exports.LabelCreationStatus = exports.LabelCancellationErrorCode = exports.LabelBillingStrategy = exports.KeywordType = exports.ItemType = exports.ItemQuantityAction = exports.ItemHarmonizationStatus = exports.ItemClassificationStatus = exports.ItemClassificationAction = exports.InventoryReservation = exports.InventoryCheckService = exports.InitialInputDataSource = exports.HttpMethod = exports.GoogleAnalyticsPlugin = void 0;
|
|
7
|
+
exports.ShopifyPromotionOfferAllocationMethod = exports.ShopifyPromotionBehavior = exports.ShopifyMonitoringTrackingField = exports.ShopifyMonitoringMonitorReviewStatus = exports.ShopifyMarketsTradeSector = exports.ShopifyMarketsQueuedRecordType = exports.ShopifyMarketsHtsNumberAvailable = exports.ShopifyMarketsDangerousGoods = exports.ShopifyGrantStatus = exports.ShopifyCheckInventoryErrorCode = exports.SessionCountryStatus = exports.ServiceName = exports.SerialReservationError = exports.Scope = exports.RiskEvaluation = exports.RiskCheck = exports.RestrictionStatus = exports.RestrictionDecision = exports.RestrictionAction = exports.ResponsibleParty = exports.ReportingScheme = exports.ReportStatus = exports.ReportInterval = exports.RejectionReason = exports.RedirectReason = exports.ReboundConfigurationStatus = exports.RateSource = exports.RateLevelKey = exports.QuoteRequestType = exports.QueuedRecordType = exports.PromptTarget = exports.PromptOptions = exports.PromptCheckoutDisplayPosition = exports.PromptAction = exports.ProductStatus = exports.ProcessorEntityStatus = exports.Processor = exports.ProcessingTransactionType = exports.PricingIndicatorStatus = exports.PriceSelector = exports.PregenDataKeyField = exports.PreferredBillingSchedule = exports.PaymentTerm = exports.PaymentSummaryType = exports.PaymentSummaryStatus = exports.Owner = exports.OutputStyle = exports.OrganizationRestrictionScreeningStatus = exports.OrganizationRestrictionRiskLevel = exports.OrganizationRestrictionNoteType = void 0;
|
|
8
|
+
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = exports.TrueUpSurchargeType = exports.TransferMethod = exports.TransactionPostingMethod = exports.TrackingIntegrationType = exports.TimeseriesType = exports.TaxTransactionType = exports.TaxParty = exports.TaxCalculationErrorCode = exports.TaskProcessorKey = exports.TariffEligibilityType = exports.SuggestionAction = exports.SubscriptionFrequency = exports.Status = exports.StatisticType = exports.StatementTransferTransactionLocation = exports.StatementStatus = exports.SnoozeSourceType = exports.SnoozeNextActionWith = exports.SimpleRoundingStrategy = exports.SignificanceAction = exports.ShopifyService = exports.ShopifyPromotionStatus = exports.ShopifyPromotionOrderEntitlementComponent = void 0;
|
|
9
9
|
var AccountSettingLiabilitiesMethod;
|
|
10
10
|
(function (AccountSettingLiabilitiesMethod) {
|
|
11
11
|
AccountSettingLiabilitiesMethod["WITHHOLDING"] = "withholding";
|
|
@@ -95,15 +95,14 @@ var BillingMetricKey;
|
|
|
95
95
|
BillingMetricKey["CAPTURE_TRANSACTIONS_IGNORED_FRAUD_COUNT"] = "capture_transactions_ignored_fraud_count";
|
|
96
96
|
BillingMetricKey["CAPTURE_TRANSACTIONS_IGNORED_FULLY_REFUNDED_COUNT"] = "capture_transactions_ignored_fully_refunded_count";
|
|
97
97
|
BillingMetricKey["CAPTURE_TRANSACTIONS_IGNORED_OTHER_COUNT"] = "capture_transactions_ignored_other_count";
|
|
98
|
+
BillingMetricKey["CAPTURE_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT"] = "capture_transactions_ignored_previously_processed_count";
|
|
98
99
|
BillingMetricKey["CAPTURE_TRANSACTIONS_TOTAL"] = "capture_transactions_total";
|
|
99
|
-
BillingMetricKey["
|
|
100
|
-
BillingMetricKey["
|
|
100
|
+
BillingMetricKey["CHANNEL_TRANSACTIONS_PROCESSING_COUNT"] = "channel_transactions_processing_count";
|
|
101
|
+
BillingMetricKey["CHANNEL_TRANSACTIONS_PROCESSING_TOTAL"] = "channel_transactions_processing_total";
|
|
101
102
|
BillingMetricKey["CHANNEL_TRANSACTIONS_ADJUSTMENT_COUNT"] = "channel_transactions_adjustment_count";
|
|
102
103
|
BillingMetricKey["CHANNEL_TRANSACTIONS_ADJUSTMENT_TOTAL"] = "channel_transactions_adjustment_total";
|
|
103
104
|
BillingMetricKey["CHANNEL_TRANSACTIONS_REVERSAL_COUNT"] = "channel_transactions_reversal_count";
|
|
104
105
|
BillingMetricKey["CHANNEL_TRANSACTIONS_REVERSAL_TOTAL"] = "channel_transactions_reversal_total";
|
|
105
|
-
BillingMetricKey["CHANNEL_TRANSACTIONS_OTHER_COUNT"] = "channel_transactions_other_count";
|
|
106
|
-
BillingMetricKey["CHANNEL_TRANSACTIONS_OTHER_TOTAL"] = "channel_transactions_other_total";
|
|
107
106
|
BillingMetricKey["CHANNEL_BILLED_TRANSACTIONS_COUNT"] = "channel_billed_transactions_count";
|
|
108
107
|
BillingMetricKey["CHANNEL_BILLED_TRANSACTIONS_TOTAL"] = "channel_billed_transactions_total";
|
|
109
108
|
BillingMetricKey["CREDIT_PAYMENT_TRANSACTIONS_COUNT"] = "credit_payment_transactions_count";
|
|
@@ -126,11 +125,16 @@ var BillingMetricKey;
|
|
|
126
125
|
BillingMetricKey["REFUND_TRANSACTIONS_IGNORED_FRAUD_COUNT"] = "refund_transactions_ignored_fraud_count";
|
|
127
126
|
BillingMetricKey["REFUND_TRANSACTIONS_IGNORED_FULLY_REFUNDED_COUNT"] = "refund_transactions_ignored_fully_refunded_count";
|
|
128
127
|
BillingMetricKey["REFUND_TRANSACTIONS_IGNORED_OTHER_COUNT"] = "refund_transactions_ignored_other_count";
|
|
128
|
+
BillingMetricKey["REFUND_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT"] = "refund_transactions_ignored_previously_processed_count";
|
|
129
129
|
BillingMetricKey["REFUND_TRANSACTIONS_TOTAL"] = "refund_transactions_total";
|
|
130
130
|
BillingMetricKey["REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_COUNT"] = "reversal_order_cancellations_transactions_count";
|
|
131
131
|
BillingMetricKey["REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_TOTAL"] = "reversal_order_cancellations_transactions_total";
|
|
132
132
|
BillingMetricKey["REVERSAL_EXTERNAL_FULFILLMENT_TRANSACTIONS_COUNT"] = "reversal_external_fulfillment_transactions_count";
|
|
133
133
|
BillingMetricKey["REVERSAL_EXTERNAL_FULFILLMENT_TRANSACTIONS_TOTAL"] = "reversal_external_fulfillment_transactions_total";
|
|
134
|
+
BillingMetricKey["REVERSAL_OTHER_TRANSACTIONS_COUNT"] = "reversal_other_transactions_count";
|
|
135
|
+
BillingMetricKey["REVERSAL_OTHER_TRANSACTIONS_TOTAL"] = "reversal_other_transactions_total";
|
|
136
|
+
BillingMetricKey["REVERSAL_ALL_TRANSACTIONS_COUNT"] = "reversal_all_transactions_count";
|
|
137
|
+
BillingMetricKey["REVERSAL_ALL_TRANSACTIONS_TOTAL"] = "reversal_all_transactions_total";
|
|
134
138
|
BillingMetricKey["TAX_TRANSACTIONS_COUNT"] = "tax_transactions_count";
|
|
135
139
|
BillingMetricKey["TAX_TRANSACTIONS_TOTAL"] = "tax_transactions_total";
|
|
136
140
|
BillingMetricKey["TRANSFER_TRANSACTIONS_COUNT"] = "transfer_transactions_count";
|
|
@@ -141,27 +145,10 @@ var BillingMetricKey;
|
|
|
141
145
|
BillingMetricKey["PERCENTAGE_ORDERS_WITH_FULFILLMENT_PROOF_4_WEEKS"] = "percentage_orders_with_fulfillment_proof_4_weeks";
|
|
142
146
|
BillingMetricKey["PERCENTAGE_ORDERS_WITH_FULFILLMENT_PROOF_6_WEEKS"] = "percentage_orders_with_fulfillment_proof_6_weeks";
|
|
143
147
|
BillingMetricKey["PERCENTAGE_ORDERS_WITH_FULFILLMENT_PROOF_ALL"] = "percentage_orders_with_fulfillment_proof_all";
|
|
148
|
+
BillingMetricKey["PENDING_PAYOUTS_MAX_AGE_IN_MILLIS"] = "pending_payouts_max_age_in_millis";
|
|
144
149
|
BillingMetricKey["SHIPPING_NOTIFICATIONS_COUNT"] = "shipping_notifications_count";
|
|
145
150
|
BillingMetricKey["QUEUED_CAPTURE_UNPROCESSED_COUNT"] = "queued_capture_unprocessed_count";
|
|
146
|
-
BillingMetricKey["QUEUED_CAPTURE_DELETION_UNPROCESSED_COUNT"] = "queued_capture_deletion_unprocessed_count";
|
|
147
|
-
BillingMetricKey["QUEUED_CHANNEL_TRANSACTION_UNPROCESSED_COUNT"] = "queued_channel_transaction_unprocessed_count";
|
|
148
|
-
BillingMetricKey["QUEUED_CHANNEL_ORGANIZATION_UNPROCESSED_COUNT"] = "queued_channel_organization_unprocessed_count";
|
|
149
|
-
BillingMetricKey["QUEUED_CONSUMER_INVOICE_UNPROCESSED_COUNT"] = "queued_consumer_invoice_unprocessed_count";
|
|
150
|
-
BillingMetricKey["QUEUED_FULFILLMENT_EXTERNAL_UNPROCESSED_COUNT"] = "queued_fulfillment_external_unprocessed_count";
|
|
151
|
-
BillingMetricKey["QUEUED_FULFILLMENT_IN_TRANSIT_UNPROCESSED_COUNT"] = "queued_fulfillment_in_transit_unprocessed_count";
|
|
152
|
-
BillingMetricKey["QUEUED_FULFILLMENT_SHIPPING_NOTIFICATION_UNPROCESSED_COUNT"] = "queued_fulfillment_shipping_notification_unprocessed_count";
|
|
153
|
-
BillingMetricKey["QUEUED_LABEL_INVOICE_REQUEST_UNPROCESSED_COUNT"] = "queued_label_invoice_request_unprocessed_count";
|
|
154
|
-
BillingMetricKey["QUEUED_LABEL_TRACKING_SUMMARY_UNPROCESSED_COUNT"] = "queued_label_tracking_summary_unprocessed_count";
|
|
155
|
-
BillingMetricKey["QUEUED_LABEL_ORIGIN_UNPROCESSED_COUNT"] = "queued_label_origin_unprocessed_count";
|
|
156
|
-
BillingMetricKey["QUEUED_ORDER_UNPROCESSED_COUNT"] = "queued_order_unprocessed_count";
|
|
157
|
-
BillingMetricKey["QUEUED_ORDER_IDENTIFIER_UNPROCESSED_COUNT"] = "queued_order_identifier_unprocessed_count";
|
|
158
151
|
BillingMetricKey["QUEUED_REFUND_UNPROCESSED_COUNT"] = "queued_refund_unprocessed_count";
|
|
159
|
-
BillingMetricKey["QUEUED_REFUND_DELETION_UNPROCESSED_COUNT"] = "queued_refund_deletion_unprocessed_count";
|
|
160
|
-
BillingMetricKey["QUEUED_REFUND_OVER_CAPTURE_UNPROCESSED_COUNT"] = "queued_refund_over_capture_unprocessed_count";
|
|
161
|
-
BillingMetricKey["QUEUED_SALES_RECORD_UNPROCESSED_COUNT"] = "queued_sales_record_unprocessed_count";
|
|
162
|
-
BillingMetricKey["QUEUED_STATEMENT_BATCH_UNPROCESSED_COUNT"] = "queued_statement_batch_unprocessed_count";
|
|
163
|
-
BillingMetricKey["QUEUED_STATEMENT_EMAIL_UNPROCESSED_COUNT"] = "queued_statement_email_unprocessed_count";
|
|
164
|
-
BillingMetricKey["QUEUED_STATEMENT_SUMMARY_EMAIL_UNPROCESSED_COUNT"] = "queued_statement_summary_email_unprocessed_count";
|
|
165
152
|
BillingMetricKey["QUEUED_RECORD_SNOOZE_COUNT"] = "queued_record_snooze_count";
|
|
166
153
|
BillingMetricKey["QUEUED_RECORD_SNOOZE_ENDING_IN_48_HOURS_COUNT"] = "queued_record_snooze_ending_in_48_hours_count";
|
|
167
154
|
BillingMetricKey["STATEMENTS_NO_PAYOUT_COUNT"] = "statements_no_payout_count";
|
|
@@ -174,10 +161,7 @@ var BillingMetricKey;
|
|
|
174
161
|
BillingMetricKey["PAYOUTS_SENT_TOTAL"] = "payouts_sent_total";
|
|
175
162
|
BillingMetricKey["PAYOUTS_FAILED_COUNT"] = "payouts_failed_count";
|
|
176
163
|
BillingMetricKey["PAYOUTS_FAILED_TOTAL"] = "payouts_failed_total";
|
|
177
|
-
BillingMetricKey["PENDING_PAYOUTS_MAX_AGE"] = "pending_payouts_max_age";
|
|
178
164
|
BillingMetricKey["AVERAGE_PAYOUT_AMOUNT"] = "average_payout_amount";
|
|
179
|
-
BillingMetricKey["ORDERS_WITH_PAYMENTS_COUNT"] = "orders_with_payments_count";
|
|
180
|
-
BillingMetricKey["ORDERS_WITHOUT_PAYMENTS_COUNT"] = "orders_without_payments_count";
|
|
181
165
|
BillingMetricKey["CAPTURE_TRANSACTION_WITH_ZERO_FEES_AND_NO_CHANNEL_TRANSACTION_COUNT"] = "capture_transaction_with_zero_fees_and_no_channel_transaction_count";
|
|
182
166
|
})(BillingMetricKey = exports.BillingMetricKey || (exports.BillingMetricKey = {}));
|
|
183
167
|
var BillingStatementAttachmentKey;
|
|
@@ -229,6 +213,7 @@ var BillingTransactionType;
|
|
|
229
213
|
BillingTransactionType["CHANNEL_BILLED"] = "channel_billed";
|
|
230
214
|
BillingTransactionType["TAX"] = "tax";
|
|
231
215
|
BillingTransactionType["DUTY"] = "duty";
|
|
216
|
+
BillingTransactionType["TRUEUP"] = "trueup";
|
|
232
217
|
})(BillingTransactionType = exports.BillingTransactionType || (exports.BillingTransactionType = {}));
|
|
233
218
|
var BlazeCheckoutEvent;
|
|
234
219
|
(function (BlazeCheckoutEvent) {
|
|
@@ -293,7 +278,8 @@ var ChannelOrderAcceptanceNextActionFrom;
|
|
|
293
278
|
ChannelOrderAcceptanceNextActionFrom["CORE_TEAM_INVESTIGATE"] = "core_team_investigate";
|
|
294
279
|
ChannelOrderAcceptanceNextActionFrom["MEX_TEAM"] = "mex_team";
|
|
295
280
|
ChannelOrderAcceptanceNextActionFrom["PAYMENTS_TEAM"] = "payments_team";
|
|
296
|
-
ChannelOrderAcceptanceNextActionFrom["
|
|
281
|
+
ChannelOrderAcceptanceNextActionFrom["TC_TEAM"] = "tc_team";
|
|
282
|
+
ChannelOrderAcceptanceNextActionFrom["LOGISTICS_TEAM"] = "logistics_team";
|
|
297
283
|
})(ChannelOrderAcceptanceNextActionFrom = exports.ChannelOrderAcceptanceNextActionFrom || (exports.ChannelOrderAcceptanceNextActionFrom = {}));
|
|
298
284
|
var ChannelOrderAcceptanceRejectionReason;
|
|
299
285
|
(function (ChannelOrderAcceptanceRejectionReason) {
|
|
@@ -1190,6 +1176,8 @@ var EventType;
|
|
|
1190
1176
|
EventType["LOCALIZED_ITEM_PRICES_EXPORT_REQUEST"] = "localized_item_prices_export_request";
|
|
1191
1177
|
EventType["OPTIN_PROMPT_UPSERTED"] = "optin_prompt_upserted";
|
|
1192
1178
|
EventType["OPTIN_PROMPT_DELETED"] = "optin_prompt_deleted";
|
|
1179
|
+
EventType["ORDER_COMBINED_SHIPMENT_UPSERTED"] = "order_combined_shipment_upserted";
|
|
1180
|
+
EventType["ORDER_COMBINED_SHIPMENT_DELETED"] = "order_combined_shipment_deleted";
|
|
1193
1181
|
EventType["ORDER_FULFILLMENT_DELETED"] = "order_fulfillment_deleted";
|
|
1194
1182
|
EventType["ORDER_FULFILLMENT_UPSERTED"] = "order_fulfillment_upserted";
|
|
1195
1183
|
EventType["ORDER_PLACED"] = "order_placed";
|
|
@@ -1478,10 +1466,6 @@ var LabelGenerationAddressFailureStatus;
|
|
|
1478
1466
|
LabelGenerationAddressFailureStatus["RESOLVED"] = "resolved";
|
|
1479
1467
|
LabelGenerationAddressFailureStatus["UNRESOLVED"] = "unresolved";
|
|
1480
1468
|
})(LabelGenerationAddressFailureStatus = exports.LabelGenerationAddressFailureStatus || (exports.LabelGenerationAddressFailureStatus = {}));
|
|
1481
|
-
var LabelInputSource;
|
|
1482
|
-
(function (LabelInputSource) {
|
|
1483
|
-
LabelInputSource["ESTIMATE"] = "estimate";
|
|
1484
|
-
})(LabelInputSource = exports.LabelInputSource || (exports.LabelInputSource = {}));
|
|
1485
1469
|
var LabelRequestErrorHandlingResponsibility;
|
|
1486
1470
|
(function (LabelRequestErrorHandlingResponsibility) {
|
|
1487
1471
|
LabelRequestErrorHandlingResponsibility["MERCHANT"] = "merchant";
|
|
@@ -1882,16 +1866,18 @@ var QueuedRecordType;
|
|
|
1882
1866
|
QueuedRecordType["CAPTURE"] = "capture";
|
|
1883
1867
|
QueuedRecordType["CAPTURE_DELETION"] = "capture_deletion";
|
|
1884
1868
|
QueuedRecordType["CHANNEL_TRANSACTION"] = "channel_transaction";
|
|
1885
|
-
QueuedRecordType["CHANNEL_ORGANIZATION"] = "channel_organization";
|
|
1886
1869
|
QueuedRecordType["CONSUMER_INVOICE"] = "consumer_invoice";
|
|
1887
1870
|
QueuedRecordType["FULFILLMENT_IN_TRANSIT"] = "fulfillment_in_transit";
|
|
1888
1871
|
QueuedRecordType["FULFILLMENT_SHIPPING_NOTIFICATION"] = "fulfillment_shipping_notification";
|
|
1889
1872
|
QueuedRecordType["FULFILLMENT_EXTERNAL"] = "fulfillment_external";
|
|
1890
1873
|
QueuedRecordType["LABEL_TRACKING_SUMMARY"] = "label_tracking_summary";
|
|
1891
1874
|
QueuedRecordType["LABEL_INVOICE_REQUEST"] = "label_invoice_request";
|
|
1875
|
+
QueuedRecordType["LABEL_INVOICE_RESPONSE"] = "label_invoice_response";
|
|
1876
|
+
QueuedRecordType["LABEL_INVOICE_RESPONSE_FILE"] = "label_invoice_response_file";
|
|
1892
1877
|
QueuedRecordType["LABEL_ORIGIN"] = "label_origin";
|
|
1893
1878
|
QueuedRecordType["ORDER"] = "order";
|
|
1894
1879
|
QueuedRecordType["ORDER_IDENTIFIER"] = "order_identifier";
|
|
1880
|
+
QueuedRecordType["ORGANIZATION_ONBOARDING_STATE"] = "organization_onboarding_state";
|
|
1895
1881
|
QueuedRecordType["REFUND"] = "refund";
|
|
1896
1882
|
QueuedRecordType["REFUND_DELETION"] = "refund_deletion";
|
|
1897
1883
|
QueuedRecordType["REFUND_OVER_CAPTURE"] = "refund_over_capture";
|
|
@@ -1899,7 +1885,6 @@ var QueuedRecordType;
|
|
|
1899
1885
|
QueuedRecordType["STATEMENT_BATCH"] = "statement_batch";
|
|
1900
1886
|
QueuedRecordType["STATEMENT_EMAIL"] = "statement_email";
|
|
1901
1887
|
QueuedRecordType["STATEMENT_SUMMARY_EMAIL"] = "statement_summary_email";
|
|
1902
|
-
QueuedRecordType["WASH"] = "wash";
|
|
1903
1888
|
})(QueuedRecordType = exports.QueuedRecordType || (exports.QueuedRecordType = {}));
|
|
1904
1889
|
var QuoteRequestType;
|
|
1905
1890
|
(function (QuoteRequestType) {
|
|
@@ -2177,13 +2162,6 @@ var SuggestionAction;
|
|
|
2177
2162
|
SuggestionAction["VALIDATE"] = "validate";
|
|
2178
2163
|
SuggestionAction["REVIEW"] = "review";
|
|
2179
2164
|
})(SuggestionAction = exports.SuggestionAction || (exports.SuggestionAction = {}));
|
|
2180
|
-
var SurchargeType;
|
|
2181
|
-
(function (SurchargeType) {
|
|
2182
|
-
SurchargeType["FUEL"] = "fuel";
|
|
2183
|
-
SurchargeType["REMOTE_AREA"] = "remote_area";
|
|
2184
|
-
SurchargeType["OVERSIZE"] = "oversize";
|
|
2185
|
-
SurchargeType["DUTIES_PAID"] = "duties_paid";
|
|
2186
|
-
})(SurchargeType = exports.SurchargeType || (exports.SurchargeType = {}));
|
|
2187
2165
|
var TariffEligibilityType;
|
|
2188
2166
|
(function (TariffEligibilityType) {
|
|
2189
2167
|
TariffEligibilityType["REX"] = "rex";
|
|
@@ -2246,7 +2224,14 @@ var TrueUpSurchargeType;
|
|
|
2246
2224
|
TrueUpSurchargeType["DUTIES_PAID"] = "duties_paid";
|
|
2247
2225
|
TrueUpSurchargeType["EMERGENCY"] = "emergency";
|
|
2248
2226
|
TrueUpSurchargeType["PEAK"] = "peak";
|
|
2227
|
+
TrueUpSurchargeType["ADDRESS_CORRECTION"] = "address_correction";
|
|
2249
2228
|
})(TrueUpSurchargeType = exports.TrueUpSurchargeType || (exports.TrueUpSurchargeType = {}));
|
|
2229
|
+
var TrueupTransactionType;
|
|
2230
|
+
(function (TrueupTransactionType) {
|
|
2231
|
+
TrueupTransactionType["ADJUSTMENT"] = "adjustment";
|
|
2232
|
+
TrueupTransactionType["REVERSAL"] = "reversal";
|
|
2233
|
+
TrueupTransactionType["TRUEUP"] = "trueup";
|
|
2234
|
+
})(TrueupTransactionType = exports.TrueupTransactionType || (exports.TrueupTransactionType = {}));
|
|
2250
2235
|
var UnclassifiedProductStatus;
|
|
2251
2236
|
(function (UnclassifiedProductStatus) {
|
|
2252
2237
|
UnclassifiedProductStatus["IGNORED"] = "ignored";
|
|
@@ -2256,15 +2241,3 @@ var UnclassifiedProductStatus;
|
|
|
2256
2241
|
UnclassifiedProductStatus["QUEUED"] = "queued";
|
|
2257
2242
|
UnclassifiedProductStatus["UNCONFIDENT"] = "unconfident";
|
|
2258
2243
|
})(UnclassifiedProductStatus = exports.UnclassifiedProductStatus || (exports.UnclassifiedProductStatus = {}));
|
|
2259
|
-
var WashCarrierActualFileStatus;
|
|
2260
|
-
(function (WashCarrierActualFileStatus) {
|
|
2261
|
-
WashCarrierActualFileStatus["PENDING"] = "pending";
|
|
2262
|
-
WashCarrierActualFileStatus["PROCESSING"] = "processing";
|
|
2263
|
-
WashCarrierActualFileStatus["PROCESSED"] = "processed";
|
|
2264
|
-
WashCarrierActualFileStatus["FAILED"] = "failed";
|
|
2265
|
-
})(WashCarrierActualFileStatus = exports.WashCarrierActualFileStatus || (exports.WashCarrierActualFileStatus = {}));
|
|
2266
|
-
var WeightSelection;
|
|
2267
|
-
(function (WeightSelection) {
|
|
2268
|
-
WeightSelection["DEAD"] = "dead";
|
|
2269
|
-
WeightSelection["DIMENSIONAL"] = "dimensional";
|
|
2270
|
-
})(WeightSelection = exports.WeightSelection || (exports.WeightSelection = {}));
|
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.52",
|
|
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": "1c87d63f654d1b7f4aa3ef5237a2cf0558fda3d5"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -86,15 +86,14 @@ export enum BillingMetricKey {
|
|
|
86
86
|
CAPTURE_TRANSACTIONS_IGNORED_FRAUD_COUNT = 'capture_transactions_ignored_fraud_count',
|
|
87
87
|
CAPTURE_TRANSACTIONS_IGNORED_FULLY_REFUNDED_COUNT = 'capture_transactions_ignored_fully_refunded_count',
|
|
88
88
|
CAPTURE_TRANSACTIONS_IGNORED_OTHER_COUNT = 'capture_transactions_ignored_other_count',
|
|
89
|
+
CAPTURE_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT = 'capture_transactions_ignored_previously_processed_count',
|
|
89
90
|
CAPTURE_TRANSACTIONS_TOTAL = 'capture_transactions_total',
|
|
90
|
-
|
|
91
|
-
|
|
91
|
+
CHANNEL_TRANSACTIONS_PROCESSING_COUNT = 'channel_transactions_processing_count',
|
|
92
|
+
CHANNEL_TRANSACTIONS_PROCESSING_TOTAL = 'channel_transactions_processing_total',
|
|
92
93
|
CHANNEL_TRANSACTIONS_ADJUSTMENT_COUNT = 'channel_transactions_adjustment_count',
|
|
93
94
|
CHANNEL_TRANSACTIONS_ADJUSTMENT_TOTAL = 'channel_transactions_adjustment_total',
|
|
94
95
|
CHANNEL_TRANSACTIONS_REVERSAL_COUNT = 'channel_transactions_reversal_count',
|
|
95
96
|
CHANNEL_TRANSACTIONS_REVERSAL_TOTAL = 'channel_transactions_reversal_total',
|
|
96
|
-
CHANNEL_TRANSACTIONS_OTHER_COUNT = 'channel_transactions_other_count',
|
|
97
|
-
CHANNEL_TRANSACTIONS_OTHER_TOTAL = 'channel_transactions_other_total',
|
|
98
97
|
CHANNEL_BILLED_TRANSACTIONS_COUNT = 'channel_billed_transactions_count',
|
|
99
98
|
CHANNEL_BILLED_TRANSACTIONS_TOTAL = 'channel_billed_transactions_total',
|
|
100
99
|
CREDIT_PAYMENT_TRANSACTIONS_COUNT = 'credit_payment_transactions_count',
|
|
@@ -117,11 +116,16 @@ export enum BillingMetricKey {
|
|
|
117
116
|
REFUND_TRANSACTIONS_IGNORED_FRAUD_COUNT = 'refund_transactions_ignored_fraud_count',
|
|
118
117
|
REFUND_TRANSACTIONS_IGNORED_FULLY_REFUNDED_COUNT = 'refund_transactions_ignored_fully_refunded_count',
|
|
119
118
|
REFUND_TRANSACTIONS_IGNORED_OTHER_COUNT = 'refund_transactions_ignored_other_count',
|
|
119
|
+
REFUND_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT = 'refund_transactions_ignored_previously_processed_count',
|
|
120
120
|
REFUND_TRANSACTIONS_TOTAL = 'refund_transactions_total',
|
|
121
121
|
REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_COUNT = 'reversal_order_cancellations_transactions_count',
|
|
122
122
|
REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_TOTAL = 'reversal_order_cancellations_transactions_total',
|
|
123
123
|
REVERSAL_EXTERNAL_FULFILLMENT_TRANSACTIONS_COUNT = 'reversal_external_fulfillment_transactions_count',
|
|
124
124
|
REVERSAL_EXTERNAL_FULFILLMENT_TRANSACTIONS_TOTAL = 'reversal_external_fulfillment_transactions_total',
|
|
125
|
+
REVERSAL_OTHER_TRANSACTIONS_COUNT = 'reversal_other_transactions_count',
|
|
126
|
+
REVERSAL_OTHER_TRANSACTIONS_TOTAL = 'reversal_other_transactions_total',
|
|
127
|
+
REVERSAL_ALL_TRANSACTIONS_COUNT = 'reversal_all_transactions_count',
|
|
128
|
+
REVERSAL_ALL_TRANSACTIONS_TOTAL = 'reversal_all_transactions_total',
|
|
125
129
|
TAX_TRANSACTIONS_COUNT = 'tax_transactions_count',
|
|
126
130
|
TAX_TRANSACTIONS_TOTAL = 'tax_transactions_total',
|
|
127
131
|
TRANSFER_TRANSACTIONS_COUNT = 'transfer_transactions_count',
|
|
@@ -132,27 +136,10 @@ export enum BillingMetricKey {
|
|
|
132
136
|
PERCENTAGE_ORDERS_WITH_FULFILLMENT_PROOF_4_WEEKS = 'percentage_orders_with_fulfillment_proof_4_weeks',
|
|
133
137
|
PERCENTAGE_ORDERS_WITH_FULFILLMENT_PROOF_6_WEEKS = 'percentage_orders_with_fulfillment_proof_6_weeks',
|
|
134
138
|
PERCENTAGE_ORDERS_WITH_FULFILLMENT_PROOF_ALL = 'percentage_orders_with_fulfillment_proof_all',
|
|
139
|
+
PENDING_PAYOUTS_MAX_AGE_IN_MILLIS = 'pending_payouts_max_age_in_millis',
|
|
135
140
|
SHIPPING_NOTIFICATIONS_COUNT = 'shipping_notifications_count',
|
|
136
141
|
QUEUED_CAPTURE_UNPROCESSED_COUNT = 'queued_capture_unprocessed_count',
|
|
137
|
-
QUEUED_CAPTURE_DELETION_UNPROCESSED_COUNT = 'queued_capture_deletion_unprocessed_count',
|
|
138
|
-
QUEUED_CHANNEL_TRANSACTION_UNPROCESSED_COUNT = 'queued_channel_transaction_unprocessed_count',
|
|
139
|
-
QUEUED_CHANNEL_ORGANIZATION_UNPROCESSED_COUNT = 'queued_channel_organization_unprocessed_count',
|
|
140
|
-
QUEUED_CONSUMER_INVOICE_UNPROCESSED_COUNT = 'queued_consumer_invoice_unprocessed_count',
|
|
141
|
-
QUEUED_FULFILLMENT_EXTERNAL_UNPROCESSED_COUNT = 'queued_fulfillment_external_unprocessed_count',
|
|
142
|
-
QUEUED_FULFILLMENT_IN_TRANSIT_UNPROCESSED_COUNT = 'queued_fulfillment_in_transit_unprocessed_count',
|
|
143
|
-
QUEUED_FULFILLMENT_SHIPPING_NOTIFICATION_UNPROCESSED_COUNT = 'queued_fulfillment_shipping_notification_unprocessed_count',
|
|
144
|
-
QUEUED_LABEL_INVOICE_REQUEST_UNPROCESSED_COUNT = 'queued_label_invoice_request_unprocessed_count',
|
|
145
|
-
QUEUED_LABEL_TRACKING_SUMMARY_UNPROCESSED_COUNT = 'queued_label_tracking_summary_unprocessed_count',
|
|
146
|
-
QUEUED_LABEL_ORIGIN_UNPROCESSED_COUNT = 'queued_label_origin_unprocessed_count',
|
|
147
|
-
QUEUED_ORDER_UNPROCESSED_COUNT = 'queued_order_unprocessed_count',
|
|
148
|
-
QUEUED_ORDER_IDENTIFIER_UNPROCESSED_COUNT = 'queued_order_identifier_unprocessed_count',
|
|
149
142
|
QUEUED_REFUND_UNPROCESSED_COUNT = 'queued_refund_unprocessed_count',
|
|
150
|
-
QUEUED_REFUND_DELETION_UNPROCESSED_COUNT = 'queued_refund_deletion_unprocessed_count',
|
|
151
|
-
QUEUED_REFUND_OVER_CAPTURE_UNPROCESSED_COUNT = 'queued_refund_over_capture_unprocessed_count',
|
|
152
|
-
QUEUED_SALES_RECORD_UNPROCESSED_COUNT = 'queued_sales_record_unprocessed_count',
|
|
153
|
-
QUEUED_STATEMENT_BATCH_UNPROCESSED_COUNT = 'queued_statement_batch_unprocessed_count',
|
|
154
|
-
QUEUED_STATEMENT_EMAIL_UNPROCESSED_COUNT = 'queued_statement_email_unprocessed_count',
|
|
155
|
-
QUEUED_STATEMENT_SUMMARY_EMAIL_UNPROCESSED_COUNT = 'queued_statement_summary_email_unprocessed_count',
|
|
156
143
|
QUEUED_RECORD_SNOOZE_COUNT = 'queued_record_snooze_count',
|
|
157
144
|
QUEUED_RECORD_SNOOZE_ENDING_IN_48_HOURS_COUNT = 'queued_record_snooze_ending_in_48_hours_count',
|
|
158
145
|
STATEMENTS_NO_PAYOUT_COUNT = 'statements_no_payout_count',
|
|
@@ -165,10 +152,7 @@ export enum BillingMetricKey {
|
|
|
165
152
|
PAYOUTS_SENT_TOTAL = 'payouts_sent_total',
|
|
166
153
|
PAYOUTS_FAILED_COUNT = 'payouts_failed_count',
|
|
167
154
|
PAYOUTS_FAILED_TOTAL = 'payouts_failed_total',
|
|
168
|
-
PENDING_PAYOUTS_MAX_AGE = 'pending_payouts_max_age',
|
|
169
155
|
AVERAGE_PAYOUT_AMOUNT = 'average_payout_amount',
|
|
170
|
-
ORDERS_WITH_PAYMENTS_COUNT = 'orders_with_payments_count',
|
|
171
|
-
ORDERS_WITHOUT_PAYMENTS_COUNT = 'orders_without_payments_count',
|
|
172
156
|
CAPTURE_TRANSACTION_WITH_ZERO_FEES_AND_NO_CHANNEL_TRANSACTION_COUNT = 'capture_transaction_with_zero_fees_and_no_channel_transaction_count',
|
|
173
157
|
}
|
|
174
158
|
|
|
@@ -220,6 +204,7 @@ export enum BillingTransactionType {
|
|
|
220
204
|
CHANNEL_BILLED = 'channel_billed',
|
|
221
205
|
TAX = 'tax',
|
|
222
206
|
DUTY = 'duty',
|
|
207
|
+
TRUEUP = 'trueup',
|
|
223
208
|
}
|
|
224
209
|
|
|
225
210
|
export enum BlazeCheckoutEvent {
|
|
@@ -284,7 +269,8 @@ export enum ChannelOrderAcceptanceNextActionFrom {
|
|
|
284
269
|
CORE_TEAM_INVESTIGATE = 'core_team_investigate',
|
|
285
270
|
MEX_TEAM = 'mex_team',
|
|
286
271
|
PAYMENTS_TEAM = 'payments_team',
|
|
287
|
-
|
|
272
|
+
TC_TEAM = 'tc_team',
|
|
273
|
+
LOGISTICS_TEAM = 'logistics_team',
|
|
288
274
|
}
|
|
289
275
|
|
|
290
276
|
export enum ChannelOrderAcceptanceRejectionReason {
|
|
@@ -1181,6 +1167,8 @@ export enum EventType {
|
|
|
1181
1167
|
LOCALIZED_ITEM_PRICES_EXPORT_REQUEST = 'localized_item_prices_export_request',
|
|
1182
1168
|
OPTIN_PROMPT_UPSERTED = 'optin_prompt_upserted',
|
|
1183
1169
|
OPTIN_PROMPT_DELETED = 'optin_prompt_deleted',
|
|
1170
|
+
ORDER_COMBINED_SHIPMENT_UPSERTED = 'order_combined_shipment_upserted',
|
|
1171
|
+
ORDER_COMBINED_SHIPMENT_DELETED = 'order_combined_shipment_deleted',
|
|
1184
1172
|
ORDER_FULFILLMENT_DELETED = 'order_fulfillment_deleted',
|
|
1185
1173
|
ORDER_FULFILLMENT_UPSERTED = 'order_fulfillment_upserted',
|
|
1186
1174
|
ORDER_PLACED = 'order_placed',
|
|
@@ -1470,10 +1458,6 @@ export enum LabelGenerationAddressFailureStatus {
|
|
|
1470
1458
|
UNRESOLVED = 'unresolved',
|
|
1471
1459
|
}
|
|
1472
1460
|
|
|
1473
|
-
export enum LabelInputSource {
|
|
1474
|
-
ESTIMATE = 'estimate',
|
|
1475
|
-
}
|
|
1476
|
-
|
|
1477
1461
|
export enum LabelRequestErrorHandlingResponsibility {
|
|
1478
1462
|
MERCHANT = 'merchant',
|
|
1479
1463
|
MERCHANT_INTEGRATION = 'merchant_integration',
|
|
@@ -1873,16 +1857,18 @@ export enum QueuedRecordType {
|
|
|
1873
1857
|
CAPTURE = 'capture',
|
|
1874
1858
|
CAPTURE_DELETION = 'capture_deletion',
|
|
1875
1859
|
CHANNEL_TRANSACTION = 'channel_transaction',
|
|
1876
|
-
CHANNEL_ORGANIZATION = 'channel_organization',
|
|
1877
1860
|
CONSUMER_INVOICE = 'consumer_invoice',
|
|
1878
1861
|
FULFILLMENT_IN_TRANSIT = 'fulfillment_in_transit',
|
|
1879
1862
|
FULFILLMENT_SHIPPING_NOTIFICATION = 'fulfillment_shipping_notification',
|
|
1880
1863
|
FULFILLMENT_EXTERNAL = 'fulfillment_external',
|
|
1881
1864
|
LABEL_TRACKING_SUMMARY = 'label_tracking_summary',
|
|
1882
1865
|
LABEL_INVOICE_REQUEST = 'label_invoice_request',
|
|
1866
|
+
LABEL_INVOICE_RESPONSE = 'label_invoice_response',
|
|
1867
|
+
LABEL_INVOICE_RESPONSE_FILE = 'label_invoice_response_file',
|
|
1883
1868
|
LABEL_ORIGIN = 'label_origin',
|
|
1884
1869
|
ORDER = 'order',
|
|
1885
1870
|
ORDER_IDENTIFIER = 'order_identifier',
|
|
1871
|
+
ORGANIZATION_ONBOARDING_STATE = 'organization_onboarding_state',
|
|
1886
1872
|
REFUND = 'refund',
|
|
1887
1873
|
REFUND_DELETION = 'refund_deletion',
|
|
1888
1874
|
REFUND_OVER_CAPTURE = 'refund_over_capture',
|
|
@@ -1890,7 +1876,6 @@ export enum QueuedRecordType {
|
|
|
1890
1876
|
STATEMENT_BATCH = 'statement_batch',
|
|
1891
1877
|
STATEMENT_EMAIL = 'statement_email',
|
|
1892
1878
|
STATEMENT_SUMMARY_EMAIL = 'statement_summary_email',
|
|
1893
|
-
WASH = 'wash',
|
|
1894
1879
|
}
|
|
1895
1880
|
|
|
1896
1881
|
export enum QuoteRequestType {
|
|
@@ -2169,13 +2154,6 @@ export enum SuggestionAction {
|
|
|
2169
2154
|
REVIEW = 'review',
|
|
2170
2155
|
}
|
|
2171
2156
|
|
|
2172
|
-
export enum SurchargeType {
|
|
2173
|
-
FUEL = 'fuel',
|
|
2174
|
-
REMOTE_AREA = 'remote_area',
|
|
2175
|
-
OVERSIZE = 'oversize',
|
|
2176
|
-
DUTIES_PAID = 'duties_paid',
|
|
2177
|
-
}
|
|
2178
|
-
|
|
2179
2157
|
export enum TariffEligibilityType {
|
|
2180
2158
|
REX = 'rex',
|
|
2181
2159
|
}
|
|
@@ -2237,6 +2215,13 @@ export enum TrueUpSurchargeType {
|
|
|
2237
2215
|
DUTIES_PAID = 'duties_paid',
|
|
2238
2216
|
EMERGENCY = 'emergency',
|
|
2239
2217
|
PEAK = 'peak',
|
|
2218
|
+
ADDRESS_CORRECTION = 'address_correction',
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
export enum TrueupTransactionType {
|
|
2222
|
+
ADJUSTMENT = 'adjustment',
|
|
2223
|
+
REVERSAL = 'reversal',
|
|
2224
|
+
TRUEUP = 'trueup',
|
|
2240
2225
|
}
|
|
2241
2226
|
|
|
2242
2227
|
export enum UnclassifiedProductStatus {
|
|
@@ -2247,15 +2232,3 @@ export enum UnclassifiedProductStatus {
|
|
|
2247
2232
|
QUEUED = 'queued',
|
|
2248
2233
|
UNCONFIDENT = 'unconfident',
|
|
2249
2234
|
}
|
|
2250
|
-
|
|
2251
|
-
export enum WashCarrierActualFileStatus {
|
|
2252
|
-
PENDING = 'pending',
|
|
2253
|
-
PROCESSING = 'processing',
|
|
2254
|
-
PROCESSED = 'processed',
|
|
2255
|
-
FAILED = 'failed',
|
|
2256
|
-
}
|
|
2257
|
-
|
|
2258
|
-
export enum WeightSelection {
|
|
2259
|
-
DEAD = 'dead',
|
|
2260
|
-
DIMENSIONAL = 'dimensional',
|
|
2261
|
-
}
|