Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nanddeepn committed Sep 25, 2024
1 parent 61549e7 commit aae2e87
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions src/m365/entra/commands/app/app-add.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,36 +10,6 @@ import GraphCommand from '../../../base/GraphCommand.js';
import { M365RcJson } from '../../../base/M365RcJson.js';
import commands from '../../commands.js';

interface ServicePrincipalInfo {
appId: string;
appRoles: { id: string; value: string; }[];
id: string;
oauth2PermissionScopes: { id: string; value: string; }[];
servicePrincipalNames: string[];
}

interface RequiredResourceAccess {
resourceAppId: string;
resourceAccess: ResourceAccess[];
}

interface ResourceAccess {
id: string;
type: string;
}

interface AppInfo {
appId: string;
// objectId
id: string;
tenantId: string;
secrets?: {
displayName: string;
value: string;
}[];
requiredResourceAccess: RequiredResourceAccess[];
}

interface CommandArgs {
options: Options;
}
Expand Down

0 comments on commit aae2e87

Please sign in to comment.