fix: build issues

This commit is contained in:
2023-11-01 15:22:32 +01:00
parent c7555e1918
commit 4bdd4b20d0
15 changed files with 188 additions and 74 deletions

View File

@@ -64,6 +64,11 @@ import {SCTicket, SCTicketMeta, SCTicketWithoutReferences} from './things/ticket
import {SCToDo, SCToDoMeta, SCToDoWithoutReferences} from './things/todo.js';
import {SCTour, SCTourMeta, SCTourWithoutReferences} from './things/tour.js';
import {SCVideo, SCVideoMeta, SCVideoWithoutReferences} from './things/video.js';
import {version} from '../package.json';
// re-export breaks .d.ts generation for some reason
// eslint-disable-next-line unicorn/prefer-export-from
export const STAPPS_CORE_VERSION = version;
/**
* A map of things, from type to meta data

View File

@@ -92,11 +92,11 @@ export interface SCPluginMetaData {
/**
* Plugin register response
* @validatable
*/
export interface SCPluginRegisterResponse {
/**
* Whether the desired action succeeded or failed (true for success, false if an error occurred)
* @validatable
*/
success: boolean;
}