monkey-front-core 0.0.279 → 0.0.281
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/esm2020/lib/core/interfaces/monkeyecx-filter.mjs +1 -1
- package/esm2020/lib/core/services/config/monkeyecx-feature-toggle.service.mjs +11 -2
- package/fesm2015/monkey-front-core.mjs +10 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +10 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/monkeyecx-filter.d.ts +6 -9
- package/monkey-front-core-0.0.281.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.279.tgz +0 -0
|
@@ -3131,7 +3131,16 @@ class MonkeyEcxFeatureToggleService {
|
|
|
3131
3131
|
this.ldClient = initialize(environment.launchDarklyClientSideID, user, {
|
|
3132
3132
|
streaming: true,
|
|
3133
3133
|
disableSyncEventPost: true,
|
|
3134
|
-
sendEvents: false
|
|
3134
|
+
sendEvents: false,
|
|
3135
|
+
diagnosticOptOut: true,
|
|
3136
|
+
logger: {
|
|
3137
|
+
debug: () => { },
|
|
3138
|
+
warn: () => { },
|
|
3139
|
+
info: () => { },
|
|
3140
|
+
error: (args) => {
|
|
3141
|
+
console.log('Monkey Client => ', args);
|
|
3142
|
+
}
|
|
3143
|
+
}
|
|
3135
3144
|
});
|
|
3136
3145
|
this.ldClient.on('change', this.getAllFlags.bind(this));
|
|
3137
3146
|
this.ldClient.on('ready', this.getAllFlags.bind(this));
|