@pnp/cli-microsoft365 5.0.0-beta.8687ee9 → 5.0.0-beta.a1bb50f
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/devcontainer.json +9 -1
- package/dist/m365/aad/commands/group/group-list.js +41 -0
- package/dist/m365/aad/commands/o365group/{Group.js → GroupExtended.js} +1 -1
- package/dist/m365/aad/commands/o365group/o365group-user-set.js +3 -3
- package/dist/m365/aad/commands.js +1 -0
- package/dist/m365/pa/cds-project-mutator.js +1 -1
- package/dist/m365/teams/commands/message/message-get.js +1 -1
- package/docs/docs/cmd/aad/group/group-list.md +21 -0
- package/docs/docs/cmd/teams/message/message-get.md +0 -3
- package/npm-shrinkwrap.json +266 -367
- package/package.json +19 -18
- package/dist/m365/aad/commands/o365group/GroupUser.js +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnp/cli-microsoft365",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.a1bb50f",
|
|
4
4
|
"description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
"Balasubramaniam, Jayakumar <jayakumar@live.in>",
|
|
89
89
|
"Bauer, Stefan <stefan.bauer@n8d.at>",
|
|
90
90
|
"Bernier, Hugo <hugoabernier@live.ca>",
|
|
91
|
+
"Bewernitz, Christian <coder@karfau.de>",
|
|
91
92
|
"Bhardwaj, Aakash <aakashbhardwaj619@gmail.com>",
|
|
92
93
|
"Biret, Vincent <baywet@users.noreply.github.com>",
|
|
93
94
|
"Biro, Peter <Peter.Biro@xs.nestle.com>",
|
|
@@ -96,6 +97,7 @@
|
|
|
96
97
|
"Calabro, David <davej.calabro@gmail.com>",
|
|
97
98
|
"Connell, Andrew <me@andrewconnell.com>",
|
|
98
99
|
"Deshpande, Vardhaman <vardhaman.rd@gmail.com>",
|
|
100
|
+
"Dyjas, Robert <15113729+robdy@users.noreply.github.com>",
|
|
99
101
|
"Faleel, Mohamed Ashiq <ashiqf@gmail.com>",
|
|
100
102
|
"Ford, Lee <fordyman@gmail.com>",
|
|
101
103
|
"Freese, Luise <49960482+LuiseFreese@users.noreply.github.com>",
|
|
@@ -170,7 +172,8 @@
|
|
|
170
172
|
"Wojcik, Adam <adam.wojcik.it@gmail.com>"
|
|
171
173
|
],
|
|
172
174
|
"dependencies": {
|
|
173
|
-
"@azure/msal-node": "^1.
|
|
175
|
+
"@azure/msal-node": "^1.5.0",
|
|
176
|
+
"@xmldom/xmldom": "^0.7.5",
|
|
174
177
|
"adaptive-expressions": "^4.15.0",
|
|
175
178
|
"adaptivecards": "^2.10.0",
|
|
176
179
|
"adaptivecards-templating": "^2.2.0",
|
|
@@ -178,48 +181,46 @@
|
|
|
178
181
|
"applicationinsights": "^2.2.0",
|
|
179
182
|
"axios": "^0.24.0",
|
|
180
183
|
"chalk": "^4.1.2",
|
|
181
|
-
"csv-stringify": "^6.0.
|
|
184
|
+
"csv-stringify": "^6.0.5",
|
|
182
185
|
"easy-table": "^1.2.0",
|
|
183
186
|
"inquirer": "^8.2.0",
|
|
184
187
|
"jmespath": "^0.15.0",
|
|
185
188
|
"json-to-ast": "^2.1.0",
|
|
186
189
|
"markshell": "^1.3.8",
|
|
187
190
|
"minimist": "^1.2.5",
|
|
188
|
-
"node-forge": "^
|
|
191
|
+
"node-forge": "^1.2.0",
|
|
189
192
|
"omelette": "^0.4.17",
|
|
190
193
|
"open": "^8.4.0",
|
|
191
194
|
"semver": "^7.3.4",
|
|
192
195
|
"strip-json-comments": "^3.1.1",
|
|
193
|
-
"typescript": "^4.5.
|
|
196
|
+
"typescript": "^4.5.4",
|
|
194
197
|
"update-notifier": "^5.1.0",
|
|
195
|
-
"uuid": "^8.3.2"
|
|
196
|
-
"xmldom": "^0.6.0"
|
|
198
|
+
"uuid": "^8.3.2"
|
|
197
199
|
},
|
|
198
200
|
"devDependencies": {
|
|
199
|
-
"@microsoft/microsoft-graph-types": "^2.
|
|
201
|
+
"@microsoft/microsoft-graph-types": "^2.11.0",
|
|
200
202
|
"@types/adm-zip": "^0.4.34",
|
|
201
203
|
"@types/inquirer": "^8.1.3",
|
|
202
204
|
"@types/jmespath": "^0.15.0",
|
|
203
205
|
"@types/json-to-ast": "^2.1.2",
|
|
204
206
|
"@types/minimist": "^1.2.2",
|
|
205
207
|
"@types/mocha": "^9.0.0",
|
|
206
|
-
"@types/node": "^16.11.
|
|
207
|
-
"@types/node-forge": "^0.
|
|
208
|
+
"@types/node": "^16.11.19",
|
|
209
|
+
"@types/node-forge": "^1.0.0",
|
|
208
210
|
"@types/semver": "^7.3.9",
|
|
209
211
|
"@types/sinon": "^10.0.6",
|
|
210
212
|
"@types/update-notifier": "^5.1.0",
|
|
211
|
-
"@types/uuid": "^8.3.
|
|
212
|
-
"@
|
|
213
|
-
"@typescript-eslint/
|
|
214
|
-
"
|
|
215
|
-
"c8": "^7.10.0",
|
|
213
|
+
"@types/uuid": "^8.3.4",
|
|
214
|
+
"@typescript-eslint/eslint-plugin": "^5.9.0",
|
|
215
|
+
"@typescript-eslint/parser": "^5.9.0",
|
|
216
|
+
"c8": "^7.11.0",
|
|
216
217
|
"coveralls": "^3.1.1",
|
|
217
|
-
"eslint": "^8.
|
|
218
|
+
"eslint": "^8.6.0",
|
|
218
219
|
"eslint-config-standard": "^16.0.3",
|
|
219
220
|
"eslint-plugin-cli-microsoft365": "file:eslint-rules",
|
|
220
|
-
"eslint-plugin-import": "^2.25.
|
|
221
|
+
"eslint-plugin-import": "^2.25.4",
|
|
221
222
|
"eslint-plugin-node": "^11.1.0",
|
|
222
|
-
"eslint-plugin-promise": "^
|
|
223
|
+
"eslint-plugin-promise": "^6.0.0",
|
|
223
224
|
"mocha": "^9.1.3",
|
|
224
225
|
"rimraf": "^3.0.2",
|
|
225
226
|
"sinon": "^12.0.1"
|