persona-community-5/.pnpm-store/v3/files/f6/50b97d442167f7e1a60c1046bae92f1261cdae4500ad57c599119389086d59d991024e54020e33788a2a56ba347d8dbcb1bd54a02eb7a75911556afc2cda17
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

40 lines
910 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Overlay1Types = void 0;
const _1 = require(".");
const Root = {
properties: {
overlay: { type: 'string' },
info: 'Info',
extends: { type: 'string' },
actions: 'Actions',
},
required: ['overlay', 'info', 'actions'],
extensionsPrefix: 'x-',
};
const Info = {
properties: {
title: { type: 'string' },
version: { type: 'string' },
},
required: ['title', 'version'],
extensionsPrefix: 'x-',
};
const Actions = (0, _1.listOf)('Action');
const Action = {
properties: {
target: { type: 'string' },
description: { type: 'string' },
update: {}, // any
remove: { type: 'boolean' },
},
required: ['target'],
extensionsPrefix: 'x-',
};
exports.Overlay1Types = {
Root,
Info,
Actions,
Action,
};