@pnp/cli-microsoft365 4.2.0 → 4.3.0-beta.bec032d

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 (33) hide show
  1. package/.eslintrc.js +1 -0
  2. package/README.md +1 -1
  3. package/dist/appInsights.js +3 -2
  4. package/dist/cli/Cli.js +22 -3
  5. package/dist/m365/aad/commands/app/app-get.js +97 -0
  6. package/dist/m365/aad/commands/user/user-password-validate.js +42 -0
  7. package/dist/m365/aad/commands.js +2 -0
  8. package/dist/m365/app/commands/permission/permission-list.js +266 -0
  9. package/dist/m365/app/commands.js +7 -0
  10. package/dist/m365/base/AppCommand.js +76 -0
  11. package/dist/m365/cli/commands/cli-doctor.js +2 -0
  12. package/dist/m365/pa/commands/app/app-list.js +28 -1
  13. package/dist/m365/search/commands/externalconnection/externalconnection-add.js +99 -0
  14. package/dist/m365/search/commands.js +7 -0
  15. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006005_CFG_PS_metadata.js +63 -0
  16. package/dist/m365/spfx/commands/project/project-upgrade/rules/FN006006_CFG_PS_features.js +60 -0
  17. package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.14.0-beta.4.js +57 -0
  18. package/dist/m365/spfx/commands/project/project-upgrade.js +16 -13
  19. package/dist/m365/spo/commands/web/web-installedlanguage-list.js +48 -0
  20. package/dist/m365/spo/commands.js +1 -0
  21. package/dist/request.js +9 -4
  22. package/docs/docs/cmd/_global.md +2 -2
  23. package/docs/docs/cmd/aad/app/app-get.md +48 -0
  24. package/docs/docs/cmd/aad/user/user-password-validate.md +29 -0
  25. package/docs/docs/cmd/app/permission/permission-list.md +36 -0
  26. package/docs/docs/cmd/pa/app/app-list.md +17 -1
  27. package/docs/docs/cmd/search/externalconnection/externalconnection-add.md +43 -0
  28. package/docs/docs/cmd/spfx/project/project-externalize.md +1 -1
  29. package/docs/docs/cmd/spfx/project/project-rename.md +1 -1
  30. package/docs/docs/cmd/spfx/spfx-doctor.md +1 -1
  31. package/docs/docs/cmd/spo/web/web-installedlanguage-list.md +24 -0
  32. package/npm-shrinkwrap.json +603 -743
  33. package/package.json +20 -16
