@buynomics-lib/bn-shared 1.16.3-feature-nx64-562.0 → 1.16.4-feature-nx64-562.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 +2 -0
- package/build/enums/client/client-features.d.ts +13 -0
- package/build/enums/client/client-features.js +16 -0
- package/build/enums/client/client-features.js.map +1 -0
- package/build/index.d.ts +2 -1
- package/build/index.js +4 -1
- package/build/index.js.map +1 -1
- package/package.json +1 -1
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.16.3](https://gitlab.com/buynomics/libraries/bn-shared/compare/v1.16.2...v1.16.3) (2023-08-03)
|
|
6
|
+
|
|
5
7
|
### [1.16.2](https://gitlab.com/buynomics/libraries/bn-shared/compare/v1.16.1...v1.16.2) (2023-07-17)
|
|
6
8
|
|
|
7
9
|
### [1.16.1](https://gitlab.com/buynomics/libraries/bn-shared/compare/v1.15.16...v1.16.1) (2023-06-05)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare enum ClientFeature {
|
|
2
|
+
PriceLevels = "priceLevels",
|
|
3
|
+
ChangeProducts = "changeProducts",
|
|
4
|
+
ChangeCosts = "changeCosts"
|
|
5
|
+
}
|
|
6
|
+
export declare enum ClientFeatureState {
|
|
7
|
+
Enabled = "enabled",
|
|
8
|
+
Disabled = "disabled",
|
|
9
|
+
Hidden = "hidden"
|
|
10
|
+
}
|
|
11
|
+
export declare type ClientFeatures = {
|
|
12
|
+
[key in ClientFeature]?: ClientFeatureState;
|
|
13
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ClientFeatureState = exports.ClientFeature = void 0;
|
|
4
|
+
var ClientFeature;
|
|
5
|
+
(function (ClientFeature) {
|
|
6
|
+
ClientFeature["PriceLevels"] = "priceLevels";
|
|
7
|
+
ClientFeature["ChangeProducts"] = "changeProducts";
|
|
8
|
+
ClientFeature["ChangeCosts"] = "changeCosts";
|
|
9
|
+
})(ClientFeature = exports.ClientFeature || (exports.ClientFeature = {}));
|
|
10
|
+
var ClientFeatureState;
|
|
11
|
+
(function (ClientFeatureState) {
|
|
12
|
+
ClientFeatureState["Enabled"] = "enabled";
|
|
13
|
+
ClientFeatureState["Disabled"] = "disabled";
|
|
14
|
+
ClientFeatureState["Hidden"] = "hidden";
|
|
15
|
+
})(ClientFeatureState = exports.ClientFeatureState || (exports.ClientFeatureState = {}));
|
|
16
|
+
//# sourceMappingURL=client-features.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-features.js","sourceRoot":"","sources":["../../../src/enums/client/client-features.ts"],"names":[],"mappings":";;;AAAA,IAAY,aAIX;AAJD,WAAY,aAAa;IACvB,4CAA2B,CAAA;IAC3B,kDAAiC,CAAA;IACjC,4CAA2B,CAAA;AAC7B,CAAC,EAJW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAIxB;AAED,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC5B,yCAAmB,CAAA;IACnB,2CAAqB,CAAA;IACrB,uCAAiB,CAAA;AACnB,CAAC,EAJW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAI7B"}
|
package/build/index.d.ts
CHANGED
|
@@ -35,4 +35,5 @@ import { ClientDuplicationParts } from './enums/client/client-duplication-parts'
|
|
|
35
35
|
import { PriceChangeTypes } from './enums/price-change/price-change-types';
|
|
36
36
|
import { ChangePriceBases } from './enums/price-change/change-price-bases';
|
|
37
37
|
import { ChangeProductPriceBases } from './enums/product-change/change-product-price-bases';
|
|
38
|
-
|
|
38
|
+
import { ClientFeature, ClientFeatureState, ClientFeatures } from './enums/client/client-features';
|
|
39
|
+
export { BnPermissions, ConfigurableProductFields, SortableProductFields, PriceLevelTypes, DeeperionVersions, DeeperionAppSwitchValues, CustomCostFormulaParams, ClientTerms, DefaultClientTermLabels, ClientCLVPeriods, ClientCLVPriceTypes, DefaultClientCLVPriceTypeLabels, ClientDecimalSettings, DefaultClientDecimalSettings, ClientTypes, IntermediaryGroupTypes, IntermediaryGroupRangeFormats, FittingStatuses, CentralSteeringVersion, Dimension, DimensionValue, BuynomicsAppVersion, ClientDuplicationParts, PriceChangeTypes, ChangePriceBases, ChangeProductPriceBases, ClientFeature, ClientFeatureState, ClientFeatures, ISimulationInputChangeEvents, IFitting, IFittingLog, IFileUpload, IPromotionPeriod, calculateRange, JSONFormulaToExpression, expressionToJSONFormula, getLatestDeeperionVersionValue, getCustomFormulaParamsLabel, EnumHelper, getPropertyName, PriceDecisionNullificationHelper, FormulaValidator, FormulaConverter, getPromotionPeriods, ClientViewSettingsPages, IClientViewSettings, };
|
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.ClientViewSettingsPages = exports.getPromotionPeriods = exports.FormulaConverter = exports.FormulaValidator = exports.PriceDecisionNullificationHelper = exports.getPropertyName = exports.EnumHelper = exports.getCustomFormulaParamsLabel = exports.getLatestDeeperionVersionValue = exports.expressionToJSONFormula = exports.JSONFormulaToExpression = exports.calculateRange = 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.DeeperionAppSwitchValues = exports.DeeperionVersions = exports.PriceLevelTypes = exports.SortableProductFields = exports.ConfigurableProductFields = exports.BnPermissions = void 0;
|
|
6
|
+
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.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.DeeperionAppSwitchValues = exports.DeeperionVersions = exports.PriceLevelTypes = exports.SortableProductFields = exports.ConfigurableProductFields = exports.BnPermissions = void 0;
|
|
7
7
|
var client_clv_periods_1 = require("./enums/client/client-clv-periods");
|
|
8
8
|
Object.defineProperty(exports, "ClientCLVPeriods", { enumerable: true, get: function () { return client_clv_periods_1.ClientCLVPeriods; } });
|
|
9
9
|
var promotion_periods_1 = require("./domains/promotions/helpers/promotion-periods");
|
|
@@ -70,4 +70,7 @@ var change_price_bases_1 = require("./enums/price-change/change-price-bases");
|
|
|
70
70
|
Object.defineProperty(exports, "ChangePriceBases", { enumerable: true, get: function () { return change_price_bases_1.ChangePriceBases; } });
|
|
71
71
|
var change_product_price_bases_1 = require("./enums/product-change/change-product-price-bases");
|
|
72
72
|
Object.defineProperty(exports, "ChangeProductPriceBases", { enumerable: true, get: function () { return change_product_price_bases_1.ChangeProductPriceBases; } });
|
|
73
|
+
var client_features_1 = require("./enums/client/client-features");
|
|
74
|
+
Object.defineProperty(exports, "ClientFeature", { enumerable: true, get: function () { return client_features_1.ClientFeature; } });
|
|
75
|
+
Object.defineProperty(exports, "ClientFeatureState", { enumerable: true, get: function () { return client_features_1.ClientFeatureState; } });
|
|
73
76
|
//# sourceMappingURL=index.js.map
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,wEAAoE;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,wEAAoE;AAoElE,iGApEO,qCAAgB,OAoEP;AAnElB,oFAAoF;AAwGlF,oGAxGO,uCAAmB,OAwGP;AAtGrB,6EAA0E;AAyExE,gGAzEO,kCAAe,OAyEP;AAtEjB,4HAAuH;AAqErH,8GArEO,gEAA6B,OAqEP;AApE/B,4GAAwG;AAmEtG,uGAnEO,iDAAsB,OAmEP;AAlExB,gFAG8C;AA0D5C,oGA5DA,4CAAmB,OA4DA;AACnB,gHA5DA,wDAA+B,OA4DA;AA1DjC,kFAG+C;AAwD7C,sGA1DA,+CAAqB,OA0DA;AACrB,6GA1DA,sDAA4B,OA0DA;AAxD9B,4DAGoC;AA+ClC,4FAjDA,0BAAW,OAiDA;AACX,wGAjDA,sCAAuB,OAiDA;AA/CzB,4DAAyD;AAqDvD,4FArDO,0BAAW,OAqDP;AApDb,4EAA6E;AAqF3E,wGArFO,8CAAuB,OAqFP;AApFzB,+CAA+E;AAyC7E,kGAzCO,6BAAiB,OAyCP;AACjB,yGA1C0B,oCAAwB,OA0C1B;AAzC1B,mDAAmD;AAoCjD,8FApCO,2BAAa,OAoCP;AAnCf,2EAAuE;AAsCrE,gGAtCO,mCAAe,OAsCP;AArCjB,yFAAsF;AAmCpF,0GAnCO,sDAAyB,OAmCP;AAlC3B,mFAA+E;AAmC7E,sGAnCO,+CAAqB,OAmCP;AAlCvB,gFAG+C;AAmC7C,wGArCA,+CAAuB,OAqCA;AAkCvB,4GAtEA,mDAA2B,OAsEA;AApE7B,6DAAiE;AA8C/D,uGA9CO,yCAAsB,OA8CP;AA7CxB,6DAA0D;AA+DxD,+FA/DO,gCAAc,OA+DP;AA9DhB,iGAAiG;AAiE/F,+GAjEO,6DAA8B,OAiEP;AAhEhC,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;AAvDlC,wEAAuE;AAiCrE,oGAjCO,wCAAmB,OAiCP;AAhCrB,oFAAgF;AAiC9E,uGAjCO,iDAAsB,OAiCP;AAhCxB,8EAA0E;AAiCxE,iGAjCO,qCAAgB,OAiCP;AAhClB,8EAA0E;AAiCxE,iGAjCO,qCAAgB,OAiCP;AAhClB,gGAA2F;AAiCzF,wGAjCO,oDAAuB,OAiCP;AAhCzB,kEAIuC;AA6BrC,8FAhCA,+BAAa,OAgCA;AACb,mGAhCA,oCAAkB,OAgCA"}
|
package/package.json
CHANGED