@pnp/cli-microsoft365 6.10.0-beta.f43fa4d → 6.10.0

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.
@@ -19,8 +19,7 @@ const request_1 = require("../../../../request");
19
19
  const validation_1 = require("../../../../utils/validation");
20
20
  const GraphCommand_1 = require("../../../base/GraphCommand");
21
21
  const commands_1 = require("../../commands");
22
- const AadUserGetCommand = require("../../../aad/commands/user/user-get");
23
- const Cli_1 = require("../../../../cli/Cli");
22
+ const aadUser_1 = require("../../../../utils/aadUser");
24
23
  class PlannerRosterMemberAddCommand extends GraphCommand_1.default {
25
24
  get name() {
26
25
  return commands_1.default.ROSTER_MEMBER_ADD;
@@ -69,18 +68,8 @@ class PlannerRosterMemberAddCommand extends GraphCommand_1.default {
69
68
  if (args.options.userId) {
70
69
  return args.options.userId;
71
70
  }
72
- const aadUserGetCommandoptions = {
73
- userName: args.options.userName,
74
- output: 'json',
75
- debug: args.options.debug,
76
- verbose: args.options.verbose
77
- };
78
- const aadUserGetOutput = yield Cli_1.Cli.executeCommandWithOutput(AadUserGetCommand, { options: Object.assign(Object.assign({}, aadUserGetCommandoptions), { _: [] }) });
79
- if (this.verbose) {
80
- logger.logToStderr(aadUserGetOutput.stderr);
81
- }
82
- const aadUserGetJsonOutput = JSON.parse(aadUserGetOutput.stdout);
83
- return aadUserGetJsonOutput.id;
71
+ const userId = yield aadUser_1.aadUser.getUserIdByUpn(args.options.userName);
72
+ return userId;
84
73
  });
85
74
  }
86
75
  }
@@ -16,13 +16,13 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
16
16
  var _TeamsMeetingGetCommand_instances, _TeamsMeetingGetCommand_initTelemetry, _TeamsMeetingGetCommand_initOptions, _TeamsMeetingGetCommand_initValidators;
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  const Auth_1 = require("../../../../Auth");
19
- const Cli_1 = require("../../../../cli/Cli");
20
19
  const request_1 = require("../../../../request");
21
20
  const GraphCommand_1 = require("../../../base/GraphCommand");
22
21
  const commands_1 = require("../../commands");
23
22
  const validation_1 = require("../../../../utils/validation");
24
23
  const accessToken_1 = require("../../../../utils/accessToken");