@@ -0,0 +1,99 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const request_1 = require("../../../../request");
4
+ const GraphCommand_1 = require("../../../base/GraphCommand");
5
+ const commands_1 = require("../../commands");
6
+ class SearchExternalConnectionAddCommand extends GraphCommand_1.default {
7
+ get name() {
8
+ return commands_1.default.EXTERNALCONNECTION_ADD;
9
+ }
10
+ get description() {
11
+ return 'Adds a new External Connection for Microsoft Search';
12
+ }
13
+ getTelemetryProperties(args) {
14
+ const telemetryProps = super.getTelemetryProperties(args);
15
+ telemetryProps.authorizedAppIds = typeof args.options.authorizedAppIds !== undefined;
16
+ return telemetryProps;
17
+ }
18
+ commandAction(logger, args, cb) {
19
+ let appIds = [];
20
+ if (args.options.authorizedAppIds !== undefined &&
21
+ args.options.authorizedAppIds !== '') {
22
+ appIds = args.options.authorizedAppIds.split(',');
23
+ }
24
+ const commandData = {
25
+ id: args.options.id,
26
+ name: args.options.name,
27
+ description: args.options.description,
28
+ configuration: {
29
+ authorizedAppIds: appIds
30
+ }
31
+ };
32
+ const requestOptions = {
33
+ url: `${this.resource}/v1.0/external/connections`,
34
+ headers: {
35
+ accept: 'application/json;odata.metadata=none'
36
+ },
37
+ responseType: 'json',
38
+ data: commandData
39
+ };
40
+ request_1.default
41
+ .post(requestOptions)
42
+ .then(_ => cb(), err => this.handleRejectedODataJsonPromise(err, logger, cb));
43
+ }
44
+ options() {
45
+ const options = [
46
+ {
47
+ option: '-i, --id <id>'
48
+ },
49
+ {
50
+ option: '-n, --name <name>'
51
+ },
52
+ {
53
+ option: '-d, --description <description>'
54
+ },
55
+ {
56
+ option: '--authorizedAppIds [authorizedAppIds]'
57
+ }
58
+ ];
59
+ const parentOptions = super.options();
60
+ return options.concat(parentOptions);
61
+ }
62
+ validate(args) {
63
+ const id = args.options.id;
64
+ if (id.length < 3 || id.length > 32) {
65
+ return 'ID must be between 3 and 32 characters in length.';
66
+ }
67
+ const alphaNumericRegEx = /[^\w]|_/g;
68
+ if (alphaNumericRegEx.test(id)) {
69
+ return 'ID must only contain alphanumeric characters.';
70
+ }
71
+ if (id.length > 9 &&
72
+ id.startsWith('Microsoft')) {
73
+ return 'ID cannot begin with Microsoft';
74
+ }
75
+ const invalidIds = ['None',
76
+ 'Directory',
77
+ 'Exchange',
78
+ 'ExchangeArchive',
79
+ 'LinkedIn',
80
+ 'Mailbox',
81
+ 'OneDriveBusiness',
82
+ 'SharePoint',
83
+ 'Teams',
84
+ 'Yammer',
85
+ 'Connectors',
86
+ 'TaskFabric',
87
+ 'PowerBI',
88
+ 'Assistant',
89
+ 'TopicEngine',
90
+ 'MSFT_All_Connectors'
91
+ ];
92
+ if (invalidIds.indexOf(id) > -1) {
93
+ return `ID cannot be one of the following values: ${invalidIds.join(', ')}.`;
94
+ }
95
+ return true;
96
+ }
97
+ }
98
+ module.exports = new SearchExternalConnectionAddCommand();
99
+ //# sourceMappingURL=externalconnection-add.js.map
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const prefix = 'search';
4
+ exports.default = {
5
+ EXTERNALCONNECTION_ADD: `${prefix} externalconnection add`
6
+ };
7
+ //# sourceMappingURL=commands.js.map
@@ -0,0 +1,63 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FN006005_CFG_PS_metadata = void 0;
4
+ const JsonRule_1 = require("./JsonRule");
5
+ class FN006005_CFG_PS_metadata extends JsonRule_1.JsonRule {
6
+ constructor() {
7
+ super();
8
+ }
9
+ get id() {
10
+ return 'FN006005';
11
+ }
12
+ get title() {
13
+ return 'package-solution.json metadata';
14
+ }
15
+ get description() {
16
+ return `In package-solution.json add metadata section`;
17
+ }
18
+ get resolution() {
19
+ return '';
20
+ }
21
+ get resolutionType() {
22
+ return 'json';
23
+ }
24
+ get severity() {
25
+ return 'Required';
26
+ }
27
+ get file() {
28
+ return './config/package-solution.json';
29
+ }
30
+ visit(project, findings) {
31
+ var _a;
32
+ if (!project.packageSolutionJson ||
33
+ !project.packageSolutionJson.solution) {
34
+ return;
35
+ }
36
+ if (!project.packageSolutionJson.solution.metadata) {
37
+ const solutionDescription = `${(_a = project.packageJson) === null || _a === void 0 ? void 0 : _a.name} description`;
38
+ const resolution = {
39
+ solution: {
40
+ metadata: {
41
+ shortDescription: {
42
+ default: solutionDescription
43
+ },
44
+ longDescription: {
45
+ default: solutionDescription
46
+ },
47
+ screenshotPaths: [],
48
+ videoUrl: '',
49
+ categories: []
50
+ }
51
+ }
52
+ };
53
+ const node = this.getAstNodeFromFile(project.packageSolutionJson, 'solution');
54
+ this.addFindingWithOccurrences([{
55
+ file: this.file,
56
+ resolution: JSON.stringify(resolution, null, 2),
57
+ position: this.getPositionFromNode(node)
58
+ }], findings);
59
+ }
60
+ }
61
+ }
62
+ exports.FN006005_CFG_PS_metadata = FN006005_CFG_PS_metadata;
63
+ //# sourceMappingURL=FN006005_CFG_PS_metadata.js.map
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FN006006_CFG_PS_features = void 0;
4
+ const JsonRule_1 = require("./JsonRule");
5
+ const uuid_1 = require("uuid");
6
+ class FN006006_CFG_PS_features extends JsonRule_1.JsonRule {
7
+ constructor() {
8
+ super();
9
+ }
10
+ get id() {
11
+ return 'FN006006';
12
+ }
13
+ get title() {
14
+ return 'package-solution.json features';
15
+ }
16
+ get description() {
17
+ return `In package-solution.json add features section`;
18
+ }
19
+ get resolution() {
20
+ return '';
21
+ }
22
+ get resolutionType() {
23
+ return 'json';
24
+ }
25
+ get severity() {
26
+ return 'Required';
27
+ }
28
+ get file() {
29
+ return './config/package-solution.json';
30
+ }
31
+ visit(project, findings) {
32
+ var _a, _b;
33
+ if (!project.packageSolutionJson ||
34
+ !project.packageSolutionJson.solution) {
35
+ return;
36
+ }
37
+ if (!project.packageSolutionJson.solution.features) {
38
+ const resolution = {
39
+ solution: {
40
+ features: [
41
+ {
42
+ title: `${(_a = project.packageJson) === null || _a === void 0 ? void 0 : _a.name} Feature`,
43
+ description: `The feature that activates elements of the ${(_b = project.packageJson) === null || _b === void 0 ? void 0 : _b.name} solution.`,
44
+ id: (0, uuid_1.v4)(),
45
+ version: project.packageSolutionJson.solution.version
46
+ }
47
+ ]
48
+ }
49
+ };
50
+ const node = this.getAstNodeFromFile(project.packageSolutionJson, 'solution');
51
+ this.addFindingWithOccurrences([{
52
+ file: this.file,
53
+ resolution: JSON.stringify(resolution, null, 2),
54
+ position: this.getPositionFromNode(node)
55
+ }], findings);
56
+ }
57
+ }
58
+ }
59
+ exports.FN006006_CFG_PS_features = FN006006_CFG_PS_features;
60
+ //# sourceMappingURL=FN006006_CFG_PS_features.js.map
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const FN001001_DEP_microsoft_sp_core_library_1 = require("./rules/FN001001_DEP_microsoft_sp_core_library");
4
+ const FN001002_DEP_microsoft_sp_lodash_subset_1 = require("./rules/FN001002_DEP_microsoft_sp_lodash_subset");
5
+ const FN001003_DEP_microsoft_sp_office_ui_fabric_core_1 = require("./rules/FN001003_DEP_microsoft_sp_office_ui_fabric_core");
6
+ const FN001004_DEP_microsoft_sp_webpart_base_1 = require("./rules/FN001004_DEP_microsoft_sp_webpart_base");
7
+ const FN001011_DEP_microsoft_sp_dialog_1 = require("./rules/FN001011_DEP_microsoft_sp_dialog");
8
+ const FN001012_DEP_microsoft_sp_application_base_1 = require("./rules/FN001012_DEP_microsoft_sp_application_base");
9
+ const FN001013_DEP_microsoft_decorators_1 = require("./rules/FN001013_DEP_microsoft_decorators");
10
+ const FN001014_DEP_microsoft_sp_listview_extensibility_1 = require("./rules/FN001014_DEP_microsoft_sp_listview_extensibility");
11
+ const FN001021_DEP_microsoft_sp_property_pane_1 = require("./rules/FN001021_DEP_microsoft_sp_property_pane");
12
+ const FN001023_DEP_microsoft_sp_component_base_1 = require("./rules/FN001023_DEP_microsoft_sp_component_base");
13
+ const FN001024_DEP_microsoft_sp_diagnostics_1 = require("./rules/FN001024_DEP_microsoft_sp_diagnostics");
14
+ const FN001025_DEP_microsoft_sp_dynamic_data_1 = require("./rules/FN001025_DEP_microsoft_sp_dynamic_data");
15
+ const FN001026_DEP_microsoft_sp_extension_base_1 = require("./rules/FN001026_DEP_microsoft_sp_extension_base");
16
+ const FN001027_DEP_microsoft_sp_http_1 = require("./rules/FN001027_DEP_microsoft_sp_http");
17
+ const FN001028_DEP_microsoft_sp_list_subscription_1 = require("./rules/FN001028_DEP_microsoft_sp_list_subscription");
18
+ const FN001029_DEP_microsoft_sp_loader_1 = require("./rules/FN001029_DEP_microsoft_sp_loader");
19
+ const FN001030_DEP_microsoft_sp_module_interfaces_1 = require("./rules/FN001030_DEP_microsoft_sp_module_interfaces");
20
+ const FN001031_DEP_microsoft_sp_odata_types_1 = require("./rules/FN001031_DEP_microsoft_sp_odata_types");
21
+ const FN001032_DEP_microsoft_sp_page_context_1 = require("./rules/FN001032_DEP_microsoft_sp_page_context");
22
+ const FN002001_DEVDEP_microsoft_sp_build_web_1 = require("./rules/FN002001_DEVDEP_microsoft_sp_build_web");
23
+ const FN002002_DEVDEP_microsoft_sp_module_interfaces_1 = require("./rules/FN002002_DEVDEP_microsoft_sp_module_interfaces");
24
+ const FN002009_DEVDEP_microsoft_sp_tslint_rules_1 = require("./rules/FN002009_DEVDEP_microsoft_sp_tslint_rules");
25
+ const FN006004_CFG_PS_developer_1 = require("./rules/FN006004_CFG_PS_developer");
26
+ const FN006005_CFG_PS_metadata_1 = require("./rules/FN006005_CFG_PS_metadata");
27
+ const FN006006_CFG_PS_features_1 = require("./rules/FN006006_CFG_PS_features");
28
+ const FN010001_YORC_version_1 = require("./rules/FN010001_YORC_version");
29
+ module.exports = [
30
+ new FN001001_DEP_microsoft_sp_core_library_1.FN001001_DEP_microsoft_sp_core_library('1.14.0-beta.4'),
31
+ new FN001002_DEP_microsoft_sp_lodash_subset_1.FN001002_DEP_microsoft_sp_lodash_subset('1.14.0-beta.4'),
32
+ new FN001003_DEP_microsoft_sp_office_ui_fabric_core_1.FN001003_DEP_microsoft_sp_office_ui_fabric_core('1.14.0-beta.4'),
33
+ new FN001004_DEP_microsoft_sp_webpart_base_1.FN001004_DEP_microsoft_sp_webpart_base('1.14.0-beta.4'),
34
+ new FN001011_DEP_microsoft_sp_dialog_1.FN001011_DEP_microsoft_sp_dialog('1.14.0-beta.4'),
35
+ new FN001012_DEP_microsoft_sp_application_base_1.FN001012_DEP_microsoft_sp_application_base('1.14.0-beta.4'),
36
+ new FN001013_DEP_microsoft_decorators_1.FN001013_DEP_microsoft_decorators('1.14.0-beta.4'),
37
+ new FN001014_DEP_microsoft_sp_listview_extensibility_1.FN001014_DEP_microsoft_sp_listview_extensibility('1.14.0-beta.4'),
38
+ new FN001021_DEP_microsoft_sp_property_pane_1.FN001021_DEP_microsoft_sp_property_pane('1.14.0-beta.4'),
39
+ new FN001023_DEP_microsoft_sp_component_base_1.FN001023_DEP_microsoft_sp_component_base('1.14.0-beta.4'),
40
+ new FN001024_DEP_microsoft_sp_diagnostics_1.FN001024_DEP_microsoft_sp_diagnostics('1.14.0-beta.4'),
41
+ new FN001025_DEP_microsoft_sp_dynamic_data_1.FN001025_DEP_microsoft_sp_dynamic_data('1.14.0-beta.4'),
42
+ new FN001026_DEP_microsoft_sp_extension_base_1.FN001026_DEP_microsoft_sp_extension_base('1.14.0-beta.4'),
43
+ new FN001027_DEP_microsoft_sp_http_1.FN001027_DEP_microsoft_sp_http('1.14.0-beta.4'),
44
+ new FN001028_DEP_microsoft_sp_list_subscription_1.FN001028_DEP_microsoft_sp_list_subscription('1.14.0-beta.4'),
45
+ new FN001029_DEP_microsoft_sp_loader_1.FN001029_DEP_microsoft_sp_loader('1.14.0-beta.4'),
46
+ new FN001030_DEP_microsoft_sp_module_interfaces_1.FN001030_DEP_microsoft_sp_module_interfaces('1.14.0-beta.4'),
47
+ new FN001031_DEP_microsoft_sp_odata_types_1.FN001031_DEP_microsoft_sp_odata_types('1.14.0-beta.4'),
48
+ new FN001032_DEP_microsoft_sp_page_context_1.FN001032_DEP_microsoft_sp_page_context('1.14.0-beta.4'),
49
+ new FN002001_DEVDEP_microsoft_sp_build_web_1.FN002001_DEVDEP_microsoft_sp_build_web('1.14.0-beta.4'),
50
+ new FN002002_DEVDEP_microsoft_sp_module_interfaces_1.FN002002_DEVDEP_microsoft_sp_module_interfaces('1.14.0-beta.4'),
51
+ new FN002009_DEVDEP_microsoft_sp_tslint_rules_1.FN002009_DEVDEP_microsoft_sp_tslint_rules('1.14.0-beta.4'),
52
+ new FN006004_CFG_PS_developer_1.FN006004_CFG_PS_developer('1.14.0-beta.4'),
53
+ new FN006005_CFG_PS_metadata_1.FN006005_CFG_PS_metadata(),
54
+ new FN006006_CFG_PS_features_1.FN006006_CFG_PS_features(),
55
+ new FN010001_YORC_version_1.FN010001_YORC_version('1.14.0-beta.4')
56
+ ];
57
+ //# sourceMappingURL=upgrade-1.14.0-beta.4.js.map
@@ -3,6 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const fs = require("fs");
4
4
  const os = require("os");
