@@ -136,7 +136,7 @@ exports.LOG_MESSAGES = {
136
136
UNEXPECTED_TYPE_NULL : '%s: Audience condition %s evaluated to UNKNOWN because a null value was passed for user attribute "%s".' ,
137
137
UNKNOWN_CONDITION_TYPE : '%s: Audience condition %s has an unknown condition type. You may need to upgrade to a newer release of the Optimizely SDK.' ,
138
138
UNKNOWN_MATCH_TYPE : '%s: Audience condition %s uses an unknown match type. You may need to upgrade to a newer release of the Optimizely SDK.' ,
139
- UPDATED_PROJECT_CONFIG : '%s: Updated project config to revision %s' ,
139
+ UPDATED_OPTIMIZELY_CONFIG : '%s: Updated Optimizely config to revision %s (project id %s) ' ,
140
140
OUT_OF_BOUNDS : '%s: Audience condition %s evaluated to UNKNOWN because the number value for user attribute "%s" is not in the range [-2^53, +2^53].' ,
141
141
} ;
142
142
@@ -177,25 +177,22 @@ exports.NODE_CLIENT_VERSION = '3.1.0-beta1';
177
177
* - attributes {Object|undefined}
178
178
* - eventTags {Object|undefined}
179
179
* - logEvent {Object}
180
- * DECISION: A decision is made in the system. i.e. user activation,
180
+ * DECISION: A decision is made in the system. i.e. user activation,
181
181
* feature access or feature-variable value retrieval
182
182
* Callbacks will receive an object argument with the following properties:
183
183
* - type {string}
184
184
* - userId {string}
185
185
* - attributes {Object|undefined}
186
186
* - decisionInfo {Object|undefined}
187
187
*
188
- * PROJECT_CONFIG_UPDATE: This Optimizely instance has been updated with a new
189
- * project config
190
- * Callbacks will receive an object argument with the following properties:
191
- * - oldProjectConfig {Object}
192
- * - newProjectConfig {Object|null}
188
+ * OPTIMIZELY_CONFIG_UPDATE: This Optimizely instance has been updated with a new
189
+ * config
193
190
*/
194
191
exports . NOTIFICATION_TYPES = {
195
192
ACTIVATE : 'ACTIVATE:experiment, user_id,attributes, variation, event' ,
196
193
TRACK : 'TRACK:event_key, user_id, attributes, event_tags, event' ,
197
194
DECISION : 'DECISION:type, userId, attributes, decisionInfo' ,
198
- PROJECT_CONFIG_UPDATE : 'PROJECT_CONFIG_UPDATE ' ,
195
+ OPTIMIZELY_CONFIG_UPDATE : 'OPTIMIZELY_CONFIG_UPDATE ' ,
199
196
} ;
200
197
201
198
exports . DECISION_INFO_TYPES = {
0 commit comments