@pnp/cli-microsoft365 10.1.0-beta.10765f6 → 10.1.0-beta.282b66f

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.
@@ -17,6 +17,9 @@ class EntraEnterpriseAppAddCommand extends GraphCommand {
17
17
  get description() {
18
18
  return 'Creates an enterprise application (or service principal) for a registered Entra app';
19
19
  }
20
+ alias() {
21
+ return [commands.SP_ADD];
22
+ }
20
23
  constructor() {
21
24
  super();
22
25
  _EntraEnterpriseAppAddCommand_instances.add(this);
@@ -17,6 +17,9 @@ class EntraEnterpriseAppGetCommand extends GraphCommand {
17
17
  get description() {
18
18
  return 'Gets information about an Enterprise Application';
19
19
  }
20
+ alias() {
21
+ return [commands.SP_GET];
22
+ }
20
23
  constructor() {
21
24
  super();
22
25
  _EntraEnterpriseAppGetCommand_instances.add(this);
@@ -17,6 +17,9 @@ class EntraEnterpriseAppListCommand extends GraphCommand {
17
17
  get description() {
18
18
  return 'Lists the enterprise applications (or service principals) in Entra ID';
19
19
  }
20
+ alias() {
21
+ return [commands.SP_LIST];
22
+ }
20
23
  constructor() {
21
24
  super();
22
25
  _EntraEnterpriseAppListCommand_instances.add(this);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnp/cli-microsoft365",
3
- "version": "10.1.0-beta.10765f6",
3
+ "version": "10.1.0-beta.282b66f",
4
4
  "description": "Manage Microsoft 365 and SharePoint Framework projects on any platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/api.js",