@pnp/cli-microsoft365 4.0.0-beta.f87506e → 4.1.0-beta.6c0929c
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 +3 -3
- package/dist/Auth.js +25 -9
- package/dist/Utils.js +6 -0
- package/dist/cli/Cli.js +4 -4
- package/dist/m365/aad/commands/app/app-add.js +1 -1
- package/dist/m365/aad/commands/app/app-role-add.js +1 -1
- package/dist/m365/aad/commands/o365group/o365group-get.js +0 -4
- package/dist/m365/aad/commands/o365group/o365group-teamify.js +14 -4
- package/dist/m365/aad/commands/o365group/o365group-user-list.js +5 -24
- package/dist/m365/aad/commands/siteclassification/siteclassification-disable.js +2 -2
- package/dist/m365/aad/commands/user/user-set.js +90 -0
- package/dist/m365/aad/commands.js +2 -1
- package/dist/m365/base/SpoCommand.js +13 -0
- package/dist/m365/commands/login.js +12 -0
- package/dist/m365/file/commands/convert/convert-pdf.js +2 -2
- package/dist/m365/onedrive/commands/onedrive-list.js +41 -24
- package/dist/m365/pa/commands/pcf/pcf-init.js +1 -1
- package/dist/m365/pa/commands/solution/solution-init.js +1 -1
- package/dist/m365/planner/commands/plan/plan-get.js +116 -0
- package/dist/m365/planner/commands/task/task-list.js +157 -7
- package/dist/m365/planner/commands.js +1 -0
- package/dist/m365/spfx/commands/package/package-generate.js +1 -1
- package/dist/m365/spfx/commands/project/project-rename.js +1 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/DependencyRule.js +3 -3
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006004_CFG_PS_developer.js +7 -6
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN023001_GITIGNORE_release.js +3 -9
- package/dist/m365/spfx/commands/project/project-upgrade/{upgrade-1.13.0-beta.15.js → upgrade-1.13.0-beta.20.js} +26 -28
- package/dist/m365/spfx/commands/project/project-upgrade.js +3 -3
- package/dist/m365/spfx/commands/spfx-doctor.js +1 -1
- package/dist/m365/spo/commands/app/app-instance-list.js +59 -0
- package/dist/m365/spo/commands/file/file-add.js +1 -1
- package/dist/m365/spo/commands/file/file-list.js +2 -1
- package/dist/m365/spo/commands/group/group-user-list.js +66 -0
- package/dist/m365/spo/commands/listitem/listitem-get.js +5 -5
- package/dist/m365/spo/commands/page/Page.js +1 -1
- package/dist/m365/spo/commands/page/page-clientsidewebpart-add.js +3 -3
- package/dist/m365/spo/commands/page/page-control-get.js +9 -1
- package/dist/m365/spo/commands/page/page-control-list.js +10 -13
- package/dist/m365/spo/commands/page/page-section-add.js +1 -1
- package/dist/m365/spo/commands/page/page-text-add.js +2 -2
- package/dist/m365/spo/commands/site/site-apppermission-remove.js +162 -0
- package/dist/m365/spo/commands/site/site-classic-list.js +41 -24
- package/dist/m365/spo/commands/site/site-list.js +44 -28
- package/dist/m365/spo/commands/sitedesign/sitedesign-set.js +7 -0
- package/dist/m365/spo/commands/spo-search.js +3 -3
- package/dist/m365/spo/commands/term/term-add.js +1 -1
- package/dist/m365/spo/commands/term/term-group-add.js +1 -1
- package/dist/m365/spo/commands/term/term-set-add.js +1 -1
- package/dist/m365/spo/commands/theme/theme-list.js +1 -1
- package/dist/m365/spo/commands.js +3 -0
- package/dist/m365/teams/commands/channel/channel-list.js +5 -4
- package/dist/m365/teams/commands/conversationmember/conversationmember-add.js +9 -8
- package/dist/m365/teams/commands/conversationmember/conversationmember-list.js +20 -22
- package/dist/m365/teams/commands/team/team-get.js +91 -0
- package/dist/m365/teams/commands/team/team-list.js +6 -4
- package/dist/m365/teams/commands/user/user-list.js +5 -24
- package/dist/m365/viva/commands/connections/connections-app-create.js +1 -1
- package/docs/docs/cmd/aad/o365group/o365group-teamify.md +0 -5
- package/docs/docs/cmd/aad/o365group/o365group-user-list.md +2 -17
- package/docs/docs/cmd/aad/siteclassification/siteclassification-disable.md +0 -5
- package/docs/docs/cmd/aad/user/user-set.md +60 -0
- package/docs/docs/cmd/login.md +11 -2
- package/docs/docs/cmd/planner/plan/plan-get.md +45 -0
- package/docs/docs/cmd/planner/task/task-list.md +49 -1
- package/docs/docs/cmd/spfx/project/project-upgrade.md +1 -1
- package/docs/docs/cmd/spo/app/app-instance-list.md +24 -0
- package/docs/docs/cmd/spo/group/group-user-list.md +36 -0
- package/docs/docs/cmd/spo/listitem/listitem-get.md +3 -3
- package/docs/docs/cmd/spo/site/site-apppermission-remove.md +48 -0
- package/docs/docs/cmd/spo/sitedesign/sitedesign-set.md +3 -0
- package/docs/docs/cmd/teams/team/team-get.md +33 -0
- package/docs/docs/cmd/teams/user/user-list.md +2 -23
- package/npm-shrinkwrap.json +432 -333
- package/package.json +22 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.0-beta.6c0929c",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -113,6 +113,7 @@
|
|
|
113
113
|
"Kasireddy, Prasad <prasad.gietcse@gmail.com>",
|
|
114
114
|
"Keijzers, Paul <KbWorks@users.noreply.github.com>",
|
|
115
115
|
"Kelkar, Vipul <vipul_kelkar@yahoo.com>",
|
|
116
|
+
"Kesavanarayanan, Sudharsan <10280385+sudharsank@users.noreply.github.com>",
|
|
116
117
|
"Khalil, Bassem <bk@bassems-air.home>",
|
|
117
118
|
"Kumar, Shantha <34408892+ktskumar@users.noreply.github.com>",
|
|
118
119
|
"Lamber, Patrick <patrick@nubo.eu>",
|
|
@@ -154,6 +155,7 @@
|
|
|
154
155
|
"Thorild, Fredrik <fredrik.thorild@sogeti.com>",
|
|
155
156
|
"Trinder, Garry <garry.trinder@live.com>",
|
|
156
157
|
"Vaghasia, Siddharth <siddh.vaghasia@gmail.com>",
|
|
158
|
+
"van Dijk, Mark <mark@ichicraft.com>",
|
|
157
159
|
"van Hunen, Erwin <erwin.van.hunen@outlook.com>",
|
|
158
160
|
"van Iersel, Cas <cvaniersel@portiva.nl>",
|
|
159
161
|
"van Rousselt, Rick <rick.vanrousselt@outlook.com>",
|
|
@@ -163,13 +165,13 @@
|
|
|
163
165
|
"Wojcik, Adam <adam.wojcik.it@gmail.com>"
|
|
164
166
|
],
|
|
165
167
|
"dependencies": {
|
|
166
|
-
"@azure/msal-node": "^1.
|
|
167
|
-
"adaptive-expressions": "^4.14.
|
|
168
|
+
"@azure/msal-node": "^1.3.0",
|
|
169
|
+
"adaptive-expressions": "^4.14.1",
|
|
168
170
|
"adaptivecards-templating": "^2.1.0",
|
|
169
171
|
"adm-zip": "^0.5.5",
|
|
170
|
-
"applicationinsights": "^2.1.
|
|
171
|
-
"axios": "^0.21.
|
|
172
|
-
"chalk": "^4.1.
|
|
172
|
+
"applicationinsights": "^2.1.6",
|
|
173
|
+
"axios": "^0.21.3",
|
|
174
|
+
"chalk": "^4.1.2",
|
|
173
175
|
"easy-table": "^1.1.1",
|
|
174
176
|
"inquirer": "^8.1.2",
|
|
175
177
|
"jmespath": "^0.15.0",
|
|
@@ -181,39 +183,39 @@
|
|
|
181
183
|
"open": "^8.2.1",
|
|
182
184
|
"semver": "^7.3.4",
|
|
183
185
|
"strip-json-comments": "^3.1.1",
|
|
184
|
-
"typescript": "^4.
|
|
186
|
+
"typescript": "^4.4.2",
|
|
185
187
|
"update-notifier": "^5.1.0",
|
|
186
188
|
"uuid": "^8.3.2",
|
|
187
189
|
"xmldom": "^0.6.0"
|
|
188
190
|
},
|
|
189
191
|
"devDependencies": {
|
|
190
|
-
"@microsoft/microsoft-graph-types": "^2.
|
|
192
|
+
"@microsoft/microsoft-graph-types": "^2.5.0",
|
|
191
193
|
"@types/adm-zip": "^0.4.34",
|
|
192
194
|
"@types/easy-table": "^0.0.33",
|
|
193
195
|
"@types/inquirer": "^7.3.3",
|
|
194
196
|
"@types/jmespath": "^0.15.0",
|
|
195
197
|
"@types/json-to-ast": "^2.1.2",
|
|
196
198
|
"@types/minimist": "^1.2.2",
|
|
197
|
-
"@types/mocha": "^
|
|
198
|
-
"@types/node": "^14.17.
|
|
199
|
-
"@types/node-forge": "^0.
|
|
200
|
-
"@types/semver": "^7.3.
|
|
199
|
+
"@types/mocha": "^9.0.0",
|
|
200
|
+
"@types/node": "^14.17.14",
|
|
201
|
+
"@types/node-forge": "^0.10.3",
|
|
202
|
+
"@types/semver": "^7.3.8",
|
|
201
203
|
"@types/sinon": "^10.0.2",
|
|
202
|
-
"@types/update-notifier": "^5.0
|
|
204
|
+
"@types/update-notifier": "^5.1.0",
|
|
203
205
|
"@types/uuid": "^8.3.1",
|
|
204
206
|
"@types/xmldom": "^0.1.31",
|
|
205
|
-
"@typescript-eslint/eslint-plugin": "^4.
|
|
206
|
-
"@typescript-eslint/parser": "^4.
|
|
207
|
-
"c8": "^7.
|
|
207
|
+
"@typescript-eslint/eslint-plugin": "^4.30.0",
|
|
208
|
+
"@typescript-eslint/parser": "^4.30.0",
|
|
209
|
+
"c8": "^7.8.0",
|
|
208
210
|
"coveralls": "^3.1.1",
|
|
209
|
-
"eslint": "^7.
|
|
211
|
+
"eslint": "^7.32.0",
|
|
210
212
|
"eslint-config-standard": "^16.0.3",
|
|
211
213
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
212
|
-
"eslint-plugin-import": "^2.
|
|
214
|
+
"eslint-plugin-import": "^2.24.2",
|
|
213
215
|
"eslint-plugin-node": "^11.1.0",
|
|
214
216
|
"eslint-plugin-promise": "^5.1.0",
|
|
215
|
-
"mocha": "^9.
|
|
217
|
+
"mocha": "^9.1.1",
|
|
216
218
|
"rimraf": "^3.0.2",
|
|
217
|
-
"sinon": "^11.1.
|
|
219
|
+
"sinon": "^11.1.2"
|
|
218
220
|
}
|
|
219
221
|
}
|