@framer/agent 0.0.34 → 0.0.35
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/README.md +1 -5
- package/dist/cli.js +3 -3
- package/dist/start-relay-server.js +2 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
<p>
|
|
2
|
-
<
|
|
3
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://misc.framerstatic.com/framer-local-agents/external-agent-dark.svg">
|
|
4
|
-
<source media="(prefers-color-scheme: light)" srcset="https://misc.framerstatic.com/framer-local-agents/external-agent-light.svg">
|
|
5
|
-
<img alt="Framer Server API" src="https://misc.framerstatic.com/framer-local-agents/external-agent-light.svg" width="264">
|
|
6
|
-
</picture>
|
|
2
|
+
<img alt="Framer External Agents" src="https://misc.framerstatic.com/framer-local-agents/external-agent-title.svg" width="264">
|
|
7
3
|
</p>
|
|
8
4
|
|
|
9
5
|
<img alt="outstretched palm with glassy framer logo floating above it" src="https://misc.framerstatic.com/framer-local-agents/agents.png" />
|
package/dist/cli.js
CHANGED
|
@@ -13,7 +13,7 @@ import net from 'net';
|
|
|
13
13
|
import { fileURLToPath } from 'url';
|
|
14
14
|
import { createTRPCClient, httpLink } from '@trpc/client';
|
|
15
15
|
|
|
16
|
-
/* @framer/ai CLI v0.0.
|
|
16
|
+
/* @framer/ai CLI v0.0.35 */
|
|
17
17
|
var __defProp = Object.defineProperty;
|
|
18
18
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
19
19
|
|
|
@@ -94,7 +94,7 @@ function openUrl(url) {
|
|
|
94
94
|
args = [url];
|
|
95
95
|
} else if (platform === "win32") {
|
|
96
96
|
cmd = "cmd";
|
|
97
|
-
args = ["/c", "start", "", url];
|
|
97
|
+
args = ["/c", "start", "", `"${url}"`];
|
|
98
98
|
} else {
|
|
99
99
|
cmd = "xdg-open";
|
|
100
100
|
args = [url];
|
|
@@ -398,7 +398,7 @@ __name(markTelemetryNoticeShown, "markTelemetryNoticeShown");
|
|
|
398
398
|
// src/version.ts
|
|
399
399
|
var VERSION = (
|
|
400
400
|
// typeof is used to ensure this can be used just via tsx or node etc. without build
|
|
401
|
-
"0.0.
|
|
401
|
+
"0.0.35"
|
|
402
402
|
);
|
|
403
403
|
var trackingEndpoint = "https://events.framer.com/track";
|
|
404
404
|
var inProgressTrackings = /* @__PURE__ */ new Set();
|
|
@@ -15,7 +15,7 @@ import { createRequire } from 'module';
|
|
|
15
15
|
import * as vm from 'vm';
|
|
16
16
|
import isWsl from 'is-wsl';
|
|
17
17
|
|
|
18
|
-
/* @framer/ai relay server v0.0.
|
|
18
|
+
/* @framer/ai relay server v0.0.35 */
|
|
19
19
|
var __defProp = Object.defineProperty;
|
|
20
20
|
var __knownSymbol = (name2, symbol) => (symbol = Symbol[name2]) ? symbol : /* @__PURE__ */ Symbol.for("Symbol." + name2);
|
|
21
21
|
var __typeError = (msg) => {
|
|
@@ -200,7 +200,7 @@ __name(debug, "debug");
|
|
|
200
200
|
// src/version.ts
|
|
201
201
|
var VERSION = (
|
|
202
202
|
// typeof is used to ensure this can be used just via tsx or node etc. without build
|
|
203
|
-
"0.0.
|
|
203
|
+
"0.0.35"
|
|
204
204
|
);
|
|
205
205
|
|
|
206
206
|
// src/relay-client.ts
|