@zixt/host 0.0.67 → 0.0.68
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/dist/index.js +8 -4
- 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.
|
|
34
|
+
version: "0.0.68",
|
|
35
35
|
type: "module",
|
|
36
36
|
exports: {
|
|
37
37
|
".": "./src/client.ts",
|
|
@@ -19715,7 +19715,7 @@ var GithubAppRemovalStatus = external_exports.enum([
|
|
|
19715
19715
|
var GithubInstallationProjection = external_exports.object({
|
|
19716
19716
|
id: GithubInstallationId,
|
|
19717
19717
|
accountLogin: external_exports.string().min(1).max(100),
|
|
19718
|
-
accountType: external_exports.
|
|
19718
|
+
accountType: external_exports.enum(["Organization", "User"]),
|
|
19719
19719
|
botLogin: external_exports.string().min(1).max(200),
|
|
19720
19720
|
status: external_exports.enum(["connected", "suspended", "needs_attention", "disconnected"]),
|
|
19721
19721
|
appRemovalStatus: GithubAppRemovalStatus,
|
|
@@ -19731,6 +19731,7 @@ var GithubInstallationProjection = external_exports.object({
|
|
|
19731
19731
|
var GithubAppRemovalObligationProjection = external_exports.object({
|
|
19732
19732
|
installationId: GithubInstallationId,
|
|
19733
19733
|
accountLogin: external_exports.string().min(1).max(100),
|
|
19734
|
+
accountType: external_exports.enum(["Organization", "User"]),
|
|
19734
19735
|
appRemovalStatus: external_exports.enum(["pending", "processing", "removal_failed"]),
|
|
19735
19736
|
updatedAt: IsoDate
|
|
19736
19737
|
}).strict();
|
|
@@ -19840,9 +19841,12 @@ var HttpOrigin2 = external_exports.url().max(2e3).refine((value) => {
|
|
|
19840
19841
|
const parsed = new URL(value);
|
|
19841
19842
|
return (parsed.protocol === "https:" || parsed.protocol === "http:" && (parsed.hostname === "localhost" || parsed.hostname === "127.0.0.1")) && parsed.origin === value && parsed.username === "" && parsed.password === "";
|
|
19842
19843
|
}, "must be an exact credential-free HTTPS origin or local loopback HTTP origin");
|
|
19843
|
-
var GithubOrganizationLogin = external_exports.string().trim().min(1).max(39).regex(/^[A-Za-z0-9](?:-?[A-Za-z0-9])*$/);
|
|
19844
19844
|
var StartGithubConnectionRequest = external_exports.object({
|
|
19845
|
-
|
|
19845
|
+
/**
|
|
19846
|
+
* Reopen GitHub's account picker instead of the account already connected.
|
|
19847
|
+
* Configuring the known account is one click; changing it is deliberate.
|
|
19848
|
+
*/
|
|
19849
|
+
switchAccount: external_exports.boolean().optional(),
|
|
19846
19850
|
returnPath: SafeReturnPath2.optional()
|
|
19847
19851
|
}).strict();
|
|
19848
19852
|
var StartGithubTeammateOAuthRequest = external_exports.object({
|