@stackframe/stack 2.3.2 → 2.3.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/dist/lib/stack-app.d.ts +1 -0
- package/dist/lib/stack-app.js +1 -0
- package/package.json +2 -2
package/dist/lib/stack-app.d.ts
CHANGED
|
@@ -108,6 +108,7 @@ export type Project = {
|
|
|
108
108
|
readonly id: string;
|
|
109
109
|
readonly allowLocalhost: boolean;
|
|
110
110
|
readonly credentialEnabled: boolean;
|
|
111
|
+
readonly magicLinkEnabled: boolean;
|
|
111
112
|
readonly oauthProviders: OAuthProviderConfig[];
|
|
112
113
|
readonly emailConfig?: EmailConfig;
|
|
113
114
|
readonly domains: DomainConfig[];
|
package/dist/lib/stack-app.js
CHANGED
|
@@ -323,6 +323,7 @@ class _StackClientAppImpl {
|
|
|
323
323
|
evaluatedConfig: {
|
|
324
324
|
id: data.evaluatedConfig.id,
|
|
325
325
|
credentialEnabled: data.evaluatedConfig.credentialEnabled,
|
|
326
|
+
magicLinkEnabled: data.evaluatedConfig.magicLinkEnabled,
|
|
326
327
|
allowLocalhost: data.evaluatedConfig.allowLocalhost,
|
|
327
328
|
oauthProviders: data.evaluatedConfig.oauthProviders,
|
|
328
329
|
emailConfig: data.evaluatedConfig.emailConfig,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackframe/stack",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"tailwindcss-scoped-preflight": "^2.1.0",
|
|
35
35
|
"yup": "^1.4.0",
|
|
36
36
|
"@stackframe/stack-sc": "1.4.1",
|
|
37
|
-
"@stackframe/stack-shared": "2.3.
|
|
37
|
+
"@stackframe/stack-shared": "2.3.2"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@mui/joy": "^5.0.0-beta.30",
|