25
- const AadUserGetCommand = require("../../../aad/commands/user/user-get");
24
+ const aadUser_1 = require("../../../../utils/aadUser");
25
+ const formatting_1 = require("../../../../utils/formatting");
26
26
  class TeamsMeetingGetCommand extends GraphCommand_1.default {
27
27
  get name() {
28
28
  return commands_1.default.MEETING_GET;
@@ -37,20 +37,6 @@ class TeamsMeetingGetCommand extends GraphCommand_1.default {
37
37
  __classPrivateFieldGet(this, _TeamsMeetingGetCommand_instances, "m", _TeamsMeetingGetCommand_initOptions).call(this);
38
38
  __classPrivateFieldGet(this, _TeamsMeetingGetCommand_instances, "m", _TeamsMeetingGetCommand_initValidators).call(this);
39
39
  }
40
- getUserId(options) {
41
- return __awaiter(this, void 0, void 0, function* () {
42
- const commandOptions = {
43
- email: options.email,
44
- userName: options.userName,
45
- output: 'json',
46
- debug: this.debug,
47
- verbose: this.verbose
48
- };
49
- const output = yield Cli_1.Cli.executeCommandWithOutput(AadUserGetCommand, { options: Object.assign(Object.assign({}, commandOptions), { _: [] }) });
50
- const getUserOutput = JSON.parse(output.stdout);
51
- return getUserOutput.id;
52
- });
53
- }
54
40
  commandAction(logger, args) {
55
41
  return __awaiter(this, void 0, void 0, function* () {
56
42
  const isAppOnlyAccessToken = accessToken_1.accessToken.isAppOnlyAccessToken(Auth_1.default.service.accessTokens[this.resource].accessToken);
@@ -71,18 +57,13 @@ class TeamsMeetingGetCommand extends GraphCommand_1.default {
71
57
  let requestUrl = `${this.resource}/v1.0/`;
72
58
  if (isAppOnlyAccessToken) {
73
59
  requestUrl += 'users/';
74
- if (args.options.userId) {
75
- requestUrl += args.options.userId;
76
- }
77
- else {
78
- const userId = yield this.getUserId(args.options);
79
- requestUrl += userId;
80
- }
60
+ const userId = yield this.getUserId(args.options);
61
+ requestUrl += userId;
81
62
  }
82
63
  else {
83
64
  requestUrl += `me`;
84
65
  }
85
- requestUrl += `/onlineMeetings?$filter=JoinWebUrl eq '${encodeURIComponent(args.options.joinUrl)}'`;
66
+ requestUrl += `/onlineMeetings?$filter=JoinWebUrl eq '${formatting_1.formatting.encodeQueryParameter(args.options.joinUrl)}'`;
86
67
  const requestOptions = {
87
68
  url: requestUrl,
88
69
  headers: {
@@ -103,6 +84,17 @@ class TeamsMeetingGetCommand extends GraphCommand_1.default {
103
84
  }
104
85
  });
105
86
  }
87
+ getUserId(options) {
88
+ return __awaiter(this, void 0, void 0, function* () {
89
+ if (options.userId) {
90
+ return options.userId;
91
+ }
92
+ if (options.userName) {
93
+ return aadUser_1.aadUser.getUserIdByUpn(options.userName);
94
+ }
95
+ return aadUser_1.aadUser.getUserIdByEmail(options.email);
96
+ });
97
+ }
106
98
  }
107
99
  _TeamsMeetingGetCommand_instances = new WeakSet(), _TeamsMeetingGetCommand_initTelemetry = function _TeamsMeetingGetCommand_initTelemetry() {
108
100
  this.telemetry.push((args) => {
@@ -21,8 +21,8 @@ const GraphCommand_1 = require("../../../base/GraphCommand");
21
21
  const commands_1 = require("../../commands");
22
22
  const odata_1 = require("../../../../utils/odata");
23
23
  const validation_1 = require("../../../../utils/validation");
24
- const AadUserGetCommand = require("../../../aad/commands/user/user-get");
25
24
  const accessToken_1 = require("../../../../utils/accessToken");
25
+ const aadUser_1 = require("../../../../utils/aadUser");
26
26
  class TeamsMeetingListCommand extends GraphCommand_1.default {
27
27
  get name() {
28
28
  return commands_1.default.MEETING_LIST;
@@ -60,7 +60,7 @@ class TeamsMeetingListCommand extends GraphCommand_1.default {
60
60
  requestUrl += args.options.userName;
61
61
  }
62
62
  else if (args.options.email) {
63
- const userId = yield this.getUserId(args.options.email);
63
+ const userId = yield aadUser_1.aadUser.getUserIdByEmail(args.options.email);
64
64
  requestUrl += userId;
65
65
  }
66
66
  }
@@ -98,19 +98,6 @@ class TeamsMeetingListCommand extends GraphCommand_1.default {
98
98
  }
99
99
  });
100
100
  }
101
- getUserId(email) {
102
- return __awaiter(this, void 0, void 0, function* () {
103
- const options = {
104
- email: email,
105
- output: 'json',
106
- debug: this.debug,
107
- verbose: this.verbose
108
- };
109
- const output = yield Cli_1.Cli.executeCommandWithOutput(AadUserGetCommand, { options: Object.assign(Object.assign({}, options), { _: [] }) });
110
- const getUserOutput = JSON.parse(output.stdout);
111
- return getUserOutput.id;
112
- });
113
- }
114
101
  }
115
102
  _TeamsMeetingListCommand_instances = new WeakSet(), _TeamsMeetingListCommand_initTelemetry = function _TeamsMeetingListCommand_initTelemetry() {
116
103
  this.telemetry.push((args) => {
@@ -19,7 +19,7 @@ m365 spo file retentionlabel ensure [options]
19
19
  `--fileUrl [fileUrl]`
20
20
  : The site- or server-relative URL of the file that should be labelled. Specify either `fileUrl` or `fileId` but not both.
21
21
 
22
- `i, --fileId [fileId]`
22
+ `-i, --fileId [fileId]`
23
23
  : The UniqueId (GUID) of the file that should be labelled. Specify either `fileUrl` or `fileId` but not both.
24
24
 
25
25
  `--name <name>`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "6.10.0-beta.f43fa4d",
3
+ "version": "6.10.0",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",
@@ -282,4 +282,4 @@
282
282
  "sinon": "^15.2.0",
283
283
  "source-map-support": "^0.5.21"
284
284
  }
285
- }
285
+ }