Cleaned up the generation script, fixing the doc-blocks above the client actions.

Replaced the transport, giving it all of the functionality that was brought over to the client and making the client simply a place for the API to live. Essentially a shell that can easily be removed.

spec'd out the TransportRequest which will eventually inherit from one of server possible promise implementations and will be plugable. It will also implement the "abort" functionality needed in an environment like node.js
This commit is contained in:
Spencer Alger
2013-10-29 08:48:29 -07:00
parent cb35524096
commit 984a55f6c0
25 changed files with 1128 additions and 1052 deletions

View File

@ -1,4 +1,4 @@
var ca = require('./client_action').create;
var ca = require('./client_action');
var errors = require('./errors');
var api = module.exports = {};