Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the web-api response types (2021-05-25 PT) #1247

Merged
merged 1 commit into from May 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -33,4 +33,5 @@ export interface Conversation {
connected_team_ids?: string[];
conversation_host_id?: string;
channel_email_addresses?: string[];
connected_limited_team_ids?: string[];
}
2 changes: 2 additions & 0 deletions packages/web-api/src/response/FilesUploadResponse.ts
Expand Up @@ -67,4 +67,6 @@ export interface Public {
channel_name?: string;
team_id?: string;
share_user_id?: string;
thread_ts?: string;
latest_reply?: string;
}
1 change: 1 addition & 0 deletions packages/web-api/src/response/RemindersListResponse.ts
Expand Up @@ -16,4 +16,5 @@ export interface Reminder {
recurring?: boolean;
time?: number;
complete_ts?: number;
channel?: string;
}
1 change: 1 addition & 0 deletions packages/web-api/src/response/StarsListResponse.ts
Expand Up @@ -136,6 +136,7 @@ export interface Message {
upload?: boolean;
display_as_bot?: boolean;
is_locked?: boolean;
inviter?: string;
}

export interface Attachment {
Expand Down