@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 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 [`vel`](https://github.com/vellum-ai/vellum-assistant-platform/tree/main/vel) CLI. You typically don't need to install it directly.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/cli",
3
- "version": "0.8.12-dev.202606161639.6a7dc7a",
3
+ "version": "0.8.12-dev.202606162008.e73dbc9",
4
4
  "description": "CLI tools for vellum-assistant",
5
5
  "type": "module",
6
6
  "exports": {
@@ -84,10 +84,10 @@ describe("buildAuthorizeUrl", () => {
84
84
  });
85
85
 
86
86
  test("login hint is forwarded", () => {
87
- // generic-examples:ignore-next-line reason: test fixture for URL encoding, not a real email
88
- const url = new URL(buildAuthorizeUrl({ ...base, loginHint: "a@b.co" }));
89
- // generic-examples:ignore-next-line — reason: test fixture for URL encoding, not a real email
90
- expect(url.searchParams.get("login_hint")).toBe("a@b.co");
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);