5
5
  const path = require("path");
6
+ // uncomment to support upgrading to preview releases
7
+ const semver_1 = require("semver");
6
8
  const Command_1 = require("../../../../Command");
7
9
  const commands_1 = require("../../commands");
8
10
  const base_project_command_1 = require("./base-project-command");
@@ -42,7 +44,8 @@ class SpfxProjectUpgradeCommand extends base_project_command_1.BaseProjectComman
42
44
  '1.12.0',
43
45
  '1.12.1',
44
46
  '1.13.0',
45
- '1.13.1'
47
+ '1.13.1',
48
+ '1.14.0-beta.4'
46
49
  ];
47
50
  }
48
51
  get name() {
@@ -55,9 +58,9 @@ class SpfxProjectUpgradeCommand extends base_project_command_1.BaseProjectComman
55
58
  const telemetryProps = super.getTelemetryProperties(args);
56
59
  telemetryProps.toVersion = args.options.toVersion || this.supportedVersions[this.supportedVersions.length - 1];
57
60
  // uncomment to support upgrading to preview releases
58
- // if (prerelease(telemetryProps.toVersion) && !args.options.preview) {
59
- // telemetryProps.toVersion = this.supportedVersions[this.supportedVersions.length - 2];
60
- // }
61
+ if ((0, semver_1.prerelease)(telemetryProps.toVersion) && !args.options.preview) {
62
+ telemetryProps.toVersion = this.supportedVersions[this.supportedVersions.length - 2];
63
+ }
61
64
  telemetryProps.packageManager = args.options.packageManager || 'npm';
62
65
  telemetryProps.shell = args.options.shell || 'bash';
63
66
  telemetryProps.preview = args.options.preview;
@@ -71,15 +74,15 @@ class SpfxProjectUpgradeCommand extends base_project_command_1.BaseProjectComman
71
74
  }
