Skip to content

Commit

Permalink
Auto-generated v20 API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
OANDA-API committed Sep 28, 2018
1 parent d8ccb9a commit b5fc9c3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

"use strict";

var instrument = require("./instrument");
var position = require("./position");
var trade = require("./trade");
var site = require("./site");
var primitives = require("./primitives");
var account = require("./account");
var transaction = require("./transaction");
var user = require("./user");
var position = require("./position");
var pricing = require("./pricing");
var order = require("./order");
var transaction = require("./transaction");
var primitives = require("./primitives");
var trade = require("./trade");
var site = require("./site");
var pricing_common = require("./pricing_common");
var order = require("./order");
var instrument = require("./instrument");


class Response {
Expand Down Expand Up @@ -82,17 +82,17 @@ class Context {
this.http = require('http');
}

this.instrument = new instrument.EntitySpec(this);
this.position = new position.EntitySpec(this);
this.trade = new trade.EntitySpec(this);
this.site = new site.EntitySpec(this);
this.primitives = new primitives.EntitySpec(this);
this.account = new account.EntitySpec(this);
this.transaction = new transaction.EntitySpec(this);
this.user = new user.EntitySpec(this);
this.position = new position.EntitySpec(this);
this.pricing = new pricing.EntitySpec(this);
this.order = new order.EntitySpec(this);
this.transaction = new transaction.EntitySpec(this);
this.primitives = new primitives.EntitySpec(this);
this.trade = new trade.EntitySpec(this);
this.site = new site.EntitySpec(this);
this.pricing_common = new pricing_common.EntitySpec(this);
this.order = new order.EntitySpec(this);
this.instrument = new instrument.EntitySpec(this);
}

setToken(token) {
Expand Down
Binary file modified v20-3.0.25.tar.gz
Binary file not shown.

0 comments on commit b5fc9c3

Please sign in to comment.