@flowio/api-internal-constants 4.18.60 → 4.18.62
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 +48 -36
- package/dist/api-internal.js +55 -39
- package/package.json +2 -2
- package/src/api-internal.ts +48 -32
package/dist/api-internal.d.ts
CHANGED
|
@@ -77,7 +77,10 @@ export declare enum BillingMetricKey {
|
|
|
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
79
|
CAPTURE_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT = "capture_transactions_ignored_previously_processed_count",
|
|
80
|
+
CAPTURE_QUEUED_COUNT = "capture_queued_count",
|
|
80
81
|
CAPTURE_TRANSACTIONS_TOTAL = "capture_transactions_total",
|
|
82
|
+
CARRIER_CHARGE_TRANSACTIONS_COUNT = "carrier_charge_transactions_count",
|
|
83
|
+
CARRIER_CHARGE_TRANSACTIONS_TOTAL = "carrier_charge_transactions_total",
|
|
81
84
|
CHANNEL_TRANSACTIONS_PROCESSING_COUNT = "channel_transactions_processing_count",
|
|
82
85
|
CHANNEL_TRANSACTIONS_PROCESSING_TOTAL = "channel_transactions_processing_total",
|
|
83
86
|
CHANNEL_TRANSACTIONS_ADJUSTMENT_COUNT = "channel_transactions_adjustment_count",
|
|
@@ -107,6 +110,7 @@ export declare enum BillingMetricKey {
|
|
|
107
110
|
REFUND_TRANSACTIONS_IGNORED_FULLY_REFUNDED_COUNT = "refund_transactions_ignored_fully_refunded_count",
|
|
108
111
|
REFUND_TRANSACTIONS_IGNORED_OTHER_COUNT = "refund_transactions_ignored_other_count",
|
|
109
112
|
REFUND_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT = "refund_transactions_ignored_previously_processed_count",
|
|
113
|
+
REFUND_QUEUED_COUNT = "refund_queued_count",
|
|
110
114
|
REFUND_TRANSACTIONS_TOTAL = "refund_transactions_total",
|
|
111
115
|
REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_COUNT = "reversal_order_cancellations_transactions_count",
|
|
112
116
|
REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_TOTAL = "reversal_order_cancellations_transactions_total",
|
|
@@ -152,7 +156,12 @@ export declare enum BillingMetricKey {
|
|
|
152
156
|
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_20_DAYS = "percentage_billable_label_transactions_with_carrier_charge_20_days",
|
|
153
157
|
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_30_DAYS = "percentage_billable_label_transactions_with_carrier_charge_30_days",
|
|
154
158
|
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"
|
|
159
|
+
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_90_DAYS = "percentage_billable_label_transactions_with_carrier_charge_90_days",
|
|
160
|
+
PERCENTAGE_BANK_ACCOUNT_UPDATES = "percentage_bank_account_updates",
|
|
161
|
+
PERCENTAGE_BANK_ACCOUNT_UNIQUE_UPDATES = "percentage_bank_account_unique_updates",
|
|
162
|
+
NEGATIVE_BALANCE_NUMBER_ACCOUNTS = "negative_balance_number_accounts",
|
|
163
|
+
NEGATIVE_BALANCE_TOTAL = "negative_balance_total",
|
|
164
|
+
NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX = "negative_balance_single_account_max"
|
|
156
165
|
}
|
|
157
166
|
export declare enum BillingStatementAttachmentKey {
|
|
158
167
|
INVOICE = "invoice",
|
|
@@ -170,6 +179,7 @@ export declare enum BillingStatementAttachmentKey {
|
|
|
170
179
|
TAX = "tax",
|
|
171
180
|
DUTY = "duty",
|
|
172
181
|
TRUEUP = "trueup",
|
|
182
|
+
CARRIER_CHARGE = "carrier_charge",
|
|
173
183
|
ALL = "all"
|
|
174
184
|
}
|
|
175
185
|
export declare enum BillingStatementBatchFileKey {
|
|
@@ -201,7 +211,8 @@ export declare enum BillingTransactionType {
|
|
|
201
211
|
CHANNEL_BILLED = "channel_billed",
|
|
202
212
|
TAX = "tax",
|
|
203
213
|
DUTY = "duty",
|
|
204
|
-
TRUEUP = "trueup"
|
|
214
|
+
TRUEUP = "trueup",
|
|
215
|
+
CARRIER_CHARGE = "carrier_charge"
|
|
205
216
|
}
|
|
206
217
|
export declare enum BlazeCheckoutEvent {
|
|
207
218
|
BEGIN_CHECKOUT = "begin_checkout",
|
|
@@ -224,11 +235,13 @@ export declare enum CalculatorEngine {
|
|
|
224
235
|
DTCE = "dtce",
|
|
225
236
|
DTCE_TWO_CALLS = "dtce_two_calls",
|
|
226
237
|
DTCE_WITH_DEMINIMIS = "dtce_with_deminimis",
|
|
227
|
-
DTCE_MERGED_WITH_TAX = "dtce_merged_with_tax"
|
|
238
|
+
DTCE_MERGED_WITH_TAX = "dtce_merged_with_tax",
|
|
239
|
+
DTCE_WITH_INCLUSIVE_PRICING = "dtce_with_inclusive_pricing"
|
|
228
240
|
}
|
|
229
|
-
export declare enum
|
|
230
|
-
|
|
231
|
-
|
|
241
|
+
export declare enum CarrierChargeTransactionType {
|
|
242
|
+
ADJUSTMENT = "adjustment",
|
|
243
|
+
REVERSAL = "reversal",
|
|
244
|
+
CHARGE = "charge"
|
|
232
245
|
}
|
|
233
246
|
export declare enum CarrierLabelGenerationMethod {
|
|
234
247
|
DIRECT = "direct",
|
|
@@ -310,6 +323,7 @@ export declare enum ChargeInputType {
|
|
|
310
323
|
USPS_FIRST_MILE = "usps_first_mile",
|
|
311
324
|
OVERSIZE_PIECE = "oversize_piece",
|
|
312
325
|
INCOTERM_DAP = "incoterm_dap",
|
|
326
|
+
EMERGENCY_SITUATION = "emergency_situation",
|
|
313
327
|
REMOTE_AREA_DELIVERY = "remote_area_delivery"
|
|
314
328
|
}
|
|
315
329
|
export declare enum ChargebackPaymentStatus {
|
|
@@ -727,6 +741,10 @@ export declare enum CheckoutUrlType {
|
|
|
727
741
|
export declare enum ClassificationErrorCode {
|
|
728
742
|
GENERIC_ERROR = "generic_error"
|
|
729
743
|
}
|
|
744
|
+
export declare enum ColmItemType {
|
|
745
|
+
PHYSICAL = "physical",
|
|
746
|
+
DIGITAL = "digital"
|
|
747
|
+
}
|
|
730
748
|
export declare enum ComplianceType {
|
|
731
749
|
WEEE = "weee"
|
|
732
750
|
}
|
|
@@ -925,6 +943,8 @@ export declare enum EventType {
|
|
|
925
943
|
DAILY_VALUE_DELETED = "daily_value_deleted",
|
|
926
944
|
SALES_RECORD_UPSERTED = "sales_record_upserted",
|
|
927
945
|
SALES_RECORD_DELETED = "sales_record_deleted",
|
|
946
|
+
REVENUE_RECORD_UPSERTED = "revenue_record_upserted",
|
|
947
|
+
REVENUE_RECORD_DELETED = "revenue_record_deleted",
|
|
928
948
|
CALCULATOR_ORGANIZATION_SETTINGS_UPSERTED = "calculator_organization_settings_upserted",
|
|
929
949
|
CALCULATOR_ORGANIZATION_SETTINGS_DELETED = "calculator_organization_settings_deleted",
|
|
930
950
|
CARRIER_ACCOUNT_UPSERTED_V_2 = "carrier_account_upserted_v2",
|
|
@@ -1387,7 +1407,8 @@ export declare enum ManualTransactionCategory {
|
|
|
1387
1407
|
SHIPPING_TRUE_UP = "shipping_true_up",
|
|
1388
1408
|
TAX_CREDIT = "tax_credit",
|
|
1389
1409
|
CARRIER_CREDIT = "carrier_credit",
|
|
1390
|
-
NEGATIVE_BALANCE_GUARANTEE = "negative_balance_guarantee"
|
|
1410
|
+
NEGATIVE_BALANCE_GUARANTEE = "negative_balance_guarantee",
|
|
1411
|
+
BANK_PAYMENT_FAILURE = "bank_payment_failure"
|
|
1391
1412
|
}
|
|
1392
1413
|
export declare enum MarketingGatewayAccountConnectionStatus {
|
|
1393
1414
|
NOT_CONNECTED = "not_connected",
|
|
@@ -1507,6 +1528,7 @@ export declare enum OnboardingAuditThemeKey {
|
|
|
1507
1528
|
DTCE = "dtce",
|
|
1508
1529
|
RESTRICTIONS = "restrictions",
|
|
1509
1530
|
ORGANIZATION_STATUS = "organization_status",
|
|
1531
|
+
CATEGORY_CONSTRAINTS = "category_constraints",
|
|
1510
1532
|
MISCELLANEOUS = "miscellaneous"
|
|
1511
1533
|
}
|
|
1512
1534
|
export declare enum OnboardingAutomationProcessState {
|
|
@@ -1697,34 +1719,6 @@ export declare enum PromptTarget {
|
|
|
1697
1719
|
BROWSE = "browse",
|
|
1698
1720
|
CHECKOUT = "checkout"
|
|
1699
1721
|
}
|
|
1700
|
-
export declare enum QueuedRecordType {
|
|
1701
|
-
CAPTURE = "capture",
|
|
1702
|
-
CHANNEL_TRANSACTION = "channel_transaction",
|
|
1703
|
-
CONSUMER_INVOICE = "consumer_invoice",
|
|
1704
|
-
FULFILLMENT_IN_TRANSIT = "fulfillment_in_transit",
|
|
1705
|
-
FULFILLMENT_SHIPPING_NOTIFICATION = "fulfillment_shipping_notification",
|
|
1706
|
-
FULFILLMENT_EXTERNAL = "fulfillment_external",
|
|
1707
|
-
FULFILLMENT_ORDER_COMBINED_SHIPMENT = "fulfillment_order_combined_shipment",
|
|
1708
|
-
FULFILLMENT_ORDER_TIME = "fulfillment_order_time",
|
|
1709
|
-
RETURN_REFUND = "return_refund",
|
|
1710
|
-
LABEL_TRACKING_SUMMARY = "label_tracking_summary",
|
|
1711
|
-
LABEL_INVOICE_REQUEST = "label_invoice_request",
|
|
1712
|
-
CARRIER_CHARGE = "carrier_charge",
|
|
1713
|
-
CARRIER_CHARGE_FILE = "carrier_charge_file",
|
|
1714
|
-
ORDER = "order",
|
|
1715
|
-
ORDER_IDENTIFIER = "order_identifier",
|
|
1716
|
-
ORGANIZATION_ONBOARDING_STATE = "organization_onboarding_state",
|
|
1717
|
-
POSTING_PROOF = "posting_proof",
|
|
1718
|
-
REFUND = "refund",
|
|
1719
|
-
REFUND_OVER_CAPTURE = "refund_over_capture",
|
|
1720
|
-
SALES_RECORD = "sales_record",
|
|
1721
|
-
STATEMENT_BATCH = "statement_batch",
|
|
1722
|
-
STATEMENT_EMAIL = "statement_email",
|
|
1723
|
-
STATEMENT_SUMMARY_EMAIL = "statement_summary_email",
|
|
1724
|
-
PENDING_PAYOUT_TRANSACTION_EVENT = "pending_payout_transaction_event",
|
|
1725
|
-
CREDIT_AND_SUBSIDY = "credit_and_subsidy",
|
|
1726
|
-
NEGATIVE_BALANCE_GUARANTEE = "negative_balance_guarantee"
|
|
1727
|
-
}
|
|
1728
1722
|
export declare enum QuoteRequestType {
|
|
1729
1723
|
GENERATE = "generate",
|
|
1730
1724
|
DELETE = "delete",
|
|
@@ -1773,6 +1767,11 @@ export declare enum ReportType {
|
|
|
1773
1767
|
TRUEUP_OVERVIEW = "trueup_overview",
|
|
1774
1768
|
NON_CHANNEL_PAYMENT_BANK_ACCOUNT = "non_channel_payment_bank_account"
|
|
1775
1769
|
}
|
|
1770
|
+
export declare enum ReportingFulfillmentIsVirtual {
|
|
1771
|
+
ALL = "all",
|
|
1772
|
+
MIXED = "mixed",
|
|
1773
|
+
NONE = "none"
|
|
1774
|
+
}
|
|
1776
1775
|
export declare enum ReportingScheme {
|
|
1777
1776
|
IMMEDIATE_REPORTING_TO_TAX_AUTHORITY = "immediate_reporting_to_tax_authority",
|
|
1778
1777
|
PERIODIC_REPORTING_TO_TAX_AUTHORITY = "periodic_reporting_to_tax_authority",
|
|
@@ -1800,6 +1799,10 @@ export declare enum RestrictionStatus {
|
|
|
1800
1799
|
ACCEPTED = "accepted",
|
|
1801
1800
|
RESTRICTED = "restricted"
|
|
1802
1801
|
}
|
|
1802
|
+
export declare enum RevenueRecordType {
|
|
1803
|
+
SALES = "sales",
|
|
1804
|
+
REFUND = "refund"
|
|
1805
|
+
}
|
|
1803
1806
|
export declare enum RiskCheck {
|
|
1804
1807
|
THREE_D_SECURE = "three_d_secure"
|
|
1805
1808
|
}
|
|
@@ -1872,7 +1875,8 @@ export declare enum ShopifyMarketsQueuedRecordType {
|
|
|
1872
1875
|
ONLINE_PAYMENT = "online_payment",
|
|
1873
1876
|
ORDER_UPDATE = "order_update",
|
|
1874
1877
|
PRODUCT_RESTRICTION_RESULT = "product_restriction_result",
|
|
1875
|
-
PRODUCT_SYNC = "product_sync"
|
|
1878
|
+
PRODUCT_SYNC = "product_sync",
|
|
1879
|
+
WEBHOOK_REGISTRATIONS = "webhook_registrations"
|
|
1876
1880
|
}
|
|
1877
1881
|
export declare enum ShopifyMarketsTradeSector {
|
|
1878
1882
|
APPAREL_AND_ACCESSORIES = "apparel_and_accessories",
|
|
@@ -1915,6 +1919,10 @@ export declare enum ShopifyService {
|
|
|
1915
1919
|
PAYMENT = "payment",
|
|
1916
1920
|
DUTY_TAX_CALCULATOR = "duty_tax_calculator"
|
|
1917
1921
|
}
|
|
1922
|
+
export declare enum ShrutiDemoType {
|
|
1923
|
+
DIGITAL = "digital",
|
|
1924
|
+
PHYSICAL = "physical"
|
|
1925
|
+
}
|
|
1918
1926
|
export declare enum SignificanceAction {
|
|
1919
1927
|
END_AND_IMPLEMENT_WINNER = "end_and_implement_winner",
|
|
1920
1928
|
END_AND_REVERT = "end_and_revert",
|
|
@@ -1965,6 +1973,10 @@ export declare enum SuggestionAction {
|
|
|
1965
1973
|
VALIDATE = "validate",
|
|
1966
1974
|
REVIEW = "review"
|
|
1967
1975
|
}
|
|
1976
|
+
export declare enum SvitlanaType {
|
|
1977
|
+
PHYSICAL = "physical",
|
|
1978
|
+
DIGITAL = "digital"
|
|
1979
|
+
}
|
|
1968
1980
|
export declare enum TariffEligibilityType {
|
|
1969
1981
|
REX = "rex"
|
|
1970
1982
|
}
|
package/dist/api-internal.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
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.ChargeInputType = exports.ChargeEstimateSource = exports.ChannelTransactionType = exports.ChannelOrderFulfillmentStatusCode = exports.ChannelOrderAcceptanceStatus = exports.ChannelOrderAcceptanceRejectionReason = exports.ChannelOrderAcceptanceNextActionFrom = exports.ChannelOrderAcceptanceErrorAction = exports.ChannelBilledTransactionType = exports.CatalogImportType = exports.CarrierValidationStatus = exports.CarrierLabelGenerationMethod = exports.
|
|
3
|
+
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.ChargeInputType = exports.ChargeEstimateSource = exports.ChannelTransactionType = exports.ChannelOrderFulfillmentStatusCode = exports.ChannelOrderAcceptanceStatus = exports.ChannelOrderAcceptanceRejectionReason = exports.ChannelOrderAcceptanceNextActionFrom = exports.ChannelOrderAcceptanceErrorAction = exports.ChannelBilledTransactionType = exports.CatalogImportType = exports.CarrierValidationStatus = exports.CarrierLabelGenerationMethod = exports.CarrierChargeTransactionType = 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.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 = exports.CheckoutCreateBySessionErrorCode = exports.CheckoutCreateBySessionByOrderErrorCode = void 0;
|
|
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 = exports.ShopifyMonitoringMonitorReviewStatus = exports.ShopifyMarketsTradeSector = exports.ShopifyMarketsQueuedRecordType = exports.ShopifyMarketsHtsNumberAvailable = exports.ShopifyMarketsDangerousGoods = void 0;
|
|
5
|
+
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.ColmItemType = exports.ClassificationErrorCode = exports.CheckoutUrlType = exports.CheckoutSubmitErrorCode = exports.CheckoutShippingMethodPromptBehavior = exports.CheckoutSetPromotionCodeErrorCode = exports.CheckoutSetPaymentSourceErrorCode = exports.CheckoutSetOptinPromptErrorCode = exports.CheckoutSetNationalIdNumberErrorCode = void 0;
|
|
6
|
+
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 = exports.FraudProviderStatus = exports.FraudProvider = exports.Format = void 0;
|
|
7
|
+
exports.SessionCountryStatus = exports.ServiceName = exports.SerialReservationError = exports.Scope = exports.RiskEvaluation = exports.RiskCheck = exports.RevenueRecordType = exports.RestrictionStatus = exports.RestrictionDecision = exports.RestrictionAction = exports.ResponsibleParty = exports.ReportingScheme = exports.ReportingFulfillmentIsVirtual = exports.ReportType = exports.ReportStatus = 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.PricingIndicatorStatus = exports.PriceSelector = exports.PregenDataKeyField = 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 = exports.OrganizationCapability = exports.OrderTransactionType = exports.OrderLifecycleEvent = exports.OrderChargeTrigger = 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.SvitlanaType = exports.SuggestionAction = exports.SubscriptionFrequency = exports.Status = exports.StatisticType = exports.StatementTransferTransactionLocation = exports.StatementStatus = exports.SnoozeSourceType = exports.SnoozeNextActionWith = exports.SimpleRoundingStrategy = exports.SignificanceAction = exports.ShrutiDemoType = exports.ShopifyService = exports.ShopifyPromotionStatus = exports.ShopifyPromotionOrderEntitlementComponent = exports.ShopifyPromotionOfferAllocationMethod = exports.ShopifyPromotionBehavior = exports.ShopifyMonitoringTrackingField = exports.ShopifyMonitoringMonitorReviewStatus = exports.ShopifyMarketsTradeSector = exports.ShopifyMarketsQueuedRecordType = exports.ShopifyMarketsHtsNumberAvailable = exports.ShopifyMarketsDangerousGoods = exports.ShopifyGrantStatus = exports.ShopifyCheckInventoryErrorCode = void 0;
|
|
9
9
|
var AccountSettingLiabilitiesMethod;
|
|
10
10
|
(function (AccountSettingLiabilitiesMethod) {
|
|
11
11
|
AccountSettingLiabilitiesMethod["WITHHOLDING"] = "withholding";
|
|
@@ -96,7 +96,10 @@ var BillingMetricKey;
|
|
|
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
98
|
BillingMetricKey["CAPTURE_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT"] = "capture_transactions_ignored_previously_processed_count";
|
|
99
|
+
BillingMetricKey["CAPTURE_QUEUED_COUNT"] = "capture_queued_count";
|
|
99
100
|
BillingMetricKey["CAPTURE_TRANSACTIONS_TOTAL"] = "capture_transactions_total";
|
|
101
|
+
BillingMetricKey["CARRIER_CHARGE_TRANSACTIONS_COUNT"] = "carrier_charge_transactions_count";
|
|
102
|
+
BillingMetricKey["CARRIER_CHARGE_TRANSACTIONS_TOTAL"] = "carrier_charge_transactions_total";
|
|
100
103
|
BillingMetricKey["CHANNEL_TRANSACTIONS_PROCESSING_COUNT"] = "channel_transactions_processing_count";
|
|
101
104
|
BillingMetricKey["CHANNEL_TRANSACTIONS_PROCESSING_TOTAL"] = "channel_transactions_processing_total";
|
|
102
105
|
BillingMetricKey["CHANNEL_TRANSACTIONS_ADJUSTMENT_COUNT"] = "channel_transactions_adjustment_count";
|
|
@@ -126,6 +129,7 @@ var BillingMetricKey;
|
|
|
126
129
|
BillingMetricKey["REFUND_TRANSACTIONS_IGNORED_FULLY_REFUNDED_COUNT"] = "refund_transactions_ignored_fully_refunded_count";
|
|
127
130
|
BillingMetricKey["REFUND_TRANSACTIONS_IGNORED_OTHER_COUNT"] = "refund_transactions_ignored_other_count";
|
|
128
131
|
BillingMetricKey["REFUND_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT"] = "refund_transactions_ignored_previously_processed_count";
|
|
132
|
+
BillingMetricKey["REFUND_QUEUED_COUNT"] = "refund_queued_count";
|
|
129
133
|
BillingMetricKey["REFUND_TRANSACTIONS_TOTAL"] = "refund_transactions_total";
|
|
130
134
|
BillingMetricKey["REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_COUNT"] = "reversal_order_cancellations_transactions_count";
|
|
131
135
|
BillingMetricKey["REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_TOTAL"] = "reversal_order_cancellations_transactions_total";
|
|
@@ -172,6 +176,11 @@ var BillingMetricKey;
|
|
|
172
176
|
BillingMetricKey["PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_30_DAYS"] = "percentage_billable_label_transactions_with_carrier_charge_30_days";
|
|
173
177
|
BillingMetricKey["PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_60_DAYS"] = "percentage_billable_label_transactions_with_carrier_charge_60_days";
|
|
174
178
|
BillingMetricKey["PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_90_DAYS"] = "percentage_billable_label_transactions_with_carrier_charge_90_days";
|
|
179
|
+
BillingMetricKey["PERCENTAGE_BANK_ACCOUNT_UPDATES"] = "percentage_bank_account_updates";
|
|
180
|
+
BillingMetricKey["PERCENTAGE_BANK_ACCOUNT_UNIQUE_UPDATES"] = "percentage_bank_account_unique_updates";
|
|
181
|
+
BillingMetricKey["NEGATIVE_BALANCE_NUMBER_ACCOUNTS"] = "negative_balance_number_accounts";
|
|
182
|
+
BillingMetricKey["NEGATIVE_BALANCE_TOTAL"] = "negative_balance_total";
|
|
183
|
+
BillingMetricKey["NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX"] = "negative_balance_single_account_max";
|
|
175
184
|
})(BillingMetricKey = exports.BillingMetricKey || (exports.BillingMetricKey = {}));
|
|
176
185
|
var BillingStatementAttachmentKey;
|
|
177
186
|
(function (BillingStatementAttachmentKey) {
|
|
@@ -190,6 +199,7 @@ var BillingStatementAttachmentKey;
|
|
|
190
199
|
BillingStatementAttachmentKey["TAX"] = "tax";
|
|
191
200
|
BillingStatementAttachmentKey["DUTY"] = "duty";
|
|
192
201
|
BillingStatementAttachmentKey["TRUEUP"] = "trueup";
|
|
202
|
+
BillingStatementAttachmentKey["CARRIER_CHARGE"] = "carrier_charge";
|
|
193
203
|
BillingStatementAttachmentKey["ALL"] = "all";
|
|
194
204
|
})(BillingStatementAttachmentKey = exports.BillingStatementAttachmentKey || (exports.BillingStatementAttachmentKey = {}));
|
|
195
205
|
var BillingStatementBatchFileKey;
|
|
@@ -225,6 +235,7 @@ var BillingTransactionType;
|
|
|
225
235
|
BillingTransactionType["TAX"] = "tax";
|
|
226
236
|
BillingTransactionType["DUTY"] = "duty";
|
|
227
237
|
BillingTransactionType["TRUEUP"] = "trueup";
|
|
238
|
+
BillingTransactionType["CARRIER_CHARGE"] = "carrier_charge";
|
|
228
239
|
})(BillingTransactionType = exports.BillingTransactionType || (exports.BillingTransactionType = {}));
|
|
229
240
|
var BlazeCheckoutEvent;
|
|
230
241
|
(function (BlazeCheckoutEvent) {
|
|
@@ -252,12 +263,14 @@ var CalculatorEngine;
|
|
|
252
263
|
CalculatorEngine["DTCE_TWO_CALLS"] = "dtce_two_calls";
|
|
253
264
|
CalculatorEngine["DTCE_WITH_DEMINIMIS"] = "dtce_with_deminimis";
|
|
254
265
|
CalculatorEngine["DTCE_MERGED_WITH_TAX"] = "dtce_merged_with_tax";
|
|
266
|
+
CalculatorEngine["DTCE_WITH_INCLUSIVE_PRICING"] = "dtce_with_inclusive_pricing";
|
|
255
267
|
})(CalculatorEngine = exports.CalculatorEngine || (exports.CalculatorEngine = {}));
|
|
256
|
-
var
|
|
257
|
-
(function (
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
268
|
+
var CarrierChargeTransactionType;
|
|
269
|
+
(function (CarrierChargeTransactionType) {
|
|
270
|
+
CarrierChargeTransactionType["ADJUSTMENT"] = "adjustment";
|
|
271
|
+
CarrierChargeTransactionType["REVERSAL"] = "reversal";
|
|
272
|
+
CarrierChargeTransactionType["CHARGE"] = "charge";
|
|
273
|
+
})(CarrierChargeTransactionType = exports.CarrierChargeTransactionType || (exports.CarrierChargeTransactionType = {}));
|
|
261
274
|
var CarrierLabelGenerationMethod;
|
|
262
275
|
(function (CarrierLabelGenerationMethod) {
|
|
263
276
|
CarrierLabelGenerationMethod["DIRECT"] = "direct";
|
|
@@ -350,6 +363,7 @@ var ChargeInputType;
|
|
|
350
363
|
ChargeInputType["USPS_FIRST_MILE"] = "usps_first_mile";
|
|
351
364
|
ChargeInputType["OVERSIZE_PIECE"] = "oversize_piece";
|
|
352
365
|
ChargeInputType["INCOTERM_DAP"] = "incoterm_dap";
|
|
366
|
+
ChargeInputType["EMERGENCY_SITUATION"] = "emergency_situation";
|
|
353
367
|
ChargeInputType["REMOTE_AREA_DELIVERY"] = "remote_area_delivery";
|
|
354
368
|
})(ChargeInputType = exports.ChargeInputType || (exports.ChargeInputType = {}));
|
|
355
369
|
var ChargebackPaymentStatus;
|
|
@@ -843,6 +857,11 @@ var ClassificationErrorCode;
|
|
|
843
857
|
(function (ClassificationErrorCode) {
|
|
844
858
|
ClassificationErrorCode["GENERIC_ERROR"] = "generic_error";
|
|
845
859
|
})(ClassificationErrorCode = exports.ClassificationErrorCode || (exports.ClassificationErrorCode = {}));
|
|
860
|
+
var ColmItemType;
|
|
861
|
+
(function (ColmItemType) {
|
|
862
|
+
ColmItemType["PHYSICAL"] = "physical";
|
|
863
|
+
ColmItemType["DIGITAL"] = "digital";
|
|
864
|
+
})(ColmItemType = exports.ColmItemType || (exports.ColmItemType = {}));
|
|
846
865
|
var ComplianceType;
|
|
847
866
|
(function (ComplianceType) {
|
|
848
867
|
ComplianceType["WEEE"] = "weee";
|
|
@@ -1071,6 +1090,8 @@ var EventType;
|
|
|
1071
1090
|
EventType["DAILY_VALUE_DELETED"] = "daily_value_deleted";
|
|
1072
1091
|
EventType["SALES_RECORD_UPSERTED"] = "sales_record_upserted";
|
|
1073
1092
|
EventType["SALES_RECORD_DELETED"] = "sales_record_deleted";
|
|
1093
|
+
EventType["REVENUE_RECORD_UPSERTED"] = "revenue_record_upserted";
|
|
1094
|
+
EventType["REVENUE_RECORD_DELETED"] = "revenue_record_deleted";
|
|
1074
1095
|
EventType["CALCULATOR_ORGANIZATION_SETTINGS_UPSERTED"] = "calculator_organization_settings_upserted";
|
|
1075
1096
|
EventType["CALCULATOR_ORGANIZATION_SETTINGS_DELETED"] = "calculator_organization_settings_deleted";
|
|
1076
1097
|
EventType["CARRIER_ACCOUNT_UPSERTED_V_2"] = "carrier_account_upserted_v2";
|
|
@@ -1573,6 +1594,7 @@ var ManualTransactionCategory;
|
|
|
1573
1594
|
ManualTransactionCategory["TAX_CREDIT"] = "tax_credit";
|
|
1574
1595
|
ManualTransactionCategory["CARRIER_CREDIT"] = "carrier_credit";
|
|
1575
1596
|
ManualTransactionCategory["NEGATIVE_BALANCE_GUARANTEE"] = "negative_balance_guarantee";
|
|
1597
|
+
ManualTransactionCategory["BANK_PAYMENT_FAILURE"] = "bank_payment_failure";
|
|
1576
1598
|
})(ManualTransactionCategory = exports.ManualTransactionCategory || (exports.ManualTransactionCategory = {}));
|
|
1577
1599
|
var MarketingGatewayAccountConnectionStatus;
|
|
1578
1600
|
(function (MarketingGatewayAccountConnectionStatus) {
|
|
@@ -1708,6 +1730,7 @@ var OnboardingAuditThemeKey;
|
|
|
1708
1730
|
OnboardingAuditThemeKey["DTCE"] = "dtce";
|
|
1709
1731
|
OnboardingAuditThemeKey["RESTRICTIONS"] = "restrictions";
|
|
1710
1732
|
OnboardingAuditThemeKey["ORGANIZATION_STATUS"] = "organization_status";
|
|
1733
|
+
OnboardingAuditThemeKey["CATEGORY_CONSTRAINTS"] = "category_constraints";
|
|
1711
1734
|
OnboardingAuditThemeKey["MISCELLANEOUS"] = "miscellaneous";
|
|
1712
1735
|
})(OnboardingAuditThemeKey = exports.OnboardingAuditThemeKey || (exports.OnboardingAuditThemeKey = {}));
|
|
1713
1736
|
var OnboardingAutomationProcessState;
|
|
@@ -1932,35 +1955,6 @@ var PromptTarget;
|
|
|
1932
1955
|
PromptTarget["BROWSE"] = "browse";
|
|
1933
1956
|
PromptTarget["CHECKOUT"] = "checkout";
|
|
1934
1957
|
})(PromptTarget = exports.PromptTarget || (exports.PromptTarget = {}));
|
|
1935
|
-
var QueuedRecordType;
|
|
1936
|
-
(function (QueuedRecordType) {
|
|
1937
|
-
QueuedRecordType["CAPTURE"] = "capture";
|
|
1938
|
-
QueuedRecordType["CHANNEL_TRANSACTION"] = "channel_transaction";
|
|
1939
|
-
QueuedRecordType["CONSUMER_INVOICE"] = "consumer_invoice";
|
|
1940
|
-
QueuedRecordType["FULFILLMENT_IN_TRANSIT"] = "fulfillment_in_transit";
|
|
1941
|
-
QueuedRecordType["FULFILLMENT_SHIPPING_NOTIFICATION"] = "fulfillment_shipping_notification";
|
|
1942
|
-
QueuedRecordType["FULFILLMENT_EXTERNAL"] = "fulfillment_external";
|
|
1943
|
-
QueuedRecordType["FULFILLMENT_ORDER_COMBINED_SHIPMENT"] = "fulfillment_order_combined_shipment";
|
|
1944
|
-
QueuedRecordType["FULFILLMENT_ORDER_TIME"] = "fulfillment_order_time";
|
|
1945
|
-
QueuedRecordType["RETURN_REFUND"] = "return_refund";
|
|
1946
|
-
QueuedRecordType["LABEL_TRACKING_SUMMARY"] = "label_tracking_summary";
|
|
1947
|
-
QueuedRecordType["LABEL_INVOICE_REQUEST"] = "label_invoice_request";
|
|
1948
|
-
QueuedRecordType["CARRIER_CHARGE"] = "carrier_charge";
|
|
1949
|
-
QueuedRecordType["CARRIER_CHARGE_FILE"] = "carrier_charge_file";
|
|
1950
|
-
QueuedRecordType["ORDER"] = "order";
|
|
1951
|
-
QueuedRecordType["ORDER_IDENTIFIER"] = "order_identifier";
|
|
1952
|
-
QueuedRecordType["ORGANIZATION_ONBOARDING_STATE"] = "organization_onboarding_state";
|
|
1953
|
-
QueuedRecordType["POSTING_PROOF"] = "posting_proof";
|
|
1954
|
-
QueuedRecordType["REFUND"] = "refund";
|
|
1955
|
-
QueuedRecordType["REFUND_OVER_CAPTURE"] = "refund_over_capture";
|
|
1956
|
-
QueuedRecordType["SALES_RECORD"] = "sales_record";
|
|
1957
|
-
QueuedRecordType["STATEMENT_BATCH"] = "statement_batch";
|
|
1958
|
-
QueuedRecordType["STATEMENT_EMAIL"] = "statement_email";
|
|
1959
|
-
QueuedRecordType["STATEMENT_SUMMARY_EMAIL"] = "statement_summary_email";
|
|
1960
|
-
QueuedRecordType["PENDING_PAYOUT_TRANSACTION_EVENT"] = "pending_payout_transaction_event";
|
|
1961
|
-
QueuedRecordType["CREDIT_AND_SUBSIDY"] = "credit_and_subsidy";
|
|
1962
|
-
QueuedRecordType["NEGATIVE_BALANCE_GUARANTEE"] = "negative_balance_guarantee";
|
|
1963
|
-
})(QueuedRecordType = exports.QueuedRecordType || (exports.QueuedRecordType = {}));
|
|
1964
1958
|
var QuoteRequestType;
|
|
1965
1959
|
(function (QuoteRequestType) {
|
|
1966
1960
|
QuoteRequestType["GENERATE"] = "generate";
|
|
@@ -2018,6 +2012,12 @@ var ReportType;
|
|
|
2018
2012
|
ReportType["TRUEUP_OVERVIEW"] = "trueup_overview";
|
|
2019
2013
|
ReportType["NON_CHANNEL_PAYMENT_BANK_ACCOUNT"] = "non_channel_payment_bank_account";
|
|
2020
2014
|
})(ReportType = exports.ReportType || (exports.ReportType = {}));
|
|
2015
|
+
var ReportingFulfillmentIsVirtual;
|
|
2016
|
+
(function (ReportingFulfillmentIsVirtual) {
|
|
2017
|
+
ReportingFulfillmentIsVirtual["ALL"] = "all";
|
|
2018
|
+
ReportingFulfillmentIsVirtual["MIXED"] = "mixed";
|
|
2019
|
+
ReportingFulfillmentIsVirtual["NONE"] = "none";
|
|
2020
|
+
})(ReportingFulfillmentIsVirtual = exports.ReportingFulfillmentIsVirtual || (exports.ReportingFulfillmentIsVirtual = {}));
|
|
2021
2021
|
var ReportingScheme;
|
|
2022
2022
|
(function (ReportingScheme) {
|
|
2023
2023
|
ReportingScheme["IMMEDIATE_REPORTING_TO_TAX_AUTHORITY"] = "immediate_reporting_to_tax_authority";
|
|
@@ -2050,6 +2050,11 @@ var RestrictionStatus;
|
|
|
2050
2050
|
RestrictionStatus["ACCEPTED"] = "accepted";
|
|
2051
2051
|
RestrictionStatus["RESTRICTED"] = "restricted";
|
|
2052
2052
|
})(RestrictionStatus = exports.RestrictionStatus || (exports.RestrictionStatus = {}));
|
|
2053
|
+
var RevenueRecordType;
|
|
2054
|
+
(function (RevenueRecordType) {
|
|
2055
|
+
RevenueRecordType["SALES"] = "sales";
|
|
2056
|
+
RevenueRecordType["REFUND"] = "refund";
|
|
2057
|
+
})(RevenueRecordType = exports.RevenueRecordType || (exports.RevenueRecordType = {}));
|
|
2053
2058
|
var RiskCheck;
|
|
2054
2059
|
(function (RiskCheck) {
|
|
2055
2060
|
RiskCheck["THREE_D_SECURE"] = "three_d_secure";
|
|
@@ -2134,6 +2139,7 @@ var ShopifyMarketsQueuedRecordType;
|
|
|
2134
2139
|
ShopifyMarketsQueuedRecordType["ORDER_UPDATE"] = "order_update";
|
|
2135
2140
|
ShopifyMarketsQueuedRecordType["PRODUCT_RESTRICTION_RESULT"] = "product_restriction_result";
|
|
2136
2141
|
ShopifyMarketsQueuedRecordType["PRODUCT_SYNC"] = "product_sync";
|
|
2142
|
+
ShopifyMarketsQueuedRecordType["WEBHOOK_REGISTRATIONS"] = "webhook_registrations";
|
|
2137
2143
|
})(ShopifyMarketsQueuedRecordType = exports.ShopifyMarketsQueuedRecordType || (exports.ShopifyMarketsQueuedRecordType = {}));
|
|
2138
2144
|
var ShopifyMarketsTradeSector;
|
|
2139
2145
|
(function (ShopifyMarketsTradeSector) {
|
|
@@ -2184,6 +2190,11 @@ var ShopifyService;
|
|
|
2184
2190
|
ShopifyService["PAYMENT"] = "payment";
|
|
2185
2191
|
ShopifyService["DUTY_TAX_CALCULATOR"] = "duty_tax_calculator";
|
|
2186
2192
|
})(ShopifyService = exports.ShopifyService || (exports.ShopifyService = {}));
|
|
2193
|
+
var ShrutiDemoType;
|
|
2194
|
+
(function (ShrutiDemoType) {
|
|
2195
|
+
ShrutiDemoType["DIGITAL"] = "digital";
|
|
2196
|
+
ShrutiDemoType["PHYSICAL"] = "physical";
|
|
2197
|
+
})(ShrutiDemoType = exports.ShrutiDemoType || (exports.ShrutiDemoType = {}));
|
|
2187
2198
|
var SignificanceAction;
|
|
2188
2199
|
(function (SignificanceAction) {
|
|
2189
2200
|
SignificanceAction["END_AND_IMPLEMENT_WINNER"] = "end_and_implement_winner";
|
|
@@ -2244,6 +2255,11 @@ var SuggestionAction;
|
|
|
2244
2255
|
SuggestionAction["VALIDATE"] = "validate";
|
|
2245
2256
|
SuggestionAction["REVIEW"] = "review";
|
|
2246
2257
|
})(SuggestionAction = exports.SuggestionAction || (exports.SuggestionAction = {}));
|
|
2258
|
+
var SvitlanaType;
|
|
2259
|
+
(function (SvitlanaType) {
|
|
2260
|
+
SvitlanaType["PHYSICAL"] = "physical";
|
|
2261
|
+
SvitlanaType["DIGITAL"] = "digital";
|
|
2262
|
+
})(SvitlanaType = exports.SvitlanaType || (exports.SvitlanaType = {}));
|
|
2247
2263
|
var TariffEligibilityType;
|
|
2248
2264
|
(function (TariffEligibilityType) {
|
|
2249
2265
|
TariffEligibilityType["REX"] = "rex";
|
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.62",
|
|
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": "2430172d05199bd940ad6b8a39eaf47a9efcea8c"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -87,7 +87,10 @@ export enum BillingMetricKey {
|
|
|
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
89
|
CAPTURE_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT = 'capture_transactions_ignored_previously_processed_count',
|
|
90
|
+
CAPTURE_QUEUED_COUNT = 'capture_queued_count',
|
|
90
91
|
CAPTURE_TRANSACTIONS_TOTAL = 'capture_transactions_total',
|
|
92
|
+
CARRIER_CHARGE_TRANSACTIONS_COUNT = 'carrier_charge_transactions_count',
|
|
93
|
+
CARRIER_CHARGE_TRANSACTIONS_TOTAL = 'carrier_charge_transactions_total',
|
|
91
94
|
CHANNEL_TRANSACTIONS_PROCESSING_COUNT = 'channel_transactions_processing_count',
|
|
92
95
|
CHANNEL_TRANSACTIONS_PROCESSING_TOTAL = 'channel_transactions_processing_total',
|
|
93
96
|
CHANNEL_TRANSACTIONS_ADJUSTMENT_COUNT = 'channel_transactions_adjustment_count',
|
|
@@ -117,6 +120,7 @@ export enum BillingMetricKey {
|
|
|
117
120
|
REFUND_TRANSACTIONS_IGNORED_FULLY_REFUNDED_COUNT = 'refund_transactions_ignored_fully_refunded_count',
|
|
118
121
|
REFUND_TRANSACTIONS_IGNORED_OTHER_COUNT = 'refund_transactions_ignored_other_count',
|
|
119
122
|
REFUND_TRANSACTIONS_IGNORED_PREVIOUSLY_PROCESSED_COUNT = 'refund_transactions_ignored_previously_processed_count',
|
|
123
|
+
REFUND_QUEUED_COUNT = 'refund_queued_count',
|
|
120
124
|
REFUND_TRANSACTIONS_TOTAL = 'refund_transactions_total',
|
|
121
125
|
REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_COUNT = 'reversal_order_cancellations_transactions_count',
|
|
122
126
|
REVERSAL_ORDER_CANCELLATIONS_TRANSACTIONS_TOTAL = 'reversal_order_cancellations_transactions_total',
|
|
@@ -163,6 +167,11 @@ export enum BillingMetricKey {
|
|
|
163
167
|
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_30_DAYS = 'percentage_billable_label_transactions_with_carrier_charge_30_days',
|
|
164
168
|
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_60_DAYS = 'percentage_billable_label_transactions_with_carrier_charge_60_days',
|
|
165
169
|
PERCENTAGE_BILLABLE_LABEL_TRANSACTIONS_WITH_CARRIER_CHARGE_90_DAYS = 'percentage_billable_label_transactions_with_carrier_charge_90_days',
|
|
170
|
+
PERCENTAGE_BANK_ACCOUNT_UPDATES = 'percentage_bank_account_updates',
|
|
171
|
+
PERCENTAGE_BANK_ACCOUNT_UNIQUE_UPDATES = 'percentage_bank_account_unique_updates',
|
|
172
|
+
NEGATIVE_BALANCE_NUMBER_ACCOUNTS = 'negative_balance_number_accounts',
|
|
173
|
+
NEGATIVE_BALANCE_TOTAL = 'negative_balance_total',
|
|
174
|
+
NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX = 'negative_balance_single_account_max',
|
|
166
175
|
}
|
|
167
176
|
|
|
168
177
|
export enum BillingStatementAttachmentKey {
|
|
@@ -181,6 +190,7 @@ export enum BillingStatementAttachmentKey {
|
|
|
181
190
|
TAX = 'tax',
|
|
182
191
|
DUTY = 'duty',
|
|
183
192
|
TRUEUP = 'trueup',
|
|
193
|
+
CARRIER_CHARGE = 'carrier_charge',
|
|
184
194
|
ALL = 'all',
|
|
185
195
|
}
|
|
186
196
|
|
|
@@ -216,6 +226,7 @@ export enum BillingTransactionType {
|
|
|
216
226
|
TAX = 'tax',
|
|
217
227
|
DUTY = 'duty',
|
|
218
228
|
TRUEUP = 'trueup',
|
|
229
|
+
CARRIER_CHARGE = 'carrier_charge',
|
|
219
230
|
}
|
|
220
231
|
|
|
221
232
|
export enum BlazeCheckoutEvent {
|
|
@@ -243,11 +254,13 @@ export enum CalculatorEngine {
|
|
|
243
254
|
DTCE_TWO_CALLS = 'dtce_two_calls',
|
|
244
255
|
DTCE_WITH_DEMINIMIS = 'dtce_with_deminimis',
|
|
245
256
|
DTCE_MERGED_WITH_TAX = 'dtce_merged_with_tax',
|
|
257
|
+
DTCE_WITH_INCLUSIVE_PRICING = 'dtce_with_inclusive_pricing',
|
|
246
258
|
}
|
|
247
259
|
|
|
248
|
-
export enum
|
|
249
|
-
|
|
250
|
-
|
|
260
|
+
export enum CarrierChargeTransactionType {
|
|
261
|
+
ADJUSTMENT = 'adjustment',
|
|
262
|
+
REVERSAL = 'reversal',
|
|
263
|
+
CHARGE = 'charge',
|
|
251
264
|
}
|
|
252
265
|
|
|
253
266
|
export enum CarrierLabelGenerationMethod {
|
|
@@ -341,6 +354,7 @@ export enum ChargeInputType {
|
|
|
341
354
|
USPS_FIRST_MILE = 'usps_first_mile',
|
|
342
355
|
OVERSIZE_PIECE = 'oversize_piece',
|
|
343
356
|
INCOTERM_DAP = 'incoterm_dap',
|
|
357
|
+
EMERGENCY_SITUATION = 'emergency_situation',
|
|
344
358
|
REMOTE_AREA_DELIVERY = 'remote_area_delivery',
|
|
345
359
|
}
|
|
346
360
|
|
|
@@ -835,6 +849,11 @@ export enum ClassificationErrorCode {
|
|
|
835
849
|
GENERIC_ERROR = 'generic_error',
|
|
836
850
|
}
|
|
837
851
|
|
|
852
|
+
export enum ColmItemType {
|
|
853
|
+
PHYSICAL = 'physical',
|
|
854
|
+
DIGITAL = 'digital',
|
|
855
|
+
}
|
|
856
|
+
|
|
838
857
|
export enum ComplianceType {
|
|
839
858
|
WEEE = 'weee',
|
|
840
859
|
}
|
|
@@ -1062,6 +1081,8 @@ export enum EventType {
|
|
|
1062
1081
|
DAILY_VALUE_DELETED = 'daily_value_deleted',
|
|
1063
1082
|
SALES_RECORD_UPSERTED = 'sales_record_upserted',
|
|
1064
1083
|
SALES_RECORD_DELETED = 'sales_record_deleted',
|
|
1084
|
+
REVENUE_RECORD_UPSERTED = 'revenue_record_upserted',
|
|
1085
|
+
REVENUE_RECORD_DELETED = 'revenue_record_deleted',
|
|
1065
1086
|
CALCULATOR_ORGANIZATION_SETTINGS_UPSERTED = 'calculator_organization_settings_upserted',
|
|
1066
1087
|
CALCULATOR_ORGANIZATION_SETTINGS_DELETED = 'calculator_organization_settings_deleted',
|
|
1067
1088
|
CARRIER_ACCOUNT_UPSERTED_V_2 = 'carrier_account_upserted_v2',
|
|
@@ -1564,6 +1585,7 @@ export enum ManualTransactionCategory {
|
|
|
1564
1585
|
TAX_CREDIT = 'tax_credit',
|
|
1565
1586
|
CARRIER_CREDIT = 'carrier_credit',
|
|
1566
1587
|
NEGATIVE_BALANCE_GUARANTEE = 'negative_balance_guarantee',
|
|
1588
|
+
BANK_PAYMENT_FAILURE = 'bank_payment_failure',
|
|
1567
1589
|
}
|
|
1568
1590
|
|
|
1569
1591
|
export enum MarketingGatewayAccountConnectionStatus {
|
|
@@ -1699,6 +1721,7 @@ export enum OnboardingAuditThemeKey {
|
|
|
1699
1721
|
DTCE = 'dtce',
|
|
1700
1722
|
RESTRICTIONS = 'restrictions',
|
|
1701
1723
|
ORGANIZATION_STATUS = 'organization_status',
|
|
1724
|
+
CATEGORY_CONSTRAINTS = 'category_constraints',
|
|
1702
1725
|
MISCELLANEOUS = 'miscellaneous',
|
|
1703
1726
|
}
|
|
1704
1727
|
|
|
@@ -1924,35 +1947,6 @@ export enum PromptTarget {
|
|
|
1924
1947
|
CHECKOUT = 'checkout',
|
|
1925
1948
|
}
|
|
1926
1949
|
|
|
1927
|
-
export enum QueuedRecordType {
|
|
1928
|
-
CAPTURE = 'capture',
|
|
1929
|
-
CHANNEL_TRANSACTION = 'channel_transaction',
|
|
1930
|
-
CONSUMER_INVOICE = 'consumer_invoice',
|
|
1931
|
-
FULFILLMENT_IN_TRANSIT = 'fulfillment_in_transit',
|
|
1932
|
-
FULFILLMENT_SHIPPING_NOTIFICATION = 'fulfillment_shipping_notification',
|
|
1933
|
-
FULFILLMENT_EXTERNAL = 'fulfillment_external',
|
|
1934
|
-
FULFILLMENT_ORDER_COMBINED_SHIPMENT = 'fulfillment_order_combined_shipment',
|
|
1935
|
-
FULFILLMENT_ORDER_TIME = 'fulfillment_order_time',
|
|
1936
|
-
RETURN_REFUND = 'return_refund',
|
|
1937
|
-
LABEL_TRACKING_SUMMARY = 'label_tracking_summary',
|
|
1938
|
-
LABEL_INVOICE_REQUEST = 'label_invoice_request',
|
|
1939
|
-
CARRIER_CHARGE = 'carrier_charge',
|
|
1940
|
-
CARRIER_CHARGE_FILE = 'carrier_charge_file',
|
|
1941
|
-
ORDER = 'order',
|
|
1942
|
-
ORDER_IDENTIFIER = 'order_identifier',
|
|
1943
|
-
ORGANIZATION_ONBOARDING_STATE = 'organization_onboarding_state',
|
|
1944
|
-
POSTING_PROOF = 'posting_proof',
|
|
1945
|
-
REFUND = 'refund',
|
|
1946
|
-
REFUND_OVER_CAPTURE = 'refund_over_capture',
|
|
1947
|
-
SALES_RECORD = 'sales_record',
|
|
1948
|
-
STATEMENT_BATCH = 'statement_batch',
|
|
1949
|
-
STATEMENT_EMAIL = 'statement_email',
|
|
1950
|
-
STATEMENT_SUMMARY_EMAIL = 'statement_summary_email',
|
|
1951
|
-
PENDING_PAYOUT_TRANSACTION_EVENT = 'pending_payout_transaction_event',
|
|
1952
|
-
CREDIT_AND_SUBSIDY = 'credit_and_subsidy',
|
|
1953
|
-
NEGATIVE_BALANCE_GUARANTEE = 'negative_balance_guarantee',
|
|
1954
|
-
}
|
|
1955
|
-
|
|
1956
1950
|
export enum QuoteRequestType {
|
|
1957
1951
|
GENERATE = 'generate',
|
|
1958
1952
|
DELETE = 'delete',
|
|
@@ -2010,6 +2004,12 @@ export enum ReportType {
|
|
|
2010
2004
|
NON_CHANNEL_PAYMENT_BANK_ACCOUNT = 'non_channel_payment_bank_account',
|
|
2011
2005
|
}
|
|
2012
2006
|
|
|
2007
|
+
export enum ReportingFulfillmentIsVirtual {
|
|
2008
|
+
ALL = 'all',
|
|
2009
|
+
MIXED = 'mixed',
|
|
2010
|
+
NONE = 'none',
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
2013
|
export enum ReportingScheme {
|
|
2014
2014
|
IMMEDIATE_REPORTING_TO_TAX_AUTHORITY = 'immediate_reporting_to_tax_authority',
|
|
2015
2015
|
PERIODIC_REPORTING_TO_TAX_AUTHORITY = 'periodic_reporting_to_tax_authority',
|
|
@@ -2042,6 +2042,11 @@ export enum RestrictionStatus {
|
|
|
2042
2042
|
RESTRICTED = 'restricted',
|
|
2043
2043
|
}
|
|
2044
2044
|
|
|
2045
|
+
export enum RevenueRecordType {
|
|
2046
|
+
SALES = 'sales',
|
|
2047
|
+
REFUND = 'refund',
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2045
2050
|
export enum RiskCheck {
|
|
2046
2051
|
THREE_D_SECURE = 'three_d_secure',
|
|
2047
2052
|
}
|
|
@@ -2125,6 +2130,7 @@ export enum ShopifyMarketsQueuedRecordType {
|
|
|
2125
2130
|
ORDER_UPDATE = 'order_update',
|
|
2126
2131
|
PRODUCT_RESTRICTION_RESULT = 'product_restriction_result',
|
|
2127
2132
|
PRODUCT_SYNC = 'product_sync',
|
|
2133
|
+
WEBHOOK_REGISTRATIONS = 'webhook_registrations',
|
|
2128
2134
|
}
|
|
2129
2135
|
|
|
2130
2136
|
export enum ShopifyMarketsTradeSector {
|
|
@@ -2176,6 +2182,11 @@ export enum ShopifyService {
|
|
|
2176
2182
|
DUTY_TAX_CALCULATOR = 'duty_tax_calculator',
|
|
2177
2183
|
}
|
|
2178
2184
|
|
|
2185
|
+
export enum ShrutiDemoType {
|
|
2186
|
+
DIGITAL = 'digital',
|
|
2187
|
+
PHYSICAL = 'physical',
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2179
2190
|
export enum SignificanceAction {
|
|
2180
2191
|
END_AND_IMPLEMENT_WINNER = 'end_and_implement_winner',
|
|
2181
2192
|
END_AND_REVERT = 'end_and_revert',
|
|
@@ -2236,6 +2247,11 @@ export enum SuggestionAction {
|
|
|
2236
2247
|
REVIEW = 'review',
|
|
2237
2248
|
}
|
|
2238
2249
|
|
|
2250
|
+
export enum SvitlanaType {
|
|
2251
|
+
PHYSICAL = 'physical',
|
|
2252
|
+
DIGITAL = 'digital',
|
|
2253
|
+
}
|
|
2254
|
+
|
|
2239
2255
|
export enum TariffEligibilityType {
|
|
2240
2256
|
REX = 'rex',
|
|
2241
2257
|
}
|