commonswarm 0.1.18 → 0.1.19
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/cswarm.cjs +4 -4
- 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 =
|
|
22108
|
+
var AGENT_TOKEN_MAX_TTL_MS = 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
|
|
|
@@ -36337,8 +36337,8 @@ var ACCEPTED_AGENT_CREDENTIAL_MESSAGES = [
|
|
|
36337
36337
|
AGENT_CREDENTIAL_MESSAGE_D088
|
|
36338
36338
|
];
|
|
36339
36339
|
function packageVersion() {
|
|
36340
|
-
if ("0.1.
|
|
36341
|
-
return "0.1.
|
|
36340
|
+
if ("0.1.19".length > 0) {
|
|
36341
|
+
return "0.1.19";
|
|
36342
36342
|
}
|
|
36343
36343
|
try {
|
|
36344
36344
|
const value = JSON.parse(
|
|
@@ -37442,7 +37442,7 @@ async function runToken(args) {
|
|
|
37442
37442
|
...ttl === void 0 ? {} : {
|
|
37443
37443
|
ttl_ms: integer2(args, "ttl-ms", {
|
|
37444
37444
|
minimum: 1,
|
|
37445
|
-
maximum:
|
|
37445
|
+
maximum: 864e5
|
|
37446
37446
|
})
|
|
37447
37447
|
}
|
|
37448
37448
|
}
|