@holochain/hc-spin 0.300.2-dev.4 → 0.300.2-dev.5

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.
@@ -13282,7 +13282,8 @@ electron.app.whenReady().then(async () => {
13282
13282
  });
13283
13283
  const appAuthTokenResponse = await adminWs.issueAppAuthenticationToken({
13284
13284
  installed_app_id: CLI_OPTS.appId,
13285
- single_use: false
13285
+ single_use: false,
13286
+ expiry_seconds: 999999
13286
13287
  });
13287
13288
  const appPort = portsInfo[i].app_ports[0];
13288
13289
  const appWs = await AppWebsocket.connect({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holochain/hc-spin",
3
- "version": "0.300.2-dev.4",
3
+ "version": "0.300.2-dev.5",
4
4
  "holochainVersion": "0.3.0-beta-dev.44",
5
5
  "description": "CLI to run Holochain aps during development.",
6
6
  "author": "matthme",
package/src/main/index.ts CHANGED
@@ -341,6 +341,7 @@ app.whenReady().then(async () => {
341
341
  const appAuthTokenResponse = await adminWs.issueAppAuthenticationToken({
342
342
  installed_app_id: CLI_OPTS.appId,
343
343
  single_use: false,
344
+ expiry_seconds: 999999,
344
345
  });
345
346
 
346
347
  const appPort = portsInfo[i].app_ports[0];