@pnp/cli-microsoft365 5.4.0-beta.3879fc9 → 5.4.0-beta.96022f3

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.
Files changed (38) hide show
  1. package/.eslintrc.js +1 -0
  2. package/dist/m365/aad/commands/o365group/o365group-conversation-post-list.js +4 -19
  3. package/dist/m365/aad/commands/o365group/o365group-get.js +3 -9
  4. package/dist/m365/planner/commands/bucket/bucket-add.js +4 -16
  5. package/dist/m365/planner/commands/bucket/bucket-get.js +4 -18
  6. package/dist/m365/planner/commands/bucket/bucket-list.js +4 -17
  7. package/dist/m365/planner/commands/bucket/bucket-remove.js +4 -18
  8. package/dist/m365/planner/commands/bucket/bucket-set.js +4 -18
  9. package/dist/m365/planner/commands/plan/plan-add.js +4 -16
  10. package/dist/m365/planner/commands/plan/plan-details-get.js +4 -19
  11. package/dist/m365/planner/commands/plan/plan-get.js +4 -17
  12. package/dist/m365/planner/commands/plan/plan-list.js +4 -17
  13. package/dist/m365/planner/commands/task/task-add.js +4 -16
  14. package/dist/m365/planner/commands/task/task-checklistitem-add.js +89 -0
  15. package/dist/m365/planner/commands/task/task-get.js +4 -19
  16. package/dist/m365/planner/commands/task/task-list.js +4 -16
  17. package/dist/m365/planner/commands/task/task-set.js +4 -16
  18. package/dist/m365/planner/commands.js +1 -0
  19. package/dist/m365/spo/commands/listitem/listitem-list.js +30 -10
  20. package/dist/m365/spo/commands/roledefinition/roledefinition-remove.js +82 -0
  21. package/dist/m365/spo/commands/site/site-remove.js +23 -37
  22. package/dist/m365/spo/commands.js +1 -0
  23. package/dist/m365/teams/commands/app/app-list.js +6 -20
  24. package/dist/m365/teams/commands/channel/channel-get.js +6 -19
  25. package/dist/m365/teams/commands/channel/channel-list.js +6 -18
  26. package/dist/m365/teams/commands/channel/channel-member-add.js +7 -18
  27. package/dist/m365/teams/commands/channel/channel-member-list.js +6 -19
  28. package/dist/m365/teams/commands/channel/channel-member-remove.js +6 -19
  29. package/dist/m365/teams/commands/channel/channel-member-set.js +6 -19
  30. package/dist/m365/teams/commands/tab/tab-get.js +6 -19
  31. package/dist/m365/teams/commands/team/team-add.js +2 -7
  32. package/dist/m365/teams/commands/team/team-get.js +6 -19
  33. package/dist/utils/aadGroup.js +57 -0
  34. package/dist/utils/index.js +2 -0
  35. package/docs/docs/cmd/planner/task/task-checklistitem-add.md +36 -0
  36. package/docs/docs/cmd/spo/listitem/listitem-list.md +16 -10
  37. package/docs/docs/cmd/spo/roledefinition/roledefinition-remove.md +36 -0
  38. package/package.json +1 -1
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const request_1 = require("../../../../request");
4
4
  const utils_1 = require("../../../../utils");
5
+ const aadGroup_1 = require("../../../../utils/aadGroup");
5
6
  const GraphCommand_1 = require("../../../base/GraphCommand");
6
7
  const commands_1 = require("../../commands");
