monkey-front-core 0.0.277 → 0.0.279
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/services/config/monkeyecx-feature-toggle.service.mjs +5 -5
- package/fesm2015/monkey-front-core.mjs +4 -4
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +4 -4
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.279.tgz +0 -0
- package/package.json +2 -2
- package/monkey-front-core-0.0.277.tgz +0 -0
|
@@ -3124,14 +3124,14 @@ class MonkeyEcxFeatureToggleService {
|
|
|
3124
3124
|
const email = 'monkey@monkey.exchange';
|
|
3125
3125
|
const user = {
|
|
3126
3126
|
email,
|
|
3127
|
-
|
|
3127
|
+
kind: 'user',
|
|
3128
|
+
key: `${config.program?.token}#${email}`
|
|
3128
3129
|
};
|
|
3129
3130
|
if (!this.ldClient) {
|
|
3130
3131
|
this.ldClient = initialize(environment.launchDarklyClientSideID, user, {
|
|
3131
3132
|
streaming: true,
|
|
3132
3133
|
disableSyncEventPost: true,
|
|
3133
|
-
sendEvents: false
|
|
3134
|
-
diagnosticOptOut: true,
|
|
3134
|
+
sendEvents: false
|
|
3135
3135
|
});
|
|
3136
3136
|
this.ldClient.on('change', this.getAllFlags.bind(this));
|
|
3137
3137
|
this.ldClient.on('ready', this.getAllFlags.bind(this));
|
|
@@ -3164,7 +3164,7 @@ MonkeyEcxFeatureToggleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion:
|
|
|
3164
3164
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFeatureToggleService, decorators: [{
|
|
3165
3165
|
type: Injectable,
|
|
3166
3166
|
args: [{
|
|
3167
|
-
providedIn: 'root'
|
|
3167
|
+
providedIn: 'root'
|
|
3168
3168
|
}]
|
|
3169
3169
|
}], ctorParameters: function () { return []; } });
|
|
3170
3170
|
|