@vellumai/cli 0.8.11-dev.202606122052.009469e → 0.8.11-dev.202606122104.e5b9dd5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/cli",
3
- "version": "0.8.11-dev.202606122052.009469e",
3
+ "version": "0.8.11-dev.202606122104.e5b9dd5",
4
4
  "description": "CLI tools for vellum-assistant",
5
5
  "type": "module",
6
6
  "exports": {
@@ -84,7 +84,9 @@ 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
87
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
88
90
  expect(url.searchParams.get("login_hint")).toBe("a@b.co");
89
91
 
90
92
  const noHint = new URL(buildAuthorizeUrl(base));