Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Commit 3a550d8

Browse files
committed
bumps up to v1.8.7; adds missing scopes
1 parent bea87e1 commit 3a550d8

File tree

5 files changed

+82
-7
lines changed

5 files changed

+82
-7
lines changed

dist/explorer.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/explorer.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/explorer_v1.8.7.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microsoft-graph-explorer",
3-
"version": "1.8.6",
3+
"version": "1.8.7",
44
"description": "Microsoft Graph Explorer",
55
"scripts": {
66
"build": "tsc -p src/",

src/app/scopes-dialog/scopes.ts

Lines changed: 73 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,62 @@ export const PermissionScopes: IPermissionScope[] = [
5757
longDescription: 'Allows the app to create, read, update, and delete apps in the app catalogs.',
5858
preview: true,
5959
admin: true,
60+
},
61+
{
62+
name: 'ApprovalRequest.Read.AdminConsentRequest',
63+
description: 'Read admin consent approval requests',
64+
longDescription: 'Allows the app to read admin consent requests, business flows, and governance policy templates on your behalf.',
65+
preview: true,
66+
admin: true,
67+
},
68+
{
69+
name: 'ApprovalRequest.Read.CustomerLockbox',
70+
description: 'Read customer lockbox approval requests',
71+
longDescription: 'Allows the app to read customer lockbox requests, business flows and governance policy templates on your behalf.',
72+
preview: true,
73+
admin: true,
74+
},
75+
{
76+
name: 'ApprovalRequest.Read.EntitlementManagement',
77+
description: 'Read entitlement management approval requests',
78+
longDescription: 'Allows the app to read entitlement management requests, business flows, and governance policy templates on your behalf.',
79+
preview: true,
80+
admin: true,
81+
},
82+
{
83+
name: 'ApprovalRequest.Read.PriviligedAccess',
84+
description: 'Read privileged access approval requests',
85+
longDescription: 'Allows the app to read privileged access requests, business flows, and governance policy templates on your behalf.',
86+
preview: true,
87+
admin: true,
88+
},
89+
{
90+
name: 'ApprovalRequest.ReadWrite.AdminConsentRequest',
91+
description: 'Read and write admin consent approval requests',
92+
longDescription: 'Allows the app to read and write admin consent requests, business flows, and governance policy templates on your behalf.',
93+
preview: true,
94+
admin: true,
95+
},
96+
{
97+
name: 'ApprovalRequest.ReadWrite.CustomerLockbox',
98+
description: 'Read and write customer lockbox approval requests',
99+
longDescription: 'Allows the app to read and write customer lockbox requests, business flows and governance policy templates on your behalf.',
100+
preview: true,
101+
admin: true,
102+
},
103+
{
104+
name: 'ApprovalRequest.ReadWrite.EntitlementManagement',
105+
description: 'Read and write entitlement management approval requests',
106+
longDescription: 'Allows the app to read and write entitlement management requests, business flows, and governance policy templates on your behalf.',
107+
preview: true,
108+
admin: true,
109+
},
110+
{
111+
name: 'ApprovalRequest.ReadWrite.PriviligedAccess',
112+
description: 'Read and write privileged access approval requests',
113+
longDescription: 'Allows the app to read and write privileged access requests, business flows, and governance policy templates on your behalf.',
114+
preview: true,
115+
admin: true,
60116
},
61117
{
62118
name: 'Calendars.Read',
@@ -285,7 +341,7 @@ export const PermissionScopes: IPermissionScope[] = [
285341
{
286342
name: 'Notes.ReadWrite',
287343
description: 'Read and write user notebooks',
288-
longDescription: 'Allows the app to read the titles of notebooks and sections, read all pages, write all pages and create new pages on behalf of the signed-in user. It cannot access password protected sections.',
344+
longDescription: 'Allows the app to read the titles of notebooks and sections, read all pages, write all pages and create new pages on behalf of the signed-in user.  It cannot access password protected sections.',
289345
preview: false,
290346
admin: false,
291347
},
@@ -792,14 +848,14 @@ export const PermissionScopes: IPermissionScope[] = [
792848
{
793849
name: 'Whiteboards.Read',
794850
description: 'Read user whiteboards',
795-
longDescription: 'Allows the app to read all whiteboards you have access to, and the associated collaborators, on your behalf.',
851+
longDescription: 'Allows the app to read all whiteboards you have access to, on your behalf.',
796852
preview: true,
797853
admin: false
798854
},
799855
{
800856
name: 'Whiteboards.ReadWrite',
801857
description: 'Manage user whiteboards',
802-
longDescription: 'Allows the app to read and modify all whiteboards you have access to, and the associated collaborators, on your behalf.',
858+
longDescription: 'Allows the app to read and modify all whiteboards you have access to, on your behalf.',
803859
preview: true,
804860
admin: false
805861
},
@@ -830,5 +886,19 @@ export const PermissionScopes: IPermissionScope[] = [
830886
longDescription: 'Allows the app to search from the file and UDT connectors data',
831887
preview: true,
832888
admin: false
889+
},
890+
{
891+
name: 'IdentityUserFlow.Read.All',
892+
description: 'Read all identity user flows',
893+
longDescription: 'Allows the app to read your organization\'s user flows, on behalf of the signed-in user.',
894+
preview: true,
895+
admin: true
896+
},
897+
{
898+
name: 'IdentityUserFlow.ReadWrite.All',
899+
description: 'Read and write all identity user flows',
900+
longDescription: 'Allows the app to read or write your organization\'s user flows, on behalf of the signed-in user.',
901+
preview: true,
902+
admin: true
833903
}
834904
];

0 commit comments

Comments
 (0)