@pnp/cli-microsoft365 11.1.0-beta.43467d2 → 11.1.0-beta.4b2e767
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/.devproxy/api-specs/sharepoint.yaml +18 -0
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/m365/commands/logout.js +5 -1
- package/dist/m365/entra/commands/license/license-list.js +5 -0
- package/dist/m365/pp/commands/gateway/gateway-list.js +5 -0
- package/dist/m365/pp/commands/tenant/tenant-settings-list.js +5 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.16.0.js +2 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.17.0.js +2 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.18.0.js +2 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.19.0.js +2 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.20.0.js +2 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.21.0.js +2 -0
- package/dist/m365/spo/commands/{site/site-alert-list.js → web/web-alert-list.js} +4 -4
- package/dist/m365/spo/commands/web/web-alert-remove.js +59 -0
- package/dist/m365/spo/commands.js +2 -1
- package/docs/docs/cmd/booking/business/business-get.mdx +18 -1
- package/docs/docs/cmd/booking/business/business-list.mdx +18 -1
- package/docs/docs/cmd/entra/administrativeunit/administrativeunit-add.mdx +19 -0
- package/docs/docs/cmd/entra/administrativeunit/administrativeunit-get.mdx +19 -0
- package/docs/docs/cmd/entra/administrativeunit/administrativeunit-list.mdx +19 -0
- package/docs/docs/cmd/entra/administrativeunit/administrativeunit-member-add.mdx +21 -0
- package/docs/docs/cmd/entra/administrativeunit/administrativeunit-member-get.mdx +19 -0
- package/docs/docs/cmd/entra/administrativeunit/administrativeunit-member-list.mdx +19 -0
- package/docs/docs/cmd/entra/administrativeunit/administrativeunit-member-remove.mdx +21 -0
- package/docs/docs/cmd/entra/administrativeunit/administrativeunit-remove.mdx +21 -0
- package/docs/docs/cmd/entra/administrativeunit/administrativeunit-roleassignment-add.mdx +19 -0
- package/docs/docs/cmd/entra/app/app-add.mdx +18 -0
- package/docs/docs/cmd/entra/app/app-get.mdx +19 -1
- package/docs/docs/cmd/entra/app/app-list.mdx +18 -1
- package/docs/docs/cmd/entra/app/app-remove.mdx +20 -0
- package/docs/docs/cmd/entra/app/app-set.mdx +20 -0
- package/docs/docs/cmd/entra/m365group/m365group-recyclebinitem-clear.mdx +14 -0
- package/docs/docs/cmd/entra/m365group/m365group-recyclebinitem-list.mdx +19 -0
- package/docs/docs/cmd/entra/m365group/m365group-recyclebinitem-remove.mdx +14 -0
- package/docs/docs/cmd/entra/m365group/m365group-recyclebinitem-restore.mdx +21 -0
- package/docs/docs/cmd/entra/organization/organization-list.mdx +19 -2
- package/docs/docs/cmd/outlook/mail/mail-send.mdx +21 -0
- package/docs/docs/cmd/outlook/mailbox/mailbox-settings-get.mdx +20 -1
- package/docs/docs/cmd/outlook/mailbox/mailbox-settings-set.mdx +20 -1
- package/docs/docs/cmd/outlook/room/room-list.mdx +19 -0
- package/docs/docs/cmd/outlook/roomlist/roomlist-list.mdx +19 -0
- package/docs/docs/cmd/purview/threatassessment/threatassessment-add.mdx +12 -0
- package/docs/docs/cmd/purview/threatassessment/threatassessment-get.mdx +19 -0
- package/docs/docs/cmd/purview/threatassessment/threatassessment-list.mdx +19 -0
- package/docs/docs/cmd/spo/{site/site-alert-list.mdx → web/web-alert-list.mdx} +7 -7
- package/docs/docs/cmd/spo/web/web-alert-remove.mdx +65 -0
- package/npm-shrinkwrap.json +136 -1
- package/package.json +4 -3
package/npm-shrinkwrap.json
CHANGED
|
@@ -73,7 +73,8 @@
|
|
|
73
73
|
"mocha": "^11.7.4",
|
|
74
74
|
"rimraf": "^6.0.1",
|
|
75
75
|
"sinon": "^21.0.0",
|
|
76
|
-
"source-map-support": "^0.5.21"
|
|
76
|
+
"source-map-support": "^0.5.21",
|
|
77
|
+
"tsc-watch": "^7.2.0"
|
|
77
78
|
}
|
|
78
79
|
},
|
|
79
80
|
"eslint-rules": {
|
|
@@ -3522,6 +3523,13 @@
|
|
|
3522
3523
|
"node": ">= 0.4"
|
|
3523
3524
|
}
|
|
3524
3525
|
},
|
|
3526
|
+
"node_modules/duplexer": {
|
|
3527
|
+
"version": "0.1.2",
|
|
3528
|
+
"resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
|
|
3529
|
+
"integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==",
|
|
3530
|
+
"dev": true,
|
|
3531
|
+
"license": "MIT"
|
|
3532
|
+
},
|
|
3525
3533
|
"node_modules/eastasianwidth": {
|
|
3526
3534
|
"version": "0.2.0",
|
|
3527
3535
|
"resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
|
|
@@ -3899,6 +3907,22 @@
|
|
|
3899
3907
|
"node": ">=0.10.0"
|
|
3900
3908
|
}
|
|
3901
3909
|
},
|
|
3910
|
+
"node_modules/event-stream": {
|
|
3911
|
+
"version": "3.3.4",
|
|
3912
|
+
"resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz",
|
|
3913
|
+
"integrity": "sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==",
|
|
3914
|
+
"dev": true,
|
|
3915
|
+
"license": "MIT",
|
|
3916
|
+
"dependencies": {
|
|
3917
|
+
"duplexer": "~0.1.1",
|
|
3918
|
+
"from": "~0",
|
|
3919
|
+
"map-stream": "~0.1.0",
|
|
3920
|
+
"pause-stream": "0.0.11",
|
|
3921
|
+
"split": "0.3",
|
|
3922
|
+
"stream-combiner": "~0.0.4",
|
|
3923
|
+
"through": "~2.3.1"
|
|
3924
|
+
}
|
|
3925
|
+
},
|
|
3902
3926
|
"node_modules/execa": {
|
|
3903
3927
|
"version": "9.6.0",
|
|
3904
3928
|
"resolved": "https://registry.npmjs.org/execa/-/execa-9.6.0.tgz",
|
|
@@ -4182,6 +4206,13 @@
|
|
|
4182
4206
|
"integrity": "sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw==",
|
|
4183
4207
|
"license": "MIT"
|
|
4184
4208
|
},
|
|
4209
|
+
"node_modules/from": {
|
|
4210
|
+
"version": "0.1.7",
|
|
4211
|
+
"resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz",
|
|
4212
|
+
"integrity": "sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==",
|
|
4213
|
+
"dev": true,
|
|
4214
|
+
"license": "MIT"
|
|
4215
|
+
},
|
|
4185
4216
|
"node_modules/function-bind": {
|
|
4186
4217
|
"version": "1.1.2",
|
|
4187
4218
|
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
@@ -5153,6 +5184,12 @@
|
|
|
5153
5184
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5154
5185
|
}
|
|
5155
5186
|
},
|
|
5187
|
+
"node_modules/map-stream": {
|
|
5188
|
+
"version": "0.1.0",
|
|
5189
|
+
"resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz",
|
|
5190
|
+
"integrity": "sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==",
|
|
5191
|
+
"dev": true
|
|
5192
|
+
},
|
|
5156
5193
|
"node_modules/math-intrinsics": {
|
|
5157
5194
|
"version": "1.1.0",
|
|
5158
5195
|
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
@@ -5346,6 +5383,13 @@
|
|
|
5346
5383
|
"dev": true,
|
|
5347
5384
|
"license": "MIT"
|
|
5348
5385
|
},
|
|
5386
|
+
"node_modules/node-cleanup": {
|
|
5387
|
+
"version": "2.1.2",
|
|
5388
|
+
"resolved": "https://registry.npmjs.org/node-cleanup/-/node-cleanup-2.1.2.tgz",
|
|
5389
|
+
"integrity": "sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==",
|
|
5390
|
+
"dev": true,
|
|
5391
|
+
"license": "MIT"
|
|
5392
|
+
},
|
|
5349
5393
|
"node_modules/node-forge": {
|
|
5350
5394
|
"version": "1.3.1",
|
|
5351
5395
|
"resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz",
|
|
@@ -5558,6 +5602,19 @@
|
|
|
5558
5602
|
"dev": true,
|
|
5559
5603
|
"license": "ISC"
|
|
5560
5604
|
},
|
|
5605
|
+
"node_modules/pause-stream": {
|
|
5606
|
+
"version": "0.0.11",
|
|
5607
|
+
"resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz",
|
|
5608
|
+
"integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==",
|
|
5609
|
+
"dev": true,
|
|
5610
|
+
"license": [
|
|
5611
|
+
"MIT",
|
|
5612
|
+
"Apache2"
|
|
5613
|
+
],
|
|
5614
|
+
"dependencies": {
|
|
5615
|
+
"through": "~2.3"
|
|
5616
|
+
}
|
|
5617
|
+
},
|
|
5561
5618
|
"node_modules/pg-int8": {
|
|
5562
5619
|
"version": "1.0.1",
|
|
5563
5620
|
"resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz",
|
|
@@ -5715,6 +5772,22 @@
|
|
|
5715
5772
|
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
|
|
5716
5773
|
"license": "MIT"
|
|
5717
5774
|
},
|
|
5775
|
+
"node_modules/ps-tree": {
|
|
5776
|
+
"version": "1.2.0",
|
|
5777
|
+
"resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz",
|
|
5778
|
+
"integrity": "sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==",
|
|
5779
|
+
"dev": true,
|
|
5780
|
+
"license": "MIT",
|
|
5781
|
+
"dependencies": {
|
|
5782
|
+
"event-stream": "=3.3.4"
|
|
5783
|
+
},
|
|
5784
|
+
"bin": {
|
|
5785
|
+
"ps-tree": "bin/ps-tree.js"
|
|
5786
|
+
},
|
|
5787
|
+
"engines": {
|
|
5788
|
+
"node": ">= 0.10"
|
|
5789
|
+
}
|
|
5790
|
+
},
|
|
5718
5791
|
"node_modules/punycode": {
|
|
5719
5792
|
"version": "2.3.1",
|
|
5720
5793
|
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
@@ -6194,6 +6267,29 @@
|
|
|
6194
6267
|
"source-map": "^0.6.0"
|
|
6195
6268
|
}
|
|
6196
6269
|
},
|
|
6270
|
+
"node_modules/split": {
|
|
6271
|
+
"version": "0.3.3",
|
|
6272
|
+
"resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz",
|
|
6273
|
+
"integrity": "sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==",
|
|
6274
|
+
"dev": true,
|
|
6275
|
+
"license": "MIT",
|
|
6276
|
+
"dependencies": {
|
|
6277
|
+
"through": "2"
|
|
6278
|
+
},
|
|
6279
|
+
"engines": {
|
|
6280
|
+
"node": "*"
|
|
6281
|
+
}
|
|
6282
|
+
},
|
|
6283
|
+
"node_modules/stream-combiner": {
|
|
6284
|
+
"version": "0.0.4",
|
|
6285
|
+
"resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz",
|
|
6286
|
+
"integrity": "sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==",
|
|
6287
|
+
"dev": true,
|
|
6288
|
+
"license": "MIT",
|
|
6289
|
+
"dependencies": {
|
|
6290
|
+
"duplexer": "~0.1.1"
|
|
6291
|
+
}
|
|
6292
|
+
},
|
|
6197
6293
|
"node_modules/string_decoder": {
|
|
6198
6294
|
"version": "1.3.0",
|
|
6199
6295
|
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
@@ -6203,6 +6299,16 @@
|
|
|
6203
6299
|
"safe-buffer": "~5.2.0"
|
|
6204
6300
|
}
|
|
6205
6301
|
},
|
|
6302
|
+
"node_modules/string-argv": {
|
|
6303
|
+
"version": "0.3.2",
|
|
6304
|
+
"resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz",
|
|
6305
|
+
"integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==",
|
|
6306
|
+
"dev": true,
|
|
6307
|
+
"license": "MIT",
|
|
6308
|
+
"engines": {
|
|
6309
|
+
"node": ">=0.6.19"
|
|
6310
|
+
}
|
|
6311
|
+
},
|
|
6206
6312
|
"node_modules/string-width": {
|
|
6207
6313
|
"version": "5.1.2",
|
|
6208
6314
|
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
|
|
@@ -6412,6 +6518,13 @@
|
|
|
6412
6518
|
"node": ">=18"
|
|
6413
6519
|
}
|
|
6414
6520
|
},
|
|
6521
|
+
"node_modules/through": {
|
|
6522
|
+
"version": "2.3.8",
|
|
6523
|
+
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
|
|
6524
|
+
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
|
|
6525
|
+
"dev": true,
|
|
6526
|
+
"license": "MIT"
|
|
6527
|
+
},
|
|
6415
6528
|
"node_modules/to-regex-range": {
|
|
6416
6529
|
"version": "5.0.1",
|
|
6417
6530
|
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
@@ -6447,6 +6560,28 @@
|
|
|
6447
6560
|
"typescript": ">=4.8.4"
|
|
6448
6561
|
}
|
|
6449
6562
|
},
|
|
6563
|
+
"node_modules/tsc-watch": {
|
|
6564
|
+
"version": "7.2.0",
|
|
6565
|
+
"resolved": "https://registry.npmjs.org/tsc-watch/-/tsc-watch-7.2.0.tgz",
|
|
6566
|
+
"integrity": "sha512-4gRFawQD1cVSaILvG7wl2x6NtteKbS2dGBMbL7Q6n1ldLIOKXCJUoEwUXdGuee4dp+zcnA6tukBBLz1lZrNI9w==",
|
|
6567
|
+
"dev": true,
|
|
6568
|
+
"license": "MIT",
|
|
6569
|
+
"dependencies": {
|
|
6570
|
+
"cross-spawn": "^7.0.6",
|
|
6571
|
+
"node-cleanup": "^2.1.2",
|
|
6572
|
+
"ps-tree": "^1.2.0",
|
|
6573
|
+
"string-argv": "^0.3.2"
|
|
6574
|
+
},
|
|
6575
|
+
"bin": {
|
|
6576
|
+
"tsc-watch": "dist/lib/tsc-watch.js"
|
|
6577
|
+
},
|
|
6578
|
+
"engines": {
|
|
6579
|
+
"node": ">=12.12.0"
|
|
6580
|
+
},
|
|
6581
|
+
"peerDependencies": {
|
|
6582
|
+
"typescript": "*"
|
|
6583
|
+
}
|
|
6584
|
+
},
|
|
6450
6585
|
"node_modules/tslib": {
|
|
6451
6586
|
"version": "2.8.1",
|
|
6452
6587
|
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "11.1.0-beta.
|
|
3
|
+
"version": "11.1.0-beta.4b2e767",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"type": "module",
|
|
23
23
|
"scripts": {
|
|
24
24
|
"build": "tsc -p . && node scripts/write-all-commands.js && node scripts/copy-files.js",
|
|
25
|
-
"watch": "tsc
|
|
25
|
+
"watch": "tsc-watch --onSuccess \"node scripts/write-all-commands.js\"",
|
|
26
26
|
"clean": "rimraf ./dist",
|
|
27
27
|
"test": "npm run test:version && npm run lint && npm run test:cov",
|
|
28
28
|
"test:version": "node scripts/check-version.js",
|
|
@@ -320,6 +320,7 @@
|
|
|
320
320
|
"mocha": "^11.7.4",
|
|
321
321
|
"rimraf": "^6.0.1",
|
|
322
322
|
"sinon": "^21.0.0",
|
|
323
|
-
"source-map-support": "^0.5.21"
|
|
323
|
+
"source-map-support": "^0.5.21",
|
|
324
|
+
"tsc-watch": "^7.2.0"
|
|
324
325
|
}
|
|
325
326
|
}
|