@code-pushup/utils 0.8.25 → 0.9.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.
Files changed (2) hide show
  1. package/index.js +2 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -457,7 +457,8 @@ var uploadConfigSchema = z10.object({
457
457
  description: "API key with write access to portal (use `process.env` for security)"
458
458
  }),
459
459
  organization: slugSchema("Organization slug from Code PushUp portal"),
460
- project: slugSchema("Project slug from Code PushUp portal")
460
+ project: slugSchema("Project slug from Code PushUp portal"),
461
+ timeout: z10.number({ description: "Request timeout in minutes (default is 5)" }).positive().int().optional()
461
462
  });
462
463
 
463
464
  // packages/models/src/lib/core-config.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-pushup/utils",
3
- "version": "0.8.25",
3
+ "version": "0.9.0",
4
4
  "dependencies": {
5
5
  "@code-pushup/models": "*",
6
6
  "bundle-require": "^4.0.1",