@pnp/cli-microsoft365 10.6.0-beta.36bb898 → 10.6.0-beta.a7465c9
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/.eslintrc.cjs +3 -1
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/Command.js +4 -26
- package/dist/config.js +1 -0
- package/dist/m365/adaptivecard/commands/adaptivecard-send.js +2 -1
- package/dist/m365/base/SpoCommand.js +2 -1
- package/dist/m365/commands/request.js +3 -12
- package/dist/m365/commands/setup.js +2 -0
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-add.js +10 -5
- package/dist/m365/entra/commands/app/app-add.js +5 -0
- package/dist/m365/entra/commands/app/app-set.js +23 -0
- package/dist/m365/entra/commands/group/group-add.js +1 -0
- package/dist/m365/entra/commands/group/group-set.js +12 -6
- package/dist/m365/entra/commands/user/user-add.js +1 -0
- package/dist/m365/entra/commands/user/user-list.js +2 -1
- package/dist/m365/external/commands/item/item-add.js +2 -1
- package/dist/m365/graph/commands/openextension/openextension-add.js +73 -0
- package/dist/m365/graph/commands.js +1 -0
- package/dist/m365/spo/commands/web/web-roleassignment-add.js +22 -47
- package/dist/m365/spo/commands/web/web-roleassignment-remove.js +17 -32
- package/dist/m365/tenant/commands/people/people-profilecardproperty-add.js +4 -3
- package/dist/m365/tenant/commands/people/people-profilecardproperty-set.js +4 -3
- package/dist/m365/todo/commands/list/list-remove.js +1 -1
- package/dist/utils/entraApp.js +3 -1
- package/dist/utils/optionsUtils.js +28 -0
- package/dist/utils/spo.js +6 -3
- package/docs/docs/cmd/graph/directoryextension/directoryextension-get.mdx +2 -3
- package/docs/docs/cmd/graph/openextension/openextension-add.mdx +120 -0
- package/package.json +1 -1
package/.eslintrc.cjs
CHANGED
|
@@ -80,6 +80,7 @@ const dictionary = [
|
|
|
80
80
|
'oauth2',
|
|
81
81
|
'office365',
|
|
82
82
|
'one',
|
|
83
|
+
'open',
|
|
83
84
|
'ops',
|
|
84
85
|
'org',
|
|
85
86
|
'owner',
|
|
@@ -218,7 +219,8 @@ module.exports = {
|
|
|
218
219
|
"Query.*",
|
|
219
220
|
"app_displayname",
|
|
220
221
|
"access_token",
|
|
221
|
-
"expires_on"
|
|
222
|
+
"expires_on",
|
|
223
|
+
"extension_*"
|
|
222
224
|
]
|
|
223
225
|
}
|
|
224
226
|
],
|