From 2f893e9ca3bdc5e79eaa549b6517f3b02c8e864a Mon Sep 17 00:00:00 2001 From: Trevor Grieger Date: Wed, 11 Jan 2023 09:53:09 -0500 Subject: [PATCH] Run `yarn build:api-report plugins/scaffolder-backend` Signed-off-by: Trevor Grieger --- plugins/scaffolder-backend/api-report.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/plugins/scaffolder-backend/api-report.md b/plugins/scaffolder-backend/api-report.md index 3e25311ca6..a6f278823f 100644 --- a/plugins/scaffolder-backend/api-report.md +++ b/plugins/scaffolder-backend/api-report.md @@ -214,8 +214,8 @@ export function createGithubRepoCreateAction(options: { requiredApprovingReviewCount?: number | undefined; restrictions?: | { - users: string[] | undefined; - teams: string[] | undefined; + users: string[]; + teams: string[]; apps?: string[] | undefined; } | undefined; @@ -273,9 +273,9 @@ export function createGithubRepoPushAction(options: { requiredApprovingReviewCount?: number | undefined; restrictions?: | { - users: string[] | undefined; - teams: string[] | undefined; - apps?: string[] | undefined; + users: string[]; + teams: string[]; + apps?: string[]; } | undefined; requiredStatusCheckContexts?: string[] | undefined; @@ -283,7 +283,7 @@ export function createGithubRepoPushAction(options: { requiredConversationResolution?: boolean | undefined; sourcePath?: string | undefined; token?: string | undefined; - requireCommitSigning?: boolean | undefined; + requiredCommitSigning?: boolean | undefined; }>; // @public @@ -426,9 +426,9 @@ export function createPublishGithubAction(options: { requiredApprovingReviewCount?: number | undefined; restrictions?: | { - users: string[] | undefined; - teams: string[] | undefined; - apps?: string[] | undefined; + users: string[]; + teams: string[]; + apps?: string[]; } | undefined; requireCodeOwnerReviews?: boolean | undefined; @@ -458,7 +458,7 @@ export function createPublishGithubAction(options: { hasIssues?: boolean | undefined; token?: string | undefined; topics?: string[] | undefined; - requireCommitSigning?: boolean | undefined; + requiredCommitSigning?: boolean | undefined; }>; // @public