@cosmicdrift/kumiko-bundled-features 0.168.0 → 0.170.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-bundled-features",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.170.0",
|
|
4
4
|
"description": "Built-in features — tenant, user, auth, delivery. The stuff you'd rewrite anyway, already typed.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -119,16 +119,17 @@
|
|
|
119
119
|
"./step-dispatcher": "./src/step-dispatcher/index.ts"
|
|
120
120
|
},
|
|
121
121
|
"dependencies": {
|
|
122
|
-
"@cosmicdrift/kumiko-dispatcher-live": "0.
|
|
123
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
124
|
-
"@cosmicdrift/kumiko-headless": "0.
|
|
125
|
-
"@cosmicdrift/kumiko-renderer": "0.
|
|
126
|
-
"@cosmicdrift/kumiko-renderer-web": "0.
|
|
127
|
-
"@cosmicdrift/kumiko-types": "0.
|
|
122
|
+
"@cosmicdrift/kumiko-dispatcher-live": "0.170.0",
|
|
123
|
+
"@cosmicdrift/kumiko-framework": "0.170.0",
|
|
124
|
+
"@cosmicdrift/kumiko-headless": "0.170.0",
|
|
125
|
+
"@cosmicdrift/kumiko-renderer": "0.170.0",
|
|
126
|
+
"@cosmicdrift/kumiko-renderer-web": "0.170.0",
|
|
127
|
+
"@cosmicdrift/kumiko-types": "0.170.0",
|
|
128
128
|
"@mollie/api-client": "^4.5.0",
|
|
129
129
|
"imapflow": "^1.3.3",
|
|
130
130
|
"mailparser": "^3.9.8",
|
|
131
131
|
"@node-rs/argon2": "^2.0.2",
|
|
132
|
+
"@types/mailparser": "^3.4.6",
|
|
132
133
|
"@types/nodemailer": "^8.0.0",
|
|
133
134
|
"clsx": "^2.1.1",
|
|
134
135
|
"lucide-react": "^1.14.0",
|
|
@@ -150,7 +151,6 @@
|
|
|
150
151
|
],
|
|
151
152
|
"devDependencies": {
|
|
152
153
|
"@testing-library/user-event": "^14.6.1",
|
|
153
|
-
"@types/mailparser": "^3.4.6",
|
|
154
154
|
"@types/qrcode": "^1.5.5"
|
|
155
155
|
}
|
|
156
156
|
}
|
|
@@ -190,6 +190,9 @@ export type SeedAdminOptions = {
|
|
|
190
190
|
* membership-Rollen. Typischer use-case: `["SystemAdmin"]` für
|
|
191
191
|
* einen Plattform-Operator. Default: leer. */
|
|
192
192
|
readonly globalRoles?: readonly string[];
|
|
193
|
+
/** Initial-emailVerified-Flag — Default false (unverified),
|
|
194
|
+
* gleicher Mechanismus wie seedUserWithPassword.emailVerified. */
|
|
195
|
+
readonly emailVerified?: boolean;
|
|
193
196
|
readonly by?: SessionUser;
|
|
194
197
|
};
|
|
195
198
|
|
|
@@ -213,6 +216,7 @@ export async function seedAdmin(
|
|
|
213
216
|
password: options.password,
|
|
214
217
|
displayName: options.displayName,
|
|
215
218
|
...(options.globalRoles !== undefined && { roles: options.globalRoles }),
|
|
219
|
+
...(options.emailVerified !== undefined && { emailVerified: options.emailVerified }),
|
|
216
220
|
by,
|
|
217
221
|
});
|
|
218
222
|
|