@shipfox/client-shell 1.0.0 → 2.0.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@shipfox/client-shell",
3
3
  "license": "MIT",
4
- "version": "1.0.0",
4
+ "version": "2.0.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/ShipfoxHQ/shipfox.git",
@@ -37,11 +37,11 @@
37
37
  "@tanstack/router-core": "^1.171.13",
38
38
  "tsx": "^4.22.4",
39
39
  "framer-motion": "^12.23.24",
40
- "@shipfox/api-workspaces-dto": "5.0.0",
40
+ "@shipfox/api-auth-dto": "6.0.0",
41
41
  "@shipfox/client-api": "1.0.0",
42
- "@shipfox/client-config": "1.0.0",
43
- "@shipfox/api-auth-dto": "5.0.0",
44
- "@shipfox/react-ui": "0.3.2"
42
+ "@shipfox/api-workspaces-dto": "6.0.0",
43
+ "@shipfox/client-config": "2.0.0",
44
+ "@shipfox/react-ui": "0.3.3"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "@storybook/react": "^10.4.6",
@@ -73,11 +73,11 @@
73
73
  "vite": "^8.0.3",
74
74
  "zod": "^4.4.3",
75
75
  "@shipfox/biome": "1.8.2",
76
+ "@shipfox/client-test-setup": "0.0.3",
76
77
  "@shipfox/swc": "1.2.6",
77
- "@shipfox/typescript": "1.1.7",
78
78
  "@shipfox/ts-config": "1.3.8",
79
- "@shipfox/vitest": "1.2.3",
80
- "@shipfox/client-test-setup": "0.0.3"
79
+ "@shipfox/typescript": "1.1.7",
80
+ "@shipfox/vitest": "1.2.3"
81
81
  },
82
82
  "scripts": {
83
83
  "build": "shipfox-swc",
@@ -350,22 +350,6 @@ async function validateGeneratedModule(root) {
350
350
  const generated = await readFile(join(root, 'src/shipfox-app.gen.ts'), 'utf8');
351
351
  const manifest = JSON.parse(await readFile(join(root, 'package.json'), 'utf8'));
352
352
  const declaredDependencies = new Set(Object.keys(manifest.dependencies));
353
- const expectedImports = [
354
- '@shipfox/client-auth/routes/index',
355
- '@shipfox/client-invitations/routes/accept',
356
- '@shipfox/client-integrations/routes/github',
357
- '@shipfox/client-projects/routes/home',
358
- '@shipfox/client-workflows/routes/runs',
359
- '@shipfox/client-agent/routes/model-provider',
360
- '@shipfox/client-workspace-settings/routes/members',
361
- './features/login-override',
362
- './features/external-settings',
363
- ];
364
- for (const expected of expectedImports) {
365
- if (!generated.includes(expected)) {
366
- throw new Error(`Generated default composition did not include ${JSON.stringify(expected)}.`);
367
- }
368
- }
369
353
 
370
354
  for (const match of generated.matchAll(/\bfrom\s+['"]([^'"]+)['"]/gu)) {
371
355
  const specifier = match[1];