Signed-off-by: Fredrik Adelöw <freben@spotify.com>
This commit is contained in:
Fredrik Adelöw
2026-03-11 20:29:45 +01:00
parent 9110c16c8a
commit 239c8dcfd2
6 changed files with 13 additions and 24 deletions
@@ -6,11 +6,6 @@
import { BasicPermission } from '@backstage/plugin-permission-common';
import { JsonObject } from '@backstage/types';
// @alpha (undocumented)
export type CancelScheduledTask = {
error?: string;
};
// @alpha (undocumented)
export const devToolsTaskSchedulerCreatePermission: BasicPermission;
+1 -1
View File
@@ -13,12 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export {
devToolsTaskSchedulerReadPermission,
devToolsTaskSchedulerCreatePermission,
} from './permissions';
export type {
CancelScheduledTask,
ScheduledTasks,
TaskApiTasksResponse,
TriggerScheduledTask,
-5
View File
@@ -133,8 +133,3 @@ export type ScheduledTasks = {
export type TriggerScheduledTask = {
error?: string;
};
/** @alpha */
export type CancelScheduledTask = {
error?: string;
};