From de51a73b7c00b5a763acddf284fe0b45f466bfae Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Sun, 21 Nov 2021 20:03:15 -0500 Subject: [PATCH] fix: correct typo in `enum` for `App` `key` permission enum --- payload-schemas/api.github.com/common/app.schema.json | 2 +- payload-types/schema.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/payload-schemas/api.github.com/common/app.schema.json b/payload-schemas/api.github.com/common/app.schema.json index 009a505d0..55b723ce3 100644 --- a/payload-schemas/api.github.com/common/app.schema.json +++ b/payload-schemas/api.github.com/common/app.schema.json @@ -45,7 +45,7 @@ "emails": { "type": "string", "enum": ["read", "write"] }, "environments": { "type": "string", "enum": ["read", "write"] }, "issues": { "type": "string", "enum": ["read", "write"] }, - "keys": { "type": "string", "enum": ["read, write"] }, + "keys": { "type": "string", "enum": ["read", "write"] }, "members": { "type": "string", "enum": ["read", "write"] }, "metadata": { "type": "string", "enum": ["read", "write"] }, "organization_administration": { diff --git a/payload-types/schema.d.ts b/payload-types/schema.d.ts index 22b4157b4..e00deb6c9 100644 --- a/payload-types/schema.d.ts +++ b/payload-types/schema.d.ts @@ -835,7 +835,7 @@ export interface App { emails?: "read" | "write"; environments?: "read" | "write"; issues?: "read" | "write"; - keys?: "read, write"; + keys?: "read" | "write"; members?: "read" | "write"; metadata?: "read" | "write"; organization_administration?: "read" | "write";