1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export type AppsManifestCreateResponse = WebAPICallResult & {
|
3 | app_id?: string;
|
4 | credentials?: Credentials;
|
5 | error?: string;
|
6 | errors?: Error[];
|
7 | needed?: string;
|
8 | oauth_authorize_url?: string;
|
9 | ok?: boolean;
|
10 | provided?: string;
|
11 | response_metadata?: ResponseMetadata;
|
12 | };
|
13 | export interface Credentials {
|
14 | client_id?: string;
|
15 | client_secret?: string;
|
16 | signing_secret?: string;
|
17 | verification_token?: string;
|
18 | }
|
19 | export interface Error {
|
20 | code?: string;
|
21 | message?: string;
|
22 | pointer?: string;
|
23 | related_component?: string;
|
24 | }
|
25 | export interface ResponseMetadata {
|
26 | messages?: string[];
|
27 | }
|
28 |
|
\ | No newline at end of file |