@buynomics-lib/bn-shared 1.18.30-feature-sim-939.0 → 1.18.30
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/build/enums/client/client-feature-flags.d.ts +10 -0
- package/build/enums/client/client-feature-flags.js +15 -0
- package/build/enums/client/client-feature-flags.js.map +1 -0
- package/build/enums/discovery/ppa-mode.d.ts +1 -2
- package/build/enums/discovery/ppa-mode.js +0 -1
- package/build/enums/discovery/ppa-mode.js.map +1 -1
- package/build/index.d.ts +3 -1
- package/build/index.js +5 -3
- package/build/index.js.map +1 -1
- package/build/interfaces/client-feature-flags.d.ts +4 -0
- package/build/interfaces/client-feature-flags.js +3 -0
- package/build/interfaces/client-feature-flags.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare enum FeatureFlag {
|
|
2
|
+
WidgetPresets = "widgetPresets",
|
|
3
|
+
CustomCharts = "customCharts",
|
|
4
|
+
CustomAggregations = "customAggregations",
|
|
5
|
+
ActionDiscoveryEnabled = "actionDiscoveryEnabled",
|
|
6
|
+
NomiEnabled = "nomiEnabled",
|
|
7
|
+
PriceAvailabilityActionEnabled = "priceAvailabilityActionEnabled",
|
|
8
|
+
StrategyModule = "strategyModule",
|
|
9
|
+
ToolPlugins = "toolPlugins"
|
|
10
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FeatureFlag = void 0;
|
|
4
|
+
var FeatureFlag;
|
|
5
|
+
(function (FeatureFlag) {
|
|
6
|
+
FeatureFlag["WidgetPresets"] = "widgetPresets";
|
|
7
|
+
FeatureFlag["CustomCharts"] = "customCharts";
|
|
8
|
+
FeatureFlag["CustomAggregations"] = "customAggregations";
|
|
9
|
+
FeatureFlag["ActionDiscoveryEnabled"] = "actionDiscoveryEnabled";
|
|
10
|
+
FeatureFlag["NomiEnabled"] = "nomiEnabled";
|
|
11
|
+
FeatureFlag["PriceAvailabilityActionEnabled"] = "priceAvailabilityActionEnabled";
|
|
12
|
+
FeatureFlag["StrategyModule"] = "strategyModule";
|
|
13
|
+
FeatureFlag["ToolPlugins"] = "toolPlugins";
|
|
14
|
+
})(FeatureFlag = exports.FeatureFlag || (exports.FeatureFlag = {}));
|
|
15
|
+
//# sourceMappingURL=client-feature-flags.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-feature-flags.js","sourceRoot":"","sources":["../../../src/enums/client/client-feature-flags.ts"],"names":[],"mappings":";;;AAAA,IAAY,WASX;AATD,WAAY,WAAW;IACrB,8CAA+B,CAAA;IAC/B,4CAA6B,CAAA;IAC7B,wDAAyC,CAAA;IACzC,gEAAiD,CAAA;IACjD,0CAA2B,CAAA;IAC3B,gFAAiE,CAAA;IACjE,gDAAiC,CAAA;IACjC,0CAA2B,CAAA;AAC7B,CAAC,EATW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAStB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ppa-mode.js","sourceRoot":"","sources":["../../../src/enums/discovery/ppa-mode.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"ppa-mode.js","sourceRoot":"","sources":["../../../src/enums/discovery/ppa-mode.ts"],"names":[],"mappings":";;;AAAA,IAAY,OAEX;AAFD,WAAY,OAAO;IACjB,8BAAmB,CAAA;AACrB,CAAC,EAFW,OAAO,GAAP,eAAO,KAAP,eAAO,QAElB"}
|
package/build/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ import { ClientDecimalSettings, DefaultClientDecimalSettings } from './enums/cli
|
|
|
23
23
|
import { Dimension, DimensionValue } from './enums/client/client-dimensions';
|
|
24
24
|
import { ClientDuplicationParts } from './enums/client/client-duplication-parts';
|
|
25
25
|
import { ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesSettings } from './enums/client/client-features';
|
|
26
|
+
import { FeatureFlag } from './enums/client/client-feature-flags';
|
|
26
27
|
import { ClientIndustry } from './enums/client/client-industry';
|
|
27
28
|
import { ClientNumberFormattingSettings, ClientNumberFormattingSettingsCurrency, ClientNumberFormattingSettingsGlobalFormat, ClientNumberFormattingSettingsMetric, ClientNumberFormattingSettingsNotation, ClientNumberFormattingSettingsStyle, NumberFormat, NumberFormatSettings } from './enums/client/client-number-formatting-settings';
|
|
28
29
|
import { ClientProductPortfolioVersion } from './enums/client/client-product-portfolio-version';
|
|
@@ -72,6 +73,7 @@ import { getAggregationGroupMembershipMode } from './helpers/get-aggregation-gro
|
|
|
72
73
|
import { AggregationRule, IAggregationGroup, IAggregationGroupDecimalSettings, IAggregationGroupNumericConfig, ICategoricalAggregationRule, ICategoricalAttributeAggregationRule, INumericBetweenAggregationRule, INumericGreaterThanOrEqualAggregationRule, INumericLessThanAggregationRule, INumericRangeAggregationRule, NumericAggregationRule } from './interfaces/aggregation-group/aggregation-group.interface';
|
|
73
74
|
import { IActionDiscoveryAvailabilityChange, IActionDiscoveryAvailabilityLever, IActionDiscoveryAvailabilityVariant, IActionDiscoveryGroupChanges, IActionDiscoveryMatrixEntry, IActionDiscoveryPpaChange, IActionDiscoveryPriceChange, IActionDiscoveryPriceLever, IActionDiscoveryPriceVariant } from './interfaces/discovery/action-discovery';
|
|
74
75
|
import { IGroupMetadata, IGroupMetadataAppliedChanges, IGroupMetadataAppliedPpaChange } from './interfaces/discovery/group-metadata';
|
|
76
|
+
import { FeatureFlags } from './interfaces/client-feature-flags';
|
|
75
77
|
import { IClientViewSettings } from './interfaces/client-view-settings';
|
|
76
78
|
import { IFileUpload } from './interfaces/file-upload';
|
|
77
79
|
import { IPluginCatalogEntry } from './interfaces/plugin/plugin-catalog.interface';
|
|
@@ -96,4 +98,4 @@ import { IScenarioKpisGroupBy, IGetScenarioKpisFiltersParams } from './interface
|
|
|
96
98
|
import { RuleType, RuleEnforcement, RuleConditionBoundaryType, RuleConditionValueFormat, RuleEvaluationErrorCode } from './enums/strategy-rules';
|
|
97
99
|
import { IStrategyRule, IStrategyRuleInput, IStrategyRuleScope, IStrategyRuleScopeFilters, IStrategyRuleEnforcement, IRuleConditionBoundary, IRuleConditionBoundaryWithType, IKpiConstraintCondition, IPriceConstraintCondition, IMinimumPriceChangeCondition, StrategyRuleCondition, ICreateStrategyRulesResponse, IRuleAchievedValue, IRuleAchievedRange, RuleAchieved, IScenarioRuleResult, IScenarioRuleResults } from './interfaces/strategy-rules';
|
|
98
100
|
import { SystemSpecificKpis, SystemSpecificKpisReferenceIds } from './enums/kpis/system-specific-kpis';
|
|
99
|
-
export { AggregationGroupMembershipMode, AggregationGroupType, NumericAggregationRuleOperator, BnPermissions, ConfigurableProductFields, SortableProductFields, PriceLevelTypes, StaticLevelReferenceIds, DeeperionVersions, DeeperionAppSwitchValues, DeeperionRequestTypes, DeeperionModelTypes, CustomCostFormulaParams, ClientTerms, DefaultClientTermLabels, ClientCLVPeriods, ClientCLVPriceTypes, DefaultClientCLVPriceTypeLabels, ClientDecimalSettings, DefaultClientDecimalSettings, ClientTypes, IntermediaryGroupTypes, IntermediaryGroupRangeFormats, FittingStatuses, CentralSteeringVersion, DiscoveryType, Dimension, DimensionValue, BuynomicsAppVersion, ClientDuplicationParts, ClientNumberFormattingSettingsGlobalFormat, ClientNumberFormattingSettingsStyle, ClientNumberFormattingSettingsNotation, ClientNumberFormattingSettingsMetric, ClientNumberFormattingSettingsCurrency, ClientNumberFormattingSettings, NumberFormat, NumberFormatSettings, ClientProductPortfolioVersion, PriceChangeTypes, ChangePriceBases, ChangeProductPriceBases, ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesSettings, ChangeCostBases, CostChangeTypes, AvailabilityChangeTypes, ClientStatus, ClientIndustry, ValueDriverType, KpiConstraintType, KpiConstraintMode, MechanicParamTypes, MechanicParamReferenceIds, MechanicTypeRelations, PluginType, ProductType, ProductNamingDelimiter, PromotionOfferStatus, PromotionOffersCalendarGroupByOptions, OptimizationStatus, OptimizationKpis, OptimizationSolutionBucket, ScenarioStatus, DateGranularity, DateWeekStart, ClientDateSettings, DefaultClientDateSettings, WidgetType, WidgetPresetAvailability, WidgetChartCategory, WidgetChartSubtype, WidgetChartScenarioMode, WidgetChartAxisValueType, WidgetChartSeriesType, WidgetChartBarLayout, WidgetChartDisplayMode, WidgetChartRankingRule, WidgetChartSortDirection, WidgetTableRowDensity, WidgetTableGroupingFormat, WidgetTableGrandTotalPosition, WidgetTableSortDirection, ScenarioKpisGroupByOptions, TimeDimensionType, RuleType, RuleEnforcement, RuleConditionBoundaryType, RuleConditionValueFormat, RuleEvaluationErrorCode, AggregationRule, IAggregationGroup, IAggregationGroupDecimalSettings, IAggregationGroupNumericConfig, ICategoricalAggregationRule, ICategoricalAttributeAggregationRule, INumericBetweenAggregationRule, INumericGreaterThanOrEqualAggregationRule, INumericLessThanAggregationRule, INumericRangeAggregationRule, NumericAggregationRule, IWidgetChartConfig, IWidgetChartAxisConfig, IWidgetChartLimitationConfig, IWidgetChartLimitsConfig, IWidgetTableAppearanceConfig, IWidgetTablePresetGridSortItem, IWidgetTablePresetGridState, IWidgetTablePresetDataConfig, IWidgetTablePresetSettings, IWidgetTablePresetConfig, IWidgetPresetUsage, IScenarioKpisGroupBy, IGetScenarioKpisFiltersParams, IStrategyRule, IStrategyRuleInput, IStrategyRuleScope, IStrategyRuleScopeFilters, IStrategyRuleEnforcement, IRuleConditionBoundary, IRuleConditionBoundaryWithType, IKpiConstraintCondition, IPriceConstraintCondition, IMinimumPriceChangeCondition, StrategyRuleCondition, ICreateStrategyRulesResponse, IRuleAchievedValue, IRuleAchievedRange, RuleAchieved, IScenarioRuleResult, IScenarioRuleResults, ISimulationInputChangeEvents, IFitting, IFittingLog, IFileUpload, IPromotionPeriod, PluginConfigFieldType, IPluginConfigField, IPluginNavigation, IPluginManifest, PluginConfigValue, PluginVersionPin, IClientPluginMenuSetting, IClientPluginSetting, ClientPlugins, IPluginCatalogEntry, IPluginContextV1, IPluginModule, calculateRange, getAggregationGroupMembershipMode, getLatestDeeperionVersionValue, getCustomFormulaParamsLabel, formatNumberToIndianCompactInCrores, isCompactIndianFormatInDecimals, EnumHelper, getPropertyName, PriceDecisionNullificationHelper, getPromotionPeriods, ClientViewSettingsPages, IClientViewSettings, IGroupMetadata, IGroupMetadataAppliedChanges, IGroupMetadataAppliedPpaChange, IActionDiscoveryAvailabilityChange, IActionDiscoveryAvailabilityLever, IActionDiscoveryAvailabilityVariant, IActionDiscoveryGroupChanges, IActionDiscoveryMatrixEntry, IActionDiscoveryPpaChange, IActionDiscoveryPriceChange, IActionDiscoveryPriceLever, IActionDiscoveryPriceVariant, PpaMode, DefaultClientFeaturesSettings, DefaultClientFeatures, DefaultClientNumberFormattingSettings, WebsocketEvents, ScenarioEventSource, IWebSocketPromoBaselineStatusChangedPayload, KpiVariableFormat, KpiAggregation, KpiDisplayStyle, KpiConfigType, SystemVariableType, KpiSystemVariables, SystemKpis, SystemBaseKpisReferenceIds, SystemScopedKpis, SystemScopedKpisReferenceIds, SystemDerivedKpis, SystemDerivedKpisReferenceIds, SystemSpecificKpisReferenceIds, SystemSpecificKpis, SystemVariablesReferenceIds, ISystemKpiBase, ISystemKpi, ISystemScopedKpi, ISystemVariable, IKpiDisplaySettings, IScopedKpiScope, TimePeriod, MeasurementConverter, DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT, MAX_ACTIVE_OPTIMIZATIONS_LIMIT, SCENARIO_KPIS_GROUP_BY_MAX_LEVEL, FORMULA_PREFIX_FOR_MEASURING_UNITS, FORMULA_PREFIX_FOR_INPUT_VARIABLES, INPUT_VARIABLE_NAME_MAX_LENGTH, INPUT_VARIABLE_DESCRIPTION_MAX_LENGTH, INPUT_VARIABLE_REFERENCE_ID_MAX_LENGTH, INPUT_VARIABLE_CUSTOM_ACTION_NAME_MAX_LENGTH, INPUT_VARIABLE_REFERENCE_KPI_REFERENCE_ID_MAX_LENGTH, WIDGET_PRESET_NAME_MAX_LENGTH, WIDGET_PRESET_DESCRIPTION_MAX_LENGTH, };
|
|
101
|
+
export { AggregationGroupMembershipMode, AggregationGroupType, NumericAggregationRuleOperator, BnPermissions, ConfigurableProductFields, SortableProductFields, PriceLevelTypes, StaticLevelReferenceIds, DeeperionVersions, DeeperionAppSwitchValues, DeeperionRequestTypes, DeeperionModelTypes, CustomCostFormulaParams, ClientTerms, DefaultClientTermLabels, ClientCLVPeriods, ClientCLVPriceTypes, DefaultClientCLVPriceTypeLabels, ClientDecimalSettings, DefaultClientDecimalSettings, ClientTypes, IntermediaryGroupTypes, IntermediaryGroupRangeFormats, FittingStatuses, CentralSteeringVersion, DiscoveryType, Dimension, DimensionValue, BuynomicsAppVersion, ClientDuplicationParts, ClientNumberFormattingSettingsGlobalFormat, ClientNumberFormattingSettingsStyle, ClientNumberFormattingSettingsNotation, ClientNumberFormattingSettingsMetric, ClientNumberFormattingSettingsCurrency, ClientNumberFormattingSettings, NumberFormat, NumberFormatSettings, ClientProductPortfolioVersion, PriceChangeTypes, ChangePriceBases, ChangeProductPriceBases, ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesSettings, FeatureFlag, FeatureFlags, ChangeCostBases, CostChangeTypes, AvailabilityChangeTypes, ClientStatus, ClientIndustry, ValueDriverType, KpiConstraintType, KpiConstraintMode, MechanicParamTypes, MechanicParamReferenceIds, MechanicTypeRelations, PluginType, ProductType, ProductNamingDelimiter, PromotionOfferStatus, PromotionOffersCalendarGroupByOptions, OptimizationStatus, OptimizationKpis, OptimizationSolutionBucket, ScenarioStatus, DateGranularity, DateWeekStart, ClientDateSettings, DefaultClientDateSettings, WidgetType, WidgetPresetAvailability, WidgetChartCategory, WidgetChartSubtype, WidgetChartScenarioMode, WidgetChartAxisValueType, WidgetChartSeriesType, WidgetChartBarLayout, WidgetChartDisplayMode, WidgetChartRankingRule, WidgetChartSortDirection, WidgetTableRowDensity, WidgetTableGroupingFormat, WidgetTableGrandTotalPosition, WidgetTableSortDirection, ScenarioKpisGroupByOptions, TimeDimensionType, RuleType, RuleEnforcement, RuleConditionBoundaryType, RuleConditionValueFormat, RuleEvaluationErrorCode, AggregationRule, IAggregationGroup, IAggregationGroupDecimalSettings, IAggregationGroupNumericConfig, ICategoricalAggregationRule, ICategoricalAttributeAggregationRule, INumericBetweenAggregationRule, INumericGreaterThanOrEqualAggregationRule, INumericLessThanAggregationRule, INumericRangeAggregationRule, NumericAggregationRule, IWidgetChartConfig, IWidgetChartAxisConfig, IWidgetChartLimitationConfig, IWidgetChartLimitsConfig, IWidgetTableAppearanceConfig, IWidgetTablePresetGridSortItem, IWidgetTablePresetGridState, IWidgetTablePresetDataConfig, IWidgetTablePresetSettings, IWidgetTablePresetConfig, IWidgetPresetUsage, IScenarioKpisGroupBy, IGetScenarioKpisFiltersParams, IStrategyRule, IStrategyRuleInput, IStrategyRuleScope, IStrategyRuleScopeFilters, IStrategyRuleEnforcement, IRuleConditionBoundary, IRuleConditionBoundaryWithType, IKpiConstraintCondition, IPriceConstraintCondition, IMinimumPriceChangeCondition, StrategyRuleCondition, ICreateStrategyRulesResponse, IRuleAchievedValue, IRuleAchievedRange, RuleAchieved, IScenarioRuleResult, IScenarioRuleResults, ISimulationInputChangeEvents, IFitting, IFittingLog, IFileUpload, IPromotionPeriod, PluginConfigFieldType, IPluginConfigField, IPluginNavigation, IPluginManifest, PluginConfigValue, PluginVersionPin, IClientPluginMenuSetting, IClientPluginSetting, ClientPlugins, IPluginCatalogEntry, IPluginContextV1, IPluginModule, calculateRange, getAggregationGroupMembershipMode, getLatestDeeperionVersionValue, getCustomFormulaParamsLabel, formatNumberToIndianCompactInCrores, isCompactIndianFormatInDecimals, EnumHelper, getPropertyName, PriceDecisionNullificationHelper, getPromotionPeriods, ClientViewSettingsPages, IClientViewSettings, IGroupMetadata, IGroupMetadataAppliedChanges, IGroupMetadataAppliedPpaChange, IActionDiscoveryAvailabilityChange, IActionDiscoveryAvailabilityLever, IActionDiscoveryAvailabilityVariant, IActionDiscoveryGroupChanges, IActionDiscoveryMatrixEntry, IActionDiscoveryPpaChange, IActionDiscoveryPriceChange, IActionDiscoveryPriceLever, IActionDiscoveryPriceVariant, PpaMode, DefaultClientFeaturesSettings, DefaultClientFeatures, DefaultClientNumberFormattingSettings, WebsocketEvents, ScenarioEventSource, IWebSocketPromoBaselineStatusChangedPayload, KpiVariableFormat, KpiAggregation, KpiDisplayStyle, KpiConfigType, SystemVariableType, KpiSystemVariables, SystemKpis, SystemBaseKpisReferenceIds, SystemScopedKpis, SystemScopedKpisReferenceIds, SystemDerivedKpis, SystemDerivedKpisReferenceIds, SystemSpecificKpisReferenceIds, SystemSpecificKpis, SystemVariablesReferenceIds, ISystemKpiBase, ISystemKpi, ISystemScopedKpi, ISystemVariable, IKpiDisplaySettings, IScopedKpiScope, TimePeriod, MeasurementConverter, DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT, MAX_ACTIVE_OPTIMIZATIONS_LIMIT, SCENARIO_KPIS_GROUP_BY_MAX_LEVEL, FORMULA_PREFIX_FOR_MEASURING_UNITS, FORMULA_PREFIX_FOR_INPUT_VARIABLES, INPUT_VARIABLE_NAME_MAX_LENGTH, INPUT_VARIABLE_DESCRIPTION_MAX_LENGTH, INPUT_VARIABLE_REFERENCE_ID_MAX_LENGTH, INPUT_VARIABLE_CUSTOM_ACTION_NAME_MAX_LENGTH, INPUT_VARIABLE_REFERENCE_KPI_REFERENCE_ID_MAX_LENGTH, WIDGET_PRESET_NAME_MAX_LENGTH, WIDGET_PRESET_DESCRIPTION_MAX_LENGTH, };
|
package/build/index.js
CHANGED
|
@@ -3,9 +3,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.WIDGET_PRESET_DESCRIPTION_MAX_LENGTH = exports.WIDGET_PRESET_NAME_MAX_LENGTH = exports.INPUT_VARIABLE_REFERENCE_KPI_REFERENCE_ID_MAX_LENGTH = exports.INPUT_VARIABLE_CUSTOM_ACTION_NAME_MAX_LENGTH = exports.INPUT_VARIABLE_REFERENCE_ID_MAX_LENGTH = exports.INPUT_VARIABLE_DESCRIPTION_MAX_LENGTH = exports.INPUT_VARIABLE_NAME_MAX_LENGTH = exports.FORMULA_PREFIX_FOR_INPUT_VARIABLES = exports.FORMULA_PREFIX_FOR_MEASURING_UNITS = exports.SCENARIO_KPIS_GROUP_BY_MAX_LEVEL = exports.MAX_ACTIVE_OPTIMIZATIONS_LIMIT = exports.DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT = exports.MeasurementConverter = exports.SystemVariablesReferenceIds = exports.SystemSpecificKpis = exports.SystemSpecificKpisReferenceIds = exports.SystemDerivedKpisReferenceIds = exports.SystemDerivedKpis = exports.SystemScopedKpisReferenceIds = exports.SystemScopedKpis = exports.SystemBaseKpisReferenceIds = exports.SystemKpis = exports.KpiSystemVariables = exports.SystemVariableType = exports.KpiConfigType = exports.KpiDisplayStyle = exports.KpiAggregation = exports.KpiVariableFormat = exports.ScenarioEventSource = exports.WebsocketEvents = void 0;
|
|
6
|
+
exports.MechanicParamTypes = exports.KpiConstraintMode = exports.KpiConstraintType = exports.ValueDriverType = exports.ClientIndustry = exports.ClientStatus = exports.AvailabilityChangeTypes = exports.CostChangeTypes = exports.ChangeCostBases = exports.FeatureFlag = exports.ClientFeatureScope = exports.ClientFeatureState = exports.ClientFeature = exports.ChangeProductPriceBases = exports.ChangePriceBases = exports.PriceChangeTypes = exports.ClientProductPortfolioVersion = exports.ClientNumberFormattingSettingsCurrency = exports.ClientNumberFormattingSettingsMetric = exports.ClientNumberFormattingSettingsNotation = exports.ClientNumberFormattingSettingsStyle = exports.ClientNumberFormattingSettingsGlobalFormat = exports.ClientDuplicationParts = exports.BuynomicsAppVersion = exports.DiscoveryType = exports.CentralSteeringVersion = exports.FittingStatuses = exports.IntermediaryGroupRangeFormats = exports.IntermediaryGroupTypes = exports.ClientTypes = exports.DefaultClientDecimalSettings = exports.ClientDecimalSettings = exports.DefaultClientCLVPriceTypeLabels = exports.ClientCLVPriceTypes = exports.ClientCLVPeriods = exports.DefaultClientTermLabels = exports.ClientTerms = exports.CustomCostFormulaParams = exports.DeeperionModelTypes = exports.DeeperionRequestTypes = exports.DeeperionAppSwitchValues = exports.DeeperionVersions = exports.StaticLevelReferenceIds = exports.PriceLevelTypes = exports.SortableProductFields = exports.ConfigurableProductFields = exports.BnPermissions = exports.NumericAggregationRuleOperator = exports.AggregationGroupType = exports.AggregationGroupMembershipMode = void 0;
|
|
7
|
+
exports.DefaultClientFeatures = exports.DefaultClientFeaturesSettings = exports.PpaMode = exports.ClientViewSettingsPages = exports.getPromotionPeriods = exports.PriceDecisionNullificationHelper = exports.getPropertyName = exports.EnumHelper = exports.isCompactIndianFormatInDecimals = exports.formatNumberToIndianCompactInCrores = exports.getCustomFormulaParamsLabel = exports.getLatestDeeperionVersionValue = exports.getAggregationGroupMembershipMode = exports.calculateRange = exports.RuleEvaluationErrorCode = exports.RuleConditionValueFormat = exports.RuleConditionBoundaryType = exports.RuleEnforcement = exports.RuleType = exports.TimeDimensionType = exports.ScenarioKpisGroupByOptions = exports.WidgetTableSortDirection = exports.WidgetTableGrandTotalPosition = exports.WidgetTableGroupingFormat = exports.WidgetTableRowDensity = exports.WidgetChartSortDirection = exports.WidgetChartRankingRule = exports.WidgetChartDisplayMode = exports.WidgetChartBarLayout = exports.WidgetChartSeriesType = exports.WidgetChartAxisValueType = exports.WidgetChartScenarioMode = exports.WidgetChartSubtype = exports.WidgetChartCategory = exports.WidgetPresetAvailability = exports.WidgetType = exports.DefaultClientDateSettings = exports.DateWeekStart = exports.DateGranularity = exports.ScenarioStatus = exports.OptimizationSolutionBucket = exports.OptimizationKpis = exports.OptimizationStatus = exports.PromotionOffersCalendarGroupByOptions = exports.PromotionOfferStatus = exports.ProductNamingDelimiter = exports.ProductType = exports.PluginType = exports.MechanicTypeRelations = exports.MechanicParamReferenceIds = void 0;
|
|
8
|
+
exports.WIDGET_PRESET_DESCRIPTION_MAX_LENGTH = exports.WIDGET_PRESET_NAME_MAX_LENGTH = exports.INPUT_VARIABLE_REFERENCE_KPI_REFERENCE_ID_MAX_LENGTH = exports.INPUT_VARIABLE_CUSTOM_ACTION_NAME_MAX_LENGTH = exports.INPUT_VARIABLE_REFERENCE_ID_MAX_LENGTH = exports.INPUT_VARIABLE_DESCRIPTION_MAX_LENGTH = exports.INPUT_VARIABLE_NAME_MAX_LENGTH = exports.FORMULA_PREFIX_FOR_INPUT_VARIABLES = exports.FORMULA_PREFIX_FOR_MEASURING_UNITS = exports.SCENARIO_KPIS_GROUP_BY_MAX_LEVEL = exports.MAX_ACTIVE_OPTIMIZATIONS_LIMIT = exports.DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT = exports.MeasurementConverter = exports.SystemVariablesReferenceIds = exports.SystemSpecificKpis = exports.SystemSpecificKpisReferenceIds = exports.SystemDerivedKpisReferenceIds = exports.SystemDerivedKpis = exports.SystemScopedKpisReferenceIds = exports.SystemScopedKpis = exports.SystemBaseKpisReferenceIds = exports.SystemKpis = exports.KpiSystemVariables = exports.SystemVariableType = exports.KpiConfigType = exports.KpiDisplayStyle = exports.KpiAggregation = exports.KpiVariableFormat = exports.ScenarioEventSource = exports.WebsocketEvents = exports.DefaultClientNumberFormattingSettings = void 0;
|
|
9
9
|
var activeOptimizationsLimit_1 = require("./constants/activeOptimizationsLimit");
|
|
10
10
|
Object.defineProperty(exports, "DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT", { enumerable: true, get: function () { return activeOptimizationsLimit_1.DEFAULT_ACTIVE_OPTIMIZATIONS_LIMIT; } });
|
|
11
11
|
Object.defineProperty(exports, "MAX_ACTIVE_OPTIMIZATIONS_LIMIT", { enumerable: true, get: function () { return activeOptimizationsLimit_1.MAX_ACTIVE_OPTIMIZATIONS_LIMIT; } });
|
|
@@ -61,6 +61,8 @@ var client_features_1 = require("./enums/client/client-features");
|
|
|
61
61
|
Object.defineProperty(exports, "ClientFeature", { enumerable: true, get: function () { return client_features_1.ClientFeature; } });
|
|
62
62
|
Object.defineProperty(exports, "ClientFeatureState", { enumerable: true, get: function () { return client_features_1.ClientFeatureState; } });
|
|
63
63
|
Object.defineProperty(exports, "ClientFeatureScope", { enumerable: true, get: function () { return client_features_1.ClientFeatureScope; } });
|
|
64
|
+
var client_feature_flags_1 = require("./enums/client/client-feature-flags");
|
|
65
|
+
Object.defineProperty(exports, "FeatureFlag", { enumerable: true, get: function () { return client_feature_flags_1.FeatureFlag; } });
|
|
64
66
|
var client_industry_1 = require("./enums/client/client-industry");
|
|
65
67
|
Object.defineProperty(exports, "ClientIndustry", { enumerable: true, get: function () { return client_industry_1.ClientIndustry; } });
|
|
66
68
|
var client_number_formatting_settings_1 = require("./enums/client/client-number-formatting-settings");
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,iFAG6C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-feature-flags.js","sourceRoot":"","sources":["../../src/interfaces/client-feature-flags.ts"],"names":[],"mappings":""}
|