2014-04-11 08:22:49 -04:00
|
|
|
module.exports =
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:cast-spell':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
|
|
|
# TODO do we really need both 'cast-spell' and 'cast-spells'?
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:cast-spells':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:manual-cast':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:spell-created':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:spell-debug-property-hovered':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:toggle-spell-list':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:reload-code':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:palette-hovered':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:palette-pin-toggled':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:palette-clicked':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:spell-statement-index-updated':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
|
|
|
# TODO proposition: refactor 'tome' into spell events
|
2014-06-30 22:16:26 -04:00
|
|
|
'spell-beautify':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'spell-step-forward':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'spell-step-backward':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:spell-loaded':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:cast-spell':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:spell-changed':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:editing-ended':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:editing-began':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:problems-updated':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:thang-list-entry-popover-shown':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:spell-shown':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:focus-editor':
|
2014-06-25 00:07:36 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'tome:change-language':
|
|
|
|
title: 'Tome Change Language'
|
|
|
|
$schema: 'http://json-schema.org/draft-04/schema#'
|
|
|
|
description: 'Published when the Tome should update its programming language.'
|
|
|
|
type: 'object'
|
2014-06-25 00:07:36 -04:00
|
|
|
additionalProperties: false
|
|
|
|
properties:
|
|
|
|
language:
|
2014-06-30 22:16:26 -04:00
|
|
|
type: 'string'
|
|
|
|
required: ['language']
|
|
|
|
|
|
|
|
'tome:spell-changed-language':
|
|
|
|
title: 'Spell Changed Language'
|
|
|
|
$schema: 'http://json-schema.org/draft-04/schema#'
|
|
|
|
description: 'Published when an individual spell has updated its code language.'
|
|
|
|
type: 'object'
|
2014-06-25 00:07:36 -04:00
|
|
|
additionalProperties: false
|
|
|
|
properties:
|
|
|
|
spell:
|
2014-06-30 22:16:26 -04:00
|
|
|
type: 'object'
|
2014-06-26 01:56:39 -04:00
|
|
|
language:
|
2014-06-30 22:16:26 -04:00
|
|
|
type: 'string'
|
|
|
|
required: ['spell']
|