2014-04-11 08:22:49 -04:00
|
|
|
module.exports =
|
2014-06-30 22:16:26 -04:00
|
|
|
'application: idle-changed':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'fbapi-loaded':
|
2014-04-13 10:05:11 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'logging-in-with-facebook':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'facebook-logged-in':
|
|
|
|
title: 'Facebook logged in'
|
|
|
|
$schema: 'http://json-schema.org/draft-04/schema#'
|
|
|
|
description: 'Published when you successfully logged in with facebook'
|
|
|
|
type: 'object'
|
2014-04-13 10:05:11 -04:00
|
|
|
properties:
|
|
|
|
response:
|
2014-06-30 22:16:26 -04:00
|
|
|
type: 'object'
|
2014-05-21 15:35:37 -04:00
|
|
|
properties:
|
2014-06-30 22:16:26 -04:00
|
|
|
status: {type: 'string'}
|
2014-05-21 15:35:37 -04:00
|
|
|
authResponse:
|
2014-06-30 22:16:26 -04:00
|
|
|
type: 'object'
|
2014-05-21 15:35:37 -04:00
|
|
|
properties:
|
2014-06-30 22:16:26 -04:00
|
|
|
accessToken: {type: 'string'}
|
|
|
|
expiresIn: {type: 'number'}
|
|
|
|
signedRequest: {type: 'string'}
|
|
|
|
userID: {type: 'string'}
|
|
|
|
required: ['response']
|
|
|
|
|
|
|
|
'facebook-logged-out': {}
|
|
|
|
|
|
|
|
'linkedin-loaded': {}
|
|
|
|
|
|
|
|
'gapi-loaded':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'logging-in-with-gplus':
|
2014-04-11 08:22:49 -04:00
|
|
|
{} # TODO schema
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
'gplus-logged-in':
|
|
|
|
title: 'G+ logged in'
|
|
|
|
$schema: 'http://json-schema.org/draft-04/schema#'
|
|
|
|
description: 'Published when you successfully logged in with G+'
|
|
|
|
type: 'object'
|
|
|
|
required: ['access_token']
|