@pnp/cli-microsoft365 11.9.0 → 11.10.0-beta.3e566b1
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/.devcontainer/Dockerfile +1 -1
- package/.devproxy/api-specs/sharepoint-admin.yaml +50 -0
- package/Dockerfile +1 -1
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/Auth.js +4 -2
- package/dist/m365/outlook/commands/event/event-get.js +77 -0
- package/dist/m365/outlook/commands.js +1 -0
- package/dist/m365/planner/commands/roster/roster-add.js +5 -0
- package/dist/m365/planner/commands/roster/roster-get.js +8 -18
- package/dist/m365/planner/commands/roster/roster-member-add.js +29 -45
- package/dist/m365/planner/commands/roster/roster-member-get.js +28 -44
- package/dist/m365/planner/commands/roster/roster-member-list.js +8 -18
- package/dist/m365/planner/commands/roster/roster-member-remove.js +30 -48
- package/dist/m365/planner/commands/roster/roster-plan-list.js +28 -46
- package/dist/m365/planner/commands/roster/roster-remove.js +9 -27
- package/dist/m365/planner/commands/task/task-add.js +97 -111
- package/dist/m365/planner/commands/task/task-checklistitem-add.js +10 -23
- package/dist/m365/planner/commands/task/task-checklistitem-list.js +16 -26
- package/dist/m365/planner/commands/task/task-checklistitem-remove.js +10 -23
- package/dist/m365/planner/commands/task/task-get.js +46 -69
- package/dist/m365/planner/commands/task/task-list.js +33 -69
- package/dist/m365/planner/commands/task/task-reference-add.js +15 -35
- package/dist/m365/planner/commands/task/task-reference-list.js +8 -18
- package/dist/m365/planner/commands/task/task-reference-remove.js +26 -36
- package/dist/m365/planner/commands/task/task-remove.js +47 -71
- package/dist/m365/planner/commands/task/task-set.js +92 -113
- package/dist/m365/pp/commands/website/Webrole.js +2 -0
- package/dist/m365/pp/commands/website/website-remove.js +80 -0
- package/dist/m365/pp/commands/website/website-webrole-list.js +61 -0
- package/dist/m365/pp/commands.js +3 -1
- package/dist/m365/purview/commands/auditlog/auditlog-list.js +36 -60
- package/dist/m365/purview/commands/retentionevent/retentionevent-add.js +34 -53
- package/dist/m365/purview/commands/retentionevent/retentionevent-get.js +10 -23
- package/dist/m365/purview/commands/retentionevent/retentionevent-remove.js +11 -32
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-add.js +9 -24
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-get.js +10 -23
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-remove.js +11 -32
- package/dist/m365/purview/commands/retentioneventtype/retentioneventtype-set.js +21 -35
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-add.js +40 -82
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-get.js +10 -23
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-remove.js +11 -32
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-set.js +35 -78
- package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-get.js +19 -44
- package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-list.js +16 -39
- package/dist/m365/purview/commands/sensitivitylabel/sensitivitylabel-policysettings-list.js +16 -39
- package/dist/m365/purview/commands/threatassessment/threatassessment-add.js +44 -67
- package/dist/m365/purview/commands/threatassessment/threatassessment-get.js +11 -33
- package/dist/m365/purview/commands/threatassessment/threatassessment-list.js +10 -33
- package/dist/m365/spo/commands/homesite/homesite-remove.js +1 -1
- package/dist/m365/spo/commands/web/{web-alert-list.js → web-rule-list.js} +7 -4
- package/dist/m365/spo/commands/web/{web-alert-remove.js → web-rule-remove.js} +7 -4
- package/dist/m365/spo/commands.js +2 -0
- package/dist/utils/powerPlatform.js +20 -0
- package/docs/docs/cmd/outlook/event/event-get.mdx +280 -0
- package/docs/docs/cmd/pp/website/website-remove.mdx +89 -0
- package/docs/docs/cmd/pp/website/website-webrole-list.mdx +139 -0
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-add.mdx +21 -0
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-get.mdx +19 -0
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-list.mdx +19 -0
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-remove.mdx +21 -0
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-set.mdx +21 -0
- package/docs/docs/cmd/spo/cdn/cdn-get.mdx +19 -0
- package/docs/docs/cmd/spo/cdn/cdn-origin-add.mdx +21 -0
- package/docs/docs/cmd/spo/cdn/cdn-origin-list.mdx +19 -0
- package/docs/docs/cmd/spo/cdn/cdn-origin-remove.mdx +21 -0
- package/docs/docs/cmd/spo/cdn/cdn-policy-list.mdx +19 -0
- package/docs/docs/cmd/spo/cdn/cdn-policy-set.mdx +21 -0
- package/docs/docs/cmd/spo/cdn/cdn-set.mdx +21 -0
- package/docs/docs/cmd/spo/contenttype/contenttype-add.mdx +19 -0
- package/docs/docs/cmd/spo/contenttype/contenttype-get.mdx +19 -0
- package/docs/docs/cmd/spo/contenttype/contenttype-list.mdx +19 -0
- package/docs/docs/cmd/spo/contenttype/contenttype-remove.mdx +21 -0
- package/docs/docs/cmd/spo/contenttype/contenttype-set.mdx +21 -0
- package/docs/docs/cmd/spo/contenttype/contenttype-sync.mdx +19 -0
- package/docs/docs/cmd/spo/field/field-add.mdx +19 -0
- package/docs/docs/cmd/spo/field/field-get.mdx +19 -0
- package/docs/docs/cmd/spo/field/field-list.mdx +19 -0
- package/docs/docs/cmd/spo/field/field-remove.mdx +21 -0
- package/docs/docs/cmd/spo/field/field-set.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-checkout-undo.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-retentionlabel-remove.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-roleassignment-add.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-roleassignment-remove.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-roleinheritance-break.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-roleinheritance-reset.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-sharinginfo-get.mdx +19 -0
- package/docs/docs/cmd/spo/homesite/homesite-add.mdx +21 -2
- package/docs/docs/cmd/spo/homesite/homesite-get.mdx +19 -0
- package/docs/docs/cmd/spo/homesite/homesite-list.mdx +19 -0
- package/docs/docs/cmd/spo/homesite/homesite-remove.mdx +24 -3
- package/docs/docs/cmd/spo/homesite/homesite-set.mdx +21 -2
- package/docs/docs/cmd/spo/hubsite/hubsite-connect.mdx +21 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-data-get.mdx +19 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-disconnect.mdx +21 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-get.mdx +19 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-list.mdx +19 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-register.mdx +19 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-rights-grant.mdx +21 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-rights-revoke.mdx +21 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-set.mdx +19 -0
- package/docs/docs/cmd/spo/hubsite/hubsite-unregister.mdx +21 -0
- package/docs/docs/cmd/spo/web/{web-alert-list.mdx → web-rule-list.mdx} +13 -7
- package/docs/docs/cmd/spo/web/{web-alert-remove.mdx → web-rule-remove.mdx} +10 -4
- package/npm-shrinkwrap.json +1363 -650
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.10.0-beta.3e566b1",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -302,34 +302,34 @@
|
|
|
302
302
|
}
|
|
303
303
|
},
|
|
304
304
|
"dependencies": {
|
|
305
|
-
"@azure/msal-common": "^16.
|
|
306
|
-
"@azure/msal-node": "^5.
|
|
305
|
+
"@azure/msal-common": "^16.11.1",
|
|
306
|
+
"@azure/msal-node": "^5.4.0",
|
|
307
307
|
"@inquirer/confirm": "^6.1.1",
|
|
308
|
-
"@inquirer/input": "^5.1.
|
|
308
|
+
"@inquirer/input": "^5.1.2",
|
|
309
309
|
"@inquirer/select": "^5.2.1",
|
|
310
310
|
"@xmldom/xmldom": "^0.9.10",
|
|
311
311
|
"adaptive-expressions": "^4.23.3",
|
|
312
312
|
"adaptivecards": "^3.0.6",
|
|
313
313
|
"adaptivecards-templating": "^2.3.1",
|
|
314
|
-
"adm-zip": "^0.5.
|
|
315
|
-
"applicationinsights": "^3.
|
|
316
|
-
"axios": "^1.
|
|
314
|
+
"adm-zip": "^0.5.18",
|
|
315
|
+
"applicationinsights": "^3.15.1",
|
|
316
|
+
"axios": "^1.18.1",
|
|
317
317
|
"chalk": "^5.6.2",
|
|
318
318
|
"clipboardy": "^5.3.1",
|
|
319
319
|
"configstore": "^8.0.0",
|
|
320
320
|
"csv-parse": "^6.2.1",
|
|
321
|
-
"csv-stringify": "^6.
|
|
321
|
+
"csv-stringify": "^6.8.1",
|
|
322
322
|
"easy-table": "^1.2.0",
|
|
323
323
|
"jmespath": "^0.16.0",
|
|
324
324
|
"json-to-ast": "^2.1.0",
|
|
325
325
|
"node-forge": "^1.4.0",
|
|
326
326
|
"omelette": "^0.4.17",
|
|
327
327
|
"open": "^11.0.0",
|
|
328
|
-
"semver": "^7.8.
|
|
328
|
+
"semver": "^7.8.5",
|
|
329
329
|
"strip-json-comments": "^5.0.3",
|
|
330
330
|
"typescript": "^5.9.3",
|
|
331
331
|
"update-notifier": "^7.3.1",
|
|
332
|
-
"uuid": "^14.0.
|
|
332
|
+
"uuid": "^14.0.1",
|
|
333
333
|
"yaml": "^2.9.0",
|
|
334
334
|
"yargs-parser": "^22.0.0",
|
|
335
335
|
"zod": "^4.4.3"
|
|
@@ -344,7 +344,7 @@
|
|
|
344
344
|
"@types/json-schema": "^7.0.15",
|
|
345
345
|
"@types/json-to-ast": "^2.1.4",
|
|
346
346
|
"@types/mocha": "^10.0.10",
|
|
347
|
-
"@types/node": "^24.
|
|
347
|
+
"@types/node": "^24.13.3",
|
|
348
348
|
"@types/node-forge": "^1.3.14",
|
|
349
349
|
"@types/omelette": "^0.4.5",
|
|
350
350
|
"@types/semver": "^7.7.1",
|
|
@@ -352,16 +352,16 @@
|
|
|
352
352
|
"@types/update-notifier": "^6.0.8",
|
|
353
353
|
"@types/uuid": "^10.0.0",
|
|
354
354
|
"@types/yargs-parser": "^21.0.3",
|
|
355
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
355
|
+
"@typescript-eslint/eslint-plugin": "^8.63.0",
|
|
356
356
|
"@typescript-eslint/parser": "^8.58.0",
|
|
357
357
|
"c8": "^11.0.0",
|
|
358
|
-
"eslint": "^10.
|
|
358
|
+
"eslint": "^10.6.0",
|
|
359
359
|
"eslint-plugin-mocha": "^11.3.0",
|
|
360
|
-
"globals": "^17.
|
|
360
|
+
"globals": "^17.7.0",
|
|
361
361
|
"mocha": "^11.7.6",
|
|
362
362
|
"rimraf": "^6.1.3",
|
|
363
363
|
"sinon": "^22.0.0",
|
|
364
364
|
"source-map-support": "^0.5.21",
|
|
365
|
-
"tsc-watch": "^7.2.
|
|
365
|
+
"tsc-watch": "^7.2.1"
|
|
366
366
|
}
|
|
367
|
-
}
|
|
367
|
+
}
|