@pnp/cli-microsoft365 5.2.0 → 5.3.0-beta.4033f50
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 +1 -0
- package/dist/m365/aad/commands/app/app-add.js +1 -1
- package/dist/m365/aad/commands/app/app-role-list.js +1 -1
- package/dist/m365/aad/commands/approleassignment/approleassignment-list.js +55 -22
- package/dist/m365/aad/commands/group/group-list.js +1 -1
- package/dist/m365/aad/commands/groupsetting/groupsetting-list.js +1 -1
- package/dist/m365/aad/commands/groupsettingtemplate/groupsettingtemplate-get.js +1 -1
- package/dist/m365/aad/commands/groupsettingtemplate/groupsettingtemplate-list.js +1 -1
- package/dist/m365/aad/commands/o365group/o365group-conversation-list.js +1 -1
- package/dist/m365/aad/commands/o365group/o365group-conversation-post-list.js +1 -1
- package/dist/m365/aad/commands/o365group/o365group-list.js +1 -1
- package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-clear.js +3 -3
- package/dist/m365/aad/commands/o365group/o365group-recyclebinitem-list.js +1 -1
- package/dist/m365/aad/commands/o365group/o365group-user-list.js +2 -2
- package/dist/m365/aad/commands/o365group/o365group-user-set.js +2 -2
- package/dist/m365/aad/commands/user/user-list.js +1 -1
- package/dist/m365/aad/commands/user/user-signin-list.js +1 -1
- package/dist/m365/aad/commands.js +1 -1
- package/dist/m365/app/commands/app-open.js +64 -0
- package/dist/m365/app/commands.js +1 -0
- package/dist/m365/file/commands/file-list.js +1 -1
- package/dist/m365/outlook/commands/message/message-list.js +1 -1
- package/dist/m365/outlook/commands/room/room-list.js +1 -1
- package/dist/m365/outlook/commands/roomlist/roomlist-list.js +1 -1
- package/dist/m365/planner/commands/bucket/bucket-add.js +8 -16
- package/dist/m365/planner/commands/bucket/bucket-get.js +186 -0
- package/dist/m365/planner/commands/bucket/bucket-list.js +10 -19
- package/dist/m365/planner/commands/bucket/bucket-remove.js +202 -0
- package/dist/m365/planner/commands/bucket/bucket-set.js +9 -21
- package/dist/m365/planner/commands/plan/plan-add.js +6 -1
- package/dist/m365/planner/commands/plan/plan-details-get.js +12 -15
- package/dist/m365/planner/commands/plan/plan-get.js +13 -18
- package/dist/m365/planner/commands/plan/plan-list.js +10 -13
- package/dist/m365/planner/commands/task/task-add.js +8 -16
- package/dist/m365/planner/commands/task/task-details-get.js +6 -0
- package/dist/m365/planner/commands/task/task-get.js +138 -7
- package/dist/m365/planner/commands/task/task-list.js +15 -24
- package/dist/m365/planner/commands/task/task-set.js +9 -18
- package/dist/m365/planner/commands.js +2 -0
- package/dist/m365/pp/commands/managementapp/managementapp-list.js +1 -1
- package/dist/m365/spo/commands/field/field-list.js +84 -0
- package/dist/m365/spo/commands/list/list-roleinheritance-break.js +84 -0
- package/dist/m365/spo/commands/list/list-roleinheritance-reset.js +76 -0
- package/dist/m365/spo/commands/listitem/listitem-roleinheritance-break.js +83 -0
- package/dist/m365/spo/commands/listitem/listitem-roleinheritance-reset.js +79 -0
- package/dist/m365/spo/commands/roledefinition/roledefinition-list.js +49 -0
- package/dist/m365/spo/commands.js +6 -0
- package/dist/m365/teams/commands/app/app-list.js +1 -1
- package/dist/m365/teams/commands/channel/channel-list.js +1 -1
- package/dist/m365/teams/commands/channel/channel-member-list.js +1 -1
- package/dist/m365/teams/commands/chat/chat-get.js +8 -8
- package/dist/m365/teams/commands/chat/chat-list.js +1 -1
- package/dist/m365/teams/commands/chat/chat-member-list.js +1 -1
- package/dist/m365/teams/commands/chat/chat-message-list.js +1 -1
- package/dist/m365/teams/commands/chat/chat-message-send.js +6 -6
- package/dist/m365/teams/commands/chat/chatUtil.js +4 -4
- package/dist/m365/teams/commands/message/message-list.js +1 -1
- package/dist/m365/teams/commands/message/message-reply-list.js +1 -1
- package/dist/m365/teams/commands/tab/tab-list.js +1 -1
- package/dist/m365/teams/commands/team/team-list.js +1 -1
- package/dist/m365/teams/commands/user/user-app-list.js +1 -1
- package/dist/m365/teams/commands/user/user-list.js +2 -2
- package/dist/m365/tenant/commands/security/security-alerts-list.js +71 -0
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-healthissue-list.js +1 -1
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-message-list.js +1 -1
- package/dist/m365/tenant/commands.js +1 -0
- package/dist/m365/todo/commands/list/list-list.js +1 -1
- package/dist/m365/todo/commands/task/task-list.js +1 -1
- package/dist/utils/accessToken.js +18 -0
- package/dist/utils/odata.js +2 -2
- package/dist/utils/planner.js +65 -0
- package/docs/docs/cmd/app/app-open.md +45 -0
- package/docs/docs/cmd/planner/bucket/bucket-get.md +57 -0
- package/docs/docs/cmd/planner/bucket/bucket-remove.md +60 -0
- package/docs/docs/cmd/planner/task/task-get.md +30 -3
- package/docs/docs/cmd/spo/field/field-list.md +51 -0
- package/docs/docs/cmd/spo/list/list-roleinheritance-break.md +55 -0
- package/docs/docs/cmd/spo/list/list-roleinheritance-reset.md +36 -0
- package/docs/docs/cmd/spo/listitem/listitem-roleinheritance-break.md +58 -0
- package/docs/docs/cmd/spo/listitem/listitem-roleinheritance-reset.md +39 -0
- package/docs/docs/cmd/spo/roledefinition/roledefinition-list.md +24 -0
- package/docs/docs/cmd/teams/channel/channel-member-list.md +4 -4
- package/docs/docs/cmd/teams/channel/channel-member-remove.md +2 -2
- package/docs/docs/cmd/teams/channel/channel-member-set.md +2 -2
- package/docs/docs/cmd/tenant/security/security-alerts-list.md +30 -0
- package/npm-shrinkwrap.json +1517 -1284
- package/package.json +25 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0-beta.4033f50",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/api.js",
|
|
@@ -180,58 +180,58 @@
|
|
|
180
180
|
"Wojcik, Adam <adam.wojcik.it@gmail.com>"
|
|
181
181
|
],
|
|
182
182
|
"dependencies": {
|
|
183
|
-
"@azure/msal-node": "^1.
|
|
183
|
+
"@azure/msal-node": "^1.8.0",
|
|
184
184
|
"@xmldom/xmldom": "^0.7.5",
|
|
185
|
-
"adaptive-expressions": "^4.
|
|
185
|
+
"adaptive-expressions": "^4.16.0",
|
|
186
186
|
"adaptivecards": "^2.10.0",
|
|
187
187
|
"adaptivecards-templating": "^2.2.0",
|
|
188
188
|
"adm-zip": "^0.5.9",
|
|
189
|
-
"applicationinsights": "^2.
|
|
190
|
-
"axios": "^0.
|
|
189
|
+
"applicationinsights": "^2.3.2",
|
|
190
|
+
"axios": "^0.27.2",
|
|
191
191
|
"chalk": "^4.1.2",
|
|
192
192
|
"clipboardy": "^2.3.0",
|
|
193
193
|
"csv-stringify": "^6.0.5",
|
|
194
194
|
"easy-table": "^1.2.0",
|
|
195
|
-
"inquirer": "^8.2.
|
|
195
|
+
"inquirer": "^8.2.4",
|
|
196
196
|
"jmespath": "^0.16.0",
|
|
197
197
|
"json-to-ast": "^2.1.0",
|
|
198
|
-
"minimist": "^1.2.
|
|
199
|
-
"node-forge": "^1.
|
|
198
|
+
"minimist": "^1.2.6",
|
|
199
|
+
"node-forge": "^1.3.1",
|
|
200
200
|
"omelette": "^0.4.17",
|
|
201
201
|
"open": "^8.4.0",
|
|
202
|
-
"semver": "^7.3.
|
|
202
|
+
"semver": "^7.3.7",
|
|
203
203
|
"strip-json-comments": "^3.1.1",
|
|
204
|
-
"typescript": "^4.6.
|
|
204
|
+
"typescript": "^4.6.4",
|
|
205
205
|
"update-notifier": "^5.1.0",
|
|
206
206
|
"uuid": "^8.3.2"
|
|
207
207
|
},
|
|
208
208
|
"devDependencies": {
|
|
209
|
-
"@microsoft/microsoft-graph-types": "^2.
|
|
210
|
-
"@types/adm-zip": "^0.
|
|
211
|
-
"@types/inquirer": "^8.2.
|
|
209
|
+
"@microsoft/microsoft-graph-types": "^2.19.0",
|
|
210
|
+
"@types/adm-zip": "^0.5.0",
|
|
211
|
+
"@types/inquirer": "^8.2.1",
|
|
212
212
|
"@types/jmespath": "^0.15.0",
|
|
213
213
|
"@types/json-to-ast": "^2.1.2",
|
|
214
214
|
"@types/minimist": "^1.2.2",
|
|
215
|
-
"@types/mocha": "^9.1.
|
|
216
|
-
"@types/node": "^16.11.
|
|
217
|
-
"@types/node-forge": "^1.0.
|
|
215
|
+
"@types/mocha": "^9.1.1",
|
|
216
|
+
"@types/node": "^16.11.32",
|
|
217
|
+
"@types/node-forge": "^1.0.2",
|
|
218
218
|
"@types/semver": "^7.3.9",
|
|
219
219
|
"@types/sinon": "^10.0.11",
|
|
220
220
|
"@types/update-notifier": "^5.1.0",
|
|
221
221
|
"@types/uuid": "^8.3.4",
|
|
222
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
223
|
-
"@typescript-eslint/parser": "^5.
|
|
224
|
-
"c8": "^7.11.
|
|
222
|
+
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
|
223
|
+
"@typescript-eslint/parser": "^5.21.0",
|
|
224
|
+
"c8": "^7.11.2",
|
|
225
225
|
"coveralls": "^3.1.1",
|
|
226
|
-
"eslint": "^8.
|
|
227
|
-
"eslint-config-standard": "^
|
|
226
|
+
"eslint": "^8.14.0",
|
|
227
|
+
"eslint-config-standard": "^17.0.0",
|
|
228
228
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
229
|
-
"eslint-plugin-import": "^2.
|
|
229
|
+
"eslint-plugin-import": "^2.26.0",
|
|
230
230
|
"eslint-plugin-node": "^11.1.0",
|
|
231
231
|
"eslint-plugin-promise": "^6.0.0",
|
|
232
|
-
"mocha": "^9.2.
|
|
232
|
+
"mocha": "^9.2.2",
|
|
233
233
|
"rimraf": "^3.0.2",
|
|
234
|
-
"sinon": "^13.0.
|
|
234
|
+
"sinon": "^13.0.2",
|
|
235
235
|
"source-map-support": "^0.5.21"
|
|
236
236
|
}
|
|
237
|
-
}
|
|
237
|
+
}
|