@buynomics-lib/bn-shared 1.16.21-feature-nx64-1518.2 → 1.16.21-feature-nx64-1561.1

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.
@@ -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"}
package/build/index.d.ts CHANGED
@@ -6,7 +6,6 @@ import { IFitting } from './domains/fitting/interfaces/fitting';
6
6
  import { IFittingLog } from './domains/fitting/interfaces/fitting-logs';
7
7
  import { IntermediaryGroupRangeFormats } from './domains/pricing/intermediaries/enums/intermediary-group-range-formats';
8
8
  import { IntermediaryGroupTypes } from './domains/pricing/intermediaries/enums/intermediary-group-types';
9
- import { AuthSearchParams } from './enums/auth/params';
10
9
  import { ClientCLVPriceTypes, DefaultClientCLVPriceTypeLabels } from './enums/client/client-clv-price-types';
11
10
  import { ClientDecimalSettings, DefaultClientDecimalSettings } from './enums/client/client-decimal-settings';
12
11
  import { ClientTerms, DefaultClientTermLabels } from './enums/client/client-terms';
@@ -39,8 +38,8 @@ import { ClientDuplicationParts } from './enums/client/client-duplication-parts'
39
38
  import { PriceChangeTypes } from './enums/price-change/price-change-types';
40
39
  import { ChangePriceBases } from './enums/price-change/change-price-bases';
41
40
  import { ChangeProductPriceBases } from './enums/product-change/change-product-price-bases';
42
- import { ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesScopeLimits } from './enums/client/client-features';
41
+ import { ClientFeature, ClientFeatureState, ClientFeatures, ClientFeatureScope, ClientFeaturesSettings } from './enums/client/client-features';
43
42
  import { ChangeCostBases } from './enums/cost-change/change-cost-bases';
44
43
  import { CostChangeTypes } from './enums/cost-change/cost-change-types';
45
44
  import { AvailabilityChangeTypes } from './enums/availability-change/availability-change-types';
