create-bw-app 0.24.5 → 0.24.6
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
package/src/constants.mjs
CHANGED
|
@@ -175,14 +175,14 @@ export const PLATFORM_STARTER_FILES = [
|
|
|
175
175
|
];
|
|
176
176
|
|
|
177
177
|
export const APP_DEPENDENCY_DEFAULTS = {
|
|
178
|
-
"@brightweblabs/app-shell": "^0.
|
|
178
|
+
"@brightweblabs/app-shell": "^0.12.0",
|
|
179
179
|
"@brightweblabs/core-auth": "^0.10.3",
|
|
180
180
|
"@brightweblabs/infra": "^0.7.0",
|
|
181
|
-
"@brightweblabs/module-admin": "^0.8.
|
|
182
|
-
"@brightweblabs/module-crm": "^0.15.
|
|
183
|
-
"@brightweblabs/module-marketing": "^0.4.
|
|
184
|
-
"@brightweblabs/module-orgs": "^0.4.
|
|
185
|
-
"@brightweblabs/module-projects": "^0.
|
|
181
|
+
"@brightweblabs/module-admin": "^0.8.11",
|
|
182
|
+
"@brightweblabs/module-crm": "^0.15.7",
|
|
183
|
+
"@brightweblabs/module-marketing": "^0.4.6",
|
|
184
|
+
"@brightweblabs/module-orgs": "^0.4.6",
|
|
185
|
+
"@brightweblabs/module-projects": "^0.15.0",
|
|
186
186
|
"@brightweblabs/theme": "^0.7.4",
|
|
187
187
|
"@brightweblabs/ui": "^1.4.7",
|
|
188
188
|
"geist": "1.7.2",
|
|
@@ -11,7 +11,13 @@ async function getJson(path: string, signal?: AbortSignal) {
|
|
|
11
11
|
const dashboardClient: DashboardDataClient = {
|
|
12
12
|
getProjects: (options) => getJson("/api/dashboard/projects", options?.signal),
|
|
13
13
|
getCrm: (options) => getJson("/api/dashboard/crm", options?.signal),
|
|
14
|
-
getTasks: (options) =>
|
|
14
|
+
getTasks: (options) => {
|
|
15
|
+
const params = new URLSearchParams();
|
|
16
|
+
if (options?.page) params.set("page", String(options.page));
|
|
17
|
+
if (options?.pageSize) params.set("pageSize", String(options.pageSize));
|
|
18
|
+
const query = params.size ? `?${params.toString()}` : "";
|
|
19
|
+
return getJson(`/api/dashboard/tasks${query}`, options?.signal);
|
|
20
|
+
},
|
|
15
21
|
};
|
|
16
22
|
|
|
17
23
|
export function DashboardLiveMount() {
|