session-sync-auth-site 3.0.1 → 3.0.3
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/package.json
CHANGED
package/src/authenticate.js
CHANGED
|
@@ -231,9 +231,7 @@ const setUpSessionSyncAuthRoutes = ({
|
|
|
231
231
|
|
|
232
232
|
await global.sessionSyncAuthSiteConnection.query(
|
|
233
233
|
queries.join(';'),
|
|
234
|
-
|
|
235
|
-
replacements: variables,
|
|
236
|
-
},
|
|
234
|
+
variables,
|
|
237
235
|
)
|
|
238
236
|
|
|
239
237
|
}
|
|
@@ -253,9 +251,7 @@ const setUpSessionSyncAuthRoutes = ({
|
|
|
253
251
|
WHERE \`${(userTableColNameMap.id || `id`).replace(/`/g, '')}\` = :userId
|
|
254
252
|
`,
|
|
255
253
|
{
|
|
256
|
-
|
|
257
|
-
userId: id,
|
|
258
|
-
},
|
|
254
|
+
userId: id,
|
|
259
255
|
},
|
|
260
256
|
)
|
|
261
257
|
|
|
@@ -283,9 +279,7 @@ const setUpSessionSyncAuthRoutes = ({
|
|
|
283
279
|
WHERE \`${(userTableColNameMap.id || `id`).replace(/`/g, '')}\` = :userId
|
|
284
280
|
`,
|
|
285
281
|
{
|
|
286
|
-
|
|
287
|
-
userId: id,
|
|
288
|
-
},
|
|
282
|
+
userId: id,
|
|
289
283
|
},
|
|
290
284
|
)
|
|
291
285
|
}
|