@zixt/host 0.0.66 → 0.0.67

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -31,7 +31,7 @@ import { homedir } from "node:os";
31
31
  // package.json
32
32
  var package_default = {
33
33
  name: "@zixt/host",
34
- version: "0.0.66",
34
+ version: "0.0.67",
35
35
  type: "module",
36
36
  exports: {
37
37
  ".": "./src/client.ts",
@@ -19840,7 +19840,11 @@ var HttpOrigin2 = external_exports.url().max(2e3).refine((value) => {
19840
19840
  const parsed = new URL(value);
19841
19841
  return (parsed.protocol === "https:" || parsed.protocol === "http:" && (parsed.hostname === "localhost" || parsed.hostname === "127.0.0.1")) && parsed.origin === value && parsed.username === "" && parsed.password === "";
19842
19842
  }, "must be an exact credential-free HTTPS origin or local loopback HTTP origin");
19843
- var StartGithubConnectionRequest = external_exports.object({ returnPath: SafeReturnPath2.optional() }).strict();
19843
+ var GithubOrganizationLogin = external_exports.string().trim().min(1).max(39).regex(/^[A-Za-z0-9](?:-?[A-Za-z0-9])*$/);
19844
+ var StartGithubConnectionRequest = external_exports.object({
19845
+ organizationLogin: GithubOrganizationLogin,
19846
+ returnPath: SafeReturnPath2.optional()
19847
+ }).strict();
19844
19848
  var StartGithubTeammateOAuthRequest = external_exports.object({
19845
19849
  expectedRevision: external_exports.number().int().min(1),
19846
19850
  returnPath: SafeReturnPath2.optional()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zixt/host",
3
- "version": "0.0.66",
3
+ "version": "0.0.67",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/client.ts",