46
- export { AuthSearchParams, 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, ISimulationInputChangeEvents, IFitting, IFittingLog, IFileUpload, IPromotionPeriod, calculateRange, JSONFormulaToExpression, expressionToJSONFormula, getLatestDeeperionVersionValue, getCustomFormulaParamsLabel, EnumHelper, getPropertyName, PriceDecisionNullificationHelper, FormulaValidator, FormulaConverter, getPromotionPeriods, ClientViewSettingsPages, IClientViewSettings, DefaultClientFeaturesSettings, };
45
+ 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, 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.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 = exports.AuthSearchParams = 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.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 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");
@@ -14,8 +14,6 @@ var intermediary_group_range_formats_1 = require("./domains/pricing/intermediari
14
14
  Object.defineProperty(exports, "IntermediaryGroupRangeFormats", { enumerable: true, get: function () { return intermediary_group_range_formats_1.IntermediaryGroupRangeFormats; } });
15
15
  var intermediary_group_types_1 = require("./domains/pricing/intermediaries/enums/intermediary-group-types");
16
16
  Object.defineProperty(exports, "IntermediaryGroupTypes", { enumerable: true, get: function () { return intermediary_group_types_1.IntermediaryGroupTypes; } });
17
- var params_1 = require("./enums/auth/params");
18
- Object.defineProperty(exports, "AuthSearchParams", { enumerable: true, get: function () { return params_1.AuthSearchParams; } });
19
17
  var client_clv_price_types_1 = require("./enums/client/client-clv-price-types");
20
18
  Object.defineProperty(exports, "ClientCLVPriceTypes", { enumerable: true, get: function () { return client_clv_price_types_1.ClientCLVPriceTypes; } });
21
19
  Object.defineProperty(exports, "DefaultClientCLVPriceTypeLabels", { enumerable: true, get: function () { return client_clv_price_types_1.DefaultClientCLVPriceTypeLabels; } });
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,wEAAoE;AAqFlE,iGArFO,qCAAgB,OAqFP;AApFlB,oFAAoF;AAgIlF,oGAhIO,uCAAmB,OAgIP;AA9HrB,6EAA0E;AA0FxE,gGA1FO,kCAAe,OA0FP;AAvFjB,4HAAuH;AAsFrH,8GAtFO,gEAA6B,OAsFP;AArF/B,4GAAwG;AAoFtG,uGApFO,iDAAsB,OAoFP;AAnFxB,8CAAsD;AAiEpD,iGAjEO,yBAAgB,OAiEP;AAhElB,gFAG8C;AA0E5C,oGA5EA,4CAAmB,OA4EA;AACnB,gHA5EA,wDAA+B,OA4EA;AA1EjC,kFAG+C;AAwE7C,sGA1EA,+CAAqB,OA0EA;AACrB,6GA1EA,sDAA4B,OA0EA;AAxE9B,4DAGoC;AA+DlC,4FAjEA,0BAAW,OAiEA;AACX,wGAjEA,sCAAuB,OAiEA;AA/DzB,4DAAyD;AAqEvD,4FArEO,0BAAW,OAqEP;AApEb,4EAA6E;AA4G3E,wGA5GO,8CAAuB,OA4GP;AA3GzB,+CAK0B;AAkDxB,kGAtDA,6BAAiB,OAsDA;AACjB,yGAtDA,oCAAwB,OAsDA;AACxB,sGAtDA,iCAAqB,OAsDA;AACrB,oGAtDA,+BAAmB,OAsDA;AApDrB,mDAAmD;AA6CjD,8FA7CO,2BAAa,OA6CP;AA5Cf,2EAAuE;AA+CrE,gGA/CO,mCAAe,OA+CP;AA9CjB,yFAAsF;AA4CpF,0GA5CO,sDAAyB,OA4CP;AA3C3B,mFAA+E;AA4C7E,sGA5CO,+CAAqB,OA4CP;AA3CvB,gFAG+C;AA8C7C,wGAhDA,+CAAuB,OAgDA;AAyCvB,4GAxFA,mDAA2B,OAwFA;AAtF7B,6DAAiE;AAyD/D,uGAzDO,yCAAsB,OAyDP;AAxDxB,6DAA0D;AAiFxD,+FAjFO,gCAAc,OAiFP;AAhFhB,iGAAiG;AAmF/F,+GAnFO,6DAA8B,OAmFP;AAlFhC,sEAA8C;AAoF5C,qBApFK,qBAAU,CAoFL;AAnFZ,0FAAkE;AAuFhE,2BAvFK,2BAAgB,CAuFL;AAtFlB,4GAAoF;AAqFlF,2BArFK,2BAAgB,CAqFL;AApFlB,2FAGqD;AA2EnD,wGA7EA,oDAAuB,OA6EA;AADvB,wGA3EA,oDAAuB,OA2EA;AAzEzB,iEAA6D;AA8E3D,gGA9EO,mCAAe,OA8EP;AA7EjB,yGAA6F;AA8E3F,2CA9EK,+BAAgC,CA8EL;AA7ElC,6FAAyF;AAmFvF,8GAnFO,+DAA6B,OAmFP;AA9E/B,wEAAuE;AA2CrE,oGA3CO,wCAAmB,OA2CP;AA1CrB,8DAA2D;AAuDzD,6FAvDO,4BAAY,OAuDP;AAtDd,kEAA+D;AAuD7D,+FAvDO,gCAAc,OAuDP;AAtDhB,oFAAgF;AAyC9E,uGAzCO,iDAAsB,OAyCP;AAxCxB,8EAA0E;AAyCxE,iGAzCO,qCAAgB,OAyCP;AAxClB,8EAA0E;AAyCxE,iGAzCO,qCAAgB,OAyCP;AAxClB,gGAA2F;AAyCzF,wGAzCO,oDAAuB,OAyCP;AAxCzB,kEAMuC;AAmCrC,8FAxCA,+BAAa,OAwCA;AACb,mGAxCA,oCAAkB,OAwCA;AAElB,mGAxCA,oCAAkB,OAwCA;AArCpB,2EAAuE;AAuCrE,gGAvCO,mCAAe,OAuCP;AAtCjB,2EAAuE;AAuCrE,gGAvCO,mCAAe,OAuCP;AAtCjB,mGAA+F;AAuC7F,wGAvCO,mDAAuB,OAuCP"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,wEAAoE;AAmFlE,iGAnFO,qCAAgB,OAmFP;AAlFlB,oFAAoF;AA8HlF,oGA9HO,uCAAmB,OA8HP;AA5HrB,6EAA0E;AAwFxE,gGAxFO,kCAAe,OAwFP;AArFjB,4HAAuH;AAoFrH,8GApFO,gEAA6B,OAoFP;AAnF/B,4GAAwG;AAkFtG,uGAlFO,iDAAsB,OAkFP;AAjFxB,gFAG8C;AAyE5C,oGA3EA,4CAAmB,OA2EA;AACnB,gHA3EA,wDAA+B,OA2EA;AAzEjC,kFAG+C;AAuE7C,sGAzEA,+CAAqB,OAyEA;AACrB,6GAzEA,sDAA4B,OAyEA;AAvE9B,4DAGoC;AA8DlC,4FAhEA,0BAAW,OAgEA;AACX,wGAhEA,sCAAuB,OAgEA;AA9DzB,4DAAyD;AAoEvD,4FApEO,0BAAW,OAoEP;AAnEb,4EAA6E;AA2G3E,wGA3GO,8CAAuB,OA2GP;AA1GzB,+CAK0B;AAiDxB,kGArDA,6BAAiB,OAqDA;AACjB,yGArDA,oCAAwB,OAqDA;AACxB,sGArDA,iCAAqB,OAqDA;AACrB,oGArDA,+BAAmB,OAqDA;AAnDrB,mDAAmD;AA4CjD,8FA5CO,2BAAa,OA4CP;AA3Cf,2EAAuE;AA8CrE,gGA9CO,mCAAe,OA8CP;AA7CjB,yFAAsF;AA2CpF,0GA3CO,sDAAyB,OA2CP;AA1C3B,mFAA+E;AA2C7E,sGA3CO,+CAAqB,OA2CP;AA1CvB,gFAG+C;AA6C7C,wGA/CA,+CAAuB,OA+CA;AAyCvB,4GAvFA,mDAA2B,OAuFA;AArF7B,6DAAiE;AAwD/D,uGAxDO,yCAAsB,OAwDP;AAvDxB,6DAA0D;AAgFxD,+FAhFO,gCAAc,OAgFP;AA/EhB,iGAAiG;AAkF/F,+GAlFO,6DAA8B,OAkFP;AAjFhC,sEAA8C;AAmF5C,qBAnFK,qBAAU,CAmFL;AAlFZ,0FAAkE;AAsFhE,2BAtFK,2BAAgB,CAsFL;AArFlB,4GAAoF;AAoFlF,2BApFK,2BAAgB,CAoFL;AAnFlB,2FAGqD;AA0EnD,wGA5EA,oDAAuB,OA4EA;AADvB,wGA1EA,oDAAuB,OA0EA;AAxEzB,iEAA6D;AA6E3D,gGA7EO,mCAAe,OA6EP;AA5EjB,yGAA6F;AA6E3F,2CA7EK,+BAAgC,CA6EL;AA5ElC,6FAAyF;AAkFvF,8GAlFO,+DAA6B,OAkFP;AA7E/B,wEAAuE;AA0CrE,oGA1CO,wCAAmB,OA0CP;AAzCrB,8DAA2D;AAsDzD,6FAtDO,4BAAY,OAsDP;AArDd,kEAA+D;AAsD7D,+FAtDO,gCAAc,OAsDP;AArDhB,oFAAgF;AAwC9E,uGAxCO,iDAAsB,OAwCP;AAvCxB,8EAA0E;AAwCxE,iGAxCO,qCAAgB,OAwCP;AAvClB,8EAA0E;AAwCxE,iGAxCO,qCAAgB,OAwCP;AAvClB,gGAA2F;AAwCzF,wGAxCO,oDAAuB,OAwCP;AAvCzB,kEAMuC;AAkCrC,8FAvCA,+BAAa,OAuCA;AACb,mGAvCA,oCAAkB,OAuCA;AAElB,mGAvCA,oCAAkB,OAuCA;AApCpB,2EAAuE;AAsCrE,gGAtCO,mCAAe,OAsCP;AArCjB,2EAAuE;AAsCrE,gGAtCO,mCAAe,OAsCP;AArCjB,mGAA+F;AAsC7F,wGAtCO,mDAAuB,OAsCP"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buynomics-lib/bn-shared",
3
- "version": "1.16.21-feature-nx64-1518.2",
3
+ "version": "1.16.21-feature-nx64-1561.1",
4
4
  "description": "Shared functionality between API and UI",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -1,4 +0,0 @@
1
- export declare enum AuthSearchParams {
2
- IsRedirectedFromAdmin = "isRedirectedFromAdmin",
3
- IsRedirectedBack = "isRedirectedBack"
4
- }
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AuthSearchParams = void 0;
4
- var AuthSearchParams;
5
- (function (AuthSearchParams) {
6
- AuthSearchParams["IsRedirectedFromAdmin"] = "isRedirectedFromAdmin";
7
- AuthSearchParams["IsRedirectedBack"] = "isRedirectedBack";
8
- })(AuthSearchParams = exports.AuthSearchParams || (exports.AuthSearchParams = {}));
9
- //# sourceMappingURL=params.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"params.js","sourceRoot":"","sources":["../../../src/enums/auth/params.ts"],"names":[],"mappings":";;;AAAA,IAAY,gBAGX;AAHD,WAAY,gBAAgB;IAC1B,mEAA+C,CAAA;IAC/C,yDAAqC,CAAA;AACvC,CAAC,EAHW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAG3B"}