@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.
- package/dist/main/index.js +2 -1
- package/package.json +1 -1
- package/src/main/index.ts +1 -0
package/dist/main/index.js
CHANGED
|
@@ -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
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];
|