@absolutejs/auth 0.48.4 → 0.48.6
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/dist/index.js +4 -2
- package/dist/index.js.map +3 -3
- package/dist/session/impersonation.d.ts +2 -0
- package/dist/types.d.ts +15 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -22452,9 +22452,11 @@ var startImpersonation = async ({
|
|
|
22452
22452
|
const stamp = {
|
|
22453
22453
|
actorEmail: impersonator.actorEmail,
|
|
22454
22454
|
actorId: impersonator.actorId,
|
|
22455
|
+
readOnly: impersonator.readOnly,
|
|
22455
22456
|
reason: impersonator.reason,
|
|
22456
22457
|
returnToSessionId: callerSessionId,
|
|
22457
|
-
startedAt: Date.now()
|
|
22458
|
+
startedAt: Date.now(),
|
|
22459
|
+
suppressSideEffects: impersonator.suppressSideEffects
|
|
22458
22460
|
};
|
|
22459
22461
|
const sessionId = await promoteToSession({
|
|
22460
22462
|
authSessionStore,
|
|
@@ -27623,5 +27625,5 @@ export {
|
|
|
27623
27625
|
AuthIdentityConflictError
|
|
27624
27626
|
};
|
|
27625
27627
|
|
|
27626
|
-
//# debugId=
|
|
27628
|
+
//# debugId=9ED02F272962733064756E2164756E21
|
|
27627
27629
|
//# sourceMappingURL=index.js.map
|