72
75
  this.toVersion = args.options.toVersion ? args.options.toVersion : this.supportedVersions[this.supportedVersions.length - 1];
73
76
  // uncomment to support upgrading to preview releases
74
- // if (!args.options.toVersion &&
75
- // !args.options.preview &&
76
- // prerelease(this.toVersion)) {
77
- // // no version and no preview specified while the current version to
78
- // // upgrade to is a prerelease so let's grab the first non-preview version
79
- // // since we're supporting only one preview version, it's sufficient for
80
- // // us to take second to last version
81
- // this.toVersion = this.supportedVersions[this.supportedVersions.length - 2];
82
- // }
77
+ if (!args.options.toVersion &&
78
+ !args.options.preview &&
79
+ (0, semver_1.prerelease)(this.toVersion)) {
80
+ // no version and no preview specified while the current version to
81
+ // upgrade to is a prerelease so let's grab the first non-preview version
82
+ // since we're supporting only one preview version, it's sufficient for
83
+ // us to take second to last version
84
+ this.toVersion = this.supportedVersions[this.supportedVersions.length - 2];
85
+ }
83
86
  this.packageManager = args.options.packageManager || 'npm';
84
87
  this.shell = args.options.shell || 'bash';
85
88
  if (this.supportedVersions.indexOf(this.toVersion) < 0) {
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const request_1 = require("../../../../request");
4
+ const SpoCommand_1 = require("../../../base/SpoCommand");
5
+ const commands_1 = require("../../commands");
6
+ class SpoWebInstalledLanguageListCommand extends SpoCommand_1.default {
7
+ get name() {
8
+ return commands_1.default.WEB_INSTALLEDLANGUAGE_LIST;
9
+ }
10
+ get description() {
11
+ return 'Lists all installed languages on site';
12
+ }
13
+ defaultProperties() {
14
+ return ['DisplayName', 'LanguageTag', 'Lcid'];
15
+ }
16
+ commandAction(logger, args, cb) {
17
+ if (this.verbose) {
18
+ logger.logToStderr(`Retrieving all installed languages on site ${args.options.webUrl}...`);
19
+ }
20
+ const requestOptions = {
21
+ url: `${args.options.webUrl}/_api/web/RegionalSettings/InstalledLanguages`,
22
+ headers: {
23
+ 'accept': 'application/json;odata=nometadata'
24
+ },
25
+ responseType: 'json'
26
+ };
27
+ request_1.default
28
+ .get(requestOptions)
29
+ .then((webInstalledLanguageProperties) => {
30
+ logger.log(webInstalledLanguageProperties.Items);
31
+ cb();
32
+ }, (err) => this.handleRejectedODataJsonPromise(err, logger, cb));
33
+ }
34
+ options() {
35
+ const options = [
36
+ {
37
+ option: '-u, --webUrl <webUrl>'
38
+ }
39
+ ];
40
+ const parentOptions = super.options();
41
+ return options.concat(parentOptions);
42
+ }
43
+ validate(args) {
44
+ return SpoCommand_1.default.isValidSharePointUrl(args.options.webUrl);
45
+ }
46
+ }
47
+ module.exports = new SpoWebInstalledLanguageListCommand();
48
+ //# sourceMappingURL=web-installedlanguage-list.js.map
@@ -246,6 +246,7 @@ exports.default = {
246
246
  WEB_ADD: `${prefix} web add`,
247
247
  WEB_CLIENTSIDEWEBPART_LIST: `${prefix} web clientsidewebpart list`,
248
248
  WEB_GET: `${prefix} web get`,
249
+ WEB_INSTALLEDLANGUAGE_LIST: `${prefix} web installedlanguage list`,
249
250
  WEB_LIST: `${prefix} web list`,
250
251
  WEB_REINDEX: `${prefix} web reindex`,
251
252
  WEB_REMOVE: `${prefix} web remove`,
package/dist/request.js CHANGED
@@ -16,7 +16,9 @@ class Request {
16
16
  decompress: true,
17
17
  responseType: 'text',
18
18
  /* c8 ignore next */
19
- transformResponse: [data => data]
19
+ transformResponse: [data => data],
20
+ maxBodyLength: Infinity,
21
+ maxContentLength: Infinity
20
22
  });
21
23
  // since we're stubbing requests, request interceptor is never called in
22
24
  // tests, so let's exclude it from coverage
@@ -64,7 +66,7 @@ class Request {
64
66
  });
