monkey-front-core 0.0.276 → 0.0.278

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.
@@ -3124,14 +3124,15 @@ class MonkeyEcxFeatureToggleService {
3124
3124
  const email = 'monkey@monkey.exchange';
3125
3125
  const user = {
3126
3126
  email,
3127
- key: `${config.program?.token}#${email}`,
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
3134
  sendEvents: false,
3134
- diagnosticOptOut: true,
3135
+ diagnosticOptOut: true
3135
3136
  });
3136
3137
  this.ldClient.on('change', this.getAllFlags.bind(this));
3137
3138
  this.ldClient.on('ready', this.getAllFlags.bind(this));
@@ -3164,7 +3165,7 @@ MonkeyEcxFeatureToggleService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion:
3164
3165
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxFeatureToggleService, decorators: [{
3165
3166
  type: Injectable,
3166
3167
  args: [{
3167
- providedIn: 'root',
3168
+ providedIn: 'root'
3168
3169
  }]
3169
3170
  }], ctorParameters: function () { return []; } });
3170
3171