@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/CHANGELOG.md
CHANGED
|
@@ -10,7 +10,7 @@ import { scrambleDuringCompileTime } from "@stackframe/stack-shared/dist/utils/c
|
|
|
10
10
|
import { isBrowserLike } from "@stackframe/stack-shared/dist/utils/env";
|
|
11
11
|
import { StackAssertionError, concatStacktraces, throwErr } from "@stackframe/stack-shared/dist/utils/errors";
|
|
12
12
|
import { DependenciesMap } from "@stackframe/stack-shared/dist/utils/maps";
|
|
13
|
-
import { deepPlainEquals, filterUndefined, omit } from "@stackframe/stack-shared/dist/utils/objects";
|
|
13
|
+
import { deepPlainEquals, filterUndefined, omit, pick } from "@stackframe/stack-shared/dist/utils/objects";
|
|
14
14
|
import { neverResolve, runAsynchronously, wait } from "@stackframe/stack-shared/dist/utils/promises";
|
|
15
15
|
import { suspend, suspendIfSsr } from "@stackframe/stack-shared/dist/utils/react";
|
|
16
16
|
import { Result } from "@stackframe/stack-shared/dist/utils/results";
|
|
@@ -25,7 +25,7 @@ import { constructRedirectUrl } from "../utils/url";
|
|
|
25
25
|
import { addNewOAuthProviderOrScope, callOAuthCallback, signInWithOAuth } from "./auth";
|
|
26
26
|
import { createBrowserCookieHelper, createCookieHelper, deleteCookieClient, getCookieClient, setOrDeleteCookie, setOrDeleteCookieClient } from "./cookie";
|
|
27
27
|
var NextNavigation = scrambleDuringCompileTime(NextNavigationUnscrambled);
|
|
28
|
-
var clientVersion = "js @stackframe/stack@2.7.
|
|
28
|
+
var clientVersion = "js @stackframe/stack@2.7.1";
|
|
29
29
|
function getUrls(partial) {
|
|
30
30
|
const handler = partial.handler ?? "/handler";
|
|
31
31
|
const home = partial.home ?? "/";
|
|
@@ -2125,7 +2125,7 @@ var _StackAdminAppImpl = class extends _StackServerAppImpl {
|
|
|
2125
2125
|
const response = await this._interface.sendTestEmail({
|
|
2126
2126
|
recipient_email: options.recipientEmail,
|
|
2127
2127
|
email_config: {
|
|
2128
|
-
...options.emailConfig,
|
|
2128
|
+
...pick(options.emailConfig, ["host", "port", "username", "password"]),
|
|
2129
2129
|
sender_email: options.emailConfig.senderEmail,
|
|
2130
2130
|
sender_name: options.emailConfig.senderName
|
|
2131
2131
|
}
|