nl-d365boilerplate-vite 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/getToken.js +2 -4
  2. package/package.json +5 -1
package/getToken.js CHANGED
@@ -79,11 +79,9 @@ async function ensureClientId() {
79
79
 
80
80
  if (!clientId) {
81
81
  console.log(
82
- "🔑 CLIENT_ID required - find it in Azure Portal > App Registrations",
83
- );
84
- clientId = await promptUser(
85
- "Enter your Azure App Registration Client ID: ",
82
+ "🔑 CLIENT_ID required - find it in Azure Portal > App Registrations OR REST Builder export postman collection",
86
83
  );
84
+ clientId = await promptUser("Enter your Client ID: ");
87
85
 
88
86
  if (!clientId) {
89
87
  throw new Error("CLIENT_ID is required for OAuth authentication");
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "nl-d365boilerplate-vite",
3
+ "repository": {
4
+ "type": "git",
5
+ "url": "git+https://github.com/sj-cardoso/nl-d365boilerplate-vite.git"
6
+ },
3
7
  "private": false,
4
- "version": "1.0.2",
8
+ "version": "1.0.3",
5
9
  "type": "module",
6
10
  "bin": {
7
11
  "nl-d365boilerplate-vite": "./bin/cli.js"