Skip to content

Commit

Permalink
Merge pull request #24 from upstox/feature-update-exchange-enum
Browse files Browse the repository at this point in the history
Feature update exchange enum
  • Loading branch information
Rahulzz committed Sep 14, 2023
2 parents 20e7167 + 9eb332e commit 6560778
Show file tree
Hide file tree
Showing 15 changed files with 50 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/HoldingsData.md
Expand Up @@ -31,5 +31,6 @@ Name | Type | Description | Notes
* `CDS` (value: `"CDS"`)
* `BSE` (value: `"BSE"`)
* `BCD` (value: `"BCD"`)
* `BFO` (value: `"BFO"`)
* `MCX` (value: `"MCX"`)

1 change: 1 addition & 0 deletions docs/OrderBookData.md
Expand Up @@ -41,6 +41,7 @@ Name | Type | Description | Notes
* `CDS` (value: `"CDS"`)
* `BSE` (value: `"BSE"`)
* `BCD` (value: `"BCD"`)
* `BFO` (value: `"BFO"`)
* `MCX` (value: `"MCX"`)


Expand Down
1 change: 1 addition & 0 deletions docs/OrderData.md
Expand Up @@ -37,6 +37,7 @@ Name | Type | Description | Notes
* `CDS` (value: `"CDS"`)
* `BSE` (value: `"BSE"`)
* `BCD` (value: `"BCD"`)
* `BFO` (value: `"BFO"`)
* `MCX` (value: `"MCX"`)


Expand Down
1 change: 1 addition & 0 deletions docs/PositionData.md
Expand Up @@ -40,5 +40,6 @@ Name | Type | Description | Notes
* `CDS` (value: `"CDS"`)
* `BSE` (value: `"BSE"`)
* `BCD` (value: `"BCD"`)
* `BFO` (value: `"BFO"`)
* `MCX` (value: `"MCX"`)

1 change: 1 addition & 0 deletions docs/ProfileData.md
Expand Up @@ -22,6 +22,7 @@ Name | Type | Description | Notes
* `CDS` (value: `"CDS"`)
* `BSE` (value: `"BSE"`)
* `BCD` (value: `"BCD"`)
* `BFO` (value: `"BFO"`)
* `MCX` (value: `"MCX"`)


Expand Down
1 change: 1 addition & 0 deletions docs/TokenResponse.md
Expand Up @@ -23,6 +23,7 @@ Name | Type | Description | Notes
* `CDS` (value: `"CDS"`)
* `BSE` (value: `"BSE"`)
* `BCD` (value: `"BCD"`)
* `BFO` (value: `"BFO"`)
* `MCX` (value: `"MCX"`)


Expand Down
1 change: 1 addition & 0 deletions docs/TradeData.md
Expand Up @@ -26,6 +26,7 @@ Name | Type | Description | Notes
* `CDS` (value: `"CDS"`)
* `BSE` (value: `"BSE"`)
* `BCD` (value: `"BCD"`)
* `BFO` (value: `"BFO"`)
* `MCX` (value: `"MCX"`)


Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "upstox-js-sdk",
"version": "2.0.0",
"version": "2.1.0",
"description": "The official Node Js client for communicating with the Upstox API",
"license": "MIT",
"main": "dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions src/model/HoldingsData.js
Expand Up @@ -225,6 +225,12 @@ HoldingsData.ExchangeEnum = {
*/
BCD: "BCD",

/**
* value: "BFO"
* @const
*/
BFO: "BFO",

/**
* value: "MCX"
* @const
Expand Down
6 changes: 6 additions & 0 deletions src/model/OrderBookData.js
Expand Up @@ -138,6 +138,12 @@ OrderBookData.ExchangeEnum = {
*/
BCD: "BCD",

/**
* value: "BFO"
* @const
*/
BFO: "BFO",

/**
* value: "MCX"
* @const
Expand Down
6 changes: 6 additions & 0 deletions src/model/OrderData.js
Expand Up @@ -130,6 +130,12 @@ OrderData.ExchangeEnum = {
*/
BCD: "BCD",

/**
* value: "BFO"
* @const
*/
BFO: "BFO",

/**
* value: "MCX"
* @const
Expand Down
6 changes: 6 additions & 0 deletions src/model/PositionData.js
Expand Up @@ -136,6 +136,12 @@ PositionData.ExchangeEnum = {
*/
BCD: "BCD",

/**
* value: "BFO"
* @const
*/
BFO: "BFO",

/**
* value: "MCX"
* @const
Expand Down
6 changes: 6 additions & 0 deletions src/model/ProfileData.js
Expand Up @@ -106,6 +106,12 @@ ProfileData.ExchangesEnum = {
*/
BCD: "BCD",

/**
* value: "BFO"
* @const
*/
BFO: "BFO",

/**
* value: "MCX"
* @const
Expand Down
6 changes: 6 additions & 0 deletions src/model/TokenResponse.js
Expand Up @@ -107,6 +107,12 @@ TokenResponse.ExchangesEnum = {
*/
BCD: "BCD",

/**
* value: "BFO"
* @const
*/
BFO: "BFO",

/**
* value: "MCX"
* @const
Expand Down
6 changes: 6 additions & 0 deletions src/model/TradeData.js
Expand Up @@ -108,6 +108,12 @@ TradeData.ExchangeEnum = {
*/
BCD: "BCD",

/**
* value: "BFO"
* @const
*/
BFO: "BFO",

/**
* value: "MCX"
* @const
Expand Down

0 comments on commit 6560778

Please sign in to comment.