@flowio/api-internal-constants 4.18.82 → 4.18.83
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 +45 -15
- package/dist/api-internal.js +46 -18
- package/package.json +2 -2
- package/src/api-internal.ts +41 -13
package/dist/api-internal.d.ts
CHANGED
|
@@ -183,10 +183,12 @@ export declare enum BillingMetricKey {
|
|
|
183
183
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS = "negative_balance_number_accounts",
|
|
184
184
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITH_ORDER_IN_PAST_30_DAYS = "negative_balance_number_accounts_with_order_in_past_30_days",
|
|
185
185
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITHOUT_ORDER_IN_PAST_30_DAYS = "negative_balance_number_accounts_without_order_in_past_30_days",
|
|
186
|
+
NEGATIVE_BALANCE_NUMBER_OFFBOARDED_ACCOUNTS = "negative_balance_number_offboarded_accounts",
|
|
186
187
|
NEGATIVE_BALANCE_NUMBER_ACTIVE_ACCOUNTS_WITH_BALANCE_OVER_1000 = "negative_balance_number_active_accounts_with_balance_over_1000",
|
|
187
188
|
NEGATIVE_BALANCE_TOTAL = "negative_balance_total",
|
|
188
189
|
NEGATIVE_BALANCE_TOTAL_WITH_ORDER_IN_PAST_30_DAYS = "negative_balance_total_with_order_in_past_30_days",
|
|
189
190
|
NEGATIVE_BALANCE_TOTAL_WITHOUT_ORDER_IN_PAST_30_DAYS = "negative_balance_total_without_order_in_past_30_days",
|
|
191
|
+
NEGATIVE_BALANCE_TOTAL_OFFBOARDED_ACCOUNTS = "negative_balance_total_offboarded_accounts",
|
|
190
192
|
NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX = "negative_balance_single_account_max",
|
|
191
193
|
NEGATIVE_BALANCE_SINGLE_ACTIVE_ACCOUNT_MAX = "negative_balance_single_active_account_max",
|
|
192
194
|
NEGATIVE_BALANCE_FEE_TOTAL = "negative_balance_fee_total",
|
|
@@ -204,7 +206,32 @@ export declare enum BillingMetricKey {
|
|
|
204
206
|
NEGATIVE_BALANCE_SENT_TOTAL = "negative_balance_sent_total",
|
|
205
207
|
NEGATIVE_BALANCE_FAILED_COUNT = "negative_balance_failed_count",
|
|
206
208
|
NEGATIVE_BALANCE_FAILED_TOTAL = "negative_balance_failed_total",
|
|
207
|
-
NEGATIVE_DEBIT_SUCCESS_RATE = "negative_debit_success_rate"
|
|
209
|
+
NEGATIVE_DEBIT_SUCCESS_RATE = "negative_debit_success_rate",
|
|
210
|
+
CURRENT_ATTEMPT_MERCHANT_COUNT = "current_attempt_merchant_count",
|
|
211
|
+
CURRENT_ATTEMPT_AMOUNT_TOTAL = "current_attempt_amount_total",
|
|
212
|
+
CURRENT_ATTEMPT_FAILED_MERCHANT_COUNT = "current_attempt_failed_merchant_count",
|
|
213
|
+
CURRENT_ATTEMPT_FAILED_AMOUNT_TOTAL = "current_attempt_failed_amount_total",
|
|
214
|
+
CURRENT_ATTEMPT_SUCCESS_RATIO = "current_attempt_success_ratio",
|
|
215
|
+
FIRST_ATTEMPT_MERCHANT_COUNT = "first_attempt_merchant_count",
|
|
216
|
+
FIRST_ATTEMPT_AMOUNT_TOTAL = "first_attempt_amount_total",
|
|
217
|
+
FIRST_ATTEMPT_FAILED_MERCHANT_COUNT = "first_attempt_failed_merchant_count",
|
|
218
|
+
FIRST_ATTEMPT_FAILED_AMOUNT_TOTAL = "first_attempt_failed_amount_total",
|
|
219
|
+
FIRST_ATTEMPT_SUCCESS_RATIO = "first_attempt_success_ratio",
|
|
220
|
+
SECOND_ATTEMPT_MERCHANT_COUNT = "second_attempt_merchant_count",
|
|
221
|
+
SECOND_ATTEMPT_AMOUNT_TOTAL = "second_attempt_amount_total",
|
|
222
|
+
SECOND_ATTEMPT_FAILED_MERCHANT_COUNT = "second_attempt_failed_merchant_count",
|
|
223
|
+
SECOND_ATTEMPT_FAILED_AMOUNT_TOTAL = "second_attempt_failed_amount_total",
|
|
224
|
+
SECOND_ATTEMPT_SUCCESS_RATIO = "second_attempt_success_ratio",
|
|
225
|
+
THIRD_ATTEMPT_MERCHANT_COUNT = "third_attempt_merchant_count",
|
|
226
|
+
THIRD_ATTEMPT_AMOUNT_TOTAL = "third_attempt_amount_total",
|
|
227
|
+
THIRD_ATTEMPT_FAILED_MERCHANT_COUNT = "third_attempt_failed_merchant_count",
|
|
228
|
+
THIRD_ATTEMPT_FAILED_AMOUNT_TOTAL = "third_attempt_failed_amount_total",
|
|
229
|
+
THIRD_ATTEMPT_SUCCESS_RATIO = "third_attempt_success_ratio",
|
|
230
|
+
FOURTH_PLUS_ATTEMPT_MERCHANT_COUNT = "fourth_plus_attempt_merchant_count",
|
|
231
|
+
FOURTH_PLUS_ATTEMPT_AMOUNT_TOTAL = "fourth_plus_attempt_amount_total",
|
|
232
|
+
FOURTH_PLUS_ATTEMPT_FAILED_MERCHANT_COUNT = "fourth_plus_attempt_failed_merchant_count",
|
|
233
|
+
FOURTH_PLUS_ATTEMPT_FAILED_AMOUNT_TOTAL = "fourth_plus_attempt_failed_amount_total",
|
|
234
|
+
FOURTH_PLUS_ATTEMPT_SUCCESS_RATIO = "fourth_plus_attempt_success_ratio"
|
|
208
235
|
}
|
|
209
236
|
export declare enum BillingStatementAttachmentKey {
|
|
210
237
|
INVOICE = "invoice",
|
|
@@ -252,7 +279,8 @@ export declare enum BillingTransactionType {
|
|
|
252
279
|
DUTY = "duty",
|
|
253
280
|
TRUEUP = "trueup",
|
|
254
281
|
CARRIER_CHARGE = "carrier_charge",
|
|
255
|
-
TAX_REFUND = "tax_refund"
|
|
282
|
+
TAX_REFUND = "tax_refund",
|
|
283
|
+
DUTY_REFUND = "duty_refund"
|
|
256
284
|
}
|
|
257
285
|
export declare enum BrowserBundleErrorCode {
|
|
258
286
|
GENERIC_ERROR = "generic_error",
|
|
@@ -876,6 +904,8 @@ export declare enum EventType {
|
|
|
876
904
|
PARTNER_ORGANIZATION_SETTINGS_DELETED = "partner_organization_settings_deleted",
|
|
877
905
|
UNASSIGNED_MERCHANT_GUID_UPSERTED = "unassigned_merchant_guid_upserted",
|
|
878
906
|
UNASSIGNED_MERCHANT_GUID_DELETED = "unassigned_merchant_guid_deleted",
|
|
907
|
+
PARTNER_TRACKING_SUBSCRIPTION_UPSERTED = "partner_tracking_subscription_upserted",
|
|
908
|
+
PARTNER_TRACKING_SUBSCRIPTION_DELETED = "partner_tracking_subscription_deleted",
|
|
879
909
|
INTERNAL_AUTHORIZATION_UPSERTED = "internal_authorization_upserted",
|
|
880
910
|
INTERNAL_AUTHORIZATION_DELETED = "internal_authorization_deleted",
|
|
881
911
|
AFTERPAY_AUTHORIZATION_UPSERTED = "afterpay_authorization_upserted",
|
|
@@ -902,6 +932,8 @@ export declare enum EventType {
|
|
|
902
932
|
PAYPAL_EXECUTION_UPSERTED = "paypal_execution_upserted",
|
|
903
933
|
PAYPAL_REFUND_DELETED = "paypal_refund_deleted",
|
|
904
934
|
PAYPAL_REFUND_UPSERTED = "paypal_refund_upserted",
|
|
935
|
+
PAYPAL_DISPUTE_UPSERTED = "paypal_dispute_upserted",
|
|
936
|
+
PAYPAL_DISPUTE_DELETED = "paypal_dispute_deleted",
|
|
905
937
|
PRICING_INDICATOR = "pricing_indicator",
|
|
906
938
|
PRODUCT_RESTRICTION_RULE_DECISION_UPSERTED = "product_restriction_rule_decision_upserted",
|
|
907
939
|
PRODUCT_RESTRICTION_RULE_DECISION_DELETED = "product_restriction_rule_decision_deleted",
|
|
@@ -981,6 +1013,8 @@ export declare enum EventType {
|
|
|
981
1013
|
MICHAELYAN_ITEM_DELETED = "michaelyan_item_deleted",
|
|
982
1014
|
MILJENKO_ITEM_UPSERTED = "miljenko_item_upserted",
|
|
983
1015
|
MILJENKO_ITEM_DELETED = "miljenko_item_deleted",
|
|
1016
|
+
SANJAY_ITEM_UPSERTED = "sanjay_item_upserted",
|
|
1017
|
+
SANJAY_ITEM_DELETED = "sanjay_item_deleted",
|
|
984
1018
|
SHRUTI_DEMO_ITEM_UPSERTED = "shruti_demo_item_upserted",
|
|
985
1019
|
SHRUTI_DEMO_ITEM_DELETED = "shruti_demo_item_deleted",
|
|
986
1020
|
TAM_ITEM_UPSERTED = "tam_item_upserted",
|
|
@@ -999,6 +1033,8 @@ export declare enum EventType {
|
|
|
999
1033
|
TRACKING_ASSURANCE_ANALYSIS_DELETED = "tracking_assurance_analysis_deleted",
|
|
1000
1034
|
TRACKING_ASSURANCE_JOB_UPSERTED = "tracking_assurance_job_upserted",
|
|
1001
1035
|
TRACKING_ASSURANCE_JOB_DELETED = "tracking_assurance_job_deleted",
|
|
1036
|
+
TRACKING_SUBSCRIPTION_UPSERTED = "tracking_subscription_upserted",
|
|
1037
|
+
TRACKING_SUBSCRIPTION_DELETED = "tracking_subscription_deleted",
|
|
1002
1038
|
TRACKING_LABEL_DIMENSIONS_UPSERTED = "tracking_label_dimensions_upserted",
|
|
1003
1039
|
TRACKING_LABEL_DIMENSIONS_DELETED = "tracking_label_dimensions_deleted",
|
|
1004
1040
|
TRACKING_REQUEST_UPSERTED = "tracking_request_upserted",
|
|
@@ -1106,13 +1142,6 @@ export declare enum HttpMethod {
|
|
|
1106
1142
|
GET = "get",
|
|
1107
1143
|
POST = "post"
|
|
1108
1144
|
}
|
|
1109
|
-
export declare enum InventoryCheckService {
|
|
1110
|
-
SFCC = "sfcc",
|
|
1111
|
-
GYMBOREE = "gymboree"
|
|
1112
|
-
}
|
|
1113
|
-
export declare enum InventoryReservation {
|
|
1114
|
-
SYNCHRONOUS_ON_SUBMIT = "synchronous-on-submit"
|
|
1115
|
-
}
|
|
1116
1145
|
export declare enum ItemClassificationAction {
|
|
1117
1146
|
ACCEPT = "ACCEPT",
|
|
1118
1147
|
MANUAL = "MANUAL",
|
|
@@ -1216,7 +1245,8 @@ export declare enum ManualTransactionCategory {
|
|
|
1216
1245
|
TAX_CREDIT = "tax_credit",
|
|
1217
1246
|
CARRIER_CREDIT = "carrier_credit",
|
|
1218
1247
|
NEGATIVE_BALANCE_GUARANTEE = "negative_balance_guarantee",
|
|
1219
|
-
BANK_PAYMENT_FAILURE = "bank_payment_failure"
|
|
1248
|
+
BANK_PAYMENT_FAILURE = "bank_payment_failure",
|
|
1249
|
+
NON_FRAUD_CHARGEBACK = "non_fraud_chargeback"
|
|
1220
1250
|
}
|
|
1221
1251
|
export declare enum MarketingGatewayAccountConnectionStatus {
|
|
1222
1252
|
NOT_CONNECTED = "not_connected",
|
|
@@ -1628,7 +1658,8 @@ export declare enum ReportType {
|
|
|
1628
1658
|
INVARIANTS = "invariants",
|
|
1629
1659
|
PAYMENTS = "payments",
|
|
1630
1660
|
RECONCILE_NOT_RECORDED = "reconcile_not_recorded",
|
|
1631
|
-
PRODUCTS_RECORD = "products_record"
|
|
1661
|
+
PRODUCTS_RECORD = "products_record",
|
|
1662
|
+
DISPUTES = "disputes"
|
|
1632
1663
|
}
|
|
1633
1664
|
export declare enum ReportingFulfillmentIsVirtual {
|
|
1634
1665
|
ALL = "all",
|
|
@@ -1682,10 +1713,9 @@ export declare enum RiskEvaluation {
|
|
|
1682
1713
|
RESTRICTED = "Restricted-Party",
|
|
1683
1714
|
NONE = "none"
|
|
1684
1715
|
}
|
|
1685
|
-
export declare enum
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
RESERVATION_EXPIRED = "reservation_expired"
|
|
1716
|
+
export declare enum SanjayItemType {
|
|
1717
|
+
DIGITAL = "digital",
|
|
1718
|
+
PHYSICAL = "physical"
|
|
1689
1719
|
}
|
|
1690
1720
|
export declare enum ServiceName {
|
|
1691
1721
|
CATALOG = "catalog",
|
package/dist/api-internal.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ComplianceType = exports.Company = exports.ColmItemType = exports.ClothingAgeClassification = exports.ClassificationType = exports.ClassificationPlatform = exports.ClassificationErrorCode = exports.ClassificationDecision = exports.CheckoutUrlType = exports.CheckoutShippingMethodPromptBehavior = exports.CheckoutRedirectMethod = exports.CheckoutPromptBehavior = exports.CheckoutErrorCode = exports.CheckoutAssetType = exports.ChargebackProcessStatus = exports.ChargebackPaymentStatus = exports.ChargeInputType = exports.ChargeEstimateSource = exports.ChannelTransactionType = exports.ChannelOrderFulfillmentStatusCode = exports.ChannelOrderAcceptanceStatus = exports.ChannelOrderAcceptanceRejectionReason = exports.ChannelOrderAcceptanceNextActionFrom = exports.ChannelOrderAcceptanceFailureReasonCode = exports.ChannelOrderAcceptanceErrorAction = exports.ChannelBilledTransactionType = exports.CatalogImportType = exports.CarrierValidationStatus = exports.CarrierLabelGenerationMethod = exports.CarrierFileType = exports.CarrierChargeType = exports.CarrierChargeTransactionType = exports.CalculatorEngine = exports.BrowserBundleErrorCode = exports.BillingTransactionType = exports.BillingTransactionStatus = exports.BillingStatementAttachmentKey = exports.BillingMetricKey = exports.BillingAllocationKey = exports.BankPaymentStatusCode = exports.BankPaymentPromiseCompletedMethod = exports.AutoRestrictRule = exports.ApiCallReferenceId = exports.AnyDangerousGoods = exports.AdyenIntegrationType = exports.AdjustmentTransactionType = exports.AddressConfigurationSettingProvinceCode = exports.AccountType = exports.AccountSettingLiabilitiesMethod = exports.AccountPaymentHoldReason = void 0;
|
|
4
4
|
exports.GoogleAnalyticsPlugin = exports.FtpProtocol = exports.FtpIntent = exports.FraudReviewResponsibleParty = exports.FraudProviderStatus = exports.FraudProvider = exports.Format = exports.FlowApp = exports.FinancialReportingResponsibleParty = exports.FeesSource = exports.FeatureType = exports.FeatureStatus = exports.FeatureScope = exports.ExportContentType = exports.ExperienceOrderActionTrigger = exports.ExperienceOrderAction = exports.ExperienceImportType = exports.EventType = exports.ErpFileType = exports.EmptyAttribute = exports.EldarItemType = exports.DutyTransactionType = exports.DutySimpleExpressionType = exports.DutySelectionRule = exports.DutyRateUnitOfMeasure = exports.DutyRateSource = exports.DutyExemptItemTypes = exports.DutyCompoundExpressionType = exports.DisputeType = exports.DisputeTransactionType = exports.DisputeStatus = exports.DisputeReportingCategory = exports.DisputeProcessor = exports.DisputeLiability = exports.DisputeImportType = exports.DisputeImportStatus = exports.DisputeEvidence = exports.DisputeDefenseOutcome = exports.DisputeCategory = exports.DisputeBillable = exports.DiscountRequestOrderEntitlementKey = exports.DeminimisAdjustmentType = exports.DeliveredDutyOptionMessageType = exports.DebugAccountingTransactionType = exports.CrossdockTrackingStatus = exports.CostType = exports.ContentTypeCast = exports.ContentType = exports.ContentStatus = exports.ContentElementType = void 0;
|
|
5
|
-
exports.OrderAddressValidationStatus = exports.OrderAction = exports.OnboardingStateSource = exports.OnboardingAutomationTaskState = exports.OnboardingAutomationProcessState = exports.OnboardingAuditThemeKey = exports.OnboardingAuditResult = exports.OnboardingAuditMessageLevel = exports.NoLiabilityReasonCode = exports.NatureOfSale = exports.MixedBagWeight = exports.MiljenkoItemType = exports.MichaelyanItemType = exports.MerchantCohort = exports.MatiasItemType = exports.MarketingGatewaySchemaCompatibility = exports.MarketingGatewayProductStatus = exports.MarketingGatewayPlatform = exports.MarketingGatewayFeedState = exports.MarketingGatewayFeedDownloadFormat = exports.MarketingGatewayFacebookTokenStatus = exports.MarketingGatewayErrorCode = exports.MarketingGatewayChannelStatus = exports.MarketingGatewayChannelIntegrationType = exports.MarketingGatewayAccountConnectionStatus = exports.ManualTransactionCategory = exports.ManualReviewRuleStatus = exports.LogisticsPayoutResolutionMethod = exports.LogisticsCapability = exports.LiabilityType = exports.LabelTransactionType = exports.LabelRequestResultState = exports.LabelRequestResultOrganizationType = exports.LabelRequestErrorHandlingResponsibility = exports.LabelCreationStatus = exports.LabelCancellationErrorCode = exports.LabelBillingStrategy = exports.KonstantinItemType = exports.KeywordType = exports.ItemType = exports.ItemQuantityAction = exports.ItemHarmonizationStatus = exports.ItemClassificationStatus = exports.ItemClassificationAction = exports.
|
|
6
|
-
exports.RevenueRecordType = exports.RestrictionStatus = exports.RestrictionDecision = exports.RestrictionAction = exports.ResponsibleParty = exports.ReportingScheme = exports.ReportingFulfillmentIsVirtual = exports.ReportType = exports.ReportStatus = exports.ReportPaymentType = exports.ReportInterval = exports.RejectionReason = exports.RedirectReason = exports.ReboundConfigurationStatus = exports.RateSource = exports.RateLevelKey = exports.QuoteRequestType = exports.PromptTarget = exports.PromptOptions = exports.PromptCheckoutDisplayPosition = exports.PromptAction = exports.ProfitStreamKey = exports.ProductStatus = exports.ProcessorEntityStatus = exports.Processor = exports.ProcessingTransactionType = exports.PrincipalType = exports.PricingIndicatorStatus = exports.PriceSelector = exports.PreferredBillingSchedule = exports.PaymentTerm = exports.PaymentSummaryType = exports.PaymentSummaryStatus = exports.Party = exports.Owner = exports.OutputStyle = exports.OrganizationRestrictionScreeningStatus = exports.OrganizationRestrictionRiskLevel = exports.OrganizationRestrictionReviewType = exports.OrganizationRestrictionNoteType = exports.OrganizationRestrictionApprovalStatus = exports.OrganizationPaymentStatus = exports.OrganizationMetricType = exports.OrganizationCapability = exports.OrderValidationStatus = exports.OrderTransactionType = exports.OrderLifecycleEvent = exports.OrderChargeTrigger =
|
|
7
|
-
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = exports.TransferMethod = exports.TransactionPostingMethod = exports.TrackingProcessingFailureClassification = exports.TrackingLabelDimensionsSource = exports.TrackingIntegrationType = exports.ThiagoItemType = exports.TaxTransactionType = exports.TaxParty = exports.TaxCalculationErrorCode = exports.TaxAndDutyInclusivitySetting = exports.TaskProcessorKey = exports.TariffEligibilityType = exports.TamItemType = exports.SvitlanaType = exports.SuggestionAction = exports.SubscriptionFrequency = exports.StatisticType = exports.StatementTransferTransactionLocation = exports.StatementStatus = exports.SnoozeSourceType = exports.SnoozeNextActionWith = exports.SimpleRoundingStrategy = 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 = exports.SessionCountryStatus = exports.ServiceName = exports.
|
|
5
|
+
exports.OrderCancellationInitiatedBy = exports.OrderAttributeIntent = exports.OrderAddressValidationStatus = exports.OrderAction = exports.OnboardingStateSource = exports.OnboardingAutomationTaskState = exports.OnboardingAutomationProcessState = exports.OnboardingAuditThemeKey = exports.OnboardingAuditResult = exports.OnboardingAuditMessageLevel = exports.NoLiabilityReasonCode = exports.NatureOfSale = exports.MixedBagWeight = exports.MiljenkoItemType = exports.MichaelyanItemType = exports.MerchantCohort = exports.MatiasItemType = exports.MarketingGatewaySchemaCompatibility = exports.MarketingGatewayProductStatus = exports.MarketingGatewayPlatform = exports.MarketingGatewayFeedState = exports.MarketingGatewayFeedDownloadFormat = exports.MarketingGatewayFacebookTokenStatus = exports.MarketingGatewayErrorCode = exports.MarketingGatewayChannelStatus = exports.MarketingGatewayChannelIntegrationType = exports.MarketingGatewayAccountConnectionStatus = exports.ManualTransactionCategory = exports.ManualReviewRuleStatus = exports.LogisticsPayoutResolutionMethod = exports.LogisticsCapability = exports.LiabilityType = exports.LabelTransactionType = exports.LabelRequestResultState = exports.LabelRequestResultOrganizationType = exports.LabelRequestErrorHandlingResponsibility = exports.LabelCreationStatus = exports.LabelCancellationErrorCode = exports.LabelBillingStrategy = exports.KonstantinItemType = exports.KeywordType = exports.ItemType = exports.ItemQuantityAction = exports.ItemHarmonizationStatus = exports.ItemClassificationStatus = exports.ItemClassificationAction = exports.HttpMethod = exports.HarmonizationDecisionSource = exports.HarinathItemType = exports.GraphqlServiceTypes = void 0;
|
|
6
|
+
exports.RiskCheck = exports.RevenueType = exports.RevenueRecordType = exports.RestrictionStatus = exports.RestrictionDecision = exports.RestrictionAction = exports.ResponsibleParty = exports.ReportingScheme = exports.ReportingFulfillmentIsVirtual = exports.ReportType = exports.ReportStatus = exports.ReportPaymentType = exports.ReportInterval = exports.RejectionReason = exports.RedirectReason = exports.ReboundConfigurationStatus = exports.RateSource = exports.RateLevelKey = exports.QuoteRequestType = exports.PromptTarget = exports.PromptOptions = exports.PromptCheckoutDisplayPosition = exports.PromptAction = exports.ProfitStreamKey = exports.ProductStatus = exports.ProcessorEntityStatus = exports.Processor = exports.ProcessingTransactionType = exports.PrincipalType = exports.PricingIndicatorStatus = exports.PriceSelector = exports.PreferredBillingSchedule = exports.PaymentTerm = exports.PaymentSummaryType = exports.PaymentSummaryStatus = exports.Party = exports.Owner = exports.OutputStyle = exports.OrganizationRestrictionScreeningStatus = exports.OrganizationRestrictionRiskLevel = exports.OrganizationRestrictionReviewType = exports.OrganizationRestrictionNoteType = exports.OrganizationRestrictionApprovalStatus = exports.OrganizationPaymentStatus = exports.OrganizationMetricType = exports.OrganizationCapability = exports.OrderValidationStatus = exports.OrderTransactionType = exports.OrderLifecycleEvent = exports.OrderChargeTrigger = void 0;
|
|
7
|
+
exports.UnclassifiedProductStatus = exports.TrueupTransactionType = exports.TransferMethod = exports.TransactionPostingMethod = exports.TrackingProcessingFailureClassification = exports.TrackingLabelDimensionsSource = exports.TrackingIntegrationType = exports.ThiagoItemType = exports.TaxTransactionType = exports.TaxParty = exports.TaxCalculationErrorCode = exports.TaxAndDutyInclusivitySetting = exports.TaskProcessorKey = exports.TariffEligibilityType = exports.TamItemType = exports.SvitlanaType = exports.SuggestionAction = exports.SubscriptionFrequency = exports.StatisticType = exports.StatementTransferTransactionLocation = exports.StatementStatus = exports.SnoozeSourceType = exports.SnoozeNextActionWith = exports.SimpleRoundingStrategy = 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 = exports.SessionCountryStatus = exports.ServiceName = exports.SanjayItemType = exports.RiskEvaluation = void 0;
|
|
8
8
|
var AccountPaymentHoldReason;
|
|
9
9
|
(function (AccountPaymentHoldReason) {
|
|
10
10
|
AccountPaymentHoldReason["FRAUDULENT"] = "fraudulent";
|
|
@@ -203,10 +203,12 @@ var BillingMetricKey;
|
|
|
203
203
|
BillingMetricKey["NEGATIVE_BALANCE_NUMBER_ACCOUNTS"] = "negative_balance_number_accounts";
|
|
204
204
|
BillingMetricKey["NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITH_ORDER_IN_PAST_30_DAYS"] = "negative_balance_number_accounts_with_order_in_past_30_days";
|
|
205
205
|
BillingMetricKey["NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITHOUT_ORDER_IN_PAST_30_DAYS"] = "negative_balance_number_accounts_without_order_in_past_30_days";
|
|
206
|
+
BillingMetricKey["NEGATIVE_BALANCE_NUMBER_OFFBOARDED_ACCOUNTS"] = "negative_balance_number_offboarded_accounts";
|
|
206
207
|
BillingMetricKey["NEGATIVE_BALANCE_NUMBER_ACTIVE_ACCOUNTS_WITH_BALANCE_OVER_1000"] = "negative_balance_number_active_accounts_with_balance_over_1000";
|
|
207
208
|
BillingMetricKey["NEGATIVE_BALANCE_TOTAL"] = "negative_balance_total";
|
|
208
209
|
BillingMetricKey["NEGATIVE_BALANCE_TOTAL_WITH_ORDER_IN_PAST_30_DAYS"] = "negative_balance_total_with_order_in_past_30_days";
|
|
209
210
|
BillingMetricKey["NEGATIVE_BALANCE_TOTAL_WITHOUT_ORDER_IN_PAST_30_DAYS"] = "negative_balance_total_without_order_in_past_30_days";
|
|
211
|
+
BillingMetricKey["NEGATIVE_BALANCE_TOTAL_OFFBOARDED_ACCOUNTS"] = "negative_balance_total_offboarded_accounts";
|
|
210
212
|
BillingMetricKey["NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX"] = "negative_balance_single_account_max";
|
|
211
213
|
BillingMetricKey["NEGATIVE_BALANCE_SINGLE_ACTIVE_ACCOUNT_MAX"] = "negative_balance_single_active_account_max";
|
|
212
214
|
BillingMetricKey["NEGATIVE_BALANCE_FEE_TOTAL"] = "negative_balance_fee_total";
|
|
@@ -225,6 +227,31 @@ var BillingMetricKey;
|
|
|
225
227
|
BillingMetricKey["NEGATIVE_BALANCE_FAILED_COUNT"] = "negative_balance_failed_count";
|
|
226
228
|
BillingMetricKey["NEGATIVE_BALANCE_FAILED_TOTAL"] = "negative_balance_failed_total";
|
|
227
229
|
BillingMetricKey["NEGATIVE_DEBIT_SUCCESS_RATE"] = "negative_debit_success_rate";
|
|
230
|
+
BillingMetricKey["CURRENT_ATTEMPT_MERCHANT_COUNT"] = "current_attempt_merchant_count";
|
|
231
|
+
BillingMetricKey["CURRENT_ATTEMPT_AMOUNT_TOTAL"] = "current_attempt_amount_total";
|
|
232
|
+
BillingMetricKey["CURRENT_ATTEMPT_FAILED_MERCHANT_COUNT"] = "current_attempt_failed_merchant_count";
|
|
233
|
+
BillingMetricKey["CURRENT_ATTEMPT_FAILED_AMOUNT_TOTAL"] = "current_attempt_failed_amount_total";
|
|
234
|
+
BillingMetricKey["CURRENT_ATTEMPT_SUCCESS_RATIO"] = "current_attempt_success_ratio";
|
|
235
|
+
BillingMetricKey["FIRST_ATTEMPT_MERCHANT_COUNT"] = "first_attempt_merchant_count";
|
|
236
|
+
BillingMetricKey["FIRST_ATTEMPT_AMOUNT_TOTAL"] = "first_attempt_amount_total";
|
|
237
|
+
BillingMetricKey["FIRST_ATTEMPT_FAILED_MERCHANT_COUNT"] = "first_attempt_failed_merchant_count";
|
|
238
|
+
BillingMetricKey["FIRST_ATTEMPT_FAILED_AMOUNT_TOTAL"] = "first_attempt_failed_amount_total";
|
|
239
|
+
BillingMetricKey["FIRST_ATTEMPT_SUCCESS_RATIO"] = "first_attempt_success_ratio";
|
|
240
|
+
BillingMetricKey["SECOND_ATTEMPT_MERCHANT_COUNT"] = "second_attempt_merchant_count";
|
|
241
|
+
BillingMetricKey["SECOND_ATTEMPT_AMOUNT_TOTAL"] = "second_attempt_amount_total";
|
|
242
|
+
BillingMetricKey["SECOND_ATTEMPT_FAILED_MERCHANT_COUNT"] = "second_attempt_failed_merchant_count";
|
|
243
|
+
BillingMetricKey["SECOND_ATTEMPT_FAILED_AMOUNT_TOTAL"] = "second_attempt_failed_amount_total";
|
|
244
|
+
BillingMetricKey["SECOND_ATTEMPT_SUCCESS_RATIO"] = "second_attempt_success_ratio";
|
|
245
|
+
BillingMetricKey["THIRD_ATTEMPT_MERCHANT_COUNT"] = "third_attempt_merchant_count";
|
|
246
|
+
BillingMetricKey["THIRD_ATTEMPT_AMOUNT_TOTAL"] = "third_attempt_amount_total";
|
|
247
|
+
BillingMetricKey["THIRD_ATTEMPT_FAILED_MERCHANT_COUNT"] = "third_attempt_failed_merchant_count";
|
|
248
|
+
BillingMetricKey["THIRD_ATTEMPT_FAILED_AMOUNT_TOTAL"] = "third_attempt_failed_amount_total";
|
|
249
|
+
BillingMetricKey["THIRD_ATTEMPT_SUCCESS_RATIO"] = "third_attempt_success_ratio";
|
|
250
|
+
BillingMetricKey["FOURTH_PLUS_ATTEMPT_MERCHANT_COUNT"] = "fourth_plus_attempt_merchant_count";
|
|
251
|
+
BillingMetricKey["FOURTH_PLUS_ATTEMPT_AMOUNT_TOTAL"] = "fourth_plus_attempt_amount_total";
|
|
252
|
+
BillingMetricKey["FOURTH_PLUS_ATTEMPT_FAILED_MERCHANT_COUNT"] = "fourth_plus_attempt_failed_merchant_count";
|
|
253
|
+
BillingMetricKey["FOURTH_PLUS_ATTEMPT_FAILED_AMOUNT_TOTAL"] = "fourth_plus_attempt_failed_amount_total";
|
|
254
|
+
BillingMetricKey["FOURTH_PLUS_ATTEMPT_SUCCESS_RATIO"] = "fourth_plus_attempt_success_ratio";
|
|
228
255
|
})(BillingMetricKey = exports.BillingMetricKey || (exports.BillingMetricKey = {}));
|
|
229
256
|
var BillingStatementAttachmentKey;
|
|
230
257
|
(function (BillingStatementAttachmentKey) {
|
|
@@ -276,6 +303,7 @@ var BillingTransactionType;
|
|
|
276
303
|
BillingTransactionType["TRUEUP"] = "trueup";
|
|
277
304
|
BillingTransactionType["CARRIER_CHARGE"] = "carrier_charge";
|
|
278
305
|
BillingTransactionType["TAX_REFUND"] = "tax_refund";
|
|
306
|
+
BillingTransactionType["DUTY_REFUND"] = "duty_refund";
|
|
279
307
|
})(BillingTransactionType = exports.BillingTransactionType || (exports.BillingTransactionType = {}));
|
|
280
308
|
var BrowserBundleErrorCode;
|
|
281
309
|
(function (BrowserBundleErrorCode) {
|
|
@@ -966,6 +994,8 @@ var EventType;
|
|
|
966
994
|
EventType["PARTNER_ORGANIZATION_SETTINGS_DELETED"] = "partner_organization_settings_deleted";
|
|
967
995
|
EventType["UNASSIGNED_MERCHANT_GUID_UPSERTED"] = "unassigned_merchant_guid_upserted";
|
|
968
996
|
EventType["UNASSIGNED_MERCHANT_GUID_DELETED"] = "unassigned_merchant_guid_deleted";
|
|
997
|
+
EventType["PARTNER_TRACKING_SUBSCRIPTION_UPSERTED"] = "partner_tracking_subscription_upserted";
|
|
998
|
+
EventType["PARTNER_TRACKING_SUBSCRIPTION_DELETED"] = "partner_tracking_subscription_deleted";
|
|
969
999
|
EventType["INTERNAL_AUTHORIZATION_UPSERTED"] = "internal_authorization_upserted";
|
|
970
1000
|
EventType["INTERNAL_AUTHORIZATION_DELETED"] = "internal_authorization_deleted";
|
|
971
1001
|
EventType["AFTERPAY_AUTHORIZATION_UPSERTED"] = "afterpay_authorization_upserted";
|
|
@@ -992,6 +1022,8 @@ var EventType;
|
|
|
992
1022
|
EventType["PAYPAL_EXECUTION_UPSERTED"] = "paypal_execution_upserted";
|
|
993
1023
|
EventType["PAYPAL_REFUND_DELETED"] = "paypal_refund_deleted";
|
|
994
1024
|
EventType["PAYPAL_REFUND_UPSERTED"] = "paypal_refund_upserted";
|
|
1025
|
+
EventType["PAYPAL_DISPUTE_UPSERTED"] = "paypal_dispute_upserted";
|
|
1026
|
+
EventType["PAYPAL_DISPUTE_DELETED"] = "paypal_dispute_deleted";
|
|
995
1027
|
EventType["PRICING_INDICATOR"] = "pricing_indicator";
|
|
996
1028
|
EventType["PRODUCT_RESTRICTION_RULE_DECISION_UPSERTED"] = "product_restriction_rule_decision_upserted";
|
|
997
1029
|
EventType["PRODUCT_RESTRICTION_RULE_DECISION_DELETED"] = "product_restriction_rule_decision_deleted";
|
|
@@ -1071,6 +1103,8 @@ var EventType;
|
|
|
1071
1103
|
EventType["MICHAELYAN_ITEM_DELETED"] = "michaelyan_item_deleted";
|
|
1072
1104
|
EventType["MILJENKO_ITEM_UPSERTED"] = "miljenko_item_upserted";
|
|
1073
1105
|
EventType["MILJENKO_ITEM_DELETED"] = "miljenko_item_deleted";
|
|
1106
|
+
EventType["SANJAY_ITEM_UPSERTED"] = "sanjay_item_upserted";
|
|
1107
|
+
EventType["SANJAY_ITEM_DELETED"] = "sanjay_item_deleted";
|
|
1074
1108
|
EventType["SHRUTI_DEMO_ITEM_UPSERTED"] = "shruti_demo_item_upserted";
|
|
1075
1109
|
EventType["SHRUTI_DEMO_ITEM_DELETED"] = "shruti_demo_item_deleted";
|
|
1076
1110
|
EventType["TAM_ITEM_UPSERTED"] = "tam_item_upserted";
|
|
@@ -1089,6 +1123,8 @@ var EventType;
|
|
|
1089
1123
|
EventType["TRACKING_ASSURANCE_ANALYSIS_DELETED"] = "tracking_assurance_analysis_deleted";
|
|
1090
1124
|
EventType["TRACKING_ASSURANCE_JOB_UPSERTED"] = "tracking_assurance_job_upserted";
|
|
1091
1125
|
EventType["TRACKING_ASSURANCE_JOB_DELETED"] = "tracking_assurance_job_deleted";
|
|
1126
|
+
EventType["TRACKING_SUBSCRIPTION_UPSERTED"] = "tracking_subscription_upserted";
|
|
1127
|
+
EventType["TRACKING_SUBSCRIPTION_DELETED"] = "tracking_subscription_deleted";
|
|
1092
1128
|
EventType["TRACKING_LABEL_DIMENSIONS_UPSERTED"] = "tracking_label_dimensions_upserted";
|
|
1093
1129
|
EventType["TRACKING_LABEL_DIMENSIONS_DELETED"] = "tracking_label_dimensions_deleted";
|
|
1094
1130
|
EventType["TRACKING_REQUEST_UPSERTED"] = "tracking_request_upserted";
|
|
@@ -1217,15 +1253,6 @@ var HttpMethod;
|
|
|
1217
1253
|
HttpMethod["GET"] = "get";
|
|
1218
1254
|
HttpMethod["POST"] = "post";
|
|
1219
1255
|
})(HttpMethod = exports.HttpMethod || (exports.HttpMethod = {}));
|
|
1220
|
-
var InventoryCheckService;
|
|
1221
|
-
(function (InventoryCheckService) {
|
|
1222
|
-
InventoryCheckService["SFCC"] = "sfcc";
|
|
1223
|
-
InventoryCheckService["GYMBOREE"] = "gymboree";
|
|
1224
|
-
})(InventoryCheckService = exports.InventoryCheckService || (exports.InventoryCheckService = {}));
|
|
1225
|
-
var InventoryReservation;
|
|
1226
|
-
(function (InventoryReservation) {
|
|
1227
|
-
InventoryReservation["SYNCHRONOUS_ON_SUBMIT"] = "synchronous-on-submit";
|
|
1228
|
-
})(InventoryReservation = exports.InventoryReservation || (exports.InventoryReservation = {}));
|
|
1229
1256
|
var ItemClassificationAction;
|
|
1230
1257
|
(function (ItemClassificationAction) {
|
|
1231
1258
|
ItemClassificationAction["ACCEPT"] = "ACCEPT";
|
|
@@ -1349,6 +1376,7 @@ var ManualTransactionCategory;
|
|
|
1349
1376
|
ManualTransactionCategory["CARRIER_CREDIT"] = "carrier_credit";
|
|
1350
1377
|
ManualTransactionCategory["NEGATIVE_BALANCE_GUARANTEE"] = "negative_balance_guarantee";
|
|
1351
1378
|
ManualTransactionCategory["BANK_PAYMENT_FAILURE"] = "bank_payment_failure";
|
|
1379
|
+
ManualTransactionCategory["NON_FRAUD_CHARGEBACK"] = "non_fraud_chargeback";
|
|
1352
1380
|
})(ManualTransactionCategory = exports.ManualTransactionCategory || (exports.ManualTransactionCategory = {}));
|
|
1353
1381
|
var MarketingGatewayAccountConnectionStatus;
|
|
1354
1382
|
(function (MarketingGatewayAccountConnectionStatus) {
|
|
@@ -1829,6 +1857,7 @@ var ReportType;
|
|
|
1829
1857
|
ReportType["PAYMENTS"] = "payments";
|
|
1830
1858
|
ReportType["RECONCILE_NOT_RECORDED"] = "reconcile_not_recorded";
|
|
1831
1859
|
ReportType["PRODUCTS_RECORD"] = "products_record";
|
|
1860
|
+
ReportType["DISPUTES"] = "disputes";
|
|
1832
1861
|
})(ReportType = exports.ReportType || (exports.ReportType = {}));
|
|
1833
1862
|
var ReportingFulfillmentIsVirtual;
|
|
1834
1863
|
(function (ReportingFulfillmentIsVirtual) {
|
|
@@ -1892,12 +1921,11 @@ var RiskEvaluation;
|
|
|
1892
1921
|
RiskEvaluation["RESTRICTED"] = "Restricted-Party";
|
|
1893
1922
|
RiskEvaluation["NONE"] = "none";
|
|
1894
1923
|
})(RiskEvaluation = exports.RiskEvaluation || (exports.RiskEvaluation = {}));
|
|
1895
|
-
var
|
|
1896
|
-
(function (
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
})(SerialReservationError = exports.SerialReservationError || (exports.SerialReservationError = {}));
|
|
1924
|
+
var SanjayItemType;
|
|
1925
|
+
(function (SanjayItemType) {
|
|
1926
|
+
SanjayItemType["DIGITAL"] = "digital";
|
|
1927
|
+
SanjayItemType["PHYSICAL"] = "physical";
|
|
1928
|
+
})(SanjayItemType = exports.SanjayItemType || (exports.SanjayItemType = {}));
|
|
1901
1929
|
var ServiceName;
|
|
1902
1930
|
(function (ServiceName) {
|
|
1903
1931
|
ServiceName["CATALOG"] = "catalog";
|
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.83",
|
|
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": "d694e06d6eb130c73b2f6aa755ed56447f50a324"
|
|
28
28
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -195,10 +195,12 @@ export enum BillingMetricKey {
|
|
|
195
195
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS = 'negative_balance_number_accounts',
|
|
196
196
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITH_ORDER_IN_PAST_30_DAYS = 'negative_balance_number_accounts_with_order_in_past_30_days',
|
|
197
197
|
NEGATIVE_BALANCE_NUMBER_ACCOUNTS_WITHOUT_ORDER_IN_PAST_30_DAYS = 'negative_balance_number_accounts_without_order_in_past_30_days',
|
|
198
|
+
NEGATIVE_BALANCE_NUMBER_OFFBOARDED_ACCOUNTS = 'negative_balance_number_offboarded_accounts',
|
|
198
199
|
NEGATIVE_BALANCE_NUMBER_ACTIVE_ACCOUNTS_WITH_BALANCE_OVER_1000 = 'negative_balance_number_active_accounts_with_balance_over_1000',
|
|
199
200
|
NEGATIVE_BALANCE_TOTAL = 'negative_balance_total',
|
|
200
201
|
NEGATIVE_BALANCE_TOTAL_WITH_ORDER_IN_PAST_30_DAYS = 'negative_balance_total_with_order_in_past_30_days',
|
|
201
202
|
NEGATIVE_BALANCE_TOTAL_WITHOUT_ORDER_IN_PAST_30_DAYS = 'negative_balance_total_without_order_in_past_30_days',
|
|
203
|
+
NEGATIVE_BALANCE_TOTAL_OFFBOARDED_ACCOUNTS = 'negative_balance_total_offboarded_accounts',
|
|
202
204
|
NEGATIVE_BALANCE_SINGLE_ACCOUNT_MAX = 'negative_balance_single_account_max',
|
|
203
205
|
NEGATIVE_BALANCE_SINGLE_ACTIVE_ACCOUNT_MAX = 'negative_balance_single_active_account_max',
|
|
204
206
|
NEGATIVE_BALANCE_FEE_TOTAL = 'negative_balance_fee_total',
|
|
@@ -217,6 +219,31 @@ export enum BillingMetricKey {
|
|
|
217
219
|
NEGATIVE_BALANCE_FAILED_COUNT = 'negative_balance_failed_count',
|
|
218
220
|
NEGATIVE_BALANCE_FAILED_TOTAL = 'negative_balance_failed_total',
|
|
219
221
|
NEGATIVE_DEBIT_SUCCESS_RATE = 'negative_debit_success_rate',
|
|
222
|
+
CURRENT_ATTEMPT_MERCHANT_COUNT = 'current_attempt_merchant_count',
|
|
223
|
+
CURRENT_ATTEMPT_AMOUNT_TOTAL = 'current_attempt_amount_total',
|
|
224
|
+
CURRENT_ATTEMPT_FAILED_MERCHANT_COUNT = 'current_attempt_failed_merchant_count',
|
|
225
|
+
CURRENT_ATTEMPT_FAILED_AMOUNT_TOTAL = 'current_attempt_failed_amount_total',
|
|
226
|
+
CURRENT_ATTEMPT_SUCCESS_RATIO = 'current_attempt_success_ratio',
|
|
227
|
+
FIRST_ATTEMPT_MERCHANT_COUNT = 'first_attempt_merchant_count',
|
|
228
|
+
FIRST_ATTEMPT_AMOUNT_TOTAL = 'first_attempt_amount_total',
|
|
229
|
+
FIRST_ATTEMPT_FAILED_MERCHANT_COUNT = 'first_attempt_failed_merchant_count',
|
|
230
|
+
FIRST_ATTEMPT_FAILED_AMOUNT_TOTAL = 'first_attempt_failed_amount_total',
|
|
231
|
+
FIRST_ATTEMPT_SUCCESS_RATIO = 'first_attempt_success_ratio',
|
|
232
|
+
SECOND_ATTEMPT_MERCHANT_COUNT = 'second_attempt_merchant_count',
|
|
233
|
+
SECOND_ATTEMPT_AMOUNT_TOTAL = 'second_attempt_amount_total',
|
|
234
|
+
SECOND_ATTEMPT_FAILED_MERCHANT_COUNT = 'second_attempt_failed_merchant_count',
|
|
235
|
+
SECOND_ATTEMPT_FAILED_AMOUNT_TOTAL = 'second_attempt_failed_amount_total',
|
|
236
|
+
SECOND_ATTEMPT_SUCCESS_RATIO = 'second_attempt_success_ratio',
|
|
237
|
+
THIRD_ATTEMPT_MERCHANT_COUNT = 'third_attempt_merchant_count',
|
|
238
|
+
THIRD_ATTEMPT_AMOUNT_TOTAL = 'third_attempt_amount_total',
|
|
239
|
+
THIRD_ATTEMPT_FAILED_MERCHANT_COUNT = 'third_attempt_failed_merchant_count',
|
|
240
|
+
THIRD_ATTEMPT_FAILED_AMOUNT_TOTAL = 'third_attempt_failed_amount_total',
|
|
241
|
+
THIRD_ATTEMPT_SUCCESS_RATIO = 'third_attempt_success_ratio',
|
|
242
|
+
FOURTH_PLUS_ATTEMPT_MERCHANT_COUNT = 'fourth_plus_attempt_merchant_count',
|
|
243
|
+
FOURTH_PLUS_ATTEMPT_AMOUNT_TOTAL = 'fourth_plus_attempt_amount_total',
|
|
244
|
+
FOURTH_PLUS_ATTEMPT_FAILED_MERCHANT_COUNT = 'fourth_plus_attempt_failed_merchant_count',
|
|
245
|
+
FOURTH_PLUS_ATTEMPT_FAILED_AMOUNT_TOTAL = 'fourth_plus_attempt_failed_amount_total',
|
|
246
|
+
FOURTH_PLUS_ATTEMPT_SUCCESS_RATIO = 'fourth_plus_attempt_success_ratio',
|
|
220
247
|
}
|
|
221
248
|
|
|
222
249
|
export enum BillingStatementAttachmentKey {
|
|
@@ -268,6 +295,7 @@ export enum BillingTransactionType {
|
|
|
268
295
|
TRUEUP = 'trueup',
|
|
269
296
|
CARRIER_CHARGE = 'carrier_charge',
|
|
270
297
|
TAX_REFUND = 'tax_refund',
|
|
298
|
+
DUTY_REFUND = 'duty_refund',
|
|
271
299
|
}
|
|
272
300
|
|
|
273
301
|
export enum BrowserBundleErrorCode {
|
|
@@ -958,6 +986,8 @@ export enum EventType {
|
|
|
958
986
|
PARTNER_ORGANIZATION_SETTINGS_DELETED = 'partner_organization_settings_deleted',
|
|
959
987
|
UNASSIGNED_MERCHANT_GUID_UPSERTED = 'unassigned_merchant_guid_upserted',
|
|
960
988
|
UNASSIGNED_MERCHANT_GUID_DELETED = 'unassigned_merchant_guid_deleted',
|
|
989
|
+
PARTNER_TRACKING_SUBSCRIPTION_UPSERTED = 'partner_tracking_subscription_upserted',
|
|
990
|
+
PARTNER_TRACKING_SUBSCRIPTION_DELETED = 'partner_tracking_subscription_deleted',
|
|
961
991
|
INTERNAL_AUTHORIZATION_UPSERTED = 'internal_authorization_upserted',
|
|
962
992
|
INTERNAL_AUTHORIZATION_DELETED = 'internal_authorization_deleted',
|
|
963
993
|
AFTERPAY_AUTHORIZATION_UPSERTED = 'afterpay_authorization_upserted',
|
|
@@ -984,6 +1014,8 @@ export enum EventType {
|
|
|
984
1014
|
PAYPAL_EXECUTION_UPSERTED = 'paypal_execution_upserted',
|
|
985
1015
|
PAYPAL_REFUND_DELETED = 'paypal_refund_deleted',
|
|
986
1016
|
PAYPAL_REFUND_UPSERTED = 'paypal_refund_upserted',
|
|
1017
|
+
PAYPAL_DISPUTE_UPSERTED = 'paypal_dispute_upserted',
|
|
1018
|
+
PAYPAL_DISPUTE_DELETED = 'paypal_dispute_deleted',
|
|
987
1019
|
PRICING_INDICATOR = 'pricing_indicator',
|
|
988
1020
|
PRODUCT_RESTRICTION_RULE_DECISION_UPSERTED = 'product_restriction_rule_decision_upserted',
|
|
989
1021
|
PRODUCT_RESTRICTION_RULE_DECISION_DELETED = 'product_restriction_rule_decision_deleted',
|
|
@@ -1063,6 +1095,8 @@ export enum EventType {
|
|
|
1063
1095
|
MICHAELYAN_ITEM_DELETED = 'michaelyan_item_deleted',
|
|
1064
1096
|
MILJENKO_ITEM_UPSERTED = 'miljenko_item_upserted',
|
|
1065
1097
|
MILJENKO_ITEM_DELETED = 'miljenko_item_deleted',
|
|
1098
|
+
SANJAY_ITEM_UPSERTED = 'sanjay_item_upserted',
|
|
1099
|
+
SANJAY_ITEM_DELETED = 'sanjay_item_deleted',
|
|
1066
1100
|
SHRUTI_DEMO_ITEM_UPSERTED = 'shruti_demo_item_upserted',
|
|
1067
1101
|
SHRUTI_DEMO_ITEM_DELETED = 'shruti_demo_item_deleted',
|
|
1068
1102
|
TAM_ITEM_UPSERTED = 'tam_item_upserted',
|
|
@@ -1081,6 +1115,8 @@ export enum EventType {
|
|
|
1081
1115
|
TRACKING_ASSURANCE_ANALYSIS_DELETED = 'tracking_assurance_analysis_deleted',
|
|
1082
1116
|
TRACKING_ASSURANCE_JOB_UPSERTED = 'tracking_assurance_job_upserted',
|
|
1083
1117
|
TRACKING_ASSURANCE_JOB_DELETED = 'tracking_assurance_job_deleted',
|
|
1118
|
+
TRACKING_SUBSCRIPTION_UPSERTED = 'tracking_subscription_upserted',
|
|
1119
|
+
TRACKING_SUBSCRIPTION_DELETED = 'tracking_subscription_deleted',
|
|
1084
1120
|
TRACKING_LABEL_DIMENSIONS_UPSERTED = 'tracking_label_dimensions_upserted',
|
|
1085
1121
|
TRACKING_LABEL_DIMENSIONS_DELETED = 'tracking_label_dimensions_deleted',
|
|
1086
1122
|
TRACKING_REQUEST_UPSERTED = 'tracking_request_upserted',
|
|
@@ -1210,15 +1246,6 @@ export enum HttpMethod {
|
|
|
1210
1246
|
POST = 'post',
|
|
1211
1247
|
}
|
|
1212
1248
|
|
|
1213
|
-
export enum InventoryCheckService {
|
|
1214
|
-
SFCC = 'sfcc',
|
|
1215
|
-
GYMBOREE = 'gymboree',
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
export enum InventoryReservation {
|
|
1219
|
-
SYNCHRONOUS_ON_SUBMIT = 'synchronous-on-submit',
|
|
1220
|
-
}
|
|
1221
|
-
|
|
1222
1249
|
export enum ItemClassificationAction {
|
|
1223
1250
|
ACCEPT = 'ACCEPT',
|
|
1224
1251
|
MANUAL = 'MANUAL',
|
|
@@ -1341,6 +1368,7 @@ export enum ManualTransactionCategory {
|
|
|
1341
1368
|
CARRIER_CREDIT = 'carrier_credit',
|
|
1342
1369
|
NEGATIVE_BALANCE_GUARANTEE = 'negative_balance_guarantee',
|
|
1343
1370
|
BANK_PAYMENT_FAILURE = 'bank_payment_failure',
|
|
1371
|
+
NON_FRAUD_CHARGEBACK = 'non_fraud_chargeback',
|
|
1344
1372
|
}
|
|
1345
1373
|
|
|
1346
1374
|
export enum MarketingGatewayAccountConnectionStatus {
|
|
@@ -1821,6 +1849,7 @@ export enum ReportType {
|
|
|
1821
1849
|
PAYMENTS = 'payments',
|
|
1822
1850
|
RECONCILE_NOT_RECORDED = 'reconcile_not_recorded',
|
|
1823
1851
|
PRODUCTS_RECORD = 'products_record',
|
|
1852
|
+
DISPUTES = 'disputes',
|
|
1824
1853
|
}
|
|
1825
1854
|
|
|
1826
1855
|
export enum ReportingFulfillmentIsVirtual {
|
|
@@ -1885,10 +1914,9 @@ export enum RiskEvaluation {
|
|
|
1885
1914
|
NONE = 'none',
|
|
1886
1915
|
}
|
|
1887
1916
|
|
|
1888
|
-
export enum
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
RESERVATION_EXPIRED = 'reservation_expired',
|
|
1917
|
+
export enum SanjayItemType {
|
|
1918
|
+
DIGITAL = 'digital',
|
|
1919
|
+
PHYSICAL = 'physical',
|
|
1892
1920
|
}
|
|
1893
1921
|
|
|
1894
1922
|
export enum ServiceName {
|