1 | import type { CursorPaginationEnabled, TokenOverridable, UserIDs } from '../common';
|
2 | export interface AdminFunctionsListArguments extends TokenOverridable, CursorPaginationEnabled {
|
3 |
|
4 | app_ids: string[];
|
5 |
|
6 | team_id?: string;
|
7 | }
|
8 | export interface AdminFunctionsPermissionsLookupArguments extends TokenOverridable {
|
9 |
|
10 | function_ids: [string, ...string[]];
|
11 | }
|
12 | export interface AdminFunctionsPermissionsSetArguments extends TokenOverridable, Partial<UserIDs> {
|
13 |
|
14 | function_id: string;
|
15 |
|
16 | visibility: 'everyone' | 'app_collaborators' | 'named_entities' | 'no_one';
|
17 | }
|
18 |
|
\ | No newline at end of file |