Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions step-1/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ Kindly ensure you have gone through the [Introductory guide to freshworks app d
1. For Mac Users use one of these steps
1. [Follow these steps for CLI based installation](https://github.com/nvm-sh/nvm#installation-and-update)
2. Install via brew
dev 1. [Install brew](https://brew.sh/) if haven't done already
2. Verify brew working or notversion
1. [Install brew](https://brew.sh/) if haven't done already
2. Run `brew -v` to verify the installation
2. For Windows Users use one of the below option
1. [Install via installers](https://github.com/coreybutler/nvm-windows/releases)
1. [Install via executables](https://github.com/coreybutler/nvm-windows/releases)
2. Install via chocolatey
1. [Install Chocolatey Package manager](https://chocolatey.org/install)
2. Install NVM via chocolatey
Expand Down Expand Up @@ -82,11 +82,11 @@ Towards end of the it your output shouldbe same or higher than the listed ones

```sh
#for nvm -v
0.39.3
0.40.3
# for node -v
v18.15.0
v18.20.8
# for npm -v
9.6.3
10.8.2
# for fdk -v
9.6.3
9.7.0
```
4 changes: 2 additions & 2 deletions step-2/your_first_app/app/scripts/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var client;
let client;

init();

Expand All @@ -14,5 +14,5 @@ async function renderText() {
contact: { name }
} = contactData;

textElement.innerHTML = `Ticket is created by ${name}`;
textElement.innerHTML = `Ticket is created by ${name} and viewed by Pavan`;
}
4 changes: 2 additions & 2 deletions step-2/your_first_app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
},
"engines": {
"node": "18.15.0",
"fdk": "9.0.0"
"node": "18.20.8",
"fdk": "9.7.0"
}
}
2 changes: 1 addition & 1 deletion step-3/your_first_app/app/scripts/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var client;
let client;

init();

Expand Down
4 changes: 2 additions & 2 deletions step-3/your_first_app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
},
"engines": {
"node": "18.15.0",
"fdk": "9.0.0"
"node": "18.20.8",
"fdk": "9.7.0"
}
}
2 changes: 1 addition & 1 deletion step-4/your_first_app/app/scripts/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var client;
let client;

init();

Expand Down
4 changes: 2 additions & 2 deletions step-4/your_first_app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}
},
"engines": {
"node": "18.15.0",
"fdk": "9.0.0"
"node": "18.20.8",
"fdk": "9.7.0"
}
}
2 changes: 1 addition & 1 deletion step-5/your_first_app/app/scripts/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var client;
let client;

init();

Expand Down
4 changes: 2 additions & 2 deletions step-5/your_first_app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}
},
"engines": {
"node": "18.15.0",
"fdk": "9.0.0"
"node": "18.20.8",
"fdk": "9.7.0"
}
}
2 changes: 1 addition & 1 deletion step-6/store-app/app/scripts/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var client;
let client;

init();

Expand Down
4 changes: 2 additions & 2 deletions step-6/store-app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
},
"engines": {
"node": "18.15.0",
"fdk": "9.0.0"
"node": "18.20.8",
"fdk": "9.7.0"
}
}