@activepieces/piece-microsoft-excel-365 0.6.1 → 0.6.2
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.
- package/package.json +5 -7
- package/src/lib/auth.js +1 -1
package/package.json
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@activepieces/piece-microsoft-excel-365",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
5
|
"types": "./src/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
7
|
+
"@activepieces/pieces-common": "0.12.3",
|
|
8
|
+
"@activepieces/pieces-framework": "0.28.1",
|
|
9
|
+
"@activepieces/shared": "0.72.1",
|
|
7
10
|
"@microsoft/microsoft-graph-client": "3.0.7",
|
|
8
11
|
"@microsoft/microsoft-graph-types": "2.40.0",
|
|
9
12
|
"dayjs": "1.11.9",
|
|
10
|
-
"tslib": "2.6.2"
|
|
11
|
-
"@babel/runtime": "7.26.10",
|
|
12
|
-
"regenerator-runtime": "0.14.1",
|
|
13
|
-
"@activepieces/pieces-common": "0.12.1",
|
|
14
|
-
"@activepieces/pieces-framework": "0.26.2",
|
|
15
|
-
"@activepieces/shared": "0.57.2"
|
|
13
|
+
"tslib": "2.6.2"
|
|
16
14
|
},
|
|
17
15
|
"scripts": {
|
|
18
16
|
"build": "tsc -p tsconfig.lib.json && cp package.json dist/",
|
package/src/lib/auth.js
CHANGED
|
@@ -4,7 +4,7 @@ exports.excelAuth = void 0;
|
|
|
4
4
|
const pieces_framework_1 = require("@activepieces/pieces-framework");
|
|
5
5
|
const microsoft_cloud_1 = require("./common/microsoft-cloud");
|
|
6
6
|
const authDesc = `
|
|
7
|
-
If you'd like to use your own custom Azure app instead of the default
|
|
7
|
+
If you'd like to use your own custom Azure app instead of the default app, follow the [Azure app creation guide](https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app#register-an-application),
|
|
8
8
|
set the **Redirect URI** to {{redirectUrl}} and add the following **Microsoft Graph (Delegated) permissions** under **API permissions**:
|
|
9
9
|
- Files.ReadWrite
|
|
10
10
|
- Sites.ReadWrite.All
|