@flowio/api-internal-constants 4.18.81 → 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 +47 -15
- package/dist/api-internal.js +48 -18
- package/package.json +2 -2
- package/src/api-internal.ts +43 -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",
|
|
@@ -961,6 +993,8 @@ export declare enum EventType {
|
|
|
961
993
|
STRIPE_CAPTURE_UPSERTED = "stripe_capture_upserted",
|
|
962
994
|
STRIPE_REFUND_DELETED = "stripe_refund_deleted",
|
|
963
995
|
STRIPE_REFUND_UPSERTED = "stripe_refund_upserted",
|
|
996
|
+
STRIPE_DISPUTE_UPSERTED = "stripe_dispute_upserted",
|
|
997
|
+
STRIPE_DISPUTE_DELETED = "stripe_dispute_deleted",
|
|
964
998
|
LIABILITY_REMITTANCE_PLAN_UPSERTED = "liability_remittance_plan_upserted",
|
|
965
999
|
LIABILITY_REMITTANCE_PLAN_DELETED = "liability_remittance_plan_deleted",
|
|
966
1000
|
SVITLANA_ITEM_UPSERTED = "svitlana_item_upserted",
|
|
@@ -979,6 +1013,8 @@ export declare enum EventType {
|
|
|
979
1013
|
MICHAELYAN_ITEM_DELETED = "michaelyan_item_deleted",
|
|
980
1014
|
MILJENKO_ITEM_UPSERTED = "miljenko_item_upserted",
|
|
981
1015
|
MILJENKO_ITEM_DELETED = "miljenko_item_deleted",
|
|
1016
|
+
SANJAY_ITEM_UPSERTED = "sanjay_item_upserted",
|
|
1017
|
+
SANJAY_ITEM_DELETED = "sanjay_item_deleted",
|
|
982
1018
|
SHRUTI_DEMO_ITEM_UPSERTED = "shruti_demo_item_upserted",
|
|
983
1019
|
SHRUTI_DEMO_ITEM_DELETED = "shruti_demo_item_deleted",
|
|
984
1020
|
TAM_ITEM_UPSERTED = "tam_item_upserted",
|
|
@@ -997,6 +1033,8 @@ export declare enum EventType {
|
|
|
997
1033
|
TRACKING_ASSURANCE_ANALYSIS_DELETED = "tracking_assurance_analysis_deleted",
|
|
998
1034
|
TRACKING_ASSURANCE_JOB_UPSERTED = "tracking_assurance_job_upserted",
|
|
999
1035
|
TRACKING_ASSURANCE_JOB_DELETED = "tracking_assurance_job_deleted",
|
|
1036
|
+
TRACKING_SUBSCRIPTION_UPSERTED = "tracking_subscription_upserted",
|
|
1037
|
+
TRACKING_SUBSCRIPTION_DELETED = "tracking_subscription_deleted",
|
|
1000
1038
|
TRACKING_LABEL_DIMENSIONS_UPSERTED = "tracking_label_dimensions_upserted",
|
|
1001
1039
|
TRACKING_LABEL_DIMENSIONS_DELETED = "tracking_label_dimensions_deleted",
|
|
1002
1040
|
TRACKING_REQUEST_UPSERTED = "tracking_request_upserted",
|
|
@@ -1104,13 +1142,6 @@ export declare enum HttpMethod {
|
|
|
1104
1142
|
GET = "get",
|
|
1105
1143
|
POST = "post"
|
|
1106
1144
|
}
|
|
1107
|
-
export declare enum InventoryCheckService {
|
|
1108
|
-
SFCC = "sfcc",
|
|
1109
|
-
GYMBOREE = "gymboree"
|
|
1110
|
-
}
|
|
1111
|
-
export declare enum InventoryReservation {
|
|
1112
|
-
SYNCHRONOUS_ON_SUBMIT = "synchronous-on-submit"
|
|
1113
|
-
}
|
|
1114
1145
|
export declare enum ItemClassificationAction {
|
|
1115
1146
|
ACCEPT = "ACCEPT",
|
|
1116
1147
|
MANUAL = "MANUAL",
|
|
@@ -1214,7 +1245,8 @@ export declare enum ManualTransactionCategory {
|
|
|
1214
1245
|
TAX_CREDIT = "tax_credit",
|
|
1215
1246
|
CARRIER_CREDIT = "carrier_credit",
|
|
1216
1247
|
NEGATIVE_BALANCE_GUARANTEE = "negative_balance_guarantee",
|
|
1217
|
-
BANK_PAYMENT_FAILURE = "bank_payment_failure"
|
|
1248
|
+
BANK_PAYMENT_FAILURE = "bank_payment_failure",
|
|
1249
|
+
NON_FRAUD_CHARGEBACK = "non_fraud_chargeback"
|
|
1218
1250
|
}
|
|
1219
1251
|
export declare enum MarketingGatewayAccountConnectionStatus {
|
|
1220
1252
|
NOT_CONNECTED = "not_connected",
|
|
@@ -1626,7 +1658,8 @@ export declare enum ReportType {
|
|
|
1626
1658
|
INVARIANTS = "invariants",
|
|
1627
1659
|
PAYMENTS = "payments",
|
|
1628
1660
|
RECONCILE_NOT_RECORDED = "reconcile_not_recorded",
|
|
1629
|
-
PRODUCTS_RECORD = "products_record"
|
|
1661
|
+
PRODUCTS_RECORD = "products_record",
|
|
1662
|
+
DISPUTES = "disputes"
|
|
1630
1663
|
}
|
|
1631
1664
|
export declare enum ReportingFulfillmentIsVirtual {
|
|
1632
1665
|
ALL = "all",
|
|
@@ -1680,10 +1713,9 @@ export declare enum RiskEvaluation {
|
|
|
1680
1713
|
RESTRICTED = "Restricted-Party",
|
|
1681
1714
|
NONE = "none"
|
|
1682
1715
|
}
|
|
1683
|
-
export declare enum
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
RESERVATION_EXPIRED = "reservation_expired"
|
|
1716
|
+
export declare enum SanjayItemType {
|
|
1717
|
+
DIGITAL = "digital",
|
|
1718
|
+
PHYSICAL = "physical"
|
|
1687
1719
|
}
|
|
1688
1720
|
export declare enum ServiceName {
|
|
1689
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";
|
|
@@ -1051,6 +1083,8 @@ var EventType;
|
|
|
1051
1083
|
EventType["STRIPE_CAPTURE_UPSERTED"] = "stripe_capture_upserted";
|
|
1052
1084
|
EventType["STRIPE_REFUND_DELETED"] = "stripe_refund_deleted";
|
|
1053
1085
|
EventType["STRIPE_REFUND_UPSERTED"] = "stripe_refund_upserted";
|
|
1086
|
+
EventType["STRIPE_DISPUTE_UPSERTED"] = "stripe_dispute_upserted";
|
|
1087
|
+
EventType["STRIPE_DISPUTE_DELETED"] = "stripe_dispute_deleted";
|
|
1054
1088
|
EventType["LIABILITY_REMITTANCE_PLAN_UPSERTED"] = "liability_remittance_plan_upserted";
|
|
1055
1089
|
EventType["LIABILITY_REMITTANCE_PLAN_DELETED"] = "liability_remittance_plan_deleted";
|
|
1056
1090
|
EventType["SVITLANA_ITEM_UPSERTED"] = "svitlana_item_upserted";
|
|
@@ -1069,6 +1103,8 @@ var EventType;
|
|
|
1069
1103
|
EventType["MICHAELYAN_ITEM_DELETED"] = "michaelyan_item_deleted";
|
|
1070
1104
|
EventType["MILJENKO_ITEM_UPSERTED"] = "miljenko_item_upserted";
|
|
1071
1105
|
EventType["MILJENKO_ITEM_DELETED"] = "miljenko_item_deleted";
|
|
1106
|
+
EventType["SANJAY_ITEM_UPSERTED"] = "sanjay_item_upserted";
|
|
1107
|
+
EventType["SANJAY_ITEM_DELETED"] = "sanjay_item_deleted";
|
|
1072
1108
|
EventType["SHRUTI_DEMO_ITEM_UPSERTED"] = "shruti_demo_item_upserted";
|
|
1073
1109
|
EventType["SHRUTI_DEMO_ITEM_DELETED"] = "shruti_demo_item_deleted";
|
|
1074
1110
|
EventType["TAM_ITEM_UPSERTED"] = "tam_item_upserted";
|
|
@@ -1087,6 +1123,8 @@ var EventType;
|
|
|
1087
1123
|
EventType["TRACKING_ASSURANCE_ANALYSIS_DELETED"] = "tracking_assurance_analysis_deleted";
|
|
1088
1124
|
EventType["TRACKING_ASSURANCE_JOB_UPSERTED"] = "tracking_assurance_job_upserted";
|
|
1089
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";
|
|
1090
1128
|
EventType["TRACKING_LABEL_DIMENSIONS_UPSERTED"] = "tracking_label_dimensions_upserted";
|
|
1091
1129
|
EventType["TRACKING_LABEL_DIMENSIONS_DELETED"] = "tracking_label_dimensions_deleted";
|
|
1092
1130
|
EventType["TRACKING_REQUEST_UPSERTED"] = "tracking_request_upserted";
|
|
@@ -1215,15 +1253,6 @@ var HttpMethod;
|
|
|
1215
1253
|
HttpMethod["GET"] = "get";
|
|
1216
1254
|
HttpMethod["POST"] = "post";
|
|
1217
1255
|
})(HttpMethod = exports.HttpMethod || (exports.HttpMethod = {}));
|
|
1218
|
-
var InventoryCheckService;
|
|
1219
|
-
(function (InventoryCheckService) {
|
|
1220
|
-
InventoryCheckService["SFCC"] = "sfcc";
|
|
1221
|
-
InventoryCheckService["GYMBOREE"] = "gymboree";
|
|
1222
|
-
})(InventoryCheckService = exports.InventoryCheckService || (exports.InventoryCheckService = {}));
|
|
1223
|
-
var InventoryReservation;
|
|
1224
|
-
(function (InventoryReservation) {
|
|
1225
|
-
InventoryReservation["SYNCHRONOUS_ON_SUBMIT"] = "synchronous-on-submit";
|
|
1226
|
-
})(InventoryReservation = exports.InventoryReservation || (exports.InventoryReservation = {}));
|
|
1227
1256
|
var ItemClassificationAction;
|
|
1228
1257
|
(function (ItemClassificationAction) {
|
|
1229
1258
|
ItemClassificationAction["ACCEPT"] = "ACCEPT";
|
|
@@ -1347,6 +1376,7 @@ var ManualTransactionCategory;
|
|
|
1347
1376
|
ManualTransactionCategory["CARRIER_CREDIT"] = "carrier_credit";
|
|
1348
1377
|
ManualTransactionCategory["NEGATIVE_BALANCE_GUARANTEE"] = "negative_balance_guarantee";
|
|
1349
1378
|
ManualTransactionCategory["BANK_PAYMENT_FAILURE"] = "bank_payment_failure";
|
|
1379
|
+
ManualTransactionCategory["NON_FRAUD_CHARGEBACK"] = "non_fraud_chargeback";
|
|
1350
1380
|
})(ManualTransactionCategory = exports.ManualTransactionCategory || (exports.ManualTransactionCategory = {}));
|
|
1351
1381
|
var MarketingGatewayAccountConnectionStatus;
|
|
1352
1382
|
(function (MarketingGatewayAccountConnectionStatus) {
|
|
@@ -1827,6 +1857,7 @@ var ReportType;
|
|
|
1827
1857
|
ReportType["PAYMENTS"] = "payments";
|
|
1828
1858
|
ReportType["RECONCILE_NOT_RECORDED"] = "reconcile_not_recorded";
|
|
1829
1859
|
ReportType["PRODUCTS_RECORD"] = "products_record";
|
|
1860
|
+
ReportType["DISPUTES"] = "disputes";
|
|
1830
1861
|
})(ReportType = exports.ReportType || (exports.ReportType = {}));
|
|
1831
1862
|
var ReportingFulfillmentIsVirtual;
|
|
1832
1863
|
(function (ReportingFulfillmentIsVirtual) {
|
|
@@ -1890,12 +1921,11 @@ var RiskEvaluation;
|
|
|
1890
1921
|
RiskEvaluation["RESTRICTED"] = "Restricted-Party";
|
|
1891
1922
|
RiskEvaluation["NONE"] = "none";
|
|
1892
1923
|
})(RiskEvaluation = exports.RiskEvaluation || (exports.RiskEvaluation = {}));
|
|
1893
|
-
var
|
|
1894
|
-
(function (
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
})(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 = {}));
|
|
1899
1929
|
var ServiceName;
|
|
1900
1930
|
(function (ServiceName) {
|
|
1901
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',
|
|
@@ -1043,6 +1075,8 @@ export enum EventType {
|
|
|
1043
1075
|
STRIPE_CAPTURE_UPSERTED = 'stripe_capture_upserted',
|
|
1044
1076
|
STRIPE_REFUND_DELETED = 'stripe_refund_deleted',
|
|
1045
1077
|
STRIPE_REFUND_UPSERTED = 'stripe_refund_upserted',
|
|
1078
|
+
STRIPE_DISPUTE_UPSERTED = 'stripe_dispute_upserted',
|
|
1079
|
+
STRIPE_DISPUTE_DELETED = 'stripe_dispute_deleted',
|
|
1046
1080
|
LIABILITY_REMITTANCE_PLAN_UPSERTED = 'liability_remittance_plan_upserted',
|
|
1047
1081
|
LIABILITY_REMITTANCE_PLAN_DELETED = 'liability_remittance_plan_deleted',
|
|
1048
1082
|
SVITLANA_ITEM_UPSERTED = 'svitlana_item_upserted',
|
|
@@ -1061,6 +1095,8 @@ export enum EventType {
|
|
|
1061
1095
|
MICHAELYAN_ITEM_DELETED = 'michaelyan_item_deleted',
|
|
1062
1096
|
MILJENKO_ITEM_UPSERTED = 'miljenko_item_upserted',
|
|
1063
1097
|
MILJENKO_ITEM_DELETED = 'miljenko_item_deleted',
|
|
1098
|
+
SANJAY_ITEM_UPSERTED = 'sanjay_item_upserted',
|
|
1099
|
+
SANJAY_ITEM_DELETED = 'sanjay_item_deleted',
|
|
1064
1100
|
SHRUTI_DEMO_ITEM_UPSERTED = 'shruti_demo_item_upserted',
|
|
1065
1101
|
SHRUTI_DEMO_ITEM_DELETED = 'shruti_demo_item_deleted',
|
|
1066
1102
|
TAM_ITEM_UPSERTED = 'tam_item_upserted',
|
|
@@ -1079,6 +1115,8 @@ export enum EventType {
|
|
|
1079
1115
|
TRACKING_ASSURANCE_ANALYSIS_DELETED = 'tracking_assurance_analysis_deleted',
|
|
1080
1116
|
TRACKING_ASSURANCE_JOB_UPSERTED = 'tracking_assurance_job_upserted',
|
|
1081
1117
|
TRACKING_ASSURANCE_JOB_DELETED = 'tracking_assurance_job_deleted',
|
|
1118
|
+
TRACKING_SUBSCRIPTION_UPSERTED = 'tracking_subscription_upserted',
|
|
1119
|
+
TRACKING_SUBSCRIPTION_DELETED = 'tracking_subscription_deleted',
|
|
1082
1120
|
TRACKING_LABEL_DIMENSIONS_UPSERTED = 'tracking_label_dimensions_upserted',
|
|
1083
1121
|
TRACKING_LABEL_DIMENSIONS_DELETED = 'tracking_label_dimensions_deleted',
|
|
1084
1122
|
TRACKING_REQUEST_UPSERTED = 'tracking_request_upserted',
|
|
@@ -1208,15 +1246,6 @@ export enum HttpMethod {
|
|
|
1208
1246
|
POST = 'post',
|
|
1209
1247
|
}
|
|
1210
1248
|
|
|
1211
|
-
export enum InventoryCheckService {
|
|
1212
|
-
SFCC = 'sfcc',
|
|
1213
|
-
GYMBOREE = 'gymboree',
|
|
1214
|
-
}
|
|
1215
|
-
|
|
1216
|
-
export enum InventoryReservation {
|
|
1217
|
-
SYNCHRONOUS_ON_SUBMIT = 'synchronous-on-submit',
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
1249
|
export enum ItemClassificationAction {
|
|
1221
1250
|
ACCEPT = 'ACCEPT',
|
|
1222
1251
|
MANUAL = 'MANUAL',
|
|
@@ -1339,6 +1368,7 @@ export enum ManualTransactionCategory {
|
|
|
1339
1368
|
CARRIER_CREDIT = 'carrier_credit',
|
|
1340
1369
|
NEGATIVE_BALANCE_GUARANTEE = 'negative_balance_guarantee',
|
|
1341
1370
|
BANK_PAYMENT_FAILURE = 'bank_payment_failure',
|
|
1371
|
+
NON_FRAUD_CHARGEBACK = 'non_fraud_chargeback',
|
|
1342
1372
|
}
|
|
1343
1373
|
|
|
1344
1374
|
export enum MarketingGatewayAccountConnectionStatus {
|
|
@@ -1819,6 +1849,7 @@ export enum ReportType {
|
|
|
1819
1849
|
PAYMENTS = 'payments',
|
|
1820
1850
|
RECONCILE_NOT_RECORDED = 'reconcile_not_recorded',
|
|
1821
1851
|
PRODUCTS_RECORD = 'products_record',
|
|
1852
|
+
DISPUTES = 'disputes',
|
|
1822
1853
|
}
|
|
1823
1854
|
|
|
1824
1855
|
export enum ReportingFulfillmentIsVirtual {
|
|
@@ -1883,10 +1914,9 @@ export enum RiskEvaluation {
|
|
|
1883
1914
|
NONE = 'none',
|
|
1884
1915
|
}
|
|
1885
1916
|
|
|
1886
|
-
export enum
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
RESERVATION_EXPIRED = 'reservation_expired',
|
|
1917
|
+
export enum SanjayItemType {
|
|
1918
|
+
DIGITAL = 'digital',
|
|
1919
|
+
PHYSICAL = 'physical',
|
|
1890
1920
|
}
|
|
1891
1921
|
|
|
1892
1922
|
export enum ServiceName {
|