@vellumai/cli 0.8.12-dev.202606161639.6a7dc7a → 0.8.12-dev.202606162008.e73dbc9
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 -1
- package/package.json +1 -1
- package/src/__tests__/workos-pkce.test.ts +4 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ CLI tools for provisioning and managing Vellum assistant instances.
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
This package is used internally by the
|
|
7
|
+
This package is used internally by the `vel` CLI. You typically don't need to install it directly.
|
|
8
8
|
|
|
9
9
|
To run it standalone with [Bun](https://bun.sh):
|
|
10
10
|
|
package/package.json
CHANGED
|
@@ -84,10 +84,10 @@ describe("buildAuthorizeUrl", () => {
|
|
|
84
84
|
});
|
|
85
85
|
|
|
86
86
|
test("login hint is forwarded", () => {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
expect(url.searchParams.get("login_hint")).toBe("
|
|
87
|
+
const url = new URL(
|
|
88
|
+
buildAuthorizeUrl({ ...base, loginHint: "user@example.com" }),
|
|
89
|
+
);
|
|
90
|
+
expect(url.searchParams.get("login_hint")).toBe("user@example.com");
|
|
91
91
|
|
|
92
92
|
const noHint = new URL(buildAuthorizeUrl(base));
|
|
93
93
|
expect(noHint.searchParams.has("login_hint")).toBe(false);
|