7
8
  class TeamsTeamGetCommand extends GraphCommand_1.default {
@@ -21,27 +22,13 @@ class TeamsTeamGetCommand extends GraphCommand_1.default {
21
22
  if (args.options.id) {
22
23
  return Promise.resolve(args.options.id);
23
24
  }
24
- const requestOptions = {
25
- url: `${this.resource}/v1.0/groups?$filter=displayName eq '${encodeURIComponent(args.options.name)}'&$select=id,resourceProvisioningOptions`,
26
- headers: {
27
- accept: 'application/json;odata.metadata=none'
28
- },
29
- responseType: 'json'
30
- };
31
- return request_1.default
32
- .get(requestOptions)
33
- .then(response => {
34
- const groupItem = response.value[0];
35
- if (!groupItem) {
36
- return Promise.reject(`The specified team does not exist in the Microsoft Teams`);
37
- }
38
- if (groupItem.resourceProvisioningOptions.indexOf('Team') === -1) {
25
+ return aadGroup_1.aadGroup
26
+ .getGroupByDisplayName(args.options.teamName)
27
+ .then(group => {
28
+ if (group.resourceProvisioningOptions.indexOf('Team') === -1) {
39
29
  return Promise.reject(`The specified team does not exist in the Microsoft Teams`);
40
30
  }
41
- if (response.value.length >= 2) {
42
- return Promise.reject(`Multiple Microsoft Teams teams with name ${args.options.name} found: ${response.value.map(x => x.id)}`);
43
- }
44
- return Promise.resolve(groupItem.id);
31
+ return group.id;
45
32
  });
46
33
  }
47
34
  commandAction(logger, args, cb) {
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.aadGroup = void 0;
13
+ const request_1 = require("../request");
14
+ const odata_1 = require("./odata");
15
+ const graphResource = 'https://graph.microsoft.com';
16
+ exports.aadGroup = {
17
+ /**
18
+ * Retrieve a single group.
19
+ * @param id Group ID.
20
+ */
21
+ getGroupById(id) {
22
+ const requestOptions = {
23
+ url: `${graphResource}/v1.0/groups/${id}`,
24
+ headers: {
25
+ accept: 'application/json;odata.metadata=none'
26
+ },
27
+ responseType: 'json'
28
+ };
29
+ return request_1.default.get(requestOptions);
30
+ },
31
+ /**
32
+ * Get a list of groups by display name.
33
+ * @param displayName Group display name.
34
+ */
35
+ getGroupsByDisplayName(displayName) {
36
+ return odata_1.odata.getAllItems(`${graphResource}/v1.0/groups?$filter=displayName eq '${encodeURIComponent(displayName)}'`);
37
+ },
38
+ /**
39
+ * Get a single group by its display name.
40
+ * @param displayName Group display name.
41
+ * @throws Error when group was not found.
42
+ * @throws Error when multiple groups with the same name were found.
43
+ */
44
+ getGroupByDisplayName(displayName) {
45
+ return __awaiter(this, void 0, void 0, function* () {
46
+ const groups = yield this.getGroupsByDisplayName(displayName);
47
+ if (!groups.length) {
48
+ throw Error(`The specified group '${displayName}' does not exist.`);
49
+ }
50
+ if (groups.length > 1) {
51
+ throw Error(`Multiple groups with name '${displayName}' found: ${groups.map(x => x.id).join(',')}.`);
52
+ }
53
+ return groups[0];
54
+ });
55
+ }
56
+ };
57
+ //# sourceMappingURL=aadGroup.js.map
@@ -14,12 +14,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./aadGroup"), exports);
17
18
  __exportStar(require("./accessToken"), exports);
18
19
  __exportStar(require("./formatting"), exports);
19
20
  __exportStar(require("./fsUtil"), exports);
20
21
  __exportStar(require("./md"), exports);
21
22
  __exportStar(require("./odata"), exports);
22
23
  __exportStar(require("./packageManager"), exports);
24
+ __exportStar(require("./planner"), exports);
23
25
  __exportStar(require("./sinonUtil"), exports);
24
26
  __exportStar(require("./spfx"), exports);
25
27
  __exportStar(require("./spo"), exports);
@@ -0,0 +1,36 @@
1
+ # planner task checklistitem add
2
+
3
+ Adds a new checklist item to a Planner task
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 planner task checklistitem add [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-i, --taskId <taskId>`
14
+ : ID of the task.
15
+
16
+ `-t, --title <title>`
17
+ : Title of the checklist item.
18
+
19
+ `--isChecked`
20
+ : Mark the checklist item as checked.
21
+
22
+ --8<-- "docs/cmd/_global.md"
23
+
24
+ ## Examples
25
+
26
+ Adds an unchecked checklist item with title _My checklist item_ to a Microsoft Planner task with ID _2Vf8JHgsBUiIf-nuvBtv-ZgAAYw2_
27
+
28
+ ```sh
29
+ m365 planner task checklistitem add --taskId 2Vf8JHgsBUiIf-nuvBtv-ZgAAYw2 --title "My checklist item"
30
+ ```
31
+
32
+ Adds a checked checklist item with title _My checklist item_ to a Microsoft Planner task with ID _2Vf8JHgsBUiIf-nuvBtv-ZgAAYw2_
33
+
34
+ ```sh
35
+ m365 planner task checklistitem add --taskId 2Vf8JHgsBUiIf-nuvBtv-ZgAAYw2 --title "My checklist item" --isChecked
36
+ ```
@@ -13,11 +13,17 @@ m365 spo listitem list [options]
13
13
  `-u, --webUrl <webUrl>`
14
14
  : URL of the site from which the item should be retrieved
15
15
 
16
- `-i, --id [id]`
17
- : ID of the list to retrieve items from. Specify `id` or `title` but not both
16
+ `-i, --listId [listId]`
17
+ : ID of the list to retrieve items from. Specify `listId` or `listTitle` but not both
18
18
 
19
- `-t, --title [title]`
20
- : Title of the list from which to retrieve the item. Specify `id` or `title` but not both
19
+ `--id [id]`
20
+ : (deprecated. Use `listId` instead) ID of the list to retrieve items from. Specify `id` or `title` but not both
21
+
22
+ `-t, --listTitle [listTitle]`
23
+ : Title of the list to retrieve items from. Specify `listId` or `listTitle` but not both
24
+
25
+ `--title [title]`
26
+ : (deprecated. Use `listTitle` instead) Title of the list to retrieve items from. Specify `id` or `title` but not both
21
27
 
22
28
  `-q, --camlQuery [camlQuery]`
23
29
  : CAML query to use to query the list of items with
@@ -45,35 +51,35 @@ m365 spo listitem list [options]
45
51
  Get all items from a list named Demo List
46
52
 
47
53
  ```sh
48
- m365 spo listitem list --title "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x
54
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x
49
55
  ```
50
56
 
51
57
  From a list named _Demo List_ get all items with title _Demo list item_ using a CAML query
52
58
 
53
59
  ```sh
54
- m365 spo listitem list --title "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --camlQuery "<View><Query><Where><Eq><FieldRef Name='Title' /><Value Type='Text'>Demo list item</Value></Eq></Where></Query></View>"
60
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --camlQuery "<View><Query><Where><Eq><FieldRef Name='Title' /><Value Type='Text'>Demo list item</Value></Eq></Where></Query></View>"
55
61
  ```
56
62
 
57
63
  Get all items from a list with ID _935c13a0-cc53-4103-8b48-c1d0828eaa7f_
58
64
 
59
65
  ```sh
60
- m365 spo listitem list --id 935c13a0-cc53-4103-8b48-c1d0828eaa7f --webUrl https://contoso.sharepoint.com/sites/project-x
66
+ m365 spo listitem list --listId 935c13a0-cc53-4103-8b48-c1d0828eaa7f --webUrl https://contoso.sharepoint.com/sites/project-x
61
67
  ```
62
68
 
63
69
  Get all items from list named _Demo List_. For each item, retrieve the value of the _ID_, _Title_ and _Modified_ fields
64
70
 
65
71
  ```sh
66
- m365 spo listitem list --title "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --fields "ID,Title,Modified"
72
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --fields "ID,Title,Modified"
67
73
  ```
68
74
 
69
75
  From a list named _Demo List_ get all items with title _Demo list item_ using an OData filter
70
76
 
71
77
  ```sh
72
- m365 spo listitem list --title "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --filter "Title eq 'Demo list item'"
78
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --filter "Title eq 'Demo list item'"
73
79
  ```
74
80
 
75
81
  From a list named _Demo List_ get the second batch of 10 items
76
82
 
77
83
  ```sh
78
- m365 spo listitem list --title "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --pageSize 10 --pageNumber 2
84
+ m365 spo listitem list --listTitle "Demo List" --webUrl https://contoso.sharepoint.com/sites/project-x --pageSize 10 --pageNumber 2
79
85
  ```
@@ -0,0 +1,36 @@
1
+ # spo roledefinition remove
2
+
3
+ Removes the role definition from the specified site
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 spo roledefinition remove [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-u, --webUrl <webUrl>`
14
+ : URL of the site from which role should be removed
15
+
16
+ `-i, --id <id>`
17
+ : ID of the role definition to remove
18
+
19
+ `--confirm`
20
+ : Don't prompt for confirming removing the role definition
21
+
22
+ --8<-- "docs/cmd/_global.md"
23
+
24
+ ## Examples
25
+
26
+ Remove the role definition from site _https://contoso.sharepoint.com/sites/project-x_ with id _1_
27
+
28
+ ```sh
29
+ m365 spo roledefinition remove --webUrl https://contoso.sharepoint.com/sites/project-x --id 1
30
+ ```
31
+
32
+ Remove the role definition from site _https://contoso.sharepoint.com/sites/project-x_ with id _1_ and don't prompt for confirmation
33
+
34
+ ```sh
35
+ m365 spo roledefinition remove --webUrl https://contoso.sharepoint.com/sites/project-x --id 1 --confirm
36
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "5.4.0-beta.3879fc9",
3
+ "version": "5.4.0-beta.96022f3",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",