@flowio/api-internal-constants 4.18.55 → 4.18.56
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 +21 -5
- package/dist/api-internal.js +25 -7
- package/package.json +2 -2
- package/src/api-internal.ts +19 -1
package/dist/api-internal.d.ts
CHANGED
|
@@ -147,7 +147,12 @@ export declare enum BillingMetricKey {
|
|
|
147
147
|
PAYOUTS_FAILED_COUNT = "payouts_failed_count",
|
|
148
148
|
PAYOUTS_FAILED_TOTAL = "payouts_failed_total",
|
|
149
149
|
AVERAGE_PAYOUT_AMOUNT = "average_payout_amount",
|
|
150
|
-
CAPTURE_TRANSACTION_WITH_ZERO_FEES_AND_NO_CHANNEL_TRANSACTION_COUNT = "capture_transaction_with_zero_fees_and_no_channel_transaction_count"
|
|
150
|
+
CAPTURE_TRANSACTION_WITH_ZERO_FEES_AND_NO_CHANNEL_TRANSACTION_COUNT = "capture_transaction_with_zero_fees_and_no_channel_transaction_count",
|
|
151
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_10_DAYS = "percentage_billable_label_transactions_with_carrier_charge_10_days",
|
|
152
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_20_DAYS = "percentage_billable_label_transactions_with_carrier_charge_20_days",
|
|
153
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_30_DAYS = "percentage_billable_label_transactions_with_carrier_charge_30_days",
|
|
154
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_60_DAYS = "percentage_billable_label_transactions_with_carrier_charge_60_days",
|
|
155
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_90_DAYS = "percentage_billable_label_transactions_with_carrier_charge_90_days"
|
|
151
156
|
}
|
|
152
157
|
export declare enum BillingStatementAttachmentKey {
|
|
153
158
|
INVOICE = "invoice",
|
|
@@ -221,6 +226,10 @@ export declare enum CalculatorEngine {
|
|
|
221
226
|
DTCE_WITH_DEMINIMIS = "dtce_with_deminimis",
|
|
222
227
|
DTCE_MERGED_WITH_TAX = "dtce_merged_with_tax"
|
|
223
228
|
}
|
|
229
|
+
export declare enum CarrierChargeOtherReason {
|
|
230
|
+
RETURN_TO_ORIGIN = "return_to_origin",
|
|
231
|
+
OTHER = "other"
|
|
232
|
+
}
|
|
224
233
|
export declare enum CarrierLabelGenerationMethod {
|
|
225
234
|
DIRECT = "direct",
|
|
226
235
|
EASYPOST = "easypost"
|
|
@@ -1338,6 +1347,10 @@ export declare enum LiabilityType {
|
|
|
1338
1347
|
HIGH_VALUE_GOODS_TAX = "high_value_goods_tax",
|
|
1339
1348
|
DUTIES = "duties"
|
|
1340
1349
|
}
|
|
1350
|
+
export declare enum LogisticsResponsibility {
|
|
1351
|
+
ORGANIZATION = "organization",
|
|
1352
|
+
FLOW = "flow"
|
|
1353
|
+
}
|
|
1341
1354
|
export declare enum MainTransactionStatus {
|
|
1342
1355
|
SCHEDULED = "scheduled",
|
|
1343
1356
|
PENDING_PROOF = "pending_proof"
|
|
@@ -1355,7 +1368,8 @@ export declare enum ManualTransactionCategory {
|
|
|
1355
1368
|
PLATFORM_FEE = "platform_fee",
|
|
1356
1369
|
SHIPPING_TRUE_UP = "shipping_true_up",
|
|
1357
1370
|
TAX_CREDIT = "tax_credit",
|
|
1358
|
-
CARRIER_CREDIT = "carrier_credit"
|
|
1371
|
+
CARRIER_CREDIT = "carrier_credit",
|
|
1372
|
+
NEGATIVE_BALANCE_GUARANTEE = "negative_balance_guarantee"
|
|
1359
1373
|
}
|
|
1360
1374
|
export declare enum MarketingGatewayAccountConnectionStatus {
|
|
1361
1375
|
NOT_CONNECTED = "not_connected",
|
|
@@ -1668,7 +1682,6 @@ export declare enum QueuedRecordType {
|
|
|
1668
1682
|
FULFILLMENT_IN_TRANSIT = "fulfillment_in_transit",
|
|
1669
1683
|
FULFILLMENT_SHIPPING_NOTIFICATION = "fulfillment_shipping_notification",
|
|
1670
1684
|
FULFILLMENT_EXTERNAL = "fulfillment_external",
|
|
1671
|
-
FULFILLMENT_ORDER_CANCELLATION = "fulfillment_order_cancellation",
|
|
1672
1685
|
FULFILLMENT_ORDER_COMBINED_SHIPMENT = "fulfillment_order_combined_shipment",
|
|
1673
1686
|
FULFILLMENT_ORDER_TIME = "fulfillment_order_time",
|
|
1674
1687
|
LABEL_TRACKING_SUMMARY = "label_tracking_summary",
|
|
@@ -1685,7 +1698,9 @@ export declare enum QueuedRecordType {
|
|
|
1685
1698
|
STATEMENT_BATCH = "statement_batch",
|
|
1686
1699
|
STATEMENT_EMAIL = "statement_email",
|
|
1687
1700
|
STATEMENT_SUMMARY_EMAIL = "statement_summary_email",
|
|
1688
|
-
PENDING_PAYOUT_TRANSACTION_EVENT = "pending_payout_transaction_event"
|
|
1701
|
+
PENDING_PAYOUT_TRANSACTION_EVENT = "pending_payout_transaction_event",
|
|
1702
|
+
CREDIT_AND_SUBSIDY = "credit_and_subsidy",
|
|
1703
|
+
NEGATIVE_BALANCE_GUARANTEE = "negative_balance_guarantee"
|
|
1689
1704
|
}
|
|
1690
1705
|
export declare enum QuoteRequestType {
|
|
1691
1706
|
GENERATE = "generate",
|
|
@@ -1732,7 +1747,8 @@ export declare enum ReportStatus {
|
|
|
1732
1747
|
}
|
|
1733
1748
|
export declare enum ReportType {
|
|
1734
1749
|
SALES_RECORD = "sales_record",
|
|
1735
|
-
TRUEUP_OVERVIEW = "trueup_overview"
|
|
1750
|
+
TRUEUP_OVERVIEW = "trueup_overview",
|
|
1751
|
+
NON_CHANNEL_PAYMENT_BANK_ACCOUNT = "non_channel_payment_bank_account"
|
|
1736
1752
|
}
|
|
1737
1753
|
export declare enum ReportingScheme {
|
|
1738
1754
|
IMMEDIATE_REPORTING_TO_TAX_AUTHORITY = "immediate_reporting_to_tax_authority",
|
package/dist/api-internal.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = 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 = exports.ShopifyPromotionOfferAllocationMethod = exports.ShopifyPromotionBehavior = exports.ShopifyMonitoringTrackingField = void 0;
|
|
3
|
+
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.ChannelOrderFulfillmentStatusCode = exports.ChannelOrderAcceptanceStatus = exports.ChannelOrderAcceptanceRejectionReason = exports.ChannelOrderAcceptanceNextActionFrom = exports.ChannelOrderAcceptanceErrorAction = exports.ChannelBilledTransactionType = exports.CatalogImportType = exports.CarrierValidationStatus = exports.CarrierLabelGenerationMethod = exports.CarrierChargeOtherReason = 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
|
+
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 = exports.CheckoutDeleteAddressStreetErrorCode = exports.CheckoutDeleteAddressBookContactErrorCode = void 0;
|
|
5
|
+
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.DebugAccountingTransactionType = exports.CrossdockTrackingStatus = exports.ContentTypeCast = exports.ContentType = exports.ContentStatus = exports.ContentElementType = exports.ComplianceType = exports.ClassificationErrorCode = exports.CheckoutUrlType = exports.CheckoutSubmitErrorCode = exports.CheckoutShippingMethodPromptBehavior = exports.CheckoutSetPromotionCodeErrorCode = exports.CheckoutSetPaymentSourceErrorCode = void 0;
|
|
6
|
+
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.LogisticsResponsibility = 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 = exports.FtpProtocol = exports.FtpIntent = exports.FraudReviewResponsibleParty = void 0;
|
|
7
|
+
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.ReportType = 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 = exports.OrganizationRestrictionApprovalStatus = exports.OrganizationPaymentStatus = exports.OrganizationMetricType = exports.OrganizationCapability = void 0;
|
|
8
|
+
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = 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 = exports.ShopifyPromotionOfferAllocationMethod = exports.ShopifyPromotionBehavior = exports.ShopifyMonitoringTrackingField = exports.ShopifyMonitoringMonitorReviewStatus = exports.ShopifyMarketsTradeSector = void 0;
|
|
9
9
|
var AccountSettingLiabilitiesMethod;
|
|
10
10
|
(function (AccountSettingLiabilitiesMethod) {
|
|
11
11
|
AccountSettingLiabilitiesMethod["WITHHOLDING"] = "withholding";
|
|
@@ -167,6 +167,11 @@ var BillingMetricKey;
|
|
|
167
167
|
BillingMetricKey["PAYOUTS_FAILED_TOTAL"] = "payouts_failed_total";
|
|
168
168
|
BillingMetricKey["AVERAGE_PAYOUT_AMOUNT"] = "average_payout_amount";
|
|
169
169
|
BillingMetricKey["CAPTURE_TRANSACTION_WITH_ZERO_FEES_AND_NO_CHANNEL_TRANSACTION_COUNT"] = "capture_transaction_with_zero_fees_and_no_channel_transaction_count";
|
|
170
|
+
BillingMetricKey["PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_10_DAYS"] = "percentage_billable_label_transactions_with_carrier_charge_10_days";
|
|
171
|
+
BillingMetricKey["PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_20_DAYS"] = "percentage_billable_label_transactions_with_carrier_charge_20_days";
|
|
172
|
+
BillingMetricKey["PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_30_DAYS"] = "percentage_billable_label_transactions_with_carrier_charge_30_days";
|
|
173
|
+
BillingMetricKey["PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_60_DAYS"] = "percentage_billable_label_transactions_with_carrier_charge_60_days";
|
|
174
|
+
BillingMetricKey["PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_90_DAYS"] = "percentage_billable_label_transactions_with_carrier_charge_90_days";
|
|
170
175
|
})(BillingMetricKey = exports.BillingMetricKey || (exports.BillingMetricKey = {}));
|
|
171
176
|
var BillingStatementAttachmentKey;
|
|
172
177
|
(function (BillingStatementAttachmentKey) {
|
|
@@ -248,6 +253,11 @@ var CalculatorEngine;
|
|
|
248
253
|
CalculatorEngine["DTCE_WITH_DEMINIMIS"] = "dtce_with_deminimis";
|
|
249
254
|
CalculatorEngine["DTCE_MERGED_WITH_TAX"] = "dtce_merged_with_tax";
|
|
250
255
|
})(CalculatorEngine = exports.CalculatorEngine || (exports.CalculatorEngine = {}));
|
|
256
|
+
var CarrierChargeOtherReason;
|
|
257
|
+
(function (CarrierChargeOtherReason) {
|
|
258
|
+
CarrierChargeOtherReason["RETURN_TO_ORIGIN"] = "return_to_origin";
|
|
259
|
+
CarrierChargeOtherReason["OTHER"] = "other";
|
|
260
|
+
})(CarrierChargeOtherReason = exports.CarrierChargeOtherReason || (exports.CarrierChargeOtherReason = {}));
|
|
251
261
|
var CarrierLabelGenerationMethod;
|
|
252
262
|
(function (CarrierLabelGenerationMethod) {
|
|
253
263
|
CarrierLabelGenerationMethod["DIRECT"] = "direct";
|
|
@@ -1516,6 +1526,11 @@ var LiabilityType;
|
|
|
1516
1526
|
LiabilityType["HIGH_VALUE_GOODS_TAX"] = "high_value_goods_tax";
|
|
1517
1527
|
LiabilityType["DUTIES"] = "duties";
|
|
1518
1528
|
})(LiabilityType = exports.LiabilityType || (exports.LiabilityType = {}));
|
|
1529
|
+
var LogisticsResponsibility;
|
|
1530
|
+
(function (LogisticsResponsibility) {
|
|
1531
|
+
LogisticsResponsibility["ORGANIZATION"] = "organization";
|
|
1532
|
+
LogisticsResponsibility["FLOW"] = "flow";
|
|
1533
|
+
})(LogisticsResponsibility = exports.LogisticsResponsibility || (exports.LogisticsResponsibility = {}));
|
|
1519
1534
|
var MainTransactionStatus;
|
|
1520
1535
|
(function (MainTransactionStatus) {
|
|
1521
1536
|
MainTransactionStatus["SCHEDULED"] = "scheduled";
|
|
@@ -1537,6 +1552,7 @@ var ManualTransactionCategory;
|
|
|
1537
1552
|
ManualTransactionCategory["SHIPPING_TRUE_UP"] = "shipping_true_up";
|
|
1538
1553
|
ManualTransactionCategory["TAX_CREDIT"] = "tax_credit";
|
|
1539
1554
|
ManualTransactionCategory["CARRIER_CREDIT"] = "carrier_credit";
|
|
1555
|
+
ManualTransactionCategory["NEGATIVE_BALANCE_GUARANTEE"] = "negative_balance_guarantee";
|
|
1540
1556
|
})(ManualTransactionCategory = exports.ManualTransactionCategory || (exports.ManualTransactionCategory = {}));
|
|
1541
1557
|
var MarketingGatewayAccountConnectionStatus;
|
|
1542
1558
|
(function (MarketingGatewayAccountConnectionStatus) {
|
|
@@ -1899,7 +1915,6 @@ var QueuedRecordType;
|
|
|
1899
1915
|
QueuedRecordType["FULFILLMENT_IN_TRANSIT"] = "fulfillment_in_transit";
|
|
1900
1916
|
QueuedRecordType["FULFILLMENT_SHIPPING_NOTIFICATION"] = "fulfillment_shipping_notification";
|
|
1901
1917
|
QueuedRecordType["FULFILLMENT_EXTERNAL"] = "fulfillment_external";
|
|
1902
|
-
QueuedRecordType["FULFILLMENT_ORDER_CANCELLATION"] = "fulfillment_order_cancellation";
|
|
1903
1918
|
QueuedRecordType["FULFILLMENT_ORDER_COMBINED_SHIPMENT"] = "fulfillment_order_combined_shipment";
|
|
1904
1919
|
QueuedRecordType["FULFILLMENT_ORDER_TIME"] = "fulfillment_order_time";
|
|
1905
1920
|
QueuedRecordType["LABEL_TRACKING_SUMMARY"] = "label_tracking_summary";
|
|
@@ -1917,6 +1932,8 @@ var QueuedRecordType;
|
|
|
1917
1932
|
QueuedRecordType["STATEMENT_EMAIL"] = "statement_email";
|
|
1918
1933
|
QueuedRecordType["STATEMENT_SUMMARY_EMAIL"] = "statement_summary_email";
|
|
1919
1934
|
QueuedRecordType["PENDING_PAYOUT_TRANSACTION_EVENT"] = "pending_payout_transaction_event";
|
|
1935
|
+
QueuedRecordType["CREDIT_AND_SUBSIDY"] = "credit_and_subsidy";
|
|
1936
|
+
QueuedRecordType["NEGATIVE_BALANCE_GUARANTEE"] = "negative_balance_guarantee";
|
|
1920
1937
|
})(QueuedRecordType = exports.QueuedRecordType || (exports.QueuedRecordType = {}));
|
|
1921
1938
|
var QuoteRequestType;
|
|
1922
1939
|
(function (QuoteRequestType) {
|
|
@@ -1973,6 +1990,7 @@ var ReportType;
|
|
|
1973
1990
|
(function (ReportType) {
|
|
1974
1991
|
ReportType["SALES_RECORD"] = "sales_record";
|
|
1975
1992
|
ReportType["TRUEUP_OVERVIEW"] = "trueup_overview";
|
|
1993
|
+
ReportType["NON_CHANNEL_PAYMENT_BANK_ACCOUNT"] = "non_channel_payment_bank_account";
|
|
1976
1994
|
})(ReportType = exports.ReportType || (exports.ReportType = {}));
|
|
1977
1995
|
var ReportingScheme;
|
|
1978
1996
|
(function (ReportingScheme) {
|
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.56",
|
|
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": "8ec8b535c64db79aa4a49bf6bd6eb53f46deee7d"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -158,6 +158,11 @@ export enum BillingMetricKey {
|
|
|
158
158
|
PAYOUTS_FAILED_TOTAL = 'payouts_failed_total',
|
|
159
159
|
AVERAGE_PAYOUT_AMOUNT = 'average_payout_amount',
|
|
160
160
|
CAPTURE_TRANSACTION_WITH_ZERO_FEES_AND_NO_CHANNEL_TRANSACTION_COUNT = 'capture_transaction_with_zero_fees_and_no_channel_transaction_count',
|
|
161
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_10_DAYS = 'percentage_billable_label_transactions_with_carrier_charge_10_days',
|
|
162
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_20_DAYS = 'percentage_billable_label_transactions_with_carrier_charge_20_days',
|
|
163
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_30_DAYS = 'percentage_billable_label_transactions_with_carrier_charge_30_days',
|
|
164
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_60_DAYS = 'percentage_billable_label_transactions_with_carrier_charge_60_days',
|
|
165
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_90_DAYS = 'percentage_billable_label_transactions_with_carrier_charge_90_days',
|
|
161
166
|
}
|
|
162
167
|
|
|
163
168
|
export enum BillingStatementAttachmentKey {
|
|
@@ -240,6 +245,11 @@ export enum CalculatorEngine {
|
|
|
240
245
|
DTCE_MERGED_WITH_TAX = 'dtce_merged_with_tax',
|
|
241
246
|
}
|
|
242
247
|
|
|
248
|
+
export enum CarrierChargeOtherReason {
|
|
249
|
+
RETURN_TO_ORIGIN = 'return_to_origin',
|
|
250
|
+
OTHER = 'other',
|
|
251
|
+
}
|
|
252
|
+
|
|
243
253
|
export enum CarrierLabelGenerationMethod {
|
|
244
254
|
DIRECT = 'direct',
|
|
245
255
|
EASYPOST = 'easypost',
|
|
@@ -1508,6 +1518,11 @@ export enum LiabilityType {
|
|
|
1508
1518
|
DUTIES = 'duties',
|
|
1509
1519
|
}
|
|
1510
1520
|
|
|
1521
|
+
export enum LogisticsResponsibility {
|
|
1522
|
+
ORGANIZATION = 'organization',
|
|
1523
|
+
FLOW = 'flow',
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1511
1526
|
export enum MainTransactionStatus {
|
|
1512
1527
|
SCHEDULED = 'scheduled',
|
|
1513
1528
|
PENDING_PROOF = 'pending_proof',
|
|
@@ -1528,6 +1543,7 @@ export enum ManualTransactionCategory {
|
|
|
1528
1543
|
SHIPPING_TRUE_UP = 'shipping_true_up',
|
|
1529
1544
|
TAX_CREDIT = 'tax_credit',
|
|
1530
1545
|
CARRIER_CREDIT = 'carrier_credit',
|
|
1546
|
+
NEGATIVE_BALANCE_GUARANTEE = 'negative_balance_guarantee',
|
|
1531
1547
|
}
|
|
1532
1548
|
|
|
1533
1549
|
export enum MarketingGatewayAccountConnectionStatus {
|
|
@@ -1890,7 +1906,6 @@ export enum QueuedRecordType {
|
|
|
1890
1906
|
FULFILLMENT_IN_TRANSIT = 'fulfillment_in_transit',
|
|
1891
1907
|
FULFILLMENT_SHIPPING_NOTIFICATION = 'fulfillment_shipping_notification',
|
|
1892
1908
|
FULFILLMENT_EXTERNAL = 'fulfillment_external',
|
|
1893
|
-
FULFILLMENT_ORDER_CANCELLATION = 'fulfillment_order_cancellation',
|
|
1894
1909
|
FULFILLMENT_ORDER_COMBINED_SHIPMENT = 'fulfillment_order_combined_shipment',
|
|
1895
1910
|
FULFILLMENT_ORDER_TIME = 'fulfillment_order_time',
|
|
1896
1911
|
LABEL_TRACKING_SUMMARY = 'label_tracking_summary',
|
|
@@ -1908,6 +1923,8 @@ export enum QueuedRecordType {
|
|
|
1908
1923
|
STATEMENT_EMAIL = 'statement_email',
|
|
1909
1924
|
STATEMENT_SUMMARY_EMAIL = 'statement_summary_email',
|
|
1910
1925
|
PENDING_PAYOUT_TRANSACTION_EVENT = 'pending_payout_transaction_event',
|
|
1926
|
+
CREDIT_AND_SUBSIDY = 'credit_and_subsidy',
|
|
1927
|
+
NEGATIVE_BALANCE_GUARANTEE = 'negative_balance_guarantee',
|
|
1911
1928
|
}
|
|
1912
1929
|
|
|
1913
1930
|
export enum QuoteRequestType {
|
|
@@ -1964,6 +1981,7 @@ export enum ReportStatus {
|
|
|
1964
1981
|
export enum ReportType {
|
|
1965
1982
|
SALES_RECORD = 'sales_record',
|
|
1966
1983
|
TRUEUP_OVERVIEW = 'trueup_overview',
|
|
1984
|
+
NON_CHANNEL_PAYMENT_BANK_ACCOUNT = 'non_channel_payment_bank_account',
|
|
1967
1985
|
}
|
|
1968
1986
|
|
|
1969
1987
|
export enum ReportingScheme {
|