@shushed/helpers 0.0.178 → 0.0.179
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -107034,7 +107034,7 @@ var EnvEngine = class extends Runtime {
|
|
|
107034
107034
|
value: value[key].value
|
|
107035
107035
|
}],
|
|
107036
107036
|
level,
|
|
107037
|
-
{ encrypted:
|
|
107037
|
+
{ encrypted: options?.encrypted || false, ephemeralMs: value[key].expiresAt - Date.now(), ignoreStores: ["redis"] }
|
|
107038
107038
|
);
|
|
107039
107039
|
}
|
|
107040
107040
|
return lastResult;
|
|
@@ -107057,7 +107057,7 @@ var EnvEngine = class extends Runtime {
|
|
|
107057
107057
|
value
|
|
107058
107058
|
}],
|
|
107059
107059
|
level,
|
|
107060
|
-
{ encrypted:
|
|
107060
|
+
{ encrypted: options?.encrypted || false, ephemeralMs: options?.ephemeralMs || 0 }
|
|
107061
107061
|
);
|
|
107062
107062
|
}
|
|
107063
107063
|
if (lastError) {
|