@buynomics-lib/bn-shared 1.17.1-feature-nx64-1352.0 → 1.17.2-feature-nx64-1529.0

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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.17.1](https://gitlab.com/buynomics/libraries/bn-shared/compare/v1.16.20...v1.17.1) (2024-03-25)
6
+
5
7
  ### [1.16.20](https://gitlab.com/buynomics/libraries/bn-shared/compare/v1.16.18...v1.16.20) (2024-02-29)
6
8
 
7
9
  ### [1.16.18](https://gitlab.com/buynomics/libraries/bn-shared/compare/v1.16.17...v1.16.18) (2024-02-27)
@@ -4,7 +4,8 @@ export declare enum ClientFeature {
4
4
  ChangeProducts = "changeProducts",
5
5
  ChangeCosts = "changeCosts",
6
6
  ChangePromotions = "changePromotions",
7
- ChangeAvailability = "changeAvailability"
7
+ ChangeAvailability = "changeAvailability",
8
+ Optimization = "optimization"
8
9
  }
9
10
  export declare enum ClientFeatureState {
10
11
  Enabled = "enabled",
@@ -20,8 +21,18 @@ export declare enum ClientFeatureScope {
20
21
  SalesChannel = "salesChannel",
21
22
  TimeDimension = "timeDimension"
22
23
  }
23
- export type ClientFeaturesScopeLimits = {
24
+ type ClientFeaturesScopeLimits = {
24
25
  [feature in ClientFeature]?: {
25
26
  [scope in ClientFeatureScope]?: number;
26
27
  };
27
28
  };
29
+ type ClientFeaturesPriceLimits = {
30
+ [ClientFeature.Optimization]?: {
31
+ priceChange: {
32
+ min: number;
33
+ max: number;
34
+ };
35
+ };
36
+ };
37
+ export type ClientFeaturesSettings = ClientFeaturesPriceLimits & ClientFeaturesScopeLimits;
38
+ export {};
@@ -9,6 +9,7 @@ var ClientFeature;
9
9
  ClientFeature["ChangeCosts"] = "changeCosts";
10
10
  ClientFeature["ChangePromotions"] = "changePromotions";
11
11
  ClientFeature["ChangeAvailability"] = "changeAvailability";
12
+ ClientFeature["Optimization"] = "optimization";
12
13
  })(ClientFeature = exports.ClientFeature || (exports.ClientFeature = {}));
13
14
  var ClientFeatureState;
14
15
  (function (ClientFeatureState) {
@@ -1 +1 @@
1
- {"version":3,"file":"client-features.js","sourceRoot":"","sources":["../../../src/enums/client/client-features.ts"],"names":[],"mappings":";;;AAAA,IAAY,aAOX;AAPD,WAAY,aAAa;IACvB,4CAA2B,CAAA;IAC3B,8CAA6B,CAAA;IAC7B,kDAAiC,CAAA;IACjC,4CAA2B,CAAA;IAC3B,sDAAqC,CAAA;IACrC,0DAAyC,CAAA;AAC3C,CAAC,EAPW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAOxB;AAED,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC5B,yCAAmB,CAAA;IACnB,2CAAqB,CAAA;IACrB,uCAAiB,CAAA;AACnB,CAAC,EAJW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAI7B;AAMD,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC5B,yCAAmB,CAAA;IACnB,+CAAyB,CAAA;IACzB,mDAA6B,CAAA;IAC7B,qDAA+B,CAAA;AACjC,CAAC,EALW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAK7B"}
1
+ {"version":3,"file":"client-features.js","sourceRoot":"","sources":["../../../src/enums/client/client-features.ts"],"names":[],"mappings":";;;AAAA,IAAY,aAQX;AARD,WAAY,aAAa;IACvB,4CAA2B,CAAA;IAC3B,8CAA6B,CAAA;IAC7B,kDAAiC,CAAA;IACjC,4CAA2B,CAAA;IAC3B,sDAAqC,CAAA;IACrC,0DAAyC,CAAA;IACzC,8CAA6B,CAAA;AAC/B,CAAC,EARW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAQxB;AAED,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC5B,yCAAmB,CAAA;IACnB,2CAAqB,CAAA;IACrB,uCAAiB,CAAA;AACnB,CAAC,EAJW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAI7B;AAMD,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC5B,yCAAmB,CAAA;IACnB,+CAAyB,CAAA;IACzB,mDAA6B,CAAA;IAC7B,qDAA+B,CAAA;AACjC,CAAC,EALW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAK7B"}
@@ -0,0 +1,2 @@
1
+ import { OptimizationStatus } from './optimization-status';
2
+ export { OptimizationStatus };
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OptimizationStatus = void 0;
4
+ var optimization_status_1 = require("./optimization-status");
5
+ Object.defineProperty(exports, "OptimizationStatus", { enumerable: true, get: function () { return optimization_status_1.OptimizationStatus; } });
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/enums/optimization/index.ts"],"names":[],"mappings":";;;AAAA,6DAA0D;AAEjD,mGAFA,wCAAkB,OAEA"}
@@ -0,0 +1,8 @@
1
+ export declare enum OptimizationStatus {
2
+ Queued = "Queued",
3
+ Starting = "Starting",
4
+ Running = "Running",
5
+ Completed = "Completed",
6
+ Failed = "Failed",
7
+ Archived = "Archived"
8
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OptimizationStatus = void 0;
4
+ var OptimizationStatus;
5
+ (function (OptimizationStatus) {
6
+ OptimizationStatus["Queued"] = "Queued";
7
+ OptimizationStatus["Starting"] = "Starting";
8
+ OptimizationStatus["Running"] = "Running";
9
+ OptimizationStatus["Completed"] = "Completed";
10
+ OptimizationStatus["Failed"] = "Failed";
11
+ OptimizationStatus["Archived"] = "Archived";
12
+ })(OptimizationStatus = exports.OptimizationStatus || (exports.OptimizationStatus = {}));
13
+ //# sourceMappingURL=optimization-status.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"optimization-status.js","sourceRoot":"","sources":["../../../src/enums/optimization/optimization-status.ts"],"names":[],"mappings":";;;AAAA,IAAY,kBAOX;AAPD,WAAY,kBAAkB;IAC5B,uCAAiB,CAAA;IACjB,2CAAqB,CAAA;IACrB,yCAAmB,CAAA;IACnB,6CAAuB,CAAA;IACvB,uCAAiB,CAAA;IACjB,2CAAqB,CAAA;AACvB,CAAC,EAPW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAO7B"}
@@ -1,9 +1,2 @@
1
- export declare const DefaultClientFeaturesSettings: {
2
- changeProducts: {
3
- segment: number;
4
- };
5
- changePromotions: {
6
- salesChannel: number;
7
- timeDimension: number;
8
- };
9
- };
1
+ import { ClientFeaturesSettings } from '../enums/client/client-features';
2
+ export declare const DefaultClientFeaturesSettings: ClientFeaturesSettings;
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
- var _a, _b, _c;
2
+ var _a, _b, _c, _d;
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.DefaultClientFeaturesSettings = void 0;
5
5
  var client_features_1 = require("../enums/client/client-features");
@@ -9,5 +9,12 @@ exports.DefaultClientFeaturesSettings = (_a = {},
9
9
  _c[client_features_1.ClientFeatureScope.SalesChannel] = 1,
10
10
  _c[client_features_1.ClientFeatureScope.TimeDimension] = 52,
11
11
  _c),
12
+ _a[client_features_1.ClientFeature.Optimization] = (_d = {},
13
+ _d[client_features_1.ClientFeatureScope.Segment] = 1,
14
+ _d.priceChange = {
15
+ min: -30,
16
+ max: 30,
17
+ },
18
+ _d),
12
19
  _a);
13
20
  //# sourceMappingURL=default-client-feature-settings.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"default-client-feature-settings.js","sourceRoot":"","sources":["../../src/helpers/default-client-feature-settings.ts"],"names":[],"mappings":";;;;AAAA,mEAGwC;AAE3B,QAAA,6BAA6B;IACxC,GAAC,+BAAa,CAAC,cAAc,cAAK,GAAC,oCAAkB,CAAC,OAAO,IAAG,CAAC,KAAE;IACnE,GAAC,+BAAa,CAAC,gBAAgB;QAC7B,GAAC,oCAAkB,CAAC,YAAY,IAAG,CAAC;QACpC,GAAC,oCAAkB,CAAC,aAAa,IAAG,EAAE;WACvC;QACF"}
1
+ {"version":3,"file":"default-client-feature-settings.js","sourceRoot":"","sources":["../../src/helpers/default-client-feature-settings.ts"],"names":[],"mappings":";;;;AAAA,mEAIwC;AAE3B,QAAA,6BAA6B;IACxC,GAAC,+BAAa,CAAC,cAAc,cAAK,GAAC,oCAAkB,CAAC,OAAO,IAAG,CAAC,KAAE;IACnE,GAAC,+BAAa,CAAC,gBAAgB;QAC7B,GAAC,oCAAkB,CAAC,YAAY,IAAG,CAAC;QACpC,GAAC,oCAAkB,CAAC,aAAa,IAAG,EAAE;WACvC;IACD,GAAC,+BAAa,CAAC,YAAY;QACzB,GAAC,oCAAkB,CAAC,OAAO,IAAG,CAAC;QAC/B,cAAW,GAAE;YACX,GAAG,EAAE,CAAC,EAAE;YACR,GAAG,EAAE,EAAE;SACR;WACF;QACF"}
package/build/index.d.ts CHANGED
@@ -13,7 +13,7 @@ import { ClientCLVPriceTypes, DefaultClientCLVPriceTypeLabels } from './enums/cl
13
13
  import { ClientDecimalSettings, DefaultClientDecimalSettings } from './enums/client/client-decimal-settings';
14
14
  import { Dimension, DimensionValue } from './enums/client/client-dimensions';
15
15
  import { ClientDuplicationParts } from './enums/client/client-duplication-parts';
16
- import { ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesScopeLimits } from './enums/client/client-features';
16
+ import { ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesSettings } from './enums/client/client-features';
17
17
  import { ClientIndustry } from './enums/client/client-industry';
18
18
  import { ClientStatus } from './enums/client/client-status';
19
19
  import { ClientTerms, DefaultClientTermLabels } from './enums/client/client-terms';
@@ -22,6 +22,7 @@ import { ClientViewSettingsPages } from './enums/client/client-view-settings';
22
22
  import { ChangeCostBases } from './enums/cost-change/change-cost-bases';
23
23
  import { CostChangeTypes } from './enums/cost-change/cost-change-types';
24
24
  import { DeeperionVersions, DeeperionAppSwitchValues, DeeperionRequestTypes, DeeperionModelTypes } from './enums/deeperion';
25
+ import { OptimizationStatus } from './enums/optimization';
25
26
  import { BnPermissions } from './enums/permissions';
26
27
  import { ChangePriceBases } from './enums/price-change/change-price-bases';
27
28
  import { PriceChangeTypes } from './enums/price-change/price-change-types';
@@ -43,4 +44,4 @@ import PriceDecisionNullificationHelper from './helpers/price-decision/price-dec
43
44
  import { IClientViewSettings } from './interfaces/client-view-settings';
44
45
  import { IFileUpload } from './interfaces/file-upload';
45
46
  import { ISimulationInputChangeEvents } from './interfaces/simulation/simulation-input-change-events';
46
- export { BnPermissions, ConfigurableProductFields, SortableProductFields, PriceLevelTypes, DeeperionVersions, DeeperionAppSwitchValues, DeeperionRequestTypes, DeeperionModelTypes, CustomCostFormulaParams, ClientTerms, DefaultClientTermLabels, ClientCLVPeriods, ClientCLVPriceTypes, DefaultClientCLVPriceTypeLabels, ClientDecimalSettings, DefaultClientDecimalSettings, ClientTypes, IntermediaryGroupTypes, IntermediaryGroupRangeFormats, FittingStatuses, CentralSteeringVersion, Dimension, DimensionValue, BuynomicsAppVersion, ClientDuplicationParts, PriceChangeTypes, ChangePriceBases, ChangeProductPriceBases, ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesScopeLimits, ChangeCostBases, CostChangeTypes, AvailabilityChangeTypes, ClientStatus, ClientIndustry, ValueDriverType, ISimulationInputChangeEvents, IFitting, IFittingLog, IFileUpload, IPromotionPeriod, calculateRange, JSONFormulaToExpression, expressionToJSONFormula, getLatestDeeperionVersionValue, getCustomFormulaParamsLabel, EnumHelper, getPropertyName, PriceDecisionNullificationHelper, FormulaValidator, FormulaConverter, getPromotionPeriods, ClientViewSettingsPages, IClientViewSettings, DefaultClientFeaturesSettings, };
47
+ export { BnPermissions, ConfigurableProductFields, SortableProductFields, PriceLevelTypes, DeeperionVersions, DeeperionAppSwitchValues, DeeperionRequestTypes, DeeperionModelTypes, CustomCostFormulaParams, ClientTerms, DefaultClientTermLabels, ClientCLVPeriods, ClientCLVPriceTypes, DefaultClientCLVPriceTypeLabels, ClientDecimalSettings, DefaultClientDecimalSettings, ClientTypes, IntermediaryGroupTypes, IntermediaryGroupRangeFormats, FittingStatuses, CentralSteeringVersion, Dimension, DimensionValue, BuynomicsAppVersion, ClientDuplicationParts, PriceChangeTypes, ChangePriceBases, ChangeProductPriceBases, ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesSettings, ChangeCostBases, CostChangeTypes, AvailabilityChangeTypes, ClientStatus, ClientIndustry, ValueDriverType, OptimizationStatus, ISimulationInputChangeEvents, IFitting, IFittingLog, IFileUpload, IPromotionPeriod, calculateRange, JSONFormulaToExpression, expressionToJSONFormula, getLatestDeeperionVersionValue, getCustomFormulaParamsLabel, EnumHelper, getPropertyName, PriceDecisionNullificationHelper, FormulaValidator, FormulaConverter, getPromotionPeriods, ClientViewSettingsPages, IClientViewSettings, DefaultClientFeaturesSettings, };
package/build/index.js CHANGED
@@ -3,7 +3,7 @@ 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.DefaultClientFeaturesSettings = exports.ClientViewSettingsPages = exports.getPromotionPeriods = exports.FormulaConverter = exports.FormulaValidator = exports.PriceDecisionNullificationHelper = exports.getPropertyName = exports.EnumHelper = exports.getCustomFormulaParamsLabel = exports.getLatestDeeperionVersionValue = exports.expressionToJSONFormula = exports.JSONFormulaToExpression = exports.calculateRange = exports.ValueDriverType = exports.ClientIndustry = exports.ClientStatus = exports.AvailabilityChangeTypes = exports.CostChangeTypes = exports.ChangeCostBases = exports.ClientFeatureScope = exports.ClientFeatureState = exports.ClientFeature = exports.ChangeProductPriceBases = exports.ChangePriceBases = exports.PriceChangeTypes = exports.ClientDuplicationParts = exports.BuynomicsAppVersion = 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.PriceLevelTypes = exports.SortableProductFields = exports.ConfigurableProductFields = exports.BnPermissions = void 0;
6
+ exports.DefaultClientFeaturesSettings = exports.ClientViewSettingsPages = exports.getPromotionPeriods = exports.FormulaConverter = exports.FormulaValidator = exports.PriceDecisionNullificationHelper = exports.getPropertyName = exports.EnumHelper = exports.getCustomFormulaParamsLabel = exports.getLatestDeeperionVersionValue = exports.expressionToJSONFormula = exports.JSONFormulaToExpression = exports.calculateRange = exports.OptimizationStatus = exports.ValueDriverType = exports.ClientIndustry = exports.ClientStatus = exports.AvailabilityChangeTypes = exports.CostChangeTypes = exports.ChangeCostBases = exports.ClientFeatureScope = exports.ClientFeatureState = exports.ClientFeature = exports.ChangeProductPriceBases = exports.ChangePriceBases = exports.PriceChangeTypes = exports.ClientDuplicationParts = exports.BuynomicsAppVersion = 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.PriceLevelTypes = exports.SortableProductFields = exports.ConfigurableProductFields = exports.BnPermissions = void 0;
7
7
  var fitting_statuses_1 = require("./domains/fitting/enums/fitting-statuses");
8
8
  Object.defineProperty(exports, "FittingStatuses", { enumerable: true, get: function () { return fitting_statuses_1.FittingStatuses; } });
9
9
  var intermediary_group_range_formats_1 = require("./domains/pricing/intermediaries/enums/intermediary-group-range-formats");
@@ -52,6 +52,8 @@ Object.defineProperty(exports, "DeeperionVersions", { enumerable: true, get: fun
52
52
  Object.defineProperty(exports, "DeeperionAppSwitchValues", { enumerable: true, get: function () { return deeperion_1.DeeperionAppSwitchValues; } });
53
53
  Object.defineProperty(exports, "DeeperionRequestTypes", { enumerable: true, get: function () { return deeperion_1.DeeperionRequestTypes; } });
54
54
  Object.defineProperty(exports, "DeeperionModelTypes", { enumerable: true, get: function () { return deeperion_1.DeeperionModelTypes; } });
55
+ var optimization_1 = require("./enums/optimization");
56
+ Object.defineProperty(exports, "OptimizationStatus", { enumerable: true, get: function () { return optimization_1.OptimizationStatus; } });
55
57
  var permissions_1 = require("./enums/permissions");
56
58
  Object.defineProperty(exports, "BnPermissions", { enumerable: true, get: function () { return permissions_1.BnPermissions; } });
57
59
  var change_price_bases_1 = require("./enums/price-change/change-price-bases");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,6EAA0E;AA4FxE,gGA5FO,kCAAe,OA4FP;AAzFjB,4HAAuH;AAwFrH,8GAxFO,gEAA6B,OAwFP;AAvF/B,4GAAwG;AAsFtG,uGAtFO,iDAAsB,OAsFP;AArFxB,oFAAoF;AA4HlF,oGA5HO,uCAAmB,OA4HP;AA1HrB,mGAA+F;AAqG7F,wGArGO,mDAAuB,OAqGP;AApGzB,6DAAiE;AAqF/D,uGArFO,yCAAsB,OAqFP;AApFxB,wEAAuE;AAuFrE,oGAvFO,wCAAmB,OAuFP;AAtFrB,wEAAoE;AA0ElE,iGA1EO,qCAAgB,OA0EP;AAzElB,gFAG8C;AAuE5C,oGAzEA,4CAAmB,OAyEA;AACnB,gHAzEA,wDAA+B,OAyEA;AAvEjC,kFAG+C;AAqE7C,sGAvEA,+CAAqB,OAuEA;AACrB,6GAvEA,sDAA4B,OAuEA;AApE9B,oFAAgF;AA6E9E,uGA7EO,iDAAsB,OA6EP;AA5ExB,kEAMuC;AA0ErC,8FA/EA,+BAAa,OA+EA;AACb,mGA/EA,oCAAkB,OA+EA;AAElB,mGA/EA,oCAAkB,OA+EA;AA5EpB,kEAA+D;AAkF7D,+FAlFO,gCAAc,OAkFP;AAjFhB,8DAA2D;AAgFzD,6FAhFO,4BAAY,OAgFP;AA/Ed,4DAGoC;AAiDlC,4FAnDA,0BAAW,OAmDA;AACX,wGAnDA,sCAAuB,OAmDA;AAjDzB,4DAAyD;AAuDvD,4FAvDO,0BAAW,OAuDP;AAtDb,4EAA6E;AA+F3E,wGA/FO,8CAAuB,OA+FP;AA9FzB,2EAAuE;AAsErE,gGAtEO,mCAAe,OAsEP;AArEjB,2EAAuE;AAsErE,gGAtEO,mCAAe,OAsEP;AArEjB,+CAK0B;AAkCxB,kGAtCA,6BAAiB,OAsCA;AACjB,yGAtCA,oCAAwB,OAsCA;AACxB,sGAtCA,iCAAqB,OAsCA;AACrB,oGAtCA,+BAAmB,OAsCA;AApCrB,mDAAmD;AA6BjD,8FA7BO,2BAAa,OA6BP;AA5Bf,8EAA0E;AAsDxE,iGAtDO,qCAAgB,OAsDP;AArDlB,8EAA0E;AAoDxE,iGApDO,qCAAgB,OAoDP;AAnDlB,2EAAuE;AA6BrE,gGA7BO,mCAAe,OA6BP;AA5BjB,gGAA2F;AAoDzF,wGApDO,oDAAuB,OAoDP;AAnDzB,yFAAsF;AAyBpF,0GAzBO,sDAAyB,OAyBP;AAxB3B,mFAA+E;AAyB7E,sGAzBO,+CAAqB,OAyBP;AAxBvB,gFAG+C;AA2B7C,wGA7BA,+CAAuB,OA6BA;AA0CvB,4GAtEA,mDAA2B,OAsEA;AApE7B,oFAAgF;AAwD9E,gGAxDO,mCAAe,OAwDP;AAvDjB,6DAA0D;AA+DxD,+FA/DO,gCAAc,OA+DP;AA9DhB,iGAAiG;AAiE/F,+GAjEO,6DAA8B,OAiEP;AAhEhC,6FAAyF;AA0EvF,8GA1EO,+DAA6B,OA0EP;AAzE/B,sEAA8C;AAiE5C,qBAjEK,qBAAU,CAiEL;AAhEZ,0FAAkE;AAoEhE,2BApEK,2BAAgB,CAoEL;AAnElB,4GAAoF;AAkElF,2BAlEK,2BAAgB,CAkEL;AAjElB,2FAGqD;AAwDnD,wGA1DA,oDAAuB,OA0DA;AADvB,wGAxDA,oDAAuB,OAwDA;AAtDzB,iEAA6D;AA2D3D,gGA3DO,mCAAe,OA2DP;AA1DjB,yGAA6F;AA2D3F,2CA3DK,+BAAgC,CA2DL"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,6EAA0E;AA6FxE,gGA7FO,kCAAe,OA6FP;AA1FjB,4HAAuH;AAyFrH,8GAzFO,gEAA6B,OAyFP;AAxF/B,4GAAwG;AAuFtG,uGAvFO,iDAAsB,OAuFP;AAtFxB,oFAAoF;AA8HlF,oGA9HO,uCAAmB,OA8HP;AA5HrB,mGAA+F;AAsG7F,wGAtGO,mDAAuB,OAsGP;AArGzB,6DAAiE;AAsF/D,uGAtFO,yCAAsB,OAsFP;AArFxB,wEAAuE;AAwFrE,oGAxFO,wCAAmB,OAwFP;AAvFrB,wEAAoE;AA2ElE,iGA3EO,qCAAgB,OA2EP;AA1ElB,gFAG8C;AAwE5C,oGA1EA,4CAAmB,OA0EA;AACnB,gHA1EA,wDAA+B,OA0EA;AAxEjC,kFAG+C;AAsE7C,sGAxEA,+CAAqB,OAwEA;AACrB,6GAxEA,sDAA4B,OAwEA;AArE9B,oFAAgF;AA8E9E,uGA9EO,iDAAsB,OA8EP;AA7ExB,kEAMuC;AA2ErC,8FAhFA,+BAAa,OAgFA;AACb,mGAhFA,oCAAkB,OAgFA;AAElB,mGAhFA,oCAAkB,OAgFA;AA7EpB,kEAA+D;AAmF7D,+FAnFO,gCAAc,OAmFP;AAlFhB,8DAA2D;AAiFzD,6FAjFO,4BAAY,OAiFP;AAhFd,4DAGoC;AAkDlC,4FApDA,0BAAW,OAoDA;AACX,wGApDA,sCAAuB,OAoDA;AAlDzB,4DAAyD;AAwDvD,4FAxDO,0BAAW,OAwDP;AAvDb,4EAA6E;AAiG3E,wGAjGO,8CAAuB,OAiGP;AAhGzB,2EAAuE;AAuErE,gGAvEO,mCAAe,OAuEP;AAtEjB,2EAAuE;AAuErE,gGAvEO,mCAAe,OAuEP;AAtEjB,+CAK0B;AAmCxB,kGAvCA,6BAAiB,OAuCA;AACjB,yGAvCA,oCAAwB,OAuCA;AACxB,sGAvCA,iCAAqB,OAuCA;AACrB,oGAvCA,+BAAmB,OAuCA;AArCrB,qDAAyD;AAqEvD,mGArEO,iCAAkB,OAqEP;AApEpB,mDAAmD;AA6BjD,8FA7BO,2BAAa,OA6BP;AA5Bf,8EAA0E;AAsDxE,iGAtDO,qCAAgB,OAsDP;AArDlB,8EAA0E;AAoDxE,iGApDO,qCAAgB,OAoDP;AAnDlB,2EAAuE;AA6BrE,gGA7BO,mCAAe,OA6BP;AA5BjB,gGAA2F;AAoDzF,wGApDO,oDAAuB,OAoDP;AAnDzB,yFAAsF;AAyBpF,0GAzBO,sDAAyB,OAyBP;AAxB3B,mFAA+E;AAyB7E,sGAzBO,+CAAqB,OAyBP;AAxBvB,gFAG+C;AA2B7C,wGA7BA,+CAAuB,OA6BA;AA2CvB,4GAvEA,mDAA2B,OAuEA;AArE7B,oFAAgF;AAwD9E,gGAxDO,mCAAe,OAwDP;AAvDjB,6DAA0D;AAgExD,+FAhEO,gCAAc,OAgEP;AA/DhB,iGAAiG;AAkE/F,+GAlEO,6DAA8B,OAkEP;AAjEhC,6FAAyF;AA2EvF,8GA3EO,+DAA6B,OA2EP;AA1E/B,sEAA8C;AAkE5C,qBAlEK,qBAAU,CAkEL;AAjEZ,0FAAkE;AAqEhE,2BArEK,2BAAgB,CAqEL;AApElB,4GAAoF;AAmElF,2BAnEK,2BAAgB,CAmEL;AAlElB,2FAGqD;AAyDnD,wGA3DA,oDAAuB,OA2DA;AADvB,wGAzDA,oDAAuB,OAyDA;AAvDzB,iEAA6D;AA4D3D,gGA5DO,mCAAe,OA4DP;AA3DjB,yGAA6F;AA4D3F,2CA5DK,+BAAgC,CA4DL"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buynomics-lib/bn-shared",
3
- "version": "1.17.1-feature-nx64-1352.0",
3
+ "version": "1.17.2-feature-nx64-1529.0",
4
4
  "description": "Shared functionality between API and UI",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",