From 9c71d1861a4489b94926dbe2219acabc82ec2807 Mon Sep 17 00:00:00 2001 From: Gregor Martynus Date: Fri, 17 Jan 2020 16:38:23 -0800 Subject: [PATCH] feat: `.repos.listForOrg()`'s `type` parameter can now be set to `"internal"` (GitHub Enterprise Cloud only) --- plugins/rest-api-endpoints/routes.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/plugins/rest-api-endpoints/routes.json b/plugins/rest-api-endpoints/routes.json index 32dc3025..9727ac22 100644 --- a/plugins/rest-api-endpoints/routes.json +++ b/plugins/rest-api-endpoints/routes.json @@ -4866,7 +4866,15 @@ "type": "string" }, "type": { - "enum": ["all", "public", "private", "forks", "sources", "member"], + "enum": [ + "all", + "public", + "private", + "forks", + "sources", + "member", + "internal" + ], "type": "string" } },