@@ -29,13 +29,11 @@ const decisionsKeyName = "decisions";
29
29
const userCookieName = "optly_akamai_ew_user" ; // Name of cookie that stores user identifier (visitorId) assignment
30
30
const optlyUserIdsHeaderName = "optly-user-id" ;
31
31
const userIdentifierKeyName = "user_identifier" ;
32
- const htmlVariable = "PMUSER_OPTIMIZELY_RESPONSE_HTML" ;
33
- const agentModeVariable = "PMUSER_ACTIVE_FLAGS_EXPERIMENTS" ;
34
- const userIdVariable = "PMUSER_USER_ID" ;
35
- const flagsListVariable = "PMUSER_FLAGS_LIST" ;
36
- const attributesListVariable_1 = "PMUSER_ATTRIBUTES_LIST_1" ;
37
- const attributesListVariable_2 = "PMUSER_ATTRIBUTES_LIST_2" ;
38
- const assignedDecisionsVariable = "PMUSER_ASSIGNED_DECISIONS" ;
32
+ const userIdVariable = "PMUSER_OPTIMIZELY_USER_ID" ;
33
+ const flagsListVariable = "PMUSER_OPTIMIZELY_FLAGS_LIST" ;
34
+ const attributesListVariable_1 = "PMUSER_OPTIMIZELY_ATTR_LIST_1" ;
35
+ const attributesListVariable_2 = "PMUSER_OPTIMIZELY_ATTR_LIST_2" ;
36
+ const assignedDecisionsVariable = "PMUSER_OPTIMIZELY_DECISIONS" ;
39
37
const cookieExpirationSecs = 30 * 24 * 60 * 60 ;
40
38
const cookieExpirationInDays = 30 ;
41
39
const delimeter = "&" ;
@@ -47,6 +45,7 @@ let defaultConfig = DefaultConfig;
47
45
let defaultConfigUpdated = false ;
48
46
// Account ID
49
47
let ACCOUNT_ID = defaultConfig . accountId ;
48
+ let eventsEndpoint = defaultConfig . optlyEventsEndpoint ;
50
49
51
50
/**
52
51
* KV_STORAGE_ENABLED = coniguration will be downloaded from KV store
@@ -286,8 +285,7 @@ async function httpDispatcher(payload) {
286
285
"Content-Length" : jsonPayload . length ,
287
286
} ;
288
287
options . body = jsonPayload ;
289
- //const url = "https://ew-optly-agent.optimizely.com/v1/events";
290
- const url = "https://ew.logx.optimizely.com/v1/events" ;
288
+ const url = eventsEndpoint ;
291
289
292
290
try {
293
291
const response = await httpRequest ( url , options ) ;
0 commit comments