@backstage/plugin-scaffolder-backend 0.15.16 → 0.15.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/index.cjs.js +127 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +7 -3
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ declare const createBuiltinActions: (options: {
|
|
|
28
28
|
reader: UrlReader;
|
|
29
29
|
integrations: ScmIntegrations;
|
|
30
30
|
catalogClient: CatalogApi;
|
|
31
|
-
containerRunner
|
|
31
|
+
containerRunner?: ContainerRunner;
|
|
32
32
|
config: Config;
|
|
33
33
|
}) => TemplateAction<any>[];
|
|
34
34
|
|
|
@@ -109,6 +109,10 @@ declare function createPublishGitlabAction(options: {
|
|
|
109
109
|
config: Config;
|
|
110
110
|
}): TemplateAction<any>;
|
|
111
111
|
|
|
112
|
+
declare const createPublishGitlabMergeRequestAction: (options: {
|
|
113
|
+
integrations: ScmIntegrationRegistry;
|
|
114
|
+
}) => TemplateAction<any>;
|
|
115
|
+
|
|
112
116
|
declare function createGithubActionsDispatchAction(options: {
|
|
113
117
|
integrations: ScmIntegrationRegistry;
|
|
114
118
|
}): TemplateAction<any>;
|
|
@@ -510,7 +514,7 @@ interface RouterOptions {
|
|
|
510
514
|
catalogClient: CatalogApi;
|
|
511
515
|
actions?: TemplateAction<any>[];
|
|
512
516
|
taskWorkers?: number;
|
|
513
|
-
containerRunner
|
|
517
|
+
containerRunner?: ContainerRunner;
|
|
514
518
|
taskBroker?: TaskBroker;
|
|
515
519
|
}
|
|
516
520
|
declare function createRouter(options: RouterOptions): Promise<express.Router>;
|
|
@@ -538,4 +542,4 @@ declare class ScaffolderEntitiesProcessor implements CatalogProcessor {
|
|
|
538
542
|
postProcessEntity(entity: Entity, _location: LocationSpec, emit: CatalogProcessorEmit): Promise<Entity>;
|
|
539
543
|
}
|
|
540
544
|
|
|
541
|
-
export { ActionContext, CatalogEntityClient, CompletedTaskState, CreateWorkerOptions, DatabaseTaskStore, DispatchResult, OctokitProvider, RouterOptions, ScaffolderEntitiesProcessor, SerializedTask, SerializedTaskEvent, Status, TaskBroker, TaskContext, TaskEventType, TaskManager, TaskSecrets, TaskSpec, TaskSpecV1beta2, TaskSpecV1beta3, TaskState, TaskStore, TaskStoreEmitOptions, TaskStoreListEventsOptions, TaskWorker, TemplateAction, TemplateActionRegistry, TemplateMetadata, createBuiltinActions, createCatalogRegisterAction, createCatalogWriteAction, createDebugLogAction, createFetchPlainAction, createFetchTemplateAction, createFilesystemDeleteAction, createFilesystemRenameAction, createGithubActionsDispatchAction, createGithubWebhookAction, createPublishAzureAction, createPublishBitbucketAction, createPublishFileAction, createPublishGithubAction, createPublishGithubPullRequestAction, createPublishGitlabAction, createRouter, createTemplateAction, fetchContents, runCommand };
|
|
545
|
+
export { ActionContext, CatalogEntityClient, CompletedTaskState, CreateWorkerOptions, DatabaseTaskStore, DispatchResult, OctokitProvider, RouterOptions, ScaffolderEntitiesProcessor, SerializedTask, SerializedTaskEvent, Status, TaskBroker, TaskContext, TaskEventType, TaskManager, TaskSecrets, TaskSpec, TaskSpecV1beta2, TaskSpecV1beta3, TaskState, TaskStore, TaskStoreEmitOptions, TaskStoreListEventsOptions, TaskWorker, TemplateAction, TemplateActionRegistry, TemplateMetadata, createBuiltinActions, createCatalogRegisterAction, createCatalogWriteAction, createDebugLogAction, createFetchPlainAction, createFetchTemplateAction, createFilesystemDeleteAction, createFilesystemRenameAction, createGithubActionsDispatchAction, createGithubWebhookAction, createPublishAzureAction, createPublishBitbucketAction, createPublishFileAction, createPublishGithubAction, createPublishGithubPullRequestAction, createPublishGitlabAction, createPublishGitlabMergeRequestAction, createRouter, createTemplateAction, fetchContents, runCommand };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend",
|
|
3
3
|
"description": "The Backstage backend plugin that helps you create new things",
|
|
4
|
-
"version": "0.15.
|
|
4
|
+
"version": "0.15.17",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@backstage/backend-common": "^0.9.
|
|
34
|
+
"@backstage/backend-common": "^0.9.14",
|
|
35
35
|
"@backstage/catalog-client": "^0.5.2",
|
|
36
|
-
"@backstage/catalog-model": "^0.9.
|
|
36
|
+
"@backstage/catalog-model": "^0.9.8",
|
|
37
37
|
"@backstage/config": "^0.1.11",
|
|
38
38
|
"@backstage/errors": "^0.1.5",
|
|
39
39
|
"@backstage/integration": "^0.6.10",
|
|
40
|
-
"@backstage/plugin-catalog-backend": "^0.19.
|
|
40
|
+
"@backstage/plugin-catalog-backend": "^0.19.2",
|
|
41
41
|
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "^0.1.5",
|
|
42
42
|
"@backstage/plugin-scaffolder-common": "^0.1.1",
|
|
43
43
|
"@backstage/types": "^0.1.1",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"yaml": "^1.10.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@backstage/cli": "^0.10.
|
|
76
|
+
"@backstage/cli": "^0.10.2",
|
|
77
77
|
"@backstage/test-utils": "^0.1.24",
|
|
78
78
|
"@types/command-exists": "^1.2.0",
|
|
79
79
|
"@types/fs-extra": "^9.0.1",
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
"assets"
|
|
96
96
|
],
|
|
97
97
|
"configSchema": "config.d.ts",
|
|
98
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "9ff0f1e76d4510edda2f1b1b3e58cba168a76190"
|
|
99
99
|
}
|