@pnp/cli-microsoft365 5.3.0-beta.24cd8e4 → 5.3.0-beta.2a76d05
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/dist/Auth.js +5 -0
- package/dist/m365/aad/commands/app/app-add.js +91 -35
- package/dist/m365/aad/commands/app/app-role-list.js +1 -1
- package/dist/m365/aad/commands/app/app-set.js +91 -0
- 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/base/PowerBICommand.js +10 -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 +3 -16
- package/dist/m365/planner/commands/bucket/bucket-get.js +3 -20
- package/dist/m365/planner/commands/bucket/bucket-list.js +4 -18
- package/dist/m365/planner/commands/bucket/bucket-remove.js +3 -20
- package/dist/m365/planner/commands/bucket/bucket-set.js +3 -20
- package/dist/m365/planner/commands/plan/plan-details-get.js +6 -14
- package/dist/m365/planner/commands/plan/plan-get.js +8 -18
- package/dist/m365/planner/commands/plan/plan-list.js +4 -12
- package/dist/m365/planner/commands/task/task-add.js +3 -16
- package/dist/m365/planner/commands/task/task-get.js +3 -21
- package/dist/m365/planner/commands/task/task-list.js +9 -23
- package/dist/m365/planner/commands/task/task-reference-add.js +75 -0
- package/dist/m365/planner/commands/task/task-reference-list.js +45 -0
- package/dist/m365/planner/commands/task/task-set.js +3 -17
- package/dist/m365/planner/commands.js +3 -1
- package/dist/m365/pp/commands/gateway/gateway-list.js +36 -0
- package/dist/m365/pp/commands/managementapp/managementapp-list.js +1 -1
- package/dist/m365/pp/commands.js +1 -0
- package/dist/m365/search/commands/externalconnection/externalconnection-list.js +26 -0
- package/dist/m365/search/commands.js +2 -1
- package/dist/m365/spo/commands/eventreceiver/eventreceiver-get.js +119 -0
- package/dist/m365/spo/commands/list/list-view-add.js +113 -0
- package/dist/m365/spo/commands.js +2 -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-add.js +4 -1
- package/dist/m365/teams/commands/channel/channel-member-list.js +1 -1
- package/dist/m365/teams/commands/channel/channel-member-remove.js +3 -0
- package/dist/m365/teams/commands/channel/channel-member-set.js +3 -0
- 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/serviceannouncement/serviceannouncement-healthissue-list.js +1 -1
- package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-message-list.js +1 -1
- 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/formatting.js +11 -2
- package/dist/utils/odata.js +2 -2
- package/dist/utils/planner.js +65 -0
- package/docs/docs/cmd/aad/app/app-add.md +15 -0
- package/docs/docs/cmd/aad/app/app-set.md +17 -0
- package/docs/docs/cmd/aad/approleassignment/approleassignment-remove.md +1 -1
- package/docs/docs/cmd/planner/task/task-reference-add.md +45 -0
- package/docs/docs/cmd/planner/task/task-reference-list.md +24 -0
- package/docs/docs/cmd/pp/gateway/gateway-list.md +21 -0
- package/docs/docs/cmd/search/externalconnection/externalconnection-list.md +21 -0
- package/docs/docs/cmd/spo/eventreceiver/eventreceiver-get.md +70 -0
- package/docs/docs/cmd/spo/list/list-view-add.md +67 -0
- package/docs/docs/cmd/spo/userprofile/userprofile-get.md +1 -1
- package/package.json +2 -1
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const prefix = 'search';
|
|
4
4
|
exports.default = {
|
|
5
|
-
EXTERNALCONNECTION_ADD: `${prefix} externalconnection add
|
|
5
|
+
EXTERNALCONNECTION_ADD: `${prefix} externalconnection add`,
|
|
6
|
+
EXTERNALCONNECTION_LIST: `${prefix} externalconnection list`
|
|
6
7
|
};
|
|
7
8
|
//# sourceMappingURL=commands.js.map
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const request_1 = require("../../../../request");
|
|
4
|
+
const utils_1 = require("../../../../utils");
|
|
5
|
+
const SpoCommand_1 = require("../../../base/SpoCommand");
|
|
6
|
+
const commands_1 = require("../../commands");
|
|
7
|
+
class SpoEventreceiverGetCommand extends SpoCommand_1.default {
|
|
8
|
+
get name() {
|
|
9
|
+
return commands_1.default.EVENTRECEIVER_GET;
|
|
10
|
+
}
|
|
11
|
+
get description() {
|
|
12
|
+
return 'Gets a specific event receiver attached to the web, site or list (if any of the list options are filled in) by receiver name of id';
|
|
13
|
+
}
|
|
14
|
+
getTelemetryProperties(args) {
|
|
15
|
+
const telemetryProps = super.getTelemetryProperties(args);
|
|
16
|
+
telemetryProps.listId = typeof args.options.listId !== 'undefined';
|
|
17
|
+
telemetryProps.listTitle = typeof args.options.listTitle !== 'undefined';
|
|
18
|
+
telemetryProps.listUrl = typeof args.options.listUrl !== 'undefined';
|
|
19
|
+
telemetryProps.scope = typeof args.options.scope !== 'undefined';
|
|
20
|
+
telemetryProps.id = typeof args.options.id !== 'undefined';
|
|
21
|
+
telemetryProps.name = typeof args.options.name !== 'undefined';
|
|
22
|
+
return telemetryProps;
|
|
23
|
+
}
|
|
24
|
+
commandAction(logger, args, cb) {
|
|
25
|
+
let requestUrl = `${args.options.webUrl}/_api/`;
|
|
26
|
+
let listUrl = '';
|
|
27
|
+
let filter = '?$filter=';
|
|
28
|
+
if (args.options.listId) {
|
|
29
|
+
listUrl = `lists(guid'${encodeURIComponent(args.options.listId)}')/`;
|
|
30
|
+
}
|
|
31
|
+
else if (args.options.listTitle) {
|
|
32
|
+
listUrl = `lists/getByTitle('${encodeURIComponent(args.options.listTitle)}')/`;
|
|
33
|
+
}
|
|
34
|
+
else if (args.options.listUrl) {
|
|
35
|
+
const listServerRelativeUrl = utils_1.urlUtil.getServerRelativePath(args.options.webUrl, args.options.listUrl);
|
|
36
|
+
listUrl = `GetList('${encodeURIComponent(listServerRelativeUrl)}')/`;
|
|
37
|
+
}
|
|
38
|
+
if (!args.options.scope || args.options.scope === 'web') {
|
|
39
|
+
requestUrl += `web/${listUrl}eventreceivers`;
|
|
40
|
+
}
|
|
41
|
+
else {
|
|
42
|
+
requestUrl += 'site/eventreceivers';
|
|
43
|
+
}
|
|
44
|
+
if (args.options.id) {
|
|
45
|
+
filter += `receiverid eq (guid'${args.options.id}')`;
|
|
46
|
+
}
|
|
47
|
+
else {
|
|
48
|
+
filter += `receivername eq '${args.options.name}'`;
|
|
49
|
+
}
|
|
50
|
+
const requestOptions = {
|
|
51
|
+
url: requestUrl + filter,
|
|
52
|
+
headers: {
|
|
53
|
+
'accept': 'application/json;odata=nometadata'
|
|
54
|
+
},
|
|
55
|
+
responseType: 'json'
|
|
56
|
+
};
|
|
57
|
+
request_1.default
|
|
58
|
+
.get(requestOptions)
|
|
59
|
+
.then((res) => {
|
|
60
|
+
logger.log(res.value);
|
|
61
|
+
cb();
|
|
62
|
+
}, (err) => this.handleRejectedODataJsonPromise(err, logger, cb));
|
|
63
|
+
}
|
|
64
|
+
options() {
|
|
65
|
+
const options = [
|
|
66
|
+
{
|
|
67
|
+
option: '-u, --webUrl <webUrl>'
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
option: '--listTitle [listTitle]'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
option: '--listId [listId]'
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
option: '--listUrl [listUrl]'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
option: '-n, --name [name]'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
option: '-i, --id [id]'
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
option: '-s, --scope [scope]',
|
|
86
|
+
autocomplete: ['web', 'site']
|
|
87
|
+
}
|
|
88
|
+
];
|
|
89
|
+
const parentOptions = super.options();
|
|
90
|
+
return options.concat(parentOptions);
|
|
91
|
+
}
|
|
92
|
+
optionSets() {
|
|
93
|
+
return [
|
|
94
|
+
['name', 'id']
|
|
95
|
+
];
|
|
96
|
+
}
|
|
97
|
+
validate(args) {
|
|
98
|
+
const isValidSharePointUrl = utils_1.validation.isValidSharePointUrl(args.options.webUrl);
|
|
99
|
+
if (isValidSharePointUrl !== true) {
|
|
100
|
+
return isValidSharePointUrl;
|
|
101
|
+
}
|
|
102
|
+
const listOptions = [args.options.listId, args.options.listTitle, args.options.listUrl];
|
|
103
|
+
if (listOptions.some(item => item !== undefined) && listOptions.filter(item => item !== undefined).length > 1) {
|
|
104
|
+
return `Specify either list id or title or list url`;
|
|
105
|
+
}
|
|
106
|
+
if (args.options.listId && !utils_1.validation.isValidGuid(args.options.listId)) {
|
|
107
|
+
return `${args.options.listId} is not a valid GUID`;
|
|
108
|
+
}
|
|
109
|
+
if (args.options.scope && ['web', 'site'].indexOf(args.options.scope) === -1) {
|
|
110
|
+
return `${args.options.scope} is not a valid type value. Allowed values web|site.`;
|
|
111
|
+
}
|
|
112
|
+
if (args.options.scope && args.options.scope === 'site' && (args.options.listId || args.options.listUrl || args.options.listTitle)) {
|
|
113
|
+
return 'Scope cannot be set to site when retrieving list event receivers.';
|
|
114
|
+
}
|
|
115
|
+
return true;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
module.exports = new SpoEventreceiverGetCommand();
|
|
119
|
+
//# sourceMappingURL=eventreceiver-get.js.map
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const utils_1 = require("../../../../utils");
|
|
4
|
+
const request_1 = require("../../../../request");
|
|
5
|
+
const SpoCommand_1 = require("../../../base/SpoCommand");
|
|
6
|
+
const commands_1 = require("../../commands");
|
|
7
|
+
class SpoListViewAddCommand extends SpoCommand_1.default {
|
|
8
|
+
get name() {
|
|
9
|
+
return commands_1.default.LIST_VIEW_ADD;
|
|
10
|
+
}
|
|
11
|
+
get description() {
|
|
12
|
+
return 'Adds a new view to a SharePoint list.';
|
|
13
|
+
}
|
|
14
|
+
getTelemetryProperties(args) {
|
|
15
|
+
const telemetryProps = super.getTelemetryProperties(args);
|
|
16
|
+
telemetryProps.listId = typeof args.options.listId !== 'undefined';
|
|
17
|
+
telemetryProps.listTitle = typeof args.options.listTitle !== 'undefined';
|
|
18
|
+
telemetryProps.listUrl = typeof args.options.listUrl !== 'undefined';
|
|
19
|
+
telemetryProps.title = typeof args.options.title !== 'undefined';
|
|
20
|
+
telemetryProps.personal = !!args.options.personal;
|
|
21
|
+
telemetryProps.default = !!args.options.default;
|
|
22
|
+
telemetryProps.orderedView = !!args.options.orderedView;
|
|
23
|
+
telemetryProps.paged = !!args.options.paged;
|
|
24
|
+
telemetryProps.rowLimit = typeof args.options.rowLimit !== 'undefined';
|
|
25
|
+
return telemetryProps;
|
|
26
|
+
}
|
|
27
|
+
commandAction(logger, args, cb) {
|
|
28
|
+
const requestOptions = {
|
|
29
|
+
url: this.getRestUrl(args.options),
|
|
30
|
+
headers: {
|
|
31
|
+
'content-type': 'application/json;odata=verbose',
|
|
32
|
+
accept: 'application/json;odata=nometadata'
|
|
33
|
+
},
|
|
34
|
+
responseType: 'json',
|
|
35
|
+
data: {
|
|
36
|
+
parameters: {
|
|
37
|
+
Title: args.options.title,
|
|
38
|
+
ViewFields: {
|
|
39
|
+
results: args.options.fields.split(',')
|
|
40
|
+
},
|
|
41
|
+
PersonalView: !!args.options.personal,
|
|
42
|
+
SetAsDefaultView: !!args.options.default,
|
|
43
|
+
Paged: !!args.options.paged,
|
|
44
|
+
RowLimit: args.options.rowLimit ? +args.options.rowLimit : 30
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
};
|
|
48
|
+
request_1.default
|
|
49
|
+
.post(requestOptions)
|
|
50
|
+
.then((result) => {
|
|
51
|
+
logger.log(result);
|
|
52
|
+
cb();
|
|
53
|
+
}, (err) => this.handleRejectedODataJsonPromise(err, logger, cb));
|
|
54
|
+
}
|
|
55
|
+
getRestUrl(options) {
|
|
56
|
+
let result = `${options.webUrl}/_api/web/`;
|
|
57
|
+
if (options.listId) {
|
|
58
|
+
result += `lists(guid'${encodeURIComponent(options.listId)}')`;
|
|
59
|
+
}
|
|
60
|
+
else if (options.listTitle) {
|
|
61
|
+
result += `lists/getByTitle('${encodeURIComponent(options.listTitle)}')`;
|
|
62
|
+
}
|
|
63
|
+
else if (options.listUrl) {
|
|
64
|
+
result += `GetList('${encodeURIComponent(utils_1.urlUtil.getServerRelativePath(options.webUrl, options.listUrl))}')`;
|
|
65
|
+
}
|
|
66
|
+
result += '/views/add';
|
|
67
|
+
return result;
|
|
68
|
+
}
|
|
69
|
+
optionSets() {
|
|
70
|
+
return [
|
|
71
|
+
['listId', 'listTitle', 'listUrl']
|
|
72
|
+
];
|
|
73
|
+
}
|
|
74
|
+
options() {
|
|
75
|
+
const options = [
|
|
76
|
+
{ option: '-u, --webUrl <webUrl>' },
|
|
77
|
+
{ option: '--listId [listId]' },
|
|
78
|
+
{ option: '--listTitle [listTitle]' },
|
|
79
|
+
{ option: '--listUrl [listUrl]' },
|
|
80
|
+
{ option: '--title <title>' },
|
|
81
|
+
{ option: '--fields <fields>' },
|
|
82
|
+
{ option: '--personal' },
|
|
83
|
+
{ option: '--default' },
|
|
84
|
+
{ option: '--paged' },
|
|
85
|
+
{ option: '--rowLimit [rowLimit]' }
|
|
86
|
+
];
|
|
87
|
+
const parentOptions = super.options();
|
|
88
|
+
return options.concat(parentOptions);
|
|
89
|
+
}
|
|
90
|
+
validate(args) {
|
|
91
|
+
const webUrlValidation = utils_1.validation.isValidSharePointUrl(args.options.webUrl);
|
|
92
|
+
if (webUrlValidation !== true) {
|
|
93
|
+
return webUrlValidation;
|
|
94
|
+
}
|
|
95
|
+
if (args.options.listId && !utils_1.validation.isValidGuid(args.options.listId)) {
|
|
96
|
+
return `${args.options.listId} in option listId is not a valid GUID`;
|
|
97
|
+
}
|
|
98
|
+
if (args.options.rowLimit !== undefined) {
|
|
99
|
+
if (isNaN(args.options.rowLimit)) {
|
|
100
|
+
return `${args.options.rowLimit} is not a number`;
|
|
101
|
+
}
|
|
102
|
+
if (+args.options.rowLimit <= 0) {
|
|
103
|
+
return 'rowLimit option must be greater than 0.';
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
if (args.options.personal && args.options.default) {
|
|
107
|
+
return 'Default view cannot be a personal view.';
|
|
108
|
+
}
|
|
109
|
+
return true;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
module.exports = new SpoListViewAddCommand();
|
|
113
|
+
//# sourceMappingURL=list-view-add.js.map
|
|
@@ -35,6 +35,7 @@ exports.default = {
|
|
|
35
35
|
CUSTOMACTION_SET: `${prefix} customaction set`,
|
|
36
36
|
CUSTOMACTION_LIST: `${prefix} customaction list`,
|
|
37
37
|
CUSTOMACTION_REMOVE: `${prefix} customaction remove`,
|
|
38
|
+
EVENTRECEIVER_GET: `${prefix} eventreceiver get`,
|
|
38
39
|
EXTERNALUSER_LIST: `${prefix} externaluser list`,
|
|
39
40
|
FEATURE_DISABLE: `${prefix} feature disable`,
|
|
40
41
|
FEATURE_ENABLE: `${prefix} feature enable`,
|
|
@@ -100,6 +101,7 @@ exports.default = {
|
|
|
100
101
|
LIST_ROLEINHERITANCE_RESET: `${prefix} list roleinheritance reset`,
|
|
101
102
|
LIST_SET: `${prefix} list set`,
|
|
102
103
|
LIST_SITESCRIPT_GET: `${prefix} list sitescript get`,
|
|
104
|
+
LIST_VIEW_ADD: `${prefix} list view add`,
|
|
103
105
|
LIST_VIEW_GET: `${prefix} list view get`,
|
|
104
106
|
LIST_VIEW_LIST: `${prefix} list view list`,
|
|
105
107
|
LIST_VIEW_REMOVE: `${prefix} list view remove`,
|
|
@@ -76,7 +76,7 @@ class TeamsAppListCommand extends GraphCommand_1.default {
|
|
|
76
76
|
commandAction(logger, args, cb) {
|
|
77
77
|
this
|
|
78
78
|
.getEndpointUrl(args)
|
|
79
|
-
.then(endpoint => utils_1.odata.getAllItems(endpoint
|
|
79
|
+
.then(endpoint => utils_1.odata.getAllItems(endpoint))
|
|
80
80
|
.then((items) => {
|
|
81
81
|
if (args.options.teamId || args.options.teamName) {
|
|
82
82
|
items.forEach(t => {
|
|
@@ -53,7 +53,7 @@ class TeamsChannelListCommand extends GraphCommand_1.default {
|
|
|
53
53
|
if (args.options.type) {
|
|
54
54
|
endpoint += `?$filter=membershipType eq '${args.options.type}'`;
|
|
55
55
|
}
|
|
56
|
-
return utils_1.odata.getAllItems(endpoint
|
|
56
|
+
return utils_1.odata.getAllItems(endpoint);
|
|
57
57
|
})
|
|
58
58
|
.then((items) => {
|
|
59
59
|
logger.log(items);
|
|
@@ -153,8 +153,11 @@ class TeamsChannelMemberAddCommand extends GraphCommand_1.default {
|
|
|
153
153
|
if (!channelItem) {
|
|
154
154
|
return Promise.reject(`The specified channel '${args.options.channelName}' does not exist in the Microsoft Teams team with ID '${teamId}'`);
|
|
155
155
|
}
|
|
156
|
+
if (channelItem.membershipType !== "private") {
|
|
157
|
+
return Promise.reject(`The specified channel is not a private channel`);
|
|
158
|
+
}
|
|
156
159
|
return Promise.resolve(channelItem.id);
|
|
157
|
-
}
|
|
160
|
+
});
|
|
158
161
|
}
|
|
159
162
|
getUserId(args) {
|
|
160
163
|
if (args.options.userId) {
|
|
@@ -40,7 +40,7 @@ class TeamsChannelMemberListCommand extends GraphCommand_1.default {
|
|
|
40
40
|
})
|
|
41
41
|
.then((channelId) => {
|
|
42
42
|
const endpoint = `${this.resource}/v1.0/teams/${this.teamId}/channels/${channelId}/members`;
|
|
43
|
-
return utils_1.odata.getAllItems(endpoint
|
|
43
|
+
return utils_1.odata.getAllItems(endpoint);
|
|
44
44
|
})
|
|
45
45
|
.then((memberships) => {
|
|
46
46
|
if (args.options.role) {
|
|
@@ -135,6 +135,9 @@ class TeamsChannelMemberRemoveCommand extends GraphCommand_1.default {
|
|
|
135
135
|
if (!channelItem) {
|
|
136
136
|
return Promise.reject(`The specified channel does not exist in the Microsoft Teams team`);
|
|
137
137
|
}
|
|
138
|
+
if (channelItem.membershipType !== "private") {
|
|
139
|
+
return Promise.reject(`The specified channel is not a private channel`);
|
|
140
|
+
}
|
|
138
141
|
return Promise.resolve(channelItem.id);
|
|
139
142
|
});
|
|
140
143
|
}
|
|
@@ -103,6 +103,9 @@ class TeamsChannelMemberSetCommand extends GraphCommand_1.default {
|
|
|
103
103
|
if (!channelItem) {
|
|
104
104
|
return Promise.reject(`The specified channel does not exist in the Microsoft Teams team`);
|
|
105
105
|
}
|
|
106
|
+
if (channelItem.membershipType !== "private") {
|
|
107
|
+
return Promise.reject(`The specified channel is not a private channel`);
|
|
108
|
+
}
|
|
106
109
|
return Promise.resolve(channelItem.id);
|
|
107
110
|
});
|
|
108
111
|
}
|
|
@@ -33,7 +33,7 @@ class TeamsChatGetCommand extends GraphCommand_1.default {
|
|
|
33
33
|
}
|
|
34
34
|
commandAction(logger, args, cb) {
|
|
35
35
|
this
|
|
36
|
-
.getChatId(
|
|
36
|
+
.getChatId(args)
|
|
37
37
|
.then(chatId => this.getChatDetailsById(chatId))
|
|
38
38
|
.then((chat) => {
|
|
39
39
|
logger.log(chat);
|
|
@@ -83,14 +83,14 @@ class TeamsChatGetCommand extends GraphCommand_1.default {
|
|
|
83
83
|
}
|
|
84
84
|
return true;
|
|
85
85
|
}
|
|
86
|
-
getChatId(
|
|
86
|
+
getChatId(args) {
|
|
87
87
|
return __awaiter(this, void 0, void 0, function* () {
|
|
88
88
|
if (args.options.id) {
|
|
89
89
|
return args.options.id;
|
|
90
90
|
}
|
|
91
91
|
return args.options.participants
|
|
92
|
-
? this.getChatIdByParticipants(args.options.participants
|
|
93
|
-
: this.getChatIdByName(args.options.name
|
|
92
|
+
? this.getChatIdByParticipants(args.options.participants)
|
|
93
|
+
: this.getChatIdByName(args.options.name);
|
|
94
94
|
});
|
|
95
95
|
}
|
|
96
96
|
getChatDetailsById(id) {
|
|
@@ -105,11 +105,11 @@ class TeamsChatGetCommand extends GraphCommand_1.default {
|
|
|
105
105
|
return request_1.default.get(requestOptions);
|
|
106
106
|
});
|
|
107
107
|
}
|
|
108
|
-
getChatIdByParticipants(participantsString
|
|
108
|
+
getChatIdByParticipants(participantsString) {
|
|
109
109
|
return __awaiter(this, void 0, void 0, function* () {
|
|
110
110
|
const participants = chatUtil_1.chatUtil.convertParticipantStringToArray(participantsString);
|
|
111
111
|
const currentUserEmail = accessToken_1.accessToken.getUserNameFromAccessToken(Auth_1.default.service.accessTokens[this.resource].accessToken).toLowerCase();
|
|
112
|
-
const existingChats = yield chatUtil_1.chatUtil.findExistingChatsByParticipants([currentUserEmail, ...participants]
|
|
112
|
+
const existingChats = yield chatUtil_1.chatUtil.findExistingChatsByParticipants([currentUserEmail, ...participants]);
|
|
113
113
|
if (!existingChats || existingChats.length === 0) {
|
|
114
114
|
throw new Error('No chat conversation was found with these participants.');
|
|
115
115
|
}
|
|
@@ -122,9 +122,9 @@ class TeamsChatGetCommand extends GraphCommand_1.default {
|
|
|
122
122
|
throw new Error(`Multiple chat conversations with these participants found. Please disambiguate:${os.EOL}${disambiguationText}`);
|
|
123
123
|
});
|
|
124
124
|
}
|
|
125
|
-
getChatIdByName(name
|
|
125
|
+
getChatIdByName(name) {
|
|
126
126
|
return __awaiter(this, void 0, void 0, function* () {
|
|
127
|
-
const existingChats = yield chatUtil_1.chatUtil.findExistingGroupChatsByName(name
|
|
127
|
+
const existingChats = yield chatUtil_1.chatUtil.findExistingGroupChatsByName(name);
|
|
128
128
|
if (!existingChats || existingChats.length === 0) {
|
|
129
129
|
throw new Error('No chat conversation was found with this name.');
|
|
130
130
|
}
|
|
@@ -17,7 +17,7 @@ class TeamsChatListCommand extends GraphCommand_1.default {
|
|
|
17
17
|
const filter = args.options.type !== undefined ? `?$filter=chatType eq '${args.options.type}'` : '';
|
|
18
18
|
const endpoint = `${this.resource}/v1.0/chats${filter}`;
|
|
19
19
|
utils_1.odata
|
|
20
|
-
.getAllItems(endpoint
|
|
20
|
+
.getAllItems(endpoint)
|
|
21
21
|
.then((items) => {
|
|
22
22
|
logger.log(items);
|
|
23
23
|
cb();
|
|
@@ -16,7 +16,7 @@ class TeamsChatMemberListCommand extends GraphCommand_1.default {
|
|
|
16
16
|
commandAction(logger, args, cb) {
|
|
17
17
|
const endpoint = `${this.resource}/v1.0/chats/${args.options.chatId}/members`;
|
|
18
18
|
utils_1.odata
|
|
19
|
-
.getAllItems(endpoint
|
|
19
|
+
.getAllItems(endpoint)
|
|
20
20
|
.then((items) => {
|
|
21
21
|
logger.log(items);
|
|
22
22
|
cb();
|
|
@@ -16,7 +16,7 @@ class TeamsChatMessageListCommand extends GraphCommand_1.default {
|
|
|
16
16
|
commandAction(logger, args, cb) {
|
|
17
17
|
const endpoint = `${this.resource}/v1.0/chats/${args.options.chatId}/messages`;
|
|
18
18
|
utils_1.odata
|
|
19
|
-
.getAllItems(endpoint
|
|
19
|
+
.getAllItems(endpoint)
|
|
20
20
|
.then((items) => {
|
|
21
21
|
if (args.options.output !== 'json') {
|
|
22
22
|
items.forEach(i => {
|
|
@@ -93,15 +93,15 @@ class TeamsChatMessageSendCommand extends GraphCommand_1.default {
|
|
|
93
93
|
return args.options.chatId;
|
|
94
94
|
}
|
|
95
95
|
return args.options.userEmails
|
|
96
|
-
? this.ensureChatIdByUserEmails(args.options.userEmails
|
|
97
|
-
: this.getChatIdByName(args.options.chatName
|
|
96
|
+
? this.ensureChatIdByUserEmails(args.options.userEmails)
|
|
97
|
+
: this.getChatIdByName(args.options.chatName);
|
|
98
98
|
});
|
|
99
99
|
}
|
|
100
|
-
ensureChatIdByUserEmails(userEmailsOption
|
|
100
|
+
ensureChatIdByUserEmails(userEmailsOption) {
|
|
101
101
|
return __awaiter(this, void 0, void 0, function* () {
|
|
102
102
|
const userEmails = chatUtil_1.chatUtil.convertParticipantStringToArray(userEmailsOption);
|
|
103
103
|
const currentUserEmail = utils_1.accessToken.getUserNameFromAccessToken(Auth_1.default.service.accessTokens[this.resource].accessToken).toLowerCase();
|
|
104
|
-
const existingChats = yield chatUtil_1.chatUtil.findExistingChatsByParticipants([currentUserEmail, ...userEmails]
|
|
104
|
+
const existingChats = yield chatUtil_1.chatUtil.findExistingChatsByParticipants([currentUserEmail, ...userEmails]);
|
|
105
105
|
if (!existingChats || existingChats.length === 0) {
|
|
106
106
|
const chat = yield this.createConversation([currentUserEmail, ...userEmails]);
|
|
107
107
|
return chat.id;
|
|
@@ -115,9 +115,9 @@ class TeamsChatMessageSendCommand extends GraphCommand_1.default {
|
|
|
115
115
|
throw new Error(`Multiple chat conversations with this name found. Please disambiguate:${os.EOL}${disambiguationText}`);
|
|
116
116
|
});
|
|
117
117
|
}
|
|
118
|
-
getChatIdByName(chatName
|
|
118
|
+
getChatIdByName(chatName) {
|
|
119
119
|
return __awaiter(this, void 0, void 0, function* () {
|
|
120
|
-
const existingChats = yield chatUtil_1.chatUtil.findExistingGroupChatsByName(chatName
|
|
120
|
+
const existingChats = yield chatUtil_1.chatUtil.findExistingGroupChatsByName(chatName);
|
|
121
121
|
if (!existingChats || existingChats.length === 0) {
|
|
122
122
|
throw new Error('No chat conversation was found with this name.');
|
|
123
123
|
}
|
|
@@ -17,12 +17,12 @@ exports.chatUtil = {
|
|
|
17
17
|
* @param expectedMemberEmails a string array of participant emailaddresses
|
|
18
18
|
* @param logger a logger to pipe into the graph request odata helper.
|
|
19
19
|
*/
|
|
20
|
-
findExistingChatsByParticipants(expectedMemberEmails
|
|
20
|
+
findExistingChatsByParticipants(expectedMemberEmails) {
|
|
21
21
|
return __awaiter(this, void 0, void 0, function* () {
|
|
22
22
|
const chatType = expectedMemberEmails.length === 2 ? 'oneOnOne' : 'group';
|
|
23
23
|
const endpoint = `https://graph.microsoft.com/v1.0/chats?$filter=chatType eq '${chatType}'&$expand=members&$select=id,topic,createdDateTime,members`;
|
|
24
24
|
const foundChats = [];
|
|
25
|
-
const chats = yield odata_1.odata.getAllItems(endpoint
|
|
25
|
+
const chats = yield odata_1.odata.getAllItems(endpoint);
|
|
26
26
|
for (const chat of chats) {
|
|
27
27
|
const chatMembers = chat.members;
|
|
28
28
|
if (chatMembers.length === expectedMemberEmails.length) {
|
|
@@ -40,10 +40,10 @@ exports.chatUtil = {
|
|
|
40
40
|
* @param name the name of the chat conversation to find
|
|
41
41
|
* @param logger a logger to pipe into the graph request odata helper.
|
|
42
42
|
*/
|
|
43
|
-
findExistingGroupChatsByName(name
|
|
43
|
+
findExistingGroupChatsByName(name) {
|
|
44
44
|
return __awaiter(this, void 0, void 0, function* () {
|
|
45
45
|
const endpoint = `https://graph.microsoft.com/v1.0/chats?$filter=topic eq '${encodeURIComponent(name).replace("'", "''")}'&$expand=members&$select=id,topic,createdDateTime,chatType`;
|
|
46
|
-
return odata_1.odata.getAllItems(endpoint
|
|
46
|
+
return odata_1.odata.getAllItems(endpoint);
|
|
47
47
|
});
|
|
48
48
|
},
|
|
49
49
|
/**
|
|
@@ -17,7 +17,7 @@ class TeamsMessageListCommand extends GraphCommand_1.default {
|
|
|
17
17
|
const deltaExtension = args.options.since !== undefined ? `/delta?$filter=lastModifiedDateTime gt ${args.options.since}` : '';
|
|
18
18
|
const endpoint = `${this.resource}/v1.0/teams/${args.options.teamId}/channels/${args.options.channelId}/messages${deltaExtension}`;
|
|
19
19
|
utils_1.odata
|
|
20
|
-
.getAllItems(endpoint
|
|
20
|
+
.getAllItems(endpoint)
|
|
21
21
|
.then((items) => {
|
|
22
22
|
if (args.options.output !== 'json') {
|
|
23
23
|
items.forEach(i => {
|
|
@@ -16,7 +16,7 @@ class TeamsMessageReplyListCommand extends GraphCommand_1.default {
|
|
|
16
16
|
commandAction(logger, args, cb) {
|
|
17
17
|
const endpoint = `${this.resource}/v1.0/teams/${args.options.teamId}/channels/${args.options.channelId}/messages/${args.options.messageId}/replies`;
|
|
18
18
|
utils_1.odata
|
|
19
|
-
.getAllItems(endpoint
|
|
19
|
+
.getAllItems(endpoint)
|
|
20
20
|
.then((items) => {
|
|
21
21
|
if (args.options.output !== 'json') {
|
|
22
22
|
items.forEach(i => {
|
|
@@ -16,7 +16,7 @@ class TeamsTabListCommand extends GraphCommand_1.default {
|
|
|
16
16
|
commandAction(logger, args, cb) {
|
|
17
17
|
const endpoint = `${this.resource}/v1.0/teams/${args.options.teamId}/channels/${encodeURIComponent(args.options.channelId)}/tabs?$expand=teamsApp`;
|
|
18
18
|
utils_1.odata
|
|
19
|
-
.getAllItems(endpoint
|
|
19
|
+
.getAllItems(endpoint)
|
|
20
20
|
.then((items) => {
|
|
21
21
|
items.forEach(i => {
|
|
22
22
|
i.teamsAppTabId = i.teamsApp.id;
|
|
@@ -22,7 +22,7 @@ class TeamsTeamListCommand extends GraphCommand_1.default {
|
|
|
22
22
|
endpoint = `${this.resource}/v1.0/me/joinedTeams`;
|
|
23
23
|
}
|
|
24
24
|
utils_1.odata
|
|
25
|
-
.getAllItems(endpoint
|
|
25
|
+
.getAllItems(endpoint)
|
|
26
26
|
.then((items) => {
|
|
27
27
|
if (args.options.joined) {
|
|
28
28
|
return Promise.resolve(items);
|
|
@@ -24,7 +24,7 @@ class TeamsUserAppListCommand extends GraphCommand_1.default {
|
|
|
24
24
|
.then((_userId) => {
|
|
25
25
|
userId = _userId.value;
|
|
26
26
|
const endpoint = `${this.resource}/v1.0/users/${encodeURIComponent(userId)}/teamwork/installedApps?$expand=teamsAppDefinition`;
|
|
27
|
-
return utils_1.odata.getAllItems(endpoint
|
|
27
|
+
return utils_1.odata.getAllItems(endpoint);
|
|
28
28
|
})
|
|
29
29
|
.then((items) => {
|
|
30
30
|
items.forEach(i => {
|
|
@@ -42,7 +42,7 @@ class TeamsUserListCommand extends GraphCommand_1.default {
|
|
|
42
42
|
}
|
|
43
43
|
getOwners(logger, groupId) {
|
|
44
44
|
const endpoint = `${this.resource}/v1.0/groups/${groupId}/owners?$select=id,displayName,userPrincipalName,userType`;
|
|
45
|
-
return utils_1.odata.getAllItems(endpoint
|
|
45
|
+
return utils_1.odata.getAllItems(endpoint).then((items) => {
|
|
46
46
|
this.items = this.items.concat(items);
|
|
47
47
|
// Currently there is a bug in the Microsoft Graph that returns Owners as
|
|
48
48
|
// userType 'member'. We therefore update all returned user as owner
|
|
@@ -53,7 +53,7 @@ class TeamsUserListCommand extends GraphCommand_1.default {
|
|
|
53
53
|
}
|
|
54
54
|
getMembersAndGuests(logger, groupId) {
|
|
55
55
|
const endpoint = `${this.resource}/v1.0/groups/${groupId}/members?$select=id,displayName,userPrincipalName,userType`;
|
|
56
|
-
return utils_1.odata.getAllItems(endpoint
|
|
56
|
+
return utils_1.odata.getAllItems(endpoint);
|
|
57
57
|
}
|
|
58
58
|
options() {
|
|
59
59
|
const options = [
|
package/dist/m365/tenant/commands/serviceannouncement/serviceannouncement-healthissue-list.js
CHANGED
|
@@ -19,7 +19,7 @@ class TenantServiceAnnouncementHealthIssueListCommand extends GraphCommand_1.def
|
|
|
19
19
|
endpoint += `?$filter=service eq '${encodeURIComponent(args.options.service)}'`;
|
|
20
20
|
}
|
|
21
21
|
utils_1.odata
|
|
22
|
-
.getAllItems(endpoint
|
|
22
|
+
.getAllItems(endpoint)
|
|
23
23
|
.then((items) => {
|
|
24
24
|
logger.log(items);
|
|
25
25
|
cb();
|
|
@@ -19,7 +19,7 @@ class TenantServiceAnnouncementMessageListCommand extends GraphCommand_1.default
|
|
|
19
19
|
endpoint += `?$filter=services/any(c:c+eq+'${encodeURIComponent(args.options.service)}')`;
|
|
20
20
|
}
|
|
21
21
|
utils_1.odata
|
|
22
|
-
.getAllItems(endpoint
|
|
22
|
+
.getAllItems(endpoint)
|
|
23
23
|
.then((items) => {
|
|
24
24
|
logger.log(items);
|
|
25
25
|
cb();
|
|
@@ -15,7 +15,7 @@ class TodoListListCommand extends GraphCommand_1.default {
|
|
|
15
15
|
}
|
|
16
16
|
commandAction(logger, args, cb) {
|
|
17
17
|
utils_1.odata
|
|
18
|
-
.getAllItems(`${this.resource}/v1.0/me/todo/lists
|
|
18
|
+
.getAllItems(`${this.resource}/v1.0/me/todo/lists`)
|
|
19
19
|
.then((items) => {
|
|
20
20
|
logger.log(items);
|
|
21
21
|
cb();
|
|
@@ -45,7 +45,7 @@ class TodoTaskListCommand extends GraphCommand_1.default {
|
|
|
45
45
|
.getTodoListId(args)
|
|
46
46
|
.then((listId) => {
|
|
47
47
|
const endpoint = `${this.resource}/v1.0/me/todo/lists/${listId}/tasks`;
|
|
48
|
-
return utils_1.odata.getAllItems(endpoint
|
|
48
|
+
return utils_1.odata.getAllItems(endpoint);
|
|
49
49
|
})
|
|
50
50
|
.then((items) => {
|
|
51
51
|
if (args.options.output === 'json') {
|
package/dist/utils/formatting.js
CHANGED
|
@@ -30,8 +30,9 @@ exports.formatting = {
|
|
|
30
30
|
return JSON.parse(s.replace(/^\uFEFF/, ''));
|
|
31
31
|
},
|
|
32
32
|
filterObject(obj, propertiesToInclude) {
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
const objKeys = Object.keys(obj);
|
|
34
|
+
return propertiesToInclude
|
|
35
|
+
.filter(prop => objKeys.includes(prop))
|
|
35
36
|
.reduce((filtered, key) => {
|
|
36
37
|
filtered[key] = obj[key];
|
|
37
38
|
return filtered;
|
|
@@ -64,6 +65,14 @@ exports.formatting = {
|
|
|
64
65
|
},
|
|
65
66
|
splitAndTrim(s) {
|
|
66
67
|
return s.split(',').map(c => c.trim());
|
|
68
|
+
},
|
|
69
|
+
openTypesEncoder(value) {
|
|
70
|
+
return value
|
|
71
|
+
.replace(/\%/g, '%25')
|
|
72
|
+
.replace(/\./g, '%2E')
|
|
73
|
+
.replace(/:/g, '%3A')
|
|
74
|
+
.replace(/@/g, '%40')
|
|
75
|
+
.replace(/#/g, '%23');
|
|
67
76
|
}
|
|
68
77
|
};
|
|
69
78
|
//# sourceMappingURL=formatting.js.map
|
package/dist/utils/odata.js
CHANGED
|
@@ -12,7 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.odata = void 0;
|
|
13
13
|
const request_1 = require("../request");
|
|
14
14
|
exports.odata = {
|
|
15
|
-
getAllItems(url,
|
|
15
|
+
getAllItems(url, metadata) {
|
|
16
16
|
var _a;
|
|
17
17
|
return __awaiter(this, void 0, void 0, function* () {
|
|
18
18
|
let items = [];
|
|
@@ -27,7 +27,7 @@ exports.odata = {
|
|
|
27
27
|
items = res.value;
|
|
28
28
|
const nextLink = (_a = res['@odata.nextLink']) !== null && _a !== void 0 ? _a : res.nextLink;
|
|
29
29
|
if (nextLink) {
|
|
30
|
-
const nextPageItems = yield exports.odata.getAllItems(nextLink,
|
|
30
|
+
const nextPageItems = yield exports.odata.getAllItems(nextLink, metadata);
|
|
31
31
|
items = items.concat(nextPageItems);
|
|
32
32
|
}
|
|
33
33
|
return items;
|