65
67
  // since we're stubbing requests, response interceptor is never called in
66
68
  // tests, so let's exclude it from coverage
67
- /* c8 ignore next 22 */
69
+ /* c8 ignore next 26 */
68
70
  this.req.interceptors.response.use((response) => {
69
71
  if (this._logger) {
70
72
  this._logger.logToStderr('Response:');
@@ -73,19 +75,22 @@ class Request {
73
75
  response.headers['content-type'].indexOf('json') > -1) {
74
76
  properties.push('data');
75
77
  }
76
- this._logger.logToStderr(JSON.stringify(Utils_1.default.filterObject(response, properties), null, 2));
78
+ this._logger.logToStderr(JSON.stringify(Object.assign({ url: response.config.url }, Utils_1.default.filterObject(response, properties)), null, 2));
77
79
  }
78
80
  return response;
79
81
  }, (error) => {
80
82
  if (this._logger) {
81
83
  const properties = ['status', 'statusText', 'headers'];
82
84
  this._logger.logToStderr('Request error:');
83
- this._logger.logToStderr(JSON.stringify(Object.assign(Object.assign({}, Utils_1.default.filterObject(error.response, properties)), { error: error.error }), null, 2));
85
+ this._logger.logToStderr(JSON.stringify(Object.assign(Object.assign({ url: error.config.url }, Utils_1.default.filterObject(error.response, properties)), { error: error.error }), null, 2));
84
86
  }
85
87
  throw error;
86
88
  });
