slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
30 lines • 785 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type AppsManifestCreateResponse = SlackAPIResponse & {
app_id?: string;
credentials?: Credentials;
error?: string;
errors?: Error[];
needed?: string;
oauth_authorize_url?: string;
ok: boolean;
provided?: string;
response_metadata?: ResponseMetadata;
team_domain?: string;
team_id?: string;
};
export interface Credentials {
client_id?: string;
client_secret?: string;
signing_secret?: string;
verification_token?: string;
}
export interface Error {
code?: string;
message?: string;
pointer?: string;
related_component?: string;
}
export interface ResponseMetadata {
messages?: string[];
}
//# sourceMappingURL=AppsManifestCreateResponse.d.ts.map