@stackframe/stack 2.7.0 → 2.7.1
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/CHANGELOG.md +10 -0
- package/dist/esm/lib/stack-app.js +3 -3
- package/dist/esm/lib/stack-app.js.map +1 -1
- package/dist/esm/utils/constants.js.map +1 -1
- package/dist/generated/quetzal-translations.d.mts +2 -2
- package/dist/generated/quetzal-translations.d.ts +2 -2
- package/dist/lib/stack-app.js +2 -2
- package/dist/lib/stack-app.js.map +1 -1
- package/dist/utils/constants.js.map +1 -1
- package/package.json +5 -8
package/dist/lib/stack-app.js
CHANGED
|
@@ -64,7 +64,7 @@ var import_url = require("../utils/url");
|
|
|
64
64
|
var import_auth = require("./auth");
|
|
65
65
|
var import_cookie = require("./cookie");
|
|
66
66
|
var NextNavigation = (0, import_compile_time.scrambleDuringCompileTime)(NextNavigationUnscrambled);
|
|
67
|
-
var clientVersion = "js @stackframe/stack@2.7.
|
|
67
|
+
var clientVersion = "js @stackframe/stack@2.7.1";
|
|
68
68
|
function getUrls(partial) {
|
|
69
69
|
const handler = partial.handler ?? "/handler";
|
|
70
70
|
const home = partial.home ?? "/";
|
|
@@ -2164,7 +2164,7 @@ var _StackAdminAppImpl = class extends _StackServerAppImpl {
|
|
|
2164
2164
|
const response = await this._interface.sendTestEmail({
|
|
2165
2165
|
recipient_email: options.recipientEmail,
|
|
2166
2166
|
email_config: {
|
|
2167
|
-
...options.emailConfig,
|
|
2167
|
+
...(0, import_objects.pick)(options.emailConfig, ["host", "port", "username", "password"]),
|
|
2168
2168
|
sender_email: options.emailConfig.senderEmail,
|
|
2169
2169
|
sender_name: options.emailConfig.senderName
|
|
2170
2170
|
}
|