87
89
  }
88
90
  }
91
+ get logger() {
92
+ return this._logger;
93
+ }
89
94
  set logger(logger) {
90
95
  this._logger = logger;
91
96
  }
@@ -5,10 +5,10 @@
5
5
  : JMESPath query string. See [http://jmespath.org/](http://jmespath.org/) for more information and examples
6
6
 
7
7
  `-o, --output [output]`
8
- : Output type. `json,text`. Default `text`
8
+ : Output type. `json,text,csv`. Default `json`
9
9
 
10
10
  `--verbose`
11
11
  : Runs command with verbose logging
12
12
 
13
13
  `--debug`
14
- : Runs command with debug logging
14
+ : Runs command with debug logging
@@ -0,0 +1,48 @@
1
+ # aad app get
2
+
3
+ Gets an Azure AD app registration
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 aad app get [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `--appId [appId]`
14
+ : Application (client) ID of the Azure AD application registration to get. Specify either `appId`, `objectId` or `name`
15
+
16
+ `--objectId [objectId]`
17
+ : Object ID of the Azure AD application registration to get. Specify either `appId`, `objectId` or `name`
18
+
19
+ `--name [name]`
20
+ : Name of the Azure AD application registration to get. Specify either `appId`, `objectId` or `name`
21
+
22
+ --8<-- "docs/cmd/_global.md"
23
+
24
+ ## Remarks
25
+
26
+ For best performance use the `objectId` option to reference the Azure AD application registration to update. If you use `appId` or `name`, this command will first need to find the corresponding object ID for that application.
27
+
28
+ If the command finds multiple Azure AD application registrations with the specified app name, it will prompt you to disambiguate which app it should use, listing the discovered object IDs.
29
+
30
+ ## Examples
31
+
32
+ Get the Azure AD application registration by its app (client) ID
33
+
34
+ ```sh
35
+ m365 aad app get --appId d75be2e1-0204-4f95-857d-51a37cf40be8
36
+ ```
37
+
38
+ Get the Azure AD application registration by its object ID
39
+
40
+ ```sh
41
+ m365 aad app get --objectId d75be2e1-0204-4f95-857d-51a37cf40be8
42
+ ```
43
+
44
+ Get the Azure AD application registration by its name
45
+
46
+ ```sh
47
+ m365 aad app get --name "My app"
48
+ ```
@@ -0,0 +1,29 @@
1
+ # aad user password validate
2
+
3
+ Check a user's password against the organization's password validation policy
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 aad user password validate [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-p, --password <password>`
14
+ : The password to be validated.
15
+
16
+ --8<-- "docs/cmd/_global.md"
17
+
18
+ ## Remarks
19
+
20
+ !!! attention
21
+ This command is based on an API that is currently in preview and is subject to change once the API reached general availability.
22
+
23
+ ## Examples
24
+
25
+ Validate password _cli365P@ssW0rd_ against the organization's password validation policy
26
+
27
+ ```sh
28
+ m365 aad user password validate --password "cli365P@ssW0rd"
29
+ ```
@@ -0,0 +1,36 @@
1
+ # app permission list
2
+
3
+ Lists API permissions for the current AAD app
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 app permission list [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `--appId [appId]`
14
+ : Client ID of the Azure AD app registered in the .m365rc.json file to retrieve API permissions for
15
+
16
+ --8<-- "docs/cmd/_global.md"
17
+
18
+ ## Remarks
19
+
20
+ Use this command to quickly look up API permissions for the Azure AD application registration registered in the .m365rc.json file in your current project (folder).
21
+
22
+ If you have multiple apps registered in your .m365rc.json file, you can specify the app for which you'd like to retrieve permissions using the `--appId` option. If you don't specify the app using the `--appId` option, you'll be prompted to select one of the applications from your .m365rc.json file.
23
+
24
+ ## Examples
25
+
26
+ Retrieve API permissions for your current Azure AD app
27
+
28
+ ```sh
29
+ m365 app permission list
30
+ ```
31
+
32
+ Retrieve API permissions for the Azure AD app with client ID _e23d235c-fcdf-45d1-ac5f-24ab2ee0695d_ specified in the _.m365rc.json_ file
33
+
34
+ ```sh
35
+ m365 app permission list --appId e23d235c-fcdf-45d1-ac5f-24ab2ee0695d
36
+ ```
@@ -10,6 +10,12 @@ pa app list [options]
10
10
 
11
11
  ## Options
12
12
 
13
+ `-e, --environment [environment]`
14
+ : The name of the environment for which to retrieve available apps
15
+
16
+ `--asAdmin`
17
+ : Set, to list all Power Apps as admin. Otherwise will return only your own apps
18
+
13
19
  --8<-- "docs/cmd/_global.md"
14
20
 
15
21
  ## Remarks
@@ -17,10 +23,20 @@ pa app list [options]
17
23
  !!! attention
18
24
  This command is based on an API that is currently in preview and is subject to change once the API reaches general availability.
19
25
 
26
+ If the environment with the name you specified doesn't exist, you will get the `Access to the environment 'xyz' is denied.` error.
27
+
28
+ By default, the `app list` command returns only your apps. To list all apps, use the `asAdmin` option and make sure to specify the `environment` option. You cannot specify only one of the options, when specifying the `environment` option the `asAdmin` option has to be present as well.
29
+
20
30
  ## Examples
21
31
 
22
- List all apps
32
+ List all your apps
23
33
 
24
34
  ```sh
25
35
  m365 pa app list
26
36
  ```
37
+
38
+ List all apps in a given environment
39
+
40
+ ```sh
41
+ m365 pa app list --environment Default-d87a7535-dd31-4437-bfe1-95340acd55c5 --asAdmin
42
+ ```
@@ -0,0 +1,43 @@
1
+ # search externalconnection add
2
+
3
+ Add a new external connection to be defined for Microsoft Search
4
+
5
+ ## Usage
6
+
7
+ ```sh
8
+ m365 search externalconnection add [options]
9
+ ```
10
+
11
+ ## Options
12
+
13
+ `-i, --id <id>`
14
+ : Developer-provided unique ID of the connection within the Azure Active Directory tenant
15
+
16
+ `-n, --name <name>`
17
+ : The display name of the connection to be displayed in the Microsoft 365 admin center. Maximum length of 128 characters
18
+
19
+ `-d, --description <description>`
20
+ : Description of the connection displayed in the Microsoft 365 admin center
21
+
22
+ `--authorizedAppIds [authorizedAppIds]`
23
+ : Comma-separated collection of application IDs for registered Azure Active Directory apps that are allowed to manage the external connection and to index content in the external connection.
24
+
25
+ --8<-- "docs/cmd/_global.md"
26
+
27
+ ## Remarks
28
+
29
+ The `id` must be at least 3 and no more than 32 characters long. It can contain only alphanumeric characters, can't begin with _Microsoft_ and can be any of the following values: *None, Directory, Exchange, ExchangeArchive, LinkedIn, Mailbox, OneDriveBusiness, SharePoint, Teams, Yammer, Connectors, TaskFabric, PowerBI, Assistant, TopicEngine, MSFT_All_Connectors*.
30
+
31
+ ## Examples
32
+
33
+ Adds a new external connection with name and description of test
34
+
35
+ ```sh
36
+ m365 search externalconnection add --id MyApp --name "My application" --description "Description of your application"
37
+ ```
38
+
39
+ Adds a new external connection with a limited number of authorized apps
40
+
41
+ ```sh
42
+ m365 search externalconnection add --id MyApp --name "My application" --description "Description of your application" --authorizedAppIds "00000000-0000-0000-0000-000000000000,00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002"
43
+ ```