Skip to content

Commit

Permalink
Merge pull request #43 from sailpoint-oss/ricardofierro/PLTCONN-4010
Browse files Browse the repository at this point in the history
PLTCONN-4010: [sdk] Support direct permissions for accounts
  • Loading branch information
ricardo-fierro-sp committed Oct 25, 2023
2 parents 9df61e7 + ec0829c commit d910f51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/commands/std-account-list.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Copyright (c) 2021. SailPoint Technologies, Inc. All rights reserved. */

import { AccountSchema, Attributes, CommandState, ObjectOutput } from './command'
import { AccountSchema, Attributes, CommandState, ObjectOutput, Permission } from './command'

/**
* Input object of `std:account:list` command
Expand All @@ -19,4 +19,5 @@ export type StdAccountListOutput = ObjectOutput & {
locked?: boolean
deleted?: boolean
attributes: Attributes
permissions?: Permission[]
}
3 changes: 2 additions & 1 deletion lib/commands/std-account-read.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Copyright (c) 2021. SailPoint Technologies, Inc. All rights reserved. */

import { AccountSchema, Attributes, ObjectInput, ObjectOutput } from './command'
import { AccountSchema, Attributes, ObjectInput, ObjectOutput, Permission } from './command'

/**
* Input object of `std:account:read` command
Expand All @@ -16,4 +16,5 @@ export type StdAccountReadOutput = ObjectOutput & {
disabled?: boolean
locked?: boolean
attributes: Attributes
permissions?: Permission[]
}

0 comments on commit d910f51

Please sign in to comment.