@backstage/plugin-scaffolder-react 1.15.0 → 1.15.1
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 +6 -0
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -472,7 +472,7 @@ type TemplateGlobalValue = {
|
|
|
472
472
|
*
|
|
473
473
|
* @public
|
|
474
474
|
*/
|
|
475
|
-
type
|
|
475
|
+
type ListTemplatingExtensionsResponse = {
|
|
476
476
|
filters: Record<string, TemplateFilter>;
|
|
477
477
|
globals: {
|
|
478
478
|
functions: Record<string, TemplateGlobalFunction>;
|
|
@@ -628,7 +628,7 @@ interface ScaffolderApi {
|
|
|
628
628
|
/**
|
|
629
629
|
* Returns a structure describing the available templating extensions.
|
|
630
630
|
*/
|
|
631
|
-
|
|
631
|
+
listTemplatingExtensions?(): Promise<ListTemplatingExtensionsResponse>;
|
|
632
632
|
streamLogs(options: ScaffolderStreamLogsOptions): Observable<LogEvent>;
|
|
633
633
|
dryRun?(options: ScaffolderDryRunOptions): Promise<ScaffolderDryRunResponse>;
|
|
634
634
|
autocomplete?(options: {
|
|
@@ -749,4 +749,4 @@ interface FieldSchema<TReturn, TUiOptions> {
|
|
|
749
749
|
readonly TOutput: TReturn;
|
|
750
750
|
}
|
|
751
751
|
|
|
752
|
-
export { type Action, type ActionExample, type CustomFieldExtensionSchema, type CustomFieldValidator, type FieldExtensionComponent, type FieldExtensionComponentProps, type FieldExtensionOptions, type FieldExtensionUiSchema, type FieldSchema, type FormProps, type LayoutComponent, type LayoutOptions, type LayoutTemplate, type ListActionsResponse, type
|
|
752
|
+
export { type Action, type ActionExample, type CustomFieldExtensionSchema, type CustomFieldValidator, type FieldExtensionComponent, type FieldExtensionComponentProps, type FieldExtensionOptions, type FieldExtensionUiSchema, type FieldSchema, type FormProps, type LayoutComponent, type LayoutOptions, type LayoutTemplate, type ListActionsResponse, type ListTemplatingExtensionsResponse, type LogEvent, type ReviewStepProps, type ScaffolderApi, type ScaffolderDryRunOptions, type ScaffolderDryRunResponse, ScaffolderFieldExtensions, type ScaffolderGetIntegrationsListOptions, type ScaffolderGetIntegrationsListResponse, ScaffolderLayouts, type ScaffolderOutputLink, type ScaffolderOutputText, type ScaffolderRJSFField, type ScaffolderRJSFFieldProps, type ScaffolderRJSFFormProps, type ScaffolderRJSFRegistryFieldsType, type ScaffolderScaffoldOptions, type ScaffolderScaffoldResponse, type ScaffolderStep, type ScaffolderStreamLogsOptions, type ScaffolderTask, type ScaffolderTaskOutput, type ScaffolderTaskStatus, type ScaffolderUsageExample, type ScaffolderUseTemplateSecrets, SecretsContextProvider, type TaskStream, type TemplateFilter, type TemplateGlobalFunction, type TemplateGlobalValue, type TemplateGroupFilter, type TemplateParameterSchema, createScaffolderFieldExtension, createScaffolderLayout, makeFieldSchema, scaffolderApiRef, useCustomFieldExtensions, useCustomLayouts, useTaskEventStream, useTemplateSecrets };
|
package/package.json
CHANGED