Update api-report
Signed-off-by: Severin Wischmann <severinwischmann@nianticlabs.com>
This commit is contained in:
@@ -33,8 +33,8 @@ export const createGitlabIssueAction: (options: {
|
||||
projectId: number;
|
||||
labels?: string | undefined;
|
||||
description?: string | undefined;
|
||||
weight?: number | undefined;
|
||||
token?: string | undefined;
|
||||
weight?: number | undefined;
|
||||
assignees?: number[] | undefined;
|
||||
createdAt?: string | undefined;
|
||||
confidential?: boolean | undefined;
|
||||
@@ -198,7 +198,7 @@ export const createPublishGitlabMergeRequestAction: (options: {
|
||||
sourcePath?: string | undefined;
|
||||
targetPath?: string | undefined;
|
||||
token?: string | undefined;
|
||||
commitAction?: 'auto' | 'update' | 'delete' | 'create' | 'skip' | undefined;
|
||||
commitAction?: 'auto' | 'update' | 'skip' | 'delete' | 'create' | undefined;
|
||||
projectid?: string | undefined;
|
||||
removeSourceBranch?: boolean | undefined;
|
||||
assignee?: string | undefined;
|
||||
@@ -234,8 +234,8 @@ export const editGitlabIssueAction: (options: {
|
||||
title?: string | undefined;
|
||||
labels?: string | undefined;
|
||||
description?: string | undefined;
|
||||
weight?: number | undefined;
|
||||
token?: string | undefined;
|
||||
weight?: number | undefined;
|
||||
assignees?: number[] | undefined;
|
||||
addLabels?: string | undefined;
|
||||
confidential?: boolean | undefined;
|
||||
|
||||
@@ -354,7 +354,7 @@ export const createPublishGitlabMergeRequestAction: (options: {
|
||||
sourcePath?: string | undefined;
|
||||
targetPath?: string | undefined;
|
||||
token?: string | undefined;
|
||||
commitAction?: 'auto' | 'update' | 'delete' | 'create' | 'skip' | undefined;
|
||||
commitAction?: 'auto' | 'update' | 'skip' | 'delete' | 'create' | undefined;
|
||||
projectid?: string | undefined;
|
||||
removeSourceBranch?: boolean | undefined;
|
||||
assignee?: string | undefined;
|
||||
|
||||
@@ -22,8 +22,8 @@ export type AutocompleteHandler = ({
|
||||
context: Record<string, string>;
|
||||
}) => Promise<{
|
||||
results: {
|
||||
title: string;
|
||||
id?: string;
|
||||
title?: string;
|
||||
id: string;
|
||||
}[];
|
||||
}>;
|
||||
|
||||
|
||||
@@ -262,15 +262,15 @@ export const scaffolderTranslationRef: TranslationRef<
|
||||
readonly 'ongoingTask.title': 'Run of';
|
||||
readonly 'ongoingTask.contextMenu.cancel': 'Cancel';
|
||||
readonly 'ongoingTask.contextMenu.startOver': 'Start Over';
|
||||
readonly 'ongoingTask.contextMenu.retry': 'Retry';
|
||||
readonly 'ongoingTask.contextMenu.hideLogs': 'Hide Logs';
|
||||
readonly 'ongoingTask.contextMenu.showLogs': 'Show Logs';
|
||||
readonly 'ongoingTask.contextMenu.hideButtonBar': 'Hide Button Bar';
|
||||
readonly 'ongoingTask.contextMenu.retry': 'Retry';
|
||||
readonly 'ongoingTask.contextMenu.showButtonBar': 'Show Button Bar';
|
||||
readonly 'ongoingTask.subtitle': 'Task {{taskId}}';
|
||||
readonly 'ongoingTask.cancelButtonTitle': 'Cancel';
|
||||
readonly 'ongoingTask.pageTitle.hasTemplateName': 'Run of {{templateName}}';
|
||||
readonly 'ongoingTask.pageTitle.noTemplateName': 'Scaffolder Run';
|
||||
readonly 'ongoingTask.cancelButtonTitle': 'Cancel';
|
||||
readonly 'ongoingTask.retryButtonTitle': 'Retry';
|
||||
readonly 'ongoingTask.startOverButtonTitle': 'Start Over';
|
||||
readonly 'ongoingTask.hideLogsButtonTitle': 'Hide Logs';
|
||||
@@ -335,8 +335,8 @@ export const scaffolderTranslationRef: TranslationRef<
|
||||
readonly 'templateEditorToolbar.addToCatalogDialogTitle': 'Publish changes';
|
||||
readonly 'templateEditorToolbar.addToCatalogDialogContent.stepsIntroduction': 'Follow the instructions below to create or update a template:';
|
||||
readonly 'templateEditorToolbar.addToCatalogDialogContent.stepsListItems': 'Save the template files in a local directory\nCreate a pull request to a new or existing git repository\nIf the template already exists, the changes will be reflected in the software catalog once the pull request gets merged\nBut if you are creating a new template, follow the documentation linked below to register the new template repository in software catalog';
|
||||
readonly 'templateEditorToolbar.addToCatalogDialogActions.documentationUrl': 'https://backstage.io/docs/features/software-templates/adding-templates/';
|
||||
readonly 'templateEditorToolbar.addToCatalogDialogActions.documentationButton': 'Go to the documentation';
|
||||
readonly 'templateEditorToolbar.addToCatalogDialogActions.documentationUrl': 'https://backstage.io/docs/features/software-templates/adding-templates/';
|
||||
readonly 'templateEditorToolbarFileMenu.button': 'File';
|
||||
readonly 'templateEditorToolbarFileMenu.options.openDirectory': 'Open template directory';
|
||||
readonly 'templateEditorToolbarFileMenu.options.createDirectory': 'Create template directory';
|
||||
|
||||
Reference in New Issue
Block a user