@hachej/boring-core 0.1.39 → 0.1.41
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/app/front/index.js
CHANGED
package/dist/app/server/index.js
CHANGED
|
@@ -1625,7 +1625,7 @@ function createPostSignupHook(deps) {
|
|
|
1625
1625
|
}
|
|
1626
1626
|
}
|
|
1627
1627
|
if (!inviteAccepted) {
|
|
1628
|
-
await workspaceStore.create(user.id, "
|
|
1628
|
+
await workspaceStore.create(user.id, "Default workspace", config.appId, { isDefault: true });
|
|
1629
1629
|
}
|
|
1630
1630
|
if (!inviteAccepted && config.features.sendWelcomeEmail !== false && transport) {
|
|
1631
1631
|
const getStartedUrl = `${config.auth.url}/`;
|
|
@@ -1951,7 +1951,7 @@ var updateWorkspaceBody = z3.object({
|
|
|
1951
1951
|
}).strict();
|
|
1952
1952
|
|
|
1953
1953
|
// src/server/routes/workspaces.ts
|
|
1954
|
-
var DEFAULT_WORKSPACE_NAME = "
|
|
1954
|
+
var DEFAULT_WORKSPACE_NAME = "Default workspace";
|
|
1955
1955
|
var workspaceRoutesPlugin = async (app) => {
|
|
1956
1956
|
const store = app.workspaceStore;
|
|
1957
1957
|
const provisioner = app.provisioner;
|
|
@@ -2431,7 +2431,7 @@ function WorkspaceSwitcher({
|
|
|
2431
2431
|
setName(event.target.value);
|
|
2432
2432
|
if (serverError) setServerError(null);
|
|
2433
2433
|
},
|
|
2434
|
-
placeholder: "
|
|
2434
|
+
placeholder: "Default workspace",
|
|
2435
2435
|
"aria-invalid": nameError ? "true" : "false",
|
|
2436
2436
|
autoFocus: true
|
|
2437
2437
|
}
|
package/dist/front/index.js
CHANGED
package/dist/server/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hachej/boring-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.41",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Foundation package for boring-ui-v2 apps: DB, auth, config, HTTP app factory, and frontend app shell.",
|
|
@@ -79,9 +79,9 @@
|
|
|
79
79
|
"react-router-dom": "^7.14.2",
|
|
80
80
|
"smol-toml": "^1.6.1",
|
|
81
81
|
"zod": "^3.25.76",
|
|
82
|
-
"@hachej/boring-
|
|
83
|
-
"@hachej/boring-workspace": "0.1.
|
|
84
|
-
"@hachej/boring-
|
|
82
|
+
"@hachej/boring-agent": "0.1.41",
|
|
83
|
+
"@hachej/boring-workspace": "0.1.41",
|
|
84
|
+
"@hachej/boring-ui-kit": "0.1.41"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
87
|
"@testing-library/jest-dom": "^6.9.1",
|