Skip to content

Commit

Permalink
Namespace adjustments for new docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil-musialowski committed Nov 29, 2024
1 parent 1aeed79 commit 0bb1a32
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion demos/dashboards-investment-screener/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ async function getPostmanJSON (htmlInputFile) {
for (file of htmlInputFile.files) {
try {
fileJSON = JSON.parse(await file.text());
if (Connectors.Morningstar.isPostmanEnvironmentJSON(fileJSON)) {
if (HighchartsConnectors.Morningstar.isPostmanEnvironmentJSON(fileJSON)) {
break;
}
} catch (error) {
Expand Down
2 changes: 1 addition & 1 deletion docs/connectors/morningstar/goal-analysis.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ and dashboards.
In order to fetch the analysis, you can request for example:

```js
const goalAnalysisConnector = MC.GoalAnalysisConnector({
const goalAnalysisConnector = HighchartsConnectors.Morningstar.GoalAnalysisConnector({
postman: {
environmentJSON: postmanJSON
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This connector is designed to be interacted with using external buttons, that mi
Here is an example of how to use the Investment Screener connector:

```js
const screenerConnector = MC.InvestmentScreenerConnector({
const screenerConnector = HighchartsConnectors.Morningstar.InvestmentScreenerConnector({
page: 1,
pageSize: 20,
languageId: 'en-GB',
Expand Down
2 changes: 1 addition & 1 deletion docs/connectors/morningstar/security-details.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ For more details, see [Morningstar’s Security Details API].
### Security Details with Morningstar standalone for Highcharts:

```js
const securityDetailsConnector = new Connectors.Morningstar.SecurityDetailsConnector({
const securityDetailsConnector = new HighchartsConnectors.Morningstar.SecurityDetailsConnector({
postman: {
environmentJSON: postmanJSON
},
Expand Down
2 changes: 1 addition & 1 deletion docs/connectors/morningstar/x-ray.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ columns might be added to the table.
In order to fetch a benchmark, you can request for example:

```js
const xRayConnector = MC.XRayConnector({
const xRayConnector = HighchartsConnectors.Morningstar.XRayConnector({
postman: {
environmentJSON: postmanJSON
},
Expand Down

0 comments on commit 0bb1a32

Please sign in to comment.