@pnp/cli-microsoft365 6.2.0-beta.e162995 → 6.2.0-beta.ed6bb7b
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.js +6 -0
- package/dist/m365/aad/commands/approleassignment/approleassignment-add.js +3 -0
- package/dist/m365/onenote/commands/page/page-list.js +137 -0
- package/dist/m365/onenote/commands.js +2 -1
- package/dist/m365/planner/commands/bucket/bucket-add.js +0 -6
- package/dist/m365/planner/commands/bucket/bucket-get.js +0 -6
- package/dist/m365/planner/commands/bucket/bucket-list.js +0 -6
- package/dist/m365/planner/commands/bucket/bucket-remove.js +0 -6
- package/dist/m365/planner/commands/bucket/bucket-set.js +0 -6
- package/dist/m365/planner/commands/plan/plan-add.js +0 -6
- package/dist/m365/planner/commands/plan/plan-get.js +0 -6
- package/dist/m365/planner/commands/plan/plan-list.js +0 -6
- package/dist/m365/planner/commands/plan/plan-remove.js +0 -6
- package/dist/m365/planner/commands/plan/plan-set.js +0 -6
- package/dist/m365/planner/commands/task/task-add.js +0 -6
- package/dist/m365/planner/commands/task/task-checklistitem-add.js +0 -6
- package/dist/m365/planner/commands/task/task-checklistitem-list.js +0 -6
- package/dist/m365/planner/commands/task/task-get.js +0 -6
- package/dist/m365/planner/commands/task/task-list.js +0 -6
- package/dist/m365/planner/commands/task/task-reference-list.js +0 -6
- package/dist/m365/planner/commands/task/task-set.js +0 -6
- package/dist/m365/pp/commands/aibuildermodel/aibuildermodel-get.js +110 -0
- package/dist/m365/pp/commands/aibuildermodel/aibuildermodel-list.js +68 -0
- package/dist/m365/pp/commands/aibuildermodel/aibuildermodel-remove.js +130 -0
- package/dist/m365/pp/commands.js +3 -0
- package/dist/m365/purview/commands/retentionlabel/retentionlabel-add.js +143 -0
- package/dist/m365/purview/commands.js +1 -0
- package/dist/m365/spo/commands/file/GraphFileDetails.js +3 -0
- package/dist/m365/spo/commands/file/file-sharinginfo-get.js +12 -12
- package/dist/m365/spo/commands/file/file-sharinglink-get.js +116 -0
- package/dist/m365/spo/commands/file/file-sharinglink-list.js +133 -0
- package/dist/m365/spo/commands/file/file-sharinglink-remove.js +135 -0
- package/dist/m365/spo/commands/group/group-member-add.js +33 -6
- package/dist/m365/spo/commands/group/group-member-remove.js +78 -33
- package/dist/m365/spo/commands/list/list-add.js +3 -0
- package/dist/m365/spo/commands/list/list-retentionlabel-ensure.js +10 -2
- package/dist/m365/spo/commands/list/list-set.js +3 -0
- package/dist/m365/spo/commands/listitem/ListItemRetentionLabel.js +3 -0
- package/dist/m365/spo/commands/listitem/SiteRetentionLabel.js +3 -0
- package/dist/m365/spo/commands/listitem/listitem-list.js +1 -1
- package/dist/m365/spo/commands/listitem/listitem-retentionlabel-ensure.js +161 -0
- package/dist/m365/spo/commands/term/term-list.js +99 -29
- package/dist/m365/spo/commands.js +4 -0
- package/dist/m365/teams/commands/chat/chat-list.js +29 -7
- package/dist/m365/teams/commands/message/message-send.js +81 -0
- package/dist/m365/teams/commands.js +1 -0
- package/docs/docs/cmd/onenote/page/page-list.md +140 -0
- package/docs/docs/cmd/planner/bucket/bucket-add.md +17 -0
- package/docs/docs/cmd/planner/bucket/bucket-get.md +17 -0
- package/docs/docs/cmd/planner/bucket/bucket-list.md +17 -0
- package/docs/docs/cmd/planner/plan/plan-add.md +40 -0
- package/docs/docs/cmd/planner/plan/plan-get.md +21 -0
- package/docs/docs/cmd/planner/plan/plan-list.md +19 -0
- package/docs/docs/cmd/planner/plan/plan-set.md +20 -0
- package/docs/docs/cmd/pp/aibuildermodel/aibuildermodel-get.md +99 -0
- package/docs/docs/cmd/pp/aibuildermodel/aibuildermodel-list.md +95 -0
- package/docs/docs/cmd/pp/aibuildermodel/aibuildermodel-remove.md +53 -0
- package/docs/docs/cmd/purview/retentionlabel/retentionlabel-add.md +128 -0
- package/docs/docs/cmd/spo/cdn/cdn-get.md +1 -1
- package/docs/docs/cmd/spo/cdn/cdn-origin-add.md +1 -1
- package/docs/docs/cmd/spo/cdn/cdn-origin-list.md +1 -1
- package/docs/docs/cmd/spo/cdn/cdn-origin-remove.md +1 -1
- package/docs/docs/cmd/spo/cdn/cdn-policy-list.md +1 -1
- package/docs/docs/cmd/spo/cdn/cdn-policy-set.md +1 -1
- package/docs/docs/cmd/spo/cdn/cdn-set.md +1 -1
- package/docs/docs/cmd/spo/file/file-sharinglink-get.md +107 -0
- package/docs/docs/cmd/spo/file/file-sharinglink-list.md +106 -0
- package/docs/docs/cmd/spo/file/file-sharinglink-remove.md +52 -0
- package/docs/docs/cmd/spo/group/group-member-add.md +22 -4
- package/docs/docs/cmd/spo/group/group-member-remove.md +24 -6
- package/docs/docs/cmd/spo/list/list-add.md +3 -9
- package/docs/docs/cmd/spo/list/list-retentionlabel-ensure.md +8 -5
- package/docs/docs/cmd/spo/list/list-set.md +3 -3
- package/docs/docs/cmd/spo/listitem/listitem-get.md +11 -12
- package/docs/docs/cmd/spo/listitem/listitem-list.md +5 -5
- package/docs/docs/cmd/spo/listitem/listitem-retentionlabel-ensure.md +58 -0
- package/docs/docs/cmd/spo/term/term-list.md +138 -0
- package/docs/docs/cmd/teams/chat/chat-list.md +16 -4
- package/docs/docs/cmd/teams/message/message-send.md +119 -0
- package/npm-shrinkwrap.json +182 -202
- package/package.json +12 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "6.2.0-beta.
|
|
3
|
+
"version": "6.2.0-beta.ed6bb7b",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -205,6 +205,7 @@
|
|
|
205
205
|
"Thorild, Fredrik <fredrik.thorild@sogeti.com>",
|
|
206
206
|
"Trinder, Garry <garry.trinder@live.com>",
|
|
207
207
|
"Vaghasia, Siddharth <siddh.vaghasia@gmail.com>",
|
|
208
|
+
"Van de Voorde, Tim <tim.vdv1995@hotmail.com>",
|
|
208
209
|
"van Dijk, Mark <mark@ichicraft.com>",
|
|
209
210
|
"van Hunen, Erwin <erwin.van.hunen@outlook.com>",
|
|
210
211
|
"van Iersel, Cas <cvaniersel@portiva.nl>",
|
|
@@ -217,12 +218,12 @@
|
|
|
217
218
|
"Wojcik, Adam <adam.wojcik.it@gmail.com>"
|
|
218
219
|
],
|
|
219
220
|
"dependencies": {
|
|
220
|
-
"@azure/msal-node": "^1.14.
|
|
221
|
+
"@azure/msal-node": "^1.14.5",
|
|
221
222
|
"@xmldom/xmldom": "^0.8.6",
|
|
222
223
|
"adaptive-expressions": "^4.18.0",
|
|
223
224
|
"adaptivecards": "^2.11.1",
|
|
224
225
|
"adaptivecards-templating": "^2.3.1",
|
|
225
|
-
"adm-zip": "^0.5.
|
|
226
|
+
"adm-zip": "^0.5.10",
|
|
226
227
|
"applicationinsights": "^2.3.6",
|
|
227
228
|
"axios": "^0.27.2",
|
|
228
229
|
"chalk": "^4.1.2",
|
|
@@ -238,7 +239,7 @@
|
|
|
238
239
|
"open": "^8.4.0",
|
|
239
240
|
"semver": "^7.3.8",
|
|
240
241
|
"strip-json-comments": "^3.1.1",
|
|
241
|
-
"typescript": "^4.9.
|
|
242
|
+
"typescript": "^4.9.4",
|
|
242
243
|
"update-notifier": "^5.1.0",
|
|
243
244
|
"uuid": "^9.0.0"
|
|
244
245
|
},
|
|
@@ -250,25 +251,25 @@
|
|
|
250
251
|
"@types/json-to-ast": "^2.1.2",
|
|
251
252
|
"@types/minimist": "^1.2.2",
|
|
252
253
|
"@types/mocha": "^10.0.1",
|
|
253
|
-
"@types/node": "^16.18.
|
|
254
|
+
"@types/node": "^16.18.11",
|
|
254
255
|
"@types/node-forge": "^1.3.1",
|
|
255
256
|
"@types/semver": "^7.3.13",
|
|
256
257
|
"@types/sinon": "^10.0.13",
|
|
257
258
|
"@types/update-notifier": "^5.1.0",
|
|
258
|
-
"@types/uuid": "^
|
|
259
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
260
|
-
"@typescript-eslint/parser": "^5.
|
|
259
|
+
"@types/uuid": "^9.0.0",
|
|
260
|
+
"@typescript-eslint/eslint-plugin": "^5.47.1",
|
|
261
|
+
"@typescript-eslint/parser": "^5.47.1",
|
|
261
262
|
"c8": "^7.12.0",
|
|
262
|
-
"eslint": "^8.
|
|
263
|
+
"eslint": "^8.31.0",
|
|
263
264
|
"eslint-config-standard": "^17.0.0",
|
|
264
265
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
265
266
|
"eslint-plugin-import": "^2.26.0",
|
|
266
267
|
"eslint-plugin-mocha": "^10.1.0",
|
|
267
268
|
"eslint-plugin-node": "^11.1.0",
|
|
268
269
|
"eslint-plugin-promise": "^6.1.1",
|
|
269
|
-
"mocha": "^10.
|
|
270
|
+
"mocha": "^10.2.0",
|
|
270
271
|
"rimraf": "^3.0.2",
|
|
271
|
-
"sinon": "^
|
|
272
|
+
"sinon": "^15.0.1",
|
|
272
273
|
"source-map-support": "^0.5.21"
|
|
273
274
|
}
|
|
274
275
|
}
|