@pnp/cli-microsoft365 7.10.0-beta.ebb7426 → 7.11.0-beta.10b9b79
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 +5 -2
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/Auth.js +1 -1
- package/dist/AuthServer.js +10 -10
- package/dist/Command.js +10 -10
- package/dist/chili/index.js +1 -1
- package/dist/cli/cli.js +11 -11
- package/dist/index.js +1 -1
- package/dist/m365/base/AnonymousCommand.js +1 -1
- package/dist/m365/base/DelegatedGraphCommand.js +2 -2
- package/dist/m365/base/PowerAppsCommand.js +2 -2
- package/dist/m365/base/PowerAutomateCommand.js +2 -2
- package/dist/m365/base/PowerBICommand.js +2 -2
- package/dist/m365/base/PowerPlatformCommand.js +2 -2
- package/dist/m365/base/VivaEngageCommand.js +2 -2
- package/dist/m365/cli/commands/cli-consent.js +1 -1
- package/dist/m365/commands/login.js +1 -1
- package/dist/m365/commands/logout.js +1 -1
- package/dist/m365/commands/status.js +1 -1
- package/dist/m365/connection/commands/connection-list.js +1 -1
- package/dist/m365/connection/commands/connection-remove.js +1 -1
- package/dist/m365/connection/commands/connection-set.js +1 -1
- package/dist/m365/connection/commands/connection-use.js +1 -1
- package/dist/m365/entra/commands/app/app-permission-add.js +21 -1
- package/dist/m365/entra/commands/app/app-permission-remove.js +17 -0
- package/dist/m365/entra/commands/m365group/m365group-add.js +1 -0
- package/dist/m365/entra/commands/m365group/m365group-user-list.js +1 -1
- package/dist/m365/external/commands/connection/connection-doctor.js +1 -1
- package/dist/m365/external/commands/connection/connection-schema-add.js +4 -4
- package/dist/m365/file/commands/file-copy.js +3 -3
- package/dist/m365/pa/commands/app/app-export.js +1 -1
- package/dist/m365/pa/commands/app/app-owner-set.js +1 -1
- package/dist/m365/pp/commands/solution/solution-publish.js +1 -1
- package/dist/m365/purview/commands/threatassessment/threatassessment-list.js +1 -1
- package/dist/m365/spfx/commands/project/project-azuredevops-pipeline-add.js +1 -1
- package/dist/m365/spfx/commands/project/project-externalize.js +1 -1
- package/dist/m365/spfx/commands/project/project-github-workflow-add.js +1 -1
- package/dist/m365/spfx/commands/spfx-doctor.js +4 -4
- package/dist/m365/spo/commands/commandset/commandset-get.js +1 -1
- package/dist/m365/spo/commands/file/file-retentionlabel-remove.js +1 -1
- package/dist/m365/spo/commands/group/group-member-add.js +2 -2
- package/dist/m365/spo/commands/group/group-member-remove.js +2 -2
- package/dist/m365/spo/commands/list/list-retentionlabel-ensure.js +1 -1
- package/dist/m365/spo/commands/listitem/listitem-batch-remove.js +1 -1
- package/dist/m365/spo/commands/listitem/listitem-retentionlabel-ensure.js +2 -2
- package/dist/m365/spo/commands/listitem/listitem-retentionlabel-remove.js +2 -2
- package/dist/m365/spo/commands/site/site-admin-list.js +144 -0
- package/dist/m365/spo/commands/site/site-commsite-enable.js +1 -1
- package/dist/m365/spo/commands/spo-search.js +1 -1
- package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-set.js +4 -4
- package/dist/m365/spo/commands/tenant/tenant-commandset-set.js +2 -2
- package/dist/m365/spo/commands/user/user-ensure.js +1 -1
- package/dist/m365/spo/commands.js +1 -0
- package/dist/m365/teams/commands/chat/chat-member-add.js +1 -1
- package/dist/m365/teams/commands/meeting/meeting-list.js +1 -1
- package/dist/m365/viva/commands/engage/engage-community-get.js +1 -1
- package/dist/request.js +13 -14
- package/dist/utils/spo.js +5 -5
- package/dist/utils/validation.js +6 -0
- package/docs/docs/cmd/entra/app/app-permission-remove.mdx +4 -4
- package/docs/docs/cmd/spo/site/site-admin-list.mdx +115 -0
- package/npm-shrinkwrap.json +802 -601
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.11.0-beta.10b9b79",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -252,12 +252,12 @@
|
|
|
252
252
|
],
|
|
253
253
|
"dependencies": {
|
|
254
254
|
"@azure/msal-common": "^14.11.0",
|
|
255
|
-
"@azure/msal-node": "^2.
|
|
256
|
-
"@inquirer/confirm": "^3.1.
|
|
257
|
-
"@inquirer/input": "^2.1.
|
|
258
|
-
"@inquirer/select": "^2.3.
|
|
255
|
+
"@azure/msal-node": "^2.10.0",
|
|
256
|
+
"@inquirer/confirm": "^3.1.12",
|
|
257
|
+
"@inquirer/input": "^2.1.12",
|
|
258
|
+
"@inquirer/select": "^2.3.8",
|
|
259
259
|
"@xmldom/xmldom": "^0.8.10",
|
|
260
|
-
"adaptive-expressions": "^4.22.
|
|
260
|
+
"adaptive-expressions": "^4.22.3",
|
|
261
261
|
"adaptivecards": "^3.0.4",
|
|
262
262
|
"adaptivecards-templating": "^2.3.1",
|
|
263
263
|
"adm-zip": "^0.5.14",
|
|
@@ -277,10 +277,10 @@
|
|
|
277
277
|
"ora": "^8.0.1",
|
|
278
278
|
"semver": "^7.6.2",
|
|
279
279
|
"strip-json-comments": "^5.0.1",
|
|
280
|
-
"typescript": "^5.
|
|
280
|
+
"typescript": "^5.5.3",
|
|
281
281
|
"update-notifier": "^7.0.0",
|
|
282
282
|
"uuid": "^9.0.1",
|
|
283
|
-
"yaml": "^2.4.
|
|
283
|
+
"yaml": "^2.4.5"
|
|
284
284
|
},
|
|
285
285
|
"devDependencies": {
|
|
286
286
|
"@actions/core": "^1.10.1",
|
|
@@ -289,8 +289,8 @@
|
|
|
289
289
|
"@types/jmespath": "^0.15.2",
|
|
290
290
|
"@types/json-to-ast": "^2.1.4",
|
|
291
291
|
"@types/minimist": "^1.2.5",
|
|
292
|
-
"@types/mocha": "^10.0.
|
|
293
|
-
"@types/node": "^20.14.
|
|
292
|
+
"@types/mocha": "^10.0.7",
|
|
293
|
+
"@types/node": "^20.14.9",
|
|
294
294
|
"@types/node-forge": "^1.3.11",
|
|
295
295
|
"@types/omelette": "^0.4.4",
|
|
296
296
|
"@types/semver": "^7.5.8",
|
|
@@ -298,12 +298,12 @@
|
|
|
298
298
|
"@types/update-notifier": "^6.0.8",
|
|
299
299
|
"@types/uuid": "^9.0.8",
|
|
300
300
|
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
301
|
-
"@typescript-eslint/parser": "^7.
|
|
301
|
+
"@typescript-eslint/parser": "^7.15.0",
|
|
302
302
|
"c8": "^9.1.0",
|
|
303
303
|
"eslint": "^8.57.0",
|
|
304
304
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
305
305
|
"eslint-plugin-mocha": "^10.4.3",
|
|
306
|
-
"mocha": "^10.
|
|
306
|
+
"mocha": "^10.5.2",
|
|
307
307
|
"rimraf": "^5.0.7",
|
|
308
308
|
"sinon": "^17.0.2",
|
|
309
309
|
"source-map-support": "^0.5.21"
|