1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export type AdminAppsConfigLookupResponse = WebAPICallResult & {
|
3 | configs?: Config[];
|
4 | error?: string;
|
5 | needed?: string;
|
6 | ok?: boolean;
|
7 | provided?: string;
|
8 | response_metadata?: ResponseMetadata;
|
9 | };
|
10 | export interface Config {
|
11 | app_id?: string;
|
12 | domain_restrictions?: DomainRestrictions;
|
13 | workflow_auth_strategy?: string;
|
14 | }
|
15 | export interface DomainRestrictions {
|
16 | emails?: string[];
|
17 | urls?: string[];
|
18 | }
|
19 | export interface ResponseMetadata {
|
20 | messages?: string[];
|
21 | }
|
22 |
|
\ | No newline at end of file |