ft-scout 5.0.0 → 5.0.2

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.
Files changed (42) hide show
  1. package/.firebase/hosting.d2Vi.cache +4 -4
  2. package/bin/src/commands/agent.d.ts.map +1 -1
  3. package/bin/src/commands/agent.js +29 -2
  4. package/bin/src/commands/agent.js.map +1 -1
  5. package/bin/src/commands/audit.d.ts.map +1 -1
  6. package/bin/src/commands/audit.js +29 -10
  7. package/bin/src/commands/audit.js.map +1 -1
  8. package/bin/src/commands/authCommand.d.ts.map +1 -1
  9. package/bin/src/commands/authCommand.js +20 -8
  10. package/bin/src/commands/authCommand.js.map +1 -1
  11. package/bin/src/commands/dashboard.d.ts.map +1 -1
  12. package/bin/src/commands/dashboard.js +32 -18
  13. package/bin/src/commands/dashboard.js.map +1 -1
  14. package/bin/src/commands/login.d.ts.map +1 -1
  15. package/bin/src/commands/login.js +108 -10
  16. package/bin/src/commands/login.js.map +1 -1
  17. package/bin/src/commands/risky.d.ts.map +1 -1
  18. package/bin/src/commands/risky.js +32 -13
  19. package/bin/src/commands/risky.js.map +1 -1
  20. package/bin/src/commands/signup.d.ts.map +1 -1
  21. package/bin/src/commands/signup.js +29 -11
  22. package/bin/src/commands/signup.js.map +1 -1
  23. package/bin/src/discovery/messages.js +1 -1
  24. package/bin/src/discovery/messages.js.map +1 -1
  25. package/bin/src/index.js +8 -5
  26. package/bin/src/index.js.map +1 -1
  27. package/bin/src/server/server.d.ts.map +1 -0
  28. package/bin/src/server/server.js +207 -0
  29. package/bin/src/server/server.js.map +1 -0
  30. package/bin/src/utils/auth.d.ts.map +1 -1
  31. package/bin/src/utils/auth.js +70 -0
  32. package/bin/src/utils/auth.js.map +1 -1
  33. package/bin/src/utils/branding.js +1 -1
  34. package/bin/src/utils/holoseneAuth.d.ts.map +1 -0
  35. package/bin/src/utils/holoseneAuth.js +179 -0
  36. package/bin/src/utils/holoseneAuth.js.map +1 -0
  37. package/firebase-debug.log +31 -0
  38. package/package.json +2 -2
  39. package/web/ScoutFavicon.png +0 -0
  40. package/web/app.js +563 -615
  41. package/web/styles.css +957 -512
  42. package/web/favicon.svg +0 -39
package/web/favicon.svg DELETED
@@ -1,39 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
2
- <defs>
3
- <!-- Vibrant Tech Gradients -->
4
- <linearGradient id="ft-grad-main" x1="0%" y1="0%" x2="100%" y2="100%">
5
- <stop offset="0%" stop-color="#00F5FF" />
6
- <stop offset="50%" stop-color="#0066FF" />
7
- <stop offset="100%" stop-color="#7000FF" />
8
- </linearGradient>
9
- <linearGradient id="ft-grad-accent" x1="0%" y1="100%" x2="100%" y2="0%">
10
- <stop offset="0%" stop-color="#00FF87" />
11
- <stop offset="100%" stop-color="#60EFFF" />
12
- </linearGradient>
13
- <filter id="beacon-glow" x="-40%" y="-40%" width="180%" height="180%">
14
- <feGaussianBlur stdDeviation="3" result="blur" />
15
- <feMerge>
16
- <feMergeNode in="blur" />
17
- <feMergeNode in="SourceGraphic" />
18
- </feMerge>
19
- </filter>
20
- </defs>
21
-
22
- <!-- Deep Dark Rounded Tile -->
23
- <rect width="64" height="64" rx="16" fill="#060913" />
24
- <rect x="1.5" y="1.5" width="61" height="61" rx="14.5" fill="none" stroke="#1e293b" stroke-width="1.5" />
25
-
26
- <!-- Outer Glowing Radar Arc -->
27
- <path d="M 12 28 A 22 22 0 0 1 52 28" fill="none" stroke="url(#ft-grad-main)" stroke-width="2" opacity="0.35" stroke-linecap="round" />
28
-
29
- <!-- Bold Monogram "FT" Emblem -->
30
- <!-- "F" Bar -->
31
- <path d="M 14 16 L 38 16 L 38 23 L 23 23 L 23 30 L 34 30 L 34 37 L 23 37 L 23 48 L 14 48 Z" fill="url(#ft-grad-main)" />
32
-
33
- <!-- "T" Crossbar & Stem -->
34
- <path d="M 32 16 L 50 16 L 50 23 L 45 23 L 45 48 L 36 48 L 36 23 L 32 23 Z" fill="url(#ft-grad-accent)" />
35
-
36
- <!-- Scout Beacon Spark Node -->
37
- <circle cx="50" cy="16" r="3.5" fill="#00FF87" filter="url(#beacon-glow)" />
38
- <circle cx="50" cy="16" r="1.5" fill="#FFFFFF" />
39
- </svg>