@stacksjs/ts-cloud 0.7.64 → 0.7.65

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 (52) hide show
  1. package/dist/bin/cli.js +4 -4
  2. package/dist/{chunk-3c6pp063.js → chunk-267f6qd0.js} +6 -2
  3. package/dist/deploy/index.js +1 -1
  4. package/dist/index.js +1 -1
  5. package/dist/security/pre-deploy-scanner.test.d.ts +1 -0
  6. package/dist/ui/access-denied.html +2 -2
  7. package/dist/ui/account/automation.html +3 -3
  8. package/dist/ui/applications/compose.html +3 -3
  9. package/dist/ui/data/backups.html +4 -4
  10. package/dist/ui/data/services.html +4 -4
  11. package/dist/ui/data/volumes.html +4 -4
  12. package/dist/ui/index.html +4 -4
  13. package/dist/ui/integrations.html +2 -2
  14. package/dist/ui/operations/alerts.html +4 -4
  15. package/dist/ui/operations/configuration.html +4 -4
  16. package/dist/ui/operations/jobs.html +4 -4
  17. package/dist/ui/operations/maintenance.html +3 -3
  18. package/dist/ui/operations/observability.html +4 -4
  19. package/dist/ui/operations/previews.html +4 -4
  20. package/dist/ui/operations/queue.html +4 -4
  21. package/dist/ui/operations/regions.html +4 -4
  22. package/dist/ui/operations/releases.html +4 -4
  23. package/dist/ui/operations/workloads.html +4 -4
  24. package/dist/ui/security.html +2 -2
  25. package/dist/ui/server/actions.html +4 -4
  26. package/dist/ui/server/activity.html +2 -2
  27. package/dist/ui/server/capacity.html +4 -4
  28. package/dist/ui/server/database.html +4 -4
  29. package/dist/ui/server/deployments.html +4 -4
  30. package/dist/ui/server/diagnostics.html +2 -2
  31. package/dist/ui/server/firewall.html +4 -4
  32. package/dist/ui/server/fleet.html +4 -4
  33. package/dist/ui/server/logs.html +4 -4
  34. package/dist/ui/server/metrics.html +4 -4
  35. package/dist/ui/server/services.html +2 -2
  36. package/dist/ui/server/sites.html +3 -3
  37. package/dist/ui/server/ssh-keys.html +4 -4
  38. package/dist/ui/server/team.html +3 -3
  39. package/dist/ui/server/terminal.html +2 -2
  40. package/dist/ui/serverless/alarms.html +4 -4
  41. package/dist/ui/serverless/assets.html +2 -2
  42. package/dist/ui/serverless/cost.html +2 -2
  43. package/dist/ui/serverless/data.html +4 -4
  44. package/dist/ui/serverless/firewall.html +2 -2
  45. package/dist/ui/serverless/functions.html +3 -3
  46. package/dist/ui/serverless/logs.html +4 -4
  47. package/dist/ui/serverless/metrics.html +2 -2
  48. package/dist/ui/serverless/queues.html +3 -3
  49. package/dist/ui/serverless/secrets.html +4 -4
  50. package/dist/ui/serverless/traces.html +4 -4
  51. package/dist/ui/serverless.html +4 -4
  52. package/package.json +3 -3
@@ -36946,7 +36946,7 @@ var SECRET_PATTERNS = [
36946
36946
  },
36947
36947
  {
36948
36948
  name: "AWS Secret Access Key",
36949
- pattern: /(?:aws_secret_access_key|aws_secret_key|secret_access_key|secretAccessKey)\s*[=:]\s*['"]?([A-Za-z0-9/+=]{40})['"]?/gi,
36949
+ pattern: /(?:aws_secret_access_key|aws_secret_key|secret_access_key|secretAccessKey)['"]?\s*[=:]\s*['"]?([A-Za-z0-9/+=]{40})['"]?/gi,
36950
36950
  severity: "critical",
36951
36951
  description: "AWS Secret Access Key detected"
36952
36952
  },
@@ -37289,7 +37289,11 @@ class PreDeployScanner {
37289
37289
  if (this.isLikelyPlaceholder(match[0], contextLine)) {
37290
37290
  continue;
37291
37291
  }
37292
- if (this.isLowEntropy(match[1] || match[0])) {
37292
+ const candidate2 = match[1] || match[0];
37293
+ if (pattern.name === "AWS Secret Key (Generic)" && /^[a-f0-9]{40}$/i.test(candidate2)) {
37294
+ continue;
37295
+ }
37296
+ if (this.isLowEntropy(candidate2)) {
37293
37297
  continue;
37294
37298
  }
37295
37299
  findings.push({
@@ -32,7 +32,7 @@ import {
32
32
  synchronizeDashboardUsers,
33
33
  trackDashboardOperation,
34
34
  verifyStaticApiOrigin
35
- } from "../chunk-3c6pp063.js";
35
+ } from "../chunk-267f6qd0.js";
36
36
  import {
37
37
  deleteStaticSite,
38
38
  deployStaticSite,
package/dist/index.js CHANGED
@@ -285,7 +285,7 @@ import {
285
285
  volumeCapabilities,
286
286
  webhookEndpoint,
287
287
  zeroCapacity
288
- } from "./chunk-3c6pp063.js";
288
+ } from "./chunk-267f6qd0.js";
289
289
  import {
290
290
  deleteStaticSite,
291
291
  deployStaticSite,
@@ -0,0 +1 @@
1
+ export {};