Sentry Scaffolder rename action, make slug optional and change package version to 0.0.0

Signed-off-by: Dominik Pfaffenbauer <dominik@pfaffenbauer.at>
This commit is contained in:
Dominik Pfaffenbauer
2023-01-11 12:12:15 +01:00
parent 599e00b988
commit e4a52374ae
2 changed files with 3 additions and 3 deletions
@@ -1,6 +1,6 @@
{
"name": "@backstage/plugin-scaffolder-backend-module-sentry",
"version": "0.1.0",
"version": "0.0.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
@@ -35,10 +35,10 @@ export function createSentryCreateProjectAction(options: { config: Config }) {
organizationSlug: string;
teamSlug: string;
name: string;
slug: string;
slug?: string;
authToken?: string;
}>({
id: 'sentry:create-project',
id: 'sentry:project:create',
schema: {
input: {
required: ['organizationSlug', 'teamSlug', 'name'],