commonswarm 0.1.20 → 0.1.21

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/cswarm.cjs +4 -4
  2. package/package.json +1 -1
package/cswarm.cjs CHANGED
@@ -22105,7 +22105,7 @@ registerUpcaster("TaskCreated", 0, (p) => ({ task_id: p.id, slug: p.name }));
22105
22105
  // src/protocol/workspace-commands.ts
22106
22106
  var INVITATION_MAX_TTL_MS = 7 * 24 * 60 * 60 * 1e3;
22107
22107
  var AGENT_TOKEN_DEFAULT_TTL_MS = 60 * 60 * 1e3;
22108
- var AGENT_TOKEN_MAX_TTL_MS = 24 * 60 * 60 * 1e3;
22108
+ var AGENT_TOKEN_MAX_TTL_MS = 30 * 24 * 60 * 60 * 1e3;
22109
22109
  var RENEWAL_HORIZON_DEFAULT_MS = 30 * 24 * 60 * 60 * 1e3;
22110
22110
  var RENEWAL_HORIZON_MAX_MS = 90 * 24 * 60 * 60 * 1e3;
22111
22111
 
@@ -36682,8 +36682,8 @@ var ACCEPTED_AGENT_CREDENTIAL_MESSAGES = [
36682
36682
  AGENT_CREDENTIAL_MESSAGE_D088
36683
36683
  ];
36684
36684
  function packageVersion() {
36685
- if ("0.1.20".length > 0) {
36686
- return "0.1.20";
36685
+ if ("0.1.21".length > 0) {
36686
+ return "0.1.21";
36687
36687
  }
36688
36688
  try {
36689
36689
  const value = JSON.parse(
@@ -37794,7 +37794,7 @@ async function runToken(args) {
37794
37794
  ...ttl === void 0 ? {} : {
37795
37795
  ttl_ms: integer2(args, "ttl-ms", {
37796
37796
  minimum: 1,
37797
- maximum: 864e5
37797
+ maximum: 2592e6
37798
37798
  })
37799
37799
  }
37800
37800
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commonswarm",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "description": "CommonSwarm CLI — coordination for teams where people and AI agents work side by side.",
5
5
  "bin": {
6
6
  "cswarm": "cswarm.cjs"