Socket
Socket
Sign inDemoInstall

@slack/web-api

Package Overview
Dependencies
22
Maintainers
10
Versions
60
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.1.0 to 7.2.0

dist/types/response/TeamExternalTeamsListResponse.d.ts

3

dist/types/request/chat.d.ts

@@ -1,2 +0,3 @@

import type { KnownBlock, Block, MessageAttachment, LinkUnfurls, MessageMetadata } from '@slack/types';
import type { KnownBlock, Block, // TODO: these will be combined into one in a new types release
MessageAttachment, LinkUnfurls, MessageMetadata } from '@slack/types';
import type { CursorPaginationEnabled, OptionalTeamAssignable, TimelinePaginationEnabled, TokenOverridable } from './common';

@@ -3,0 +4,0 @@ import { OptionalArgument } from '../helpers';

export type { WorkflowsStepCompletedArguments, WorkflowsStepFailedArguments, WorkflowsUpdateStepArguments } from './workflows';
export type { ViewsUpdateArguments, ViewsOpenArguments, ViewsPushArguments, ViewsPublishArguments } from './views';
export type { UsersConversationsArguments, UsersInfoArguments, UsersListArguments, UsersIdentityArguments, UsersSetPhotoArguments, UsersProfileGetArguments, UsersProfileSetArguments, UsersDeletePhotoArguments, UsersGetPresenceArguments, UsersSetPresenceArguments, UsersLookupByEmailArguments } from './users';
export type { UsersConversationsArguments, UsersDiscoverableContactsLookupArguments, UsersInfoArguments, UsersListArguments, UsersIdentityArguments, UsersSetPhotoArguments, UsersProfileGetArguments, UsersProfileSetArguments, UsersDeletePhotoArguments, UsersGetPresenceArguments, UsersSetPresenceArguments, UsersLookupByEmailArguments } from './users';
export type { ToolingTokensRotateArguments } from './tooling';
export type { SearchAllArguments, SearchFilesArguments, SearchMessagesArguments } from './search';
export type { UsergroupsCreateArguments, UsergroupsDisableArguments, UsergroupsEnableArguments, UsergroupsListArguments, UsergroupsUpdateArguments, UsergroupsUsersListArguments, UsergroupsUsersUpdateArguments } from './usergroups';
export type { TeamAccessLogsArguments, TeamBillableInfoArguments, TeamBillingInfoArguments, TeamInfoArguments, TeamIntegrationLogsArguments, TeamPreferencesListArguments, TeamProfileGetArguments } from './team';
export type { TeamAccessLogsArguments, TeamBillableInfoArguments, TeamBillingInfoArguments, TeamExternalTeamsListArguments, TeamInfoArguments, TeamIntegrationLogsArguments, TeamPreferencesListArguments, TeamProfileGetArguments } from './team';
export type { StarsAddRemoveArguments, StarsListArguments } from './stars';

@@ -9,0 +9,0 @@ export type { RTMConnectArguments, RTMStartArguments } from './rtm';

@@ -1,2 +0,2 @@

import { AppID, OptionalTeamAssignable, TokenOverridable, CursorPaginationEnabled, TraditionalPagingEnabled } from './common';
import { AppID, CursorPaginationEnabled, OptionalTeamAssignable, SortDir, TokenOverridable, TraditionalPagingEnabled } from './common';
import { OptionalArgument } from '../helpers';

@@ -15,2 +15,14 @@ export type TeamAccessLogsArguments = OptionalArgument<TokenOverridable & CursorPaginationEnabled & TraditionalPagingEnabled & OptionalTeamAssignable & {

export type TeamBillingInfoArguments = OptionalArgument<TokenOverridable>;
export type TeamExternalTeamsListArguments = OptionalArgument<TokenOverridable & CursorPaginationEnabled & {
/** @description Status of the connected team. */
connection_status_filter?: 'CONNECTED' | 'DISCONNECTED' | 'BLOCKED' | 'IN_REVIEW';
/** @description Filters connected orgs by Slack Connect pref override(s) */
slack_connect_pref_filter?: 'approved_orgs_only' | 'allow_sc_file_uploads' | 'profile_visibility' | 'away_team_sc_invite_permissions' | 'accept_sc_invites' | 'sc_mpdm_to_private' | 'require_sc_channel_for_sc_dm' | 'external_awareness_context_bar';
/** @description Direction to sort in asc or desc. */
sort_direction?: SortDir['sort_dir'];
/** @description Name of the parameter that we are sorting by. Defaults to `team_name`. */
sort_field?: 'team_name' | 'last_active_timestamp' | 'connection_status';
/** @description Shows connected orgs which are connected on a specified encoded workspace ID. */
workspace_filter?: string[];
}>;
export type TeamInfoArguments = OptionalArgument<TokenOverridable & {

@@ -17,0 +29,0 @@ /**

@@ -5,2 +5,6 @@ /// <reference types="node" />

import { TokenOverridable, CursorPaginationEnabled, OptionalTeamAssignable, LocaleAware } from './common';
interface Email {
/** @description An email address belonging to a user in the workspace */
email: string;
}
export interface UsersConversationsArguments extends TokenOverridable, CursorPaginationEnabled, OptionalTeamAssignable {

@@ -22,2 +26,4 @@ /** @description Set to `true` to exclude archived channels from the list. Default is `false`. */

}
export interface UsersDiscoverableContactsLookupArguments extends Email, TokenOverridable {
}
export interface UsersGetPresenceArguments extends TokenOverridable {

@@ -35,5 +41,3 @@ /** @description User to get presence info on. Defaults to the authed user. */

}
export interface UsersLookupByEmailArguments extends TokenOverridable {
/** @description An email address belonging to a user in the workspace */
email: string;
export interface UsersLookupByEmailArguments extends Email, TokenOverridable {
}

@@ -84,2 +88,3 @@ export interface UsersSetPhotoArguments extends TokenOverridable {

}
export {};
//# sourceMappingURL=users.d.ts.map

@@ -66,2 +66,3 @@ import { WebAPICallResult } from '../../WebClient';

channel_id?: string;
list_id?: string;
message_ts?: string;

@@ -68,0 +69,0 @@ reaction?: string;

@@ -39,2 +39,3 @@ import { WebAPICallResult } from '../../WebClient';

last_activity_ts?: number;
lists?: Canvas;
member_count?: number;

@@ -41,0 +42,0 @@ name?: string;

@@ -8,2 +8,3 @@ import { WebAPICallResult } from '../../WebClient';

provided?: string;
response_metadata?: ResponseMetadata;
};

@@ -41,2 +42,5 @@ export interface ApprovedRequest {

}
export interface ResponseMetadata {
next_cursor?: string;
}
//# sourceMappingURL=AdminInviteRequestsApprovedListResponse.d.ts.map

@@ -8,2 +8,3 @@ import { WebAPICallResult } from '../../WebClient';

provided?: string;
response_metadata?: ResponseMetadata;
};

@@ -27,2 +28,5 @@ export interface DeniedRequest {

}
export interface ResponseMetadata {
next_cursor?: string;
}
//# sourceMappingURL=AdminInviteRequestsDeniedListResponse.d.ts.map

@@ -8,2 +8,3 @@ import { WebAPICallResult } from '../../WebClient';

provided?: string;
response_metadata?: ResponseMetadata;
};

@@ -20,2 +21,5 @@ export interface InviteRequest {

}
export interface ResponseMetadata {
next_cursor?: string;
}
//# sourceMappingURL=AdminInviteRequestsListResponse.d.ts.map

@@ -44,5 +44,6 @@ import { WebAPICallResult } from '../../WebClient';

export interface Properties {
posting_restricted_to?: PostingRestrictedTo;
posting_restricted_to?: RestrictedTo;
threads_restricted_to?: RestrictedTo;
}
export interface PostingRestrictedTo {
export interface RestrictedTo {
type?: string[];

@@ -49,0 +50,0 @@ }

@@ -6,3 +6,5 @@ import { WebAPICallResult } from '../../WebClient';

failed_to_update_user_ids?: string[];
needed?: string;
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;

@@ -9,0 +11,0 @@ };

@@ -6,3 +6,5 @@ import { WebAPICallResult } from '../../WebClient';

failed_to_update_user_ids?: string[];
needed?: string;
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;

@@ -9,0 +11,0 @@ };

@@ -6,3 +6,5 @@ import { WebAPICallResult } from '../../WebClient';

error?: string;
needed?: string;
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;

@@ -9,0 +11,0 @@ };

import { WebAPICallResult } from '../../WebClient';
export type CanvasesDeleteResponse = WebAPICallResult & {
error?: string;
needed?: string;
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;

@@ -6,0 +8,0 @@ };

@@ -5,7 +5,10 @@ import { WebAPICallResult } from '../../WebClient';

error?: string;
needed?: string;
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;
};
export interface ResponseMetadata {
messages?: string[];
}
//# sourceMappingURL=CanvasesEditResponse.d.ts.map
import { WebAPICallResult } from '../../WebClient';
export type CanvasesSectionsLookupResponse = WebAPICallResult & {
error?: string;
needed?: string;
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;

@@ -9,2 +11,3 @@ sections?: Section[];

export interface ResponseMetadata {
messages?: string[];
}

@@ -11,0 +14,0 @@ export interface Section {

@@ -51,3 +51,4 @@ import { WebAPICallResult } from '../../WebClient';

fallback?: string;
fields?: Field[];
fields?: AttachmentField[];
file_id?: string;
filename?: string;

@@ -58,2 +59,3 @@ files?: FileElement[];

from_url?: string;
hide_border?: boolean;
hide_color?: boolean;

@@ -71,2 +73,9 @@ id?: number;

is_thread_root_unfurl?: boolean;
list?: List;
list_record?: PurpleListRecord;
list_record_id?: string;
list_records?: ListRecordElement[];
list_schema?: Schema[];
list_view?: View;
list_view_id?: string;
message_blocks?: MessageBlock[];

@@ -312,3 +321,3 @@ metadata?: AttachmentMetadata;

}
export interface Field {
export interface AttachmentField {
short?: boolean;

@@ -347,2 +356,3 @@ title?: string;

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -371,2 +381,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -396,2 +408,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -484,2 +497,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -500,2 +518,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -544,9 +650,72 @@ duration_ms?: number;

}
export interface MessageBlock {
channel?: string;
message?: MessageBlockMessage;
team?: string;
ts?: string;
export interface List {
channels?: string[];
comments_count?: number;
created?: number;
display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
editable?: boolean;
external_type?: string;
file_access?: string;
filetype?: string;
groups?: string[];
has_more_shares?: boolean;
has_rich_preview?: boolean;
id?: string;
ims?: string[];
is_external?: boolean;
is_public?: boolean;
last_editor?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
mimetype?: string;
mode?: string;
name?: string;
permalink?: string;
permalink_public?: string;
pretty_type?: string;
private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
shares?: EventPayload;
size?: number;
timestamp?: number;
title?: string;
updated?: number;
url_private?: string;
url_private_download?: string;
user?: string;
user_team?: string;
username?: string;
}
export interface MessageBlockMessage {
export interface EventPayload {
}
export interface PurpleListRecord {
record?: Record;
schema?: Schema[];
}
export interface Record {
fields?: RecordField[];
record_id?: string;
}
export interface RecordField {
attachment?: any[];
channel?: any[];
checkbox?: boolean;
column_id?: string;
date?: any[];
email?: any[];
key?: string;
message?: FieldMessage;
number?: any[];
phone?: any[];
rating?: any[];
rich_text?: any[];
select?: any[];
text?: string;
timestamp?: any[];
user?: any[];
value?: string;
}
export interface FieldMessage {
app_id?: string;

@@ -686,2 +855,3 @@ attachments?: any[];

external_url?: string;
favorites?: any[];
file_access?: string;

@@ -710,2 +880,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -735,2 +907,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -814,4 +987,2 @@ quip_thread_id?: string;

}
export interface EventPayload {
}
export interface PurpleIcons {

@@ -888,2 +1059,27 @@ emoji?: string;

}
export interface ListRecordElement {
created_by?: string;
date_created?: number;
fields?: RecordField[];
id?: string;
is_subscribed?: boolean;
list_id?: string;
platform_refs?: PlatformRefs;
position?: string;
saved?: Saved;
thread_ts?: string;
updated_by?: string;
updated_timestamp?: string;
}
export interface PlatformRefs {
bot_created_by?: string;
bot_deleted_by?: string;
bot_updated_by?: string;
}
export interface MessageBlock {
channel?: string;
message?: FieldMessage;
team?: string;
ts?: string;
}
export interface AttachmentMetadata {

@@ -929,3 +1125,3 @@ extension?: string;

fields?: DescriptionElement[];
file?: MessageFile;
file?: FileElement;
file_id?: string;

@@ -932,0 +1128,0 @@ function_trigger_id?: string;

@@ -15,3 +15,3 @@ import { WebAPICallResult } from '../../WebClient';

app_id?: string;
blocks?: Block[];
blocks?: MessageBlock[];
bot_id?: string;

@@ -26,3 +26,3 @@ bot_profile?: BotProfile;

}
export interface Block {
export interface MessageBlock {
accessory?: Accessory;

@@ -39,3 +39,3 @@ alt_text?: string;

call_id?: string;
description?: Description;
description?: DescriptionElement;
developer_trace_id?: string;

@@ -47,7 +47,7 @@ dispatch_action?: boolean;

fallback?: string;
fields?: Description[];
fields?: DescriptionElement[];
file?: File;
file_id?: string;
function_trigger_id?: string;
hint?: Description;
hint?: DescriptionElement;
image_bytes?: number;

@@ -59,3 +59,3 @@ image_height?: number;

is_workflow_app?: boolean;
label?: Description;
label?: DescriptionElement;
optional?: boolean;

@@ -69,5 +69,5 @@ owning_team_id?: string;

source?: string;
text?: Description;
text?: DescriptionElement;
thumbnail_url?: string;
title?: Description;
title?: DescriptionElement;
title_url?: string;

@@ -113,7 +113,7 @@ trigger_subtype?: string;

options?: Option[];
placeholder?: Description;
placeholder?: DescriptionElement;
response_url_enabled?: boolean;
slack_file?: SlackFile;
style?: string;
text?: Description;
text?: DescriptionElement;
timezone?: string;

@@ -126,9 +126,9 @@ type?: string;

export interface Confirm {
confirm?: Description;
deny?: Description;
confirm?: DescriptionElement;
deny?: DescriptionElement;
style?: string;
text?: Description;
title?: Description;
text?: DescriptionElement;
title?: DescriptionElement;
}
export interface Description {
export interface DescriptionElement {
emoji?: boolean;

@@ -149,3 +149,3 @@ text?: string;

style?: string;
type?: string;
type?: FluffyType;
}

@@ -161,3 +161,3 @@ export interface PurpleElement {

timestamp?: string;
type?: ElementType;
type?: PurpleType;
unicode?: string;

@@ -175,3 +175,3 @@ url?: string;

}
export declare enum ElementType {
export declare enum PurpleType {
Broadcast = "broadcast",

@@ -188,2 +188,8 @@ Channel = "channel",

}
export declare enum FluffyType {
RichTextList = "rich_text_list",
RichTextPreformatted = "rich_text_preformatted",
RichTextQuote = "rich_text_quote",
RichTextSection = "rich_text_section"
}
export interface Filter {

@@ -195,4 +201,4 @@ exclude_bot_users?: boolean;

export interface Option {
description?: Description;
text?: Description;
description?: DescriptionElement;
text?: DescriptionElement;
url?: string;

@@ -202,3 +208,3 @@ value?: string;

export interface OptionGroup {
label?: Description;
label?: DescriptionElement;
options?: Option[];

@@ -270,9 +276,9 @@ }

attachments?: any[];
blocks?: any[];
blocks?: TitleBlockElement[];
bot_id?: string;
canvas_template_mode?: string;
cc?: any[];
cc?: Cc[];
channel_actions_count?: number;
channel_actions_ts?: string;
channels?: any[];
channels?: string[];
comments_count?: number;

@@ -284,3 +290,3 @@ converted_pdf?: string;

display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: any[];
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
duration_ms?: number;

@@ -291,10 +297,11 @@ edit_link?: string;

editor?: string;
editors?: any[];
editors?: string[];
external_id?: string;
external_type?: string;
external_url?: string;
favorites?: Favorite[];
file_access?: string;
filetype?: string;
from?: any[];
groups?: any[];
from?: Cc[];
groups?: string[];
has_more?: boolean;

@@ -308,3 +315,3 @@ has_more_shares?: boolean;

image_exif_rotation?: number;
ims?: any[];
ims?: string[];
initial_comment?: InitialComment;

@@ -320,2 +327,4 @@ is_channel_space?: boolean;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -336,3 +345,3 @@ media_progress?: MediaProgress;

permalink_public?: string;
pinned_to?: any[];
pinned_to?: string[];
pjpeg?: string;

@@ -346,8 +355,9 @@ plain_text?: string;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
quip_thread_id?: string;
reactions?: any[];
reactions?: Reaction[];
saved?: Saved;
sent_to_self?: boolean;
shares?: EventPayload;
shares?: Shares;
show_badge?: boolean;

@@ -412,4 +422,4 @@ simplified_html?: string;

title?: string;
title_blocks?: any[];
to?: any[];
title_blocks?: TitleBlockElement[];
to?: Cc[];
transcription?: Transcription;

@@ -426,2 +436,54 @@ update_notification?: number;

}
export interface TitleBlockElement {
accessory?: Accessory;
alt_text?: string;
app_collaborators?: string[];
app_id?: string;
author_name?: string;
block_id?: string;
bot_user_id?: string;
button_label?: string;
description?: DescriptionElement | string;
developer_trace_id?: string;
elements?: Accessory[];
fallback?: string;
fields?: DescriptionElement[];
function_trigger_id?: string;
image_bytes?: number;
image_height?: number;
image_url?: string;
image_width?: number;
is_animated?: boolean;
is_workflow_app?: boolean;
owning_team_id?: string;
provider_icon_url?: string;
provider_name?: string;
sales_home_workflow_app_type?: number;
share_url?: string;
slack_file?: SlackFile;
text?: DescriptionElement;
thumbnail_url?: string;
title?: DescriptionElement | string;
title_url?: string;
trigger_subtype?: string;
trigger_type?: string;
type?: string;
url?: string;
video_url?: string;
workflow_id?: string;
}
export interface Cc {
address?: string;
name?: string;
original?: string;
}
export interface DmMpdmUsersWithFileAccess {
access?: string;
user_id?: string;
}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -442,2 +504,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -448,2 +598,8 @@ duration_ms?: number;

}
export interface Reaction {
count?: number;
name?: string;
url?: string;
users?: string[];
}
export interface Saved {

@@ -455,4 +611,24 @@ date_completed?: number;

}
export interface EventPayload {
export interface Shares {
private?: {
[key: string]: Private[];
};
public?: {
[key: string]: Private[];
};
}
export interface Private {
access?: string;
channel_name?: string;
date_last_shared?: number;
latest_reply?: string;
reply_count?: number;
reply_users?: string[];
reply_users_count?: number;
share_user_id?: string;
source?: string;
team_id?: string;
thread_ts?: string;
ts?: string;
}
export interface Transcription {

@@ -480,2 +656,4 @@ locale?: string;

}
export interface EventPayload {
}
export interface Room {

@@ -482,0 +660,0 @@ app_id?: string;

@@ -12,3 +12,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.ElementType = exports.DescriptionType = void 0;
exports.FluffyType = exports.PurpleType = exports.DescriptionType = void 0;
var DescriptionType;

@@ -19,15 +19,22 @@ (function (DescriptionType) {

})(DescriptionType || (exports.DescriptionType = DescriptionType = {}));
var ElementType;
(function (ElementType) {
ElementType["Broadcast"] = "broadcast";
ElementType["Channel"] = "channel";
ElementType["Color"] = "color";
ElementType["Date"] = "date";
ElementType["Emoji"] = "emoji";
ElementType["Link"] = "link";
ElementType["Team"] = "team";
ElementType["Text"] = "text";
ElementType["User"] = "user";
ElementType["Usergroup"] = "usergroup";
})(ElementType || (exports.ElementType = ElementType = {}));
var PurpleType;
(function (PurpleType) {
PurpleType["Broadcast"] = "broadcast";
PurpleType["Channel"] = "channel";
PurpleType["Color"] = "color";
PurpleType["Date"] = "date";
PurpleType["Emoji"] = "emoji";
PurpleType["Link"] = "link";
PurpleType["Team"] = "team";
PurpleType["Text"] = "text";
PurpleType["User"] = "user";
PurpleType["Usergroup"] = "usergroup";
})(PurpleType || (exports.PurpleType = PurpleType = {}));
var FluffyType;
(function (FluffyType) {
FluffyType["RichTextList"] = "rich_text_list";
FluffyType["RichTextPreformatted"] = "rich_text_preformatted";
FluffyType["RichTextQuote"] = "rich_text_quote";
FluffyType["RichTextSection"] = "rich_text_section";
})(FluffyType || (exports.FluffyType = FluffyType = {}));
//# sourceMappingURL=ChatScheduleMessageResponse.js.map

@@ -15,3 +15,3 @@ import { WebAPICallResult } from '../../WebClient';

app_id?: string;
blocks?: Block[];
blocks?: MessageBlock[];
bot_id?: string;

@@ -21,3 +21,3 @@ bot_profile?: BotProfile;

edited?: Edited;
files?: FileElement[];
files?: File[];
metadata?: Metadata;

@@ -32,3 +32,3 @@ room?: Room;

}
export interface Block {
export interface MessageBlock {
accessory?: Accessory;

@@ -53,3 +53,3 @@ alt_text?: string;

fields?: DescriptionElement[];
file?: BlockFile;
file?: File;
file_id?: string;

@@ -79,3 +79,3 @@ function_trigger_id?: string;

trigger_type?: string;
type?: string;
type?: BlockType;
url?: string;

@@ -266,3 +266,3 @@ video_url?: string;

}
export interface BlockFile {
export interface File {
access?: string;

@@ -273,9 +273,9 @@ alt_txt?: string;

attachments?: any[];
blocks?: any[];
blocks?: TitleBlockElement[];
bot_id?: string;
canvas_template_mode?: string;
cc?: any[];
cc?: Cc[];
channel_actions_count?: number;
channel_actions_ts?: string;
channels?: any[];
channels?: string[];
comments_count?: number;

@@ -287,3 +287,3 @@ converted_pdf?: string;

display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: any[];
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
duration_ms?: number;

@@ -294,10 +294,11 @@ edit_link?: string;

editor?: string;
editors?: any[];
editors?: string[];
external_id?: string;
external_type?: string;
external_url?: string;
favorites?: Favorite[];
file_access?: string;
filetype?: string;
from?: any[];
groups?: any[];
from?: Cc[];
groups?: string[];
has_more?: boolean;

@@ -311,3 +312,3 @@ has_more_shares?: boolean;

image_exif_rotation?: number;
ims?: any[];
ims?: string[];
initial_comment?: InitialComment;

@@ -323,2 +324,4 @@ is_channel_space?: boolean;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -339,3 +342,3 @@ media_progress?: MediaProgress;

permalink_public?: string;
pinned_to?: any[];
pinned_to?: string[];
pjpeg?: string;

@@ -349,8 +352,9 @@ plain_text?: string;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
quip_thread_id?: string;
reactions?: any[];
reactions?: Reaction[];
saved?: Saved;
sent_to_self?: boolean;
shares?: EventPayload;
shares?: Shares;
show_badge?: boolean;

@@ -415,4 +419,4 @@ simplified_html?: string;

title?: string;
title_blocks?: any[];
to?: any[];
title_blocks?: TitleBlockElement[];
to?: Cc[];
transcription?: Transcription;

@@ -429,2 +433,64 @@ update_notification?: number;

}
export interface TitleBlockElement {
accessory?: Accessory;
alt_text?: string;
app_collaborators?: string[];
app_id?: string;
author_name?: string;
block_id?: string;
bot_user_id?: string;
button_label?: string;
description?: DescriptionElement | string;
developer_trace_id?: string;
elements?: Accessory[];
fallback?: string;
fields?: DescriptionElement[];
function_trigger_id?: string;
image_bytes?: number;
image_height?: number;
image_url?: string;
image_width?: number;
is_animated?: boolean;
is_workflow_app?: boolean;
owning_team_id?: string;
provider_icon_url?: string;
provider_name?: string;
sales_home_workflow_app_type?: number;
share_url?: string;
slack_file?: SlackFile;
text?: DescriptionElement;
thumbnail_url?: string;
title?: DescriptionElement | string;
title_url?: string;
trigger_subtype?: string;
trigger_type?: string;
type?: BlockType;
url?: string;
video_url?: string;
workflow_id?: string;
}
export declare enum BlockType {
Actions = "actions",
Context = "context",
Divider = "divider",
Image = "image",
RichText = "rich_text",
Section = "section",
ShareShortcut = "share_shortcut",
Video = "video"
}
export interface Cc {
address?: string;
name?: string;
original?: string;
}
export interface DmMpdmUsersWithFileAccess {
access?: string;
user_id?: string;
}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -445,197 +511,94 @@ date?: string;

}
export interface MediaProgress {
duration_ms?: number;
max_offset_ms?: number;
offset_ms?: number;
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface Saved {
date_completed?: number;
date_due?: number;
is_archived?: boolean;
state?: string;
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface EventPayload {
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Transcription {
locale?: string;
status?: string;
}
export interface BotProfile {
app_id?: string;
deleted?: boolean;
icons?: Icons;
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
team_id?: string;
updated?: number;
options?: Options;
type?: string;
}
export interface Icons {
image_36?: string;
image_48?: string;
image_72?: string;
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface Edited {
ts?: string;
user?: string;
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface FileElement {
access?: string;
alt_txt?: string;
app_id?: string;
app_name?: string;
bot_id?: string;
canvas_template_mode?: string;
cc?: Cc[];
channel_actions_count?: number;
channel_actions_ts?: string;
channels?: string[];
comments_count?: number;
converted_pdf?: string;
created?: number;
deanimate?: string;
deanimate_gif?: string;
display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
duration_ms?: number;
edit_link?: string;
edit_timestamp?: number;
editable?: boolean;
editor?: string;
editors?: string[];
external_id?: string;
external_type?: string;
external_url?: string;
file_access?: string;
filetype?: string;
from?: Cc[];
groups?: string[];
has_more?: boolean;
has_more_shares?: boolean;
has_rich_preview?: boolean;
headers?: Headers;
hls?: string;
hls_embed?: string;
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
image_exif_rotation?: number;
ims?: string[];
initial_comment?: InitialComment;
is_channel_space?: boolean;
is_external?: boolean;
is_public?: boolean;
is_starred?: boolean;
last_editor?: string;
last_read?: number;
lines?: number;
lines_more?: number;
linked_channel_id?: string;
media_display_type?: string;
media_progress?: MediaProgress;
mimetype?: string;
mode?: string;
mp4?: string;
mp4_low?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
non_owner_editable?: boolean;
num_stars?: number;
org_or_workspace_access?: string;
original_attachment_count?: number;
original_h?: string;
original_w?: string;
permalink?: string;
permalink_public?: string;
pinned_to?: string[];
pjpeg?: string;
plain_text?: string;
pretty_type?: string;
preview?: string;
preview_highlight?: string;
preview_is_truncated?: boolean;
preview_plain_text?: string;
private_channels_with_file_access_count?: number;
public_url_shared?: boolean;
quip_thread_id?: string;
reactions?: Reaction[];
saved?: Saved;
sent_to_self?: boolean;
shares?: Shares;
show_badge?: boolean;
simplified_html?: string;
size?: number;
source_team?: string;
subject?: string;
subtype?: string;
team_pref_version_history_enabled?: boolean;
teams_shared_with?: any[];
template_conversion_ts?: number;
template_description?: string;
template_icon?: string;
template_name?: string;
template_title?: string;
thumb_1024?: string;
thumb_1024_gif?: string;
thumb_1024_h?: string;
thumb_1024_w?: string;
thumb_160?: string;
thumb_160_gif?: string;
thumb_160_h?: string;
thumb_160_w?: string;
thumb_360?: string;
thumb_360_gif?: string;
thumb_360_h?: string;
thumb_360_w?: string;
thumb_480?: string;
thumb_480_gif?: string;
thumb_480_h?: string;
thumb_480_w?: string;
thumb_64?: string;
thumb_64_gif?: string;
thumb_64_h?: string;
thumb_64_w?: string;
thumb_720?: string;
thumb_720_gif?: string;
thumb_720_h?: string;
thumb_720_w?: string;
thumb_80?: string;
thumb_800?: string;
thumb_800_gif?: string;
thumb_800_h?: string;
thumb_800_w?: string;
thumb_80_gif?: string;
thumb_80_h?: string;
thumb_80_w?: string;
thumb_960?: string;
thumb_960_gif?: string;
thumb_960_h?: string;
thumb_960_w?: string;
thumb_gif?: string;
thumb_pdf?: string;
thumb_pdf_h?: string;
thumb_pdf_w?: string;
thumb_tiny?: string;
thumb_video?: string;
thumb_video_h?: number;
thumb_video_w?: number;
timestamp?: number;
title?: string;
title_blocks?: TitleBlock[];
to?: Cc[];
transcription?: Transcription;
update_notification?: number;
updated?: number;
url_private?: string;
url_private_download?: string;
url_static_preview?: string;
user?: string;
user_team?: string;
username?: string;
vtt?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Cc {
address?: string;
name?: string;
original?: string;
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface DmMpdmUsersWithFileAccess {
access?: string;
user_id?: string;
export interface MediaProgress {
duration_ms?: number;
max_offset_ms?: number;
offset_ms?: number;
}

@@ -648,2 +611,8 @@ export interface Reaction {

}
export interface Saved {
date_completed?: number;
date_due?: number;
is_archived?: boolean;
state?: string;
}
export interface Shares {

@@ -671,40 +640,24 @@ private?: {

}
export interface TitleBlock {
accessory?: Accessory;
alt_text?: string;
app_collaborators?: string[];
export interface Transcription {
locale?: string;
status?: string;
}
export interface BotProfile {
app_id?: string;
author_name?: string;
block_id?: string;
bot_user_id?: string;
button_label?: string;
description?: DescriptionElement | string;
developer_trace_id?: string;
elements?: Accessory[];
fallback?: string;
fields?: DescriptionElement[];
function_trigger_id?: string;
image_bytes?: number;
image_height?: number;
image_url?: string;
image_width?: number;
is_animated?: boolean;
is_workflow_app?: boolean;
owning_team_id?: string;
provider_icon_url?: string;
provider_name?: string;
sales_home_workflow_app_type?: number;
share_url?: string;
slack_file?: SlackFile;
text?: DescriptionElement;
thumbnail_url?: string;
title?: DescriptionElement | string;
title_url?: string;
trigger_subtype?: string;
trigger_type?: string;
type?: string;
url?: string;
video_url?: string;
workflow_id?: string;
deleted?: boolean;
icons?: Icons;
id?: string;
name?: string;
team_id?: string;
updated?: number;
}
export interface Icons {
image_36?: string;
image_48?: string;
image_72?: string;
}
export interface Edited {
ts?: string;
user?: string;
}
export interface Metadata {

@@ -714,2 +667,4 @@ event_payload?: EventPayload;

}
export interface EventPayload {
}
export interface Room {

@@ -716,0 +671,0 @@ app_id?: string;

@@ -12,3 +12,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.FluffyType = exports.PurpleType = exports.DescriptionType = void 0;
exports.BlockType = exports.FluffyType = exports.PurpleType = exports.DescriptionType = void 0;
var DescriptionType;

@@ -39,2 +39,13 @@ (function (DescriptionType) {

})(FluffyType || (exports.FluffyType = FluffyType = {}));
var BlockType;
(function (BlockType) {
BlockType["Actions"] = "actions";
BlockType["Context"] = "context";
BlockType["Divider"] = "divider";
BlockType["Image"] = "image";
BlockType["RichText"] = "rich_text";
BlockType["Section"] = "section";
BlockType["ShareShortcut"] = "share_shortcut";
BlockType["Video"] = "video";
})(BlockType || (exports.BlockType = BlockType = {}));
//# sourceMappingURL=ChatUpdateResponse.js.map

@@ -6,3 +6,5 @@ import { WebAPICallResult } from '../../WebClient';

error?: string;
needed?: string;
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;

@@ -9,0 +11,0 @@ };

@@ -67,3 +67,4 @@ import { WebAPICallResult } from '../../WebClient';

fallback?: string;
fields?: Field[];
fields?: AttachmentField[];
file_id?: string;
filename?: string;

@@ -74,2 +75,3 @@ files?: FileElement[];

from_url?: string;
hide_border?: boolean;
hide_color?: boolean;

@@ -87,2 +89,9 @@ id?: number;

is_thread_root_unfurl?: boolean;
list?: List;
list_record?: PurpleListRecord;
list_record_id?: string;
list_records?: ListRecordElement[];
list_schema?: Schema[];
list_view?: View;
list_view_id?: string;
message_blocks?: MessageBlock[];

@@ -328,3 +337,3 @@ metadata?: AttachmentMetadata;

}
export interface Field {
export interface AttachmentField {
short?: boolean;

@@ -363,2 +372,3 @@ title?: string;

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -387,2 +397,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -412,2 +424,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -500,2 +513,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -516,2 +534,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -560,9 +666,72 @@ duration_ms?: number;

}
export interface MessageBlock {
channel?: string;
message?: MessageBlockMessage;
team?: string;
ts?: string;
export interface List {
channels?: string[];
comments_count?: number;
created?: number;
display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
editable?: boolean;
external_type?: string;
file_access?: string;
filetype?: string;
groups?: string[];
has_more_shares?: boolean;
has_rich_preview?: boolean;
id?: string;
ims?: string[];
is_external?: boolean;
is_public?: boolean;
last_editor?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
mimetype?: string;
mode?: string;
name?: string;
permalink?: string;
permalink_public?: string;
pretty_type?: string;
private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
shares?: EventPayload;
size?: number;
timestamp?: number;
title?: string;
updated?: number;
url_private?: string;
url_private_download?: string;
user?: string;
user_team?: string;
username?: string;
}
export interface MessageBlockMessage {
export interface EventPayload {
}
export interface PurpleListRecord {
record?: Record;
schema?: Schema[];
}
export interface Record {
fields?: RecordField[];
record_id?: string;
}
export interface RecordField {
attachment?: any[];
channel?: any[];
checkbox?: boolean;
column_id?: string;
date?: any[];
email?: any[];
key?: string;
message?: FieldMessage;
number?: any[];
phone?: any[];
rating?: any[];
rich_text?: any[];
select?: any[];
text?: string;
timestamp?: any[];
user?: any[];
value?: string;
}
export interface FieldMessage {
app_id?: string;

@@ -579,3 +748,3 @@ attachments?: any[];

edited?: Edited;
file?: BlockFile;
file?: PurpleFile;
files?: any[];

@@ -674,3 +843,3 @@ hidden?: boolean;

}
export interface BlockFile {
export interface PurpleFile {
access?: string;

@@ -704,2 +873,3 @@ alt_txt?: string;

external_url?: string;
favorites?: any[];
file_access?: string;

@@ -728,2 +898,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -753,2 +925,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -832,4 +1005,2 @@ quip_thread_id?: string;

}
export interface EventPayload {
}
export interface MessageIcons {

@@ -903,2 +1074,27 @@ emoji?: string;

}
export interface ListRecordElement {
created_by?: string;
date_created?: number;
fields?: RecordField[];
id?: string;
is_subscribed?: boolean;
list_id?: string;
platform_refs?: PlatformRefs;
position?: string;
saved?: Saved;
thread_ts?: string;
updated_by?: string;
updated_timestamp?: string;
}
export interface PlatformRefs {
bot_created_by?: string;
bot_deleted_by?: string;
bot_updated_by?: string;
}
export interface MessageBlock {
channel?: string;
message?: FieldMessage;
team?: string;
ts?: string;
}
export interface AttachmentMetadata {

@@ -944,3 +1140,3 @@ extension?: string;

fields?: DescriptionElement[];
file?: BlockFile;
file?: FileElement;
file_id?: string;

@@ -947,0 +1143,0 @@ function_trigger_id?: string;

@@ -29,3 +29,3 @@ import { WebAPICallResult } from '../../WebClient';

app_id?: string;
blocks?: Block[];
blocks?: LatestBlock[];
bot_id?: string;

@@ -41,3 +41,3 @@ bot_profile?: BotProfile;

}
export interface Block {
export interface LatestBlock {
accessory?: Accessory;

@@ -54,3 +54,3 @@ alt_text?: string;

call_id?: string;
description?: Description;
description?: DescriptionElement;
developer_trace_id?: string;

@@ -62,7 +62,7 @@ dispatch_action?: boolean;

fallback?: string;
fields?: Description[];
fields?: DescriptionElement[];
file?: File;
file_id?: string;
function_trigger_id?: string;
hint?: Description;
hint?: DescriptionElement;
image_bytes?: number;

@@ -74,3 +74,3 @@ image_height?: number;

is_workflow_app?: boolean;
label?: Description;
label?: DescriptionElement;
optional?: boolean;

@@ -84,5 +84,5 @@ owning_team_id?: string;

source?: string;
text?: Description;
text?: DescriptionElement;
thumbnail_url?: string;
title?: Description;
title?: DescriptionElement;
title_url?: string;

@@ -128,7 +128,7 @@ trigger_subtype?: string;

options?: Option[];
placeholder?: Description;
placeholder?: DescriptionElement;
response_url_enabled?: boolean;
slack_file?: SlackFile;
style?: string;
text?: Description;
text?: DescriptionElement;
timezone?: string;

@@ -141,9 +141,9 @@ type?: string;

export interface Confirm {
confirm?: Description;
deny?: Description;
confirm?: DescriptionElement;
deny?: DescriptionElement;
style?: string;
text?: Description;
title?: Description;
text?: DescriptionElement;
title?: DescriptionElement;
}
export interface Description {
export interface DescriptionElement {
emoji?: boolean;

@@ -164,3 +164,3 @@ text?: string;

style?: string;
type?: string;
type?: FluffyType;
}

@@ -176,3 +176,3 @@ export interface PurpleElement {

timestamp?: string;
type?: ElementType;
type?: PurpleType;
unicode?: string;

@@ -190,3 +190,3 @@ url?: string;

}
export declare enum ElementType {
export declare enum PurpleType {
Broadcast = "broadcast",

@@ -203,2 +203,8 @@ Channel = "channel",

}
export declare enum FluffyType {
RichTextList = "rich_text_list",
RichTextPreformatted = "rich_text_preformatted",
RichTextQuote = "rich_text_quote",
RichTextSection = "rich_text_section"
}
export interface Filter {

@@ -210,4 +216,4 @@ exclude_bot_users?: boolean;

export interface Option {
description?: Description;
text?: Description;
description?: DescriptionElement;
text?: DescriptionElement;
url?: string;

@@ -217,3 +223,3 @@ value?: string;

export interface OptionGroup {
label?: Description;
label?: DescriptionElement;
options?: Option[];

@@ -285,9 +291,9 @@ }

attachments?: any[];
blocks?: any[];
blocks?: TitleBlockElement[];
bot_id?: string;
canvas_template_mode?: string;
cc?: any[];
cc?: Cc[];
channel_actions_count?: number;
channel_actions_ts?: string;
channels?: any[];
channels?: string[];
comments_count?: number;

@@ -299,3 +305,3 @@ converted_pdf?: string;

display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: any[];
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
duration_ms?: number;

@@ -306,10 +312,11 @@ edit_link?: string;

editor?: string;
editors?: any[];
editors?: string[];
external_id?: string;
external_type?: string;
external_url?: string;
favorites?: Favorite[];
file_access?: string;
filetype?: string;
from?: any[];
groups?: any[];
from?: Cc[];
groups?: string[];
has_more?: boolean;

@@ -323,3 +330,3 @@ has_more_shares?: boolean;

image_exif_rotation?: number;
ims?: any[];
ims?: string[];
initial_comment?: InitialComment;

@@ -335,2 +342,4 @@ is_channel_space?: boolean;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -351,3 +360,3 @@ media_progress?: MediaProgress;

permalink_public?: string;
pinned_to?: any[];
pinned_to?: string[];
pjpeg?: string;

@@ -361,5 +370,6 @@ plain_text?: string;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
quip_thread_id?: string;
reactions?: any[];
reactions?: Reaction[];
saved?: Saved;

@@ -427,4 +437,4 @@ sent_to_self?: boolean;

title?: string;
title_blocks?: any[];
to?: any[];
title_blocks?: TitleBlockElement[];
to?: Cc[];
transcription?: Transcription;

@@ -441,2 +451,54 @@ update_notification?: number;

}
export interface TitleBlockElement {
accessory?: Accessory;
alt_text?: string;
app_collaborators?: string[];
app_id?: string;
author_name?: string;
block_id?: string;
bot_user_id?: string;
button_label?: string;
description?: DescriptionElement | string;
developer_trace_id?: string;
elements?: Accessory[];
fallback?: string;
fields?: DescriptionElement[];
function_trigger_id?: string;
image_bytes?: number;
image_height?: number;
image_url?: string;
image_width?: number;
is_animated?: boolean;
is_workflow_app?: boolean;
owning_team_id?: string;
provider_icon_url?: string;
provider_name?: string;
sales_home_workflow_app_type?: number;
share_url?: string;
slack_file?: SlackFile;
text?: DescriptionElement;
thumbnail_url?: string;
title?: DescriptionElement | string;
title_url?: string;
trigger_subtype?: string;
trigger_type?: string;
type?: string;
url?: string;
video_url?: string;
workflow_id?: string;
}
export interface Cc {
address?: string;
name?: string;
original?: string;
}
export interface DmMpdmUsersWithFileAccess {
access?: string;
user_id?: string;
}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -457,2 +519,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -463,2 +613,8 @@ duration_ms?: number;

}
export interface Reaction {
count?: number;
name?: string;
url?: string;
users?: string[];
}
export interface Saved {

@@ -471,3 +627,23 @@ date_completed?: number;

export interface Shares {
private?: {
[key: string]: Private[];
};
public?: {
[key: string]: Private[];
};
}
export interface Private {
access?: string;
channel_name?: string;
date_last_shared?: number;
latest_reply?: string;
reply_count?: number;
reply_users?: string[];
reply_users_count?: number;
share_user_id?: string;
source?: string;
team_id?: string;
thread_ts?: string;
ts?: string;
}
export interface Transcription {

@@ -474,0 +650,0 @@ locale?: string;

@@ -12,3 +12,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.ElementType = exports.DescriptionType = void 0;
exports.FluffyType = exports.PurpleType = exports.DescriptionType = void 0;
var DescriptionType;

@@ -19,15 +19,22 @@ (function (DescriptionType) {

})(DescriptionType || (exports.DescriptionType = DescriptionType = {}));
var ElementType;
(function (ElementType) {
ElementType["Broadcast"] = "broadcast";
ElementType["Channel"] = "channel";
ElementType["Color"] = "color";
ElementType["Date"] = "date";
ElementType["Emoji"] = "emoji";
ElementType["Link"] = "link";
ElementType["Team"] = "team";
ElementType["Text"] = "text";
ElementType["User"] = "user";
ElementType["Usergroup"] = "usergroup";
})(ElementType || (exports.ElementType = ElementType = {}));
var PurpleType;
(function (PurpleType) {
PurpleType["Broadcast"] = "broadcast";
PurpleType["Channel"] = "channel";
PurpleType["Color"] = "color";
PurpleType["Date"] = "date";
PurpleType["Emoji"] = "emoji";
PurpleType["Link"] = "link";
PurpleType["Team"] = "team";
PurpleType["Text"] = "text";
PurpleType["User"] = "user";
PurpleType["Usergroup"] = "usergroup";
})(PurpleType || (exports.PurpleType = PurpleType = {}));
var FluffyType;
(function (FluffyType) {
FluffyType["RichTextList"] = "rich_text_list";
FluffyType["RichTextPreformatted"] = "rich_text_preformatted";
FluffyType["RichTextQuote"] = "rich_text_quote";
FluffyType["RichTextSection"] = "rich_text_section";
})(FluffyType || (exports.FluffyType = FluffyType = {}));
//# sourceMappingURL=ConversationsOpenResponse.js.map

@@ -56,3 +56,4 @@ import { WebAPICallResult } from '../../WebClient';

fallback?: string;
fields?: Field[];
fields?: AttachmentField[];
file_id?: string;
filename?: string;

@@ -63,2 +64,3 @@ files?: FileElement[];

from_url?: string;
hide_border?: boolean;
hide_color?: boolean;

@@ -76,2 +78,9 @@ id?: number;

is_thread_root_unfurl?: boolean;
list?: List;
list_record?: PurpleListRecord;
list_record_id?: string;
list_records?: ListRecordElement[];
list_schema?: Schema[];
list_view?: View;
list_view_id?: string;
message_blocks?: MessageBlock[];

@@ -317,3 +326,3 @@ metadata?: AttachmentMetadata;

}
export interface Field {
export interface AttachmentField {
short?: boolean;

@@ -352,2 +361,3 @@ title?: string;

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -376,2 +386,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -401,2 +413,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -489,2 +502,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -505,2 +523,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -549,9 +655,72 @@ duration_ms?: number;

}
export interface MessageBlock {
channel?: string;
message?: MessageBlockMessage;
team?: string;
ts?: string;
export interface List {
channels?: string[];
comments_count?: number;
created?: number;
display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
editable?: boolean;
external_type?: string;
file_access?: string;
filetype?: string;
groups?: string[];
has_more_shares?: boolean;
has_rich_preview?: boolean;
id?: string;
ims?: string[];
is_external?: boolean;
is_public?: boolean;
last_editor?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
mimetype?: string;
mode?: string;
name?: string;
permalink?: string;
permalink_public?: string;
pretty_type?: string;
private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
shares?: EventPayload;
size?: number;
timestamp?: number;
title?: string;
updated?: number;
url_private?: string;
url_private_download?: string;
user?: string;
user_team?: string;
username?: string;
}
export interface MessageBlockMessage {
export interface EventPayload {
}
export interface PurpleListRecord {
record?: Record;
schema?: Schema[];
}
export interface Record {
fields?: RecordField[];
record_id?: string;
}
export interface RecordField {
attachment?: any[];
channel?: any[];
checkbox?: boolean;
column_id?: string;
date?: any[];
email?: any[];
key?: string;
message?: FieldMessage;
number?: any[];
phone?: any[];
rating?: any[];
rich_text?: any[];
select?: any[];
text?: string;
timestamp?: any[];
user?: any[];
value?: string;
}
export interface FieldMessage {
app_id?: string;

@@ -568,3 +737,3 @@ attachments?: any[];

edited?: Edited;
file?: BlockFile;
file?: PurpleFile;
files?: any[];

@@ -663,3 +832,3 @@ hidden?: boolean;

}
export interface BlockFile {
export interface PurpleFile {
access?: string;

@@ -693,2 +862,3 @@ alt_txt?: string;

external_url?: string;
favorites?: any[];
file_access?: string;

@@ -717,2 +887,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -742,2 +914,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -821,4 +994,2 @@ quip_thread_id?: string;

}
export interface EventPayload {
}
export interface MessageIcons {

@@ -892,2 +1063,27 @@ emoji?: string;

}
export interface ListRecordElement {
created_by?: string;
date_created?: number;
fields?: RecordField[];
id?: string;
is_subscribed?: boolean;
list_id?: string;
platform_refs?: PlatformRefs;
position?: string;
saved?: Saved;
thread_ts?: string;
updated_by?: string;
updated_timestamp?: string;
}
export interface PlatformRefs {
bot_created_by?: string;
bot_deleted_by?: string;
bot_updated_by?: string;
}
export interface MessageBlock {
channel?: string;
message?: FieldMessage;
team?: string;
ts?: string;
}
export interface AttachmentMetadata {

@@ -933,3 +1129,3 @@ extension?: string;

fields?: DescriptionElement[];
file?: BlockFile;
file?: FileElement;
file_id?: string;

@@ -936,0 +1132,0 @@ function_trigger_id?: string;

@@ -8,2 +8,3 @@ import { WebAPICallResult } from '../../WebClient';

provided?: string;
response_metadata?: ResponseMetadata;
};

@@ -85,2 +86,5 @@ export interface File {

}
export interface ResponseMetadata {
messages?: string[];
}
//# sourceMappingURL=FilesCompleteUploadExternalResponse.d.ts.map

@@ -36,2 +36,3 @@ import { WebAPICallResult } from '../../WebClient';

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -60,2 +61,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -85,2 +88,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -173,2 +177,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -189,2 +198,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -191,0 +288,0 @@ duration_ms?: number;

@@ -36,2 +36,3 @@ import { WebAPICallResult } from '../../WebClient';

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -60,2 +61,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -85,2 +88,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -173,2 +177,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -189,2 +198,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -191,0 +288,0 @@ duration_ms?: number;

@@ -36,2 +36,3 @@ import { WebAPICallResult } from '../../WebClient';

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -60,2 +61,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -85,2 +88,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -173,2 +177,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -189,2 +198,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -191,0 +288,0 @@ duration_ms?: number;

@@ -36,2 +36,3 @@ import { WebAPICallResult } from '../../WebClient';

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -60,2 +61,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -85,2 +88,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -173,2 +177,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -189,2 +198,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -191,0 +288,0 @@ duration_ms?: number;

@@ -36,2 +36,3 @@ import { WebAPICallResult } from '../../WebClient';

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -60,2 +61,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -85,2 +88,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -173,2 +177,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -189,2 +198,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -191,0 +288,0 @@ duration_ms?: number;

@@ -36,2 +36,3 @@ import { WebAPICallResult } from '../../WebClient';

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -60,2 +61,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -85,2 +88,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -173,2 +177,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -189,2 +198,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -191,0 +288,0 @@ duration_ms?: number;

@@ -36,2 +36,3 @@ import { WebAPICallResult } from '../../WebClient';

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -60,2 +61,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -85,2 +88,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -173,2 +177,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -189,2 +198,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -191,0 +288,0 @@ duration_ms?: number;

@@ -268,2 +268,3 @@ export { AdminAnalyticsGetFileResponse, AdminAnalyticsMemberDetails, AdminAnalyticsPublicChannelDetails, AdminAnalyticsPublicChannelMetadataDetails } from './AdminAnalyticsGetFileResponse';

export { TeamBillingInfoResponse } from './TeamBillingInfoResponse';
export { TeamExternalTeamsListResponse } from './TeamExternalTeamsListResponse';
export { TeamInfoResponse } from './TeamInfoResponse';

@@ -283,2 +284,3 @@ export { TeamIntegrationLogsResponse } from './TeamIntegrationLogsResponse';

export { UsersDeletePhotoResponse } from './UsersDeletePhotoResponse';
export { UsersDiscoverableContactsLookupResponse } from './UsersDiscoverableContactsLookupResponse';
export { UsersGetPresenceResponse } from './UsersGetPresenceResponse';

@@ -285,0 +287,0 @@ export { UsersIdentityResponse } from './UsersIdentityResponse';

@@ -10,7 +10,7 @@ import { WebAPICallResult } from '../../WebClient';

team_id?: string;
user_id_map?: UseridMap;
user_id_map?: {
[key: string]: string;
};
warning?: string;
};
export interface UseridMap {
}
//# sourceMappingURL=MigrationExchangeResponse.d.ts.map

@@ -43,2 +43,3 @@ import { WebAPICallResult } from '../../WebClient';

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -67,2 +68,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -92,2 +95,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -180,2 +184,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -196,2 +205,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -198,0 +295,0 @@ duration_ms?: number;

@@ -13,3 +13,3 @@ import { WebAPICallResult } from '../../WebClient';

app_id?: string;
blocks?: Block[];
blocks?: MessageBlock[];
bot_id?: string;

@@ -26,3 +26,3 @@ bot_profile?: BotProfile;

}
export interface Block {
export interface MessageBlock {
accessory?: Accessory;

@@ -39,3 +39,3 @@ alt_text?: string;

call_id?: string;
description?: Description;
description?: DescriptionElement;
developer_trace_id?: string;

@@ -47,7 +47,7 @@ dispatch_action?: boolean;

fallback?: string;
fields?: Description[];
fields?: DescriptionElement[];
file?: File;
file_id?: string;
function_trigger_id?: string;
hint?: Description;
hint?: DescriptionElement;
image_bytes?: number;

@@ -59,3 +59,3 @@ image_height?: number;

is_workflow_app?: boolean;
label?: Description;
label?: DescriptionElement;
optional?: boolean;

@@ -69,5 +69,5 @@ owning_team_id?: string;

source?: string;
text?: Description;
text?: DescriptionElement;
thumbnail_url?: string;
title?: Description;
title?: DescriptionElement;
title_url?: string;

@@ -113,7 +113,7 @@ trigger_subtype?: string;

options?: Option[];
placeholder?: Description;
placeholder?: DescriptionElement;
response_url_enabled?: boolean;
slack_file?: SlackFile;
style?: string;
text?: Description;
text?: DescriptionElement;
timezone?: string;

@@ -126,9 +126,9 @@ type?: string;

export interface Confirm {
confirm?: Description;
deny?: Description;
confirm?: DescriptionElement;
deny?: DescriptionElement;
style?: string;
text?: Description;
title?: Description;
text?: DescriptionElement;
title?: DescriptionElement;
}
export interface Description {
export interface DescriptionElement {
emoji?: boolean;

@@ -149,3 +149,3 @@ text?: string;

style?: string;
type?: string;
type?: FluffyType;
}

@@ -161,3 +161,3 @@ export interface PurpleElement {

timestamp?: string;
type?: ElementType;
type?: PurpleType;
unicode?: string;

@@ -175,3 +175,3 @@ url?: string;

}
export declare enum ElementType {
export declare enum PurpleType {
Broadcast = "broadcast",

@@ -188,2 +188,8 @@ Channel = "channel",

}
export declare enum FluffyType {
RichTextList = "rich_text_list",
RichTextPreformatted = "rich_text_preformatted",
RichTextQuote = "rich_text_quote",
RichTextSection = "rich_text_section"
}
export interface Filter {

@@ -195,4 +201,4 @@ exclude_bot_users?: boolean;

export interface Option {
description?: Description;
text?: Description;
description?: DescriptionElement;
text?: DescriptionElement;
url?: string;

@@ -202,3 +208,3 @@ value?: string;

export interface OptionGroup {
label?: Description;
label?: DescriptionElement;
options?: Option[];

@@ -270,9 +276,9 @@ }

attachments?: any[];
blocks?: any[];
blocks?: TitleBlockElement[];
bot_id?: string;
canvas_template_mode?: string;
cc?: any[];
cc?: Cc[];
channel_actions_count?: number;
channel_actions_ts?: string;
channels?: any[];
channels?: string[];
comments_count?: number;

@@ -284,3 +290,3 @@ converted_pdf?: string;

display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: any[];
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
duration_ms?: number;

@@ -291,10 +297,11 @@ edit_link?: string;

editor?: string;
editors?: any[];
editors?: string[];
external_id?: string;
external_type?: string;
external_url?: string;
favorites?: Favorite[];
file_access?: string;
filetype?: string;
from?: any[];
groups?: any[];
from?: Cc[];
groups?: string[];
has_more?: boolean;

@@ -308,3 +315,3 @@ has_more_shares?: boolean;

image_exif_rotation?: number;
ims?: any[];
ims?: string[];
initial_comment?: InitialComment;

@@ -320,2 +327,4 @@ is_channel_space?: boolean;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -336,3 +345,3 @@ media_progress?: MediaProgress;

permalink_public?: string;
pinned_to?: any[];
pinned_to?: string[];
pjpeg?: string;

@@ -346,8 +355,9 @@ plain_text?: string;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
quip_thread_id?: string;
reactions?: any[];
reactions?: Reaction[];
saved?: Saved;
sent_to_self?: boolean;
shares?: Knocks;
shares?: Shares;
show_badge?: boolean;

@@ -412,4 +422,4 @@ simplified_html?: string;

title?: string;
title_blocks?: any[];
to?: any[];
title_blocks?: TitleBlockElement[];
to?: Cc[];
transcription?: Transcription;

@@ -426,2 +436,54 @@ update_notification?: number;

}
export interface TitleBlockElement {
accessory?: Accessory;
alt_text?: string;
app_collaborators?: string[];
app_id?: string;
author_name?: string;
block_id?: string;
bot_user_id?: string;
button_label?: string;
description?: DescriptionElement | string;
developer_trace_id?: string;
elements?: Accessory[];
fallback?: string;
fields?: DescriptionElement[];
function_trigger_id?: string;
image_bytes?: number;
image_height?: number;
image_url?: string;
image_width?: number;
is_animated?: boolean;
is_workflow_app?: boolean;
owning_team_id?: string;
provider_icon_url?: string;
provider_name?: string;
sales_home_workflow_app_type?: number;
share_url?: string;
slack_file?: SlackFile;
text?: DescriptionElement;
thumbnail_url?: string;
title?: DescriptionElement | string;
title_url?: string;
trigger_subtype?: string;
trigger_type?: string;
type?: string;
url?: string;
video_url?: string;
workflow_id?: string;
}
export interface Cc {
address?: string;
name?: string;
original?: string;
}
export interface DmMpdmUsersWithFileAccess {
access?: string;
user_id?: string;
}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -442,2 +504,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -448,2 +598,8 @@ duration_ms?: number;

}
export interface Reaction {
count?: number;
name?: string;
url?: string;
users?: string[];
}
export interface Saved {

@@ -455,4 +611,24 @@ date_completed?: number;

}
export interface Knocks {
export interface Shares {
private?: {
[key: string]: Private[];
};
public?: {
[key: string]: Private[];
};
}
export interface Private {
access?: string;
channel_name?: string;
date_last_shared?: number;
latest_reply?: string;
reply_count?: number;
reply_users?: string[];
reply_users_count?: number;
share_user_id?: string;
source?: string;
team_id?: string;
thread_ts?: string;
ts?: string;
}
export interface Transcription {

@@ -476,7 +652,2 @@ locale?: string;

}
export interface Reaction {
count?: number;
name?: string;
users?: string[];
}
export interface Room {

@@ -517,2 +688,4 @@ app_id?: string;

}
export interface Knocks {
}
//# sourceMappingURL=ReactionsGetResponse.d.ts.map

@@ -12,3 +12,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.ElementType = exports.DescriptionType = void 0;
exports.FluffyType = exports.PurpleType = exports.DescriptionType = void 0;
var DescriptionType;

@@ -19,15 +19,22 @@ (function (DescriptionType) {

})(DescriptionType || (exports.DescriptionType = DescriptionType = {}));
var ElementType;
(function (ElementType) {
ElementType["Broadcast"] = "broadcast";
ElementType["Channel"] = "channel";
ElementType["Color"] = "color";
ElementType["Date"] = "date";
ElementType["Emoji"] = "emoji";
ElementType["Link"] = "link";
ElementType["Team"] = "team";
ElementType["Text"] = "text";
ElementType["User"] = "user";
ElementType["Usergroup"] = "usergroup";
})(ElementType || (exports.ElementType = ElementType = {}));
var PurpleType;
(function (PurpleType) {
PurpleType["Broadcast"] = "broadcast";
PurpleType["Channel"] = "channel";
PurpleType["Color"] = "color";
PurpleType["Date"] = "date";
PurpleType["Emoji"] = "emoji";
PurpleType["Link"] = "link";
PurpleType["Team"] = "team";
PurpleType["Text"] = "text";
PurpleType["User"] = "user";
PurpleType["Usergroup"] = "usergroup";
})(PurpleType || (exports.PurpleType = PurpleType = {}));
var FluffyType;
(function (FluffyType) {
FluffyType["RichTextList"] = "rich_text_list";
FluffyType["RichTextPreformatted"] = "rich_text_preformatted";
FluffyType["RichTextQuote"] = "rich_text_quote";
FluffyType["RichTextSection"] = "rich_text_section";
})(FluffyType || (exports.FluffyType = FluffyType = {}));
//# sourceMappingURL=ReactionsGetResponse.js.map

@@ -67,3 +67,4 @@ import { WebAPICallResult } from '../../WebClient';

fallback?: string;
fields?: Field[];
fields?: AttachmentField[];
file_id?: string;
filename?: string;

@@ -74,2 +75,3 @@ files?: FileElement[];

from_url?: string;
hide_border?: boolean;
hide_color?: boolean;

@@ -87,2 +89,9 @@ id?: number;

is_thread_root_unfurl?: boolean;
list?: List;
list_record?: PurpleListRecord;
list_record_id?: string;
list_records?: ListRecordElement[];
list_schema?: Schema[];
list_view?: View;
list_view_id?: string;
message_blocks?: MessageBlock[];

@@ -328,3 +337,3 @@ metadata?: AttachmentMetadata;

}
export interface Field {
export interface AttachmentField {
short?: boolean;

@@ -363,2 +372,3 @@ title?: string;

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -387,2 +397,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -412,2 +424,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -500,2 +513,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -516,2 +534,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -560,9 +666,72 @@ duration_ms?: number;

}
export interface MessageBlock {
channel?: string;
message?: MessageBlockMessage;
team?: string;
ts?: string;
export interface List {
channels?: string[];
comments_count?: number;
created?: number;
display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
editable?: boolean;
external_type?: string;
file_access?: string;
filetype?: string;
groups?: string[];
has_more_shares?: boolean;
has_rich_preview?: boolean;
id?: string;
ims?: string[];
is_external?: boolean;
is_public?: boolean;
last_editor?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
mimetype?: string;
mode?: string;
name?: string;
permalink?: string;
permalink_public?: string;
pretty_type?: string;
private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
shares?: Knocks;
size?: number;
timestamp?: number;
title?: string;
updated?: number;
url_private?: string;
url_private_download?: string;
user?: string;
user_team?: string;
username?: string;
}
export interface MessageBlockMessage {
export interface Knocks {
}
export interface PurpleListRecord {
record?: Record;
schema?: Schema[];
}
export interface Record {
fields?: RecordField[];
record_id?: string;
}
export interface RecordField {
attachment?: any[];
channel?: any[];
checkbox?: boolean;
column_id?: string;
date?: any[];
email?: any[];
key?: string;
message?: FieldMessage;
number?: any[];
phone?: any[];
rating?: any[];
rich_text?: any[];
select?: any[];
text?: string;
timestamp?: any[];
user?: any[];
value?: string;
}
export interface FieldMessage {
app_id?: string;

@@ -579,3 +748,3 @@ attachments?: any[];

edited?: Edited;
file?: BlockFile;
file?: PurpleFile;
files?: any[];

@@ -674,3 +843,3 @@ hidden?: boolean;

}
export interface BlockFile {
export interface PurpleFile {
access?: string;

@@ -704,2 +873,3 @@ alt_txt?: string;

external_url?: string;
favorites?: any[];
file_access?: string;

@@ -728,2 +898,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -753,2 +925,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -832,4 +1005,2 @@ quip_thread_id?: string;

}
export interface Knocks {
}
export interface RootIcons {

@@ -906,2 +1077,27 @@ emoji?: string;

}
export interface ListRecordElement {
created_by?: string;
date_created?: number;
fields?: RecordField[];
id?: string;
is_subscribed?: boolean;
list_id?: string;
platform_refs?: PlatformRefs;
position?: string;
saved?: Saved;
thread_ts?: string;
updated_by?: string;
updated_timestamp?: string;
}
export interface PlatformRefs {
bot_created_by?: string;
bot_deleted_by?: string;
bot_updated_by?: string;
}
export interface MessageBlock {
channel?: string;
message?: FieldMessage;
team?: string;
ts?: string;
}
export interface AttachmentMetadata {

@@ -947,3 +1143,3 @@ extension?: string;

fields?: DescriptionElement[];
file?: BlockFile;
file?: FileElement;
file_id?: string;

@@ -950,0 +1146,0 @@ function_trigger_id?: string;

@@ -12,3 +12,39 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.BlockType = exports.FluffyType = exports.PurpleType = exports.DescriptionType = void 0;
exports.BlockType = exports.PurpleType = exports.DescriptionType = exports.ActionType = exports.Id = exports.Appid = void 0;
var Appid;
(function (Appid) {
Appid["A00000000"] = "A00000000";
Appid["Empty"] = "";
})(Appid || (exports.Appid = Appid = {}));
var Id;
(function (Id) {
Id["B00000000"] = "B00000000";
Id["Empty"] = "";
})(Id || (exports.Id = Id = {}));
var ActionType;
(function (ActionType) {
ActionType["Button"] = "button";
ActionType["ChannelsSelect"] = "channels_select";
ActionType["Checkboxes"] = "checkboxes";
ActionType["ConversationsSelect"] = "conversations_select";
ActionType["Datepicker"] = "datepicker";
ActionType["Datetimepicker"] = "datetimepicker";
ActionType["ExternalSelect"] = "external_select";
ActionType["Image"] = "image";
ActionType["MultiChannelsSelect"] = "multi_channels_select";
ActionType["MultiConversationsSelect"] = "multi_conversations_select";
ActionType["MultiExternalSelect"] = "multi_external_select";
ActionType["MultiStaticSelect"] = "multi_static_select";
ActionType["MultiUsersSelect"] = "multi_users_select";
ActionType["Overflow"] = "overflow";
ActionType["RadioButtons"] = "radio_buttons";
ActionType["RichTextList"] = "rich_text_list";
ActionType["RichTextPreformatted"] = "rich_text_preformatted";
ActionType["RichTextQuote"] = "rich_text_quote";
ActionType["RichTextSection"] = "rich_text_section";
ActionType["StaticSelect"] = "static_select";
ActionType["Timepicker"] = "timepicker";
ActionType["UsersSelect"] = "users_select";
ActionType["WorkflowButton"] = "workflow_button";
})(ActionType || (exports.ActionType = ActionType = {}));
var DescriptionType;

@@ -32,9 +68,2 @@ (function (DescriptionType) {

})(PurpleType || (exports.PurpleType = PurpleType = {}));
var FluffyType;
(function (FluffyType) {
FluffyType["RichTextList"] = "rich_text_list";
FluffyType["RichTextPreformatted"] = "rich_text_preformatted";
FluffyType["RichTextQuote"] = "rich_text_quote";
FluffyType["RichTextSection"] = "rich_text_section";
})(FluffyType || (exports.FluffyType = FluffyType = {}));
var BlockType;

@@ -41,0 +70,0 @@ (function (BlockType) {

@@ -75,2 +75,3 @@ import { WebAPICallResult } from '../../WebClient';

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -142,3 +143,4 @@ quip_thread_id?: string;

fallback?: string;
fields?: Field[];
fields?: AttachmentField[];
file_id?: string;
filename?: string;

@@ -149,2 +151,3 @@ files?: FileElement[];

from_url?: string;
hide_border?: boolean;
hide_color?: boolean;

@@ -162,2 +165,9 @@ id?: number;

is_thread_root_unfurl?: boolean;
list?: List;
list_record?: PurpleListRecord;
list_record_id?: string;
list_records?: ListRecordElement[];
list_schema?: Schema[];
list_view?: View;
list_view_id?: string;
message_blocks?: MessageBlock[];

@@ -422,3 +432,3 @@ metadata?: AttachmentMetadata;

}
export interface Field {
export interface AttachmentField {
short?: boolean;

@@ -457,2 +467,3 @@ title?: string;

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -481,2 +492,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -506,2 +519,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -598,2 +612,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface FileHeaders {

@@ -614,2 +633,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -666,7 +773,70 @@ duration_ms?: number;

}
export interface MessageBlock {
channel?: string;
export interface List {
channels?: string[];
comments_count?: number;
created?: number;
display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
editable?: boolean;
external_type?: string;
file_access?: string;
filetype?: string;
groups?: string[];
has_more_shares?: boolean;
has_rich_preview?: boolean;
id?: string;
ims?: string[];
is_external?: boolean;
is_public?: boolean;
last_editor?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
mimetype?: string;
mode?: string;
name?: string;
permalink?: string;
permalink_public?: string;
pretty_type?: string;
private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
shares?: ListShares;
size?: number;
timestamp?: number;
title?: string;
updated?: number;
url_private?: string;
url_private_download?: string;
user?: string;
user_team?: string;
username?: string;
}
export interface ListShares {
}
export interface PurpleListRecord {
record?: Record;
schema?: Schema[];
}
export interface Record {
fields?: RecordField[];
record_id?: string;
}
export interface RecordField {
attachment?: any[];
channel?: any[];
checkbox?: boolean;
column_id?: string;
date?: any[];
email?: any[];
key?: string;
message?: Message;
team?: string;
ts?: string;
number?: any[];
phone?: any[];
rating?: any[];
rich_text?: any[];
select?: any[];
text?: string;
timestamp?: any[];
user?: any[];
value?: string;
}

@@ -808,2 +978,3 @@ export interface Message {

external_url?: string;
favorites?: any[];
file_access?: string;

@@ -832,2 +1003,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -857,2 +1030,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -863,3 +1037,3 @@ quip_thread_id?: string;

sent_to_self?: boolean;
shares?: FluffyShares;
shares?: ListShares;
show_badge?: boolean;

@@ -937,4 +1111,2 @@ simplified_html?: string;

}
export interface FluffyShares {
}
export interface MessageIcons {

@@ -1008,2 +1180,27 @@ emoji?: string;

}
export interface ListRecordElement {
created_by?: string;
date_created?: number;
fields?: RecordField[];
id?: string;
is_subscribed?: boolean;
list_id?: string;
platform_refs?: PlatformRefs;
position?: string;
saved?: Saved;
thread_ts?: string;
updated_by?: string;
updated_timestamp?: string;
}
export interface PlatformRefs {
bot_created_by?: string;
bot_deleted_by?: string;
bot_updated_by?: string;
}
export interface MessageBlock {
channel?: string;
message?: Message;
team?: string;
ts?: string;
}
export interface AttachmentMetadata {

@@ -1057,3 +1254,3 @@ extension?: string;

fields?: DescriptionElement[];
file?: MessageFile;
file?: FileElement;
file_id?: string;

@@ -1060,0 +1257,0 @@ function_trigger_id?: string;

@@ -31,3 +31,3 @@ import { WebAPICallResult } from '../../WebClient';

editable?: boolean;
editors?: string[];
editors?: LastEditor[];
editors_count?: number;

@@ -52,3 +52,3 @@ external_id?: string;

is_starred?: boolean;
last_editor?: string;
last_editor?: LastEditor;
lines?: number;

@@ -75,2 +75,3 @@ lines_more?: number;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -121,4 +122,4 @@ quip_thread_id?: string;

url_static_preview?: string;
user?: string;
user_team?: string;
user?: LastEditor;
user_team?: UserTeam;
username?: string;

@@ -143,3 +144,4 @@ }

fallback?: string;
fields?: Field[];
fields?: AttachmentField[];
file_id?: string;
filename?: string;

@@ -150,2 +152,3 @@ files?: FileElement[];

from_url?: string;
hide_border?: boolean;
hide_color?: boolean;

@@ -163,2 +166,9 @@ id?: number;

is_thread_root_unfurl?: boolean;
list?: List;
list_record?: PurpleListRecord;
list_record_id?: string;
list_records?: ListRecordElement[];
list_schema?: Schema[];
list_view?: View;
list_view_id?: string;
message_blocks?: MessageBlock[];

@@ -404,3 +414,3 @@ metadata?: AttachmentMetadata;

}
export interface Field {
export interface AttachmentField {
short?: boolean;

@@ -439,2 +449,3 @@ title?: string;

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -463,2 +474,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -488,2 +501,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -574,4 +588,13 @@ quip_thread_id?: string;

access?: string;
user_id?: string;
user_id?: LastEditor;
}
export declare enum LastEditor {
Empty = "",
U00000000 = "U00000000"
}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface FileHeaders {

@@ -592,2 +615,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -626,8 +737,16 @@ duration_ms?: number;

reply_users_count?: number;
share_user_id?: string;
share_user_id?: LastEditor;
source?: string;
team_id?: string;
team_id?: UserTeam;
thread_ts?: string;
ts?: string;
ts?: Ts;
}
export declare enum UserTeam {
Empty = "",
T00000000 = "T00000000"
}
export declare enum Ts {
Empty = "",
The0000000000000000 = "0000000000.000000"
}
export interface Transcription {

@@ -637,7 +756,70 @@ locale?: string;

}
export interface MessageBlock {
channel?: string;
export interface List {
channels?: string[];
comments_count?: number;
created?: number;
display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
editable?: boolean;
external_type?: string;
file_access?: string;
filetype?: string;
groups?: string[];
has_more_shares?: boolean;
has_rich_preview?: boolean;
id?: string;
ims?: string[];
is_external?: boolean;
is_public?: boolean;
last_editor?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
mimetype?: string;
mode?: string;
name?: string;
permalink?: string;
permalink_public?: string;
pretty_type?: string;
private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
shares?: ListShares;
size?: number;
timestamp?: number;
title?: string;
updated?: number;
url_private?: string;
url_private_download?: string;
user?: string;
user_team?: string;
username?: string;
}
export interface ListShares {
}
export interface PurpleListRecord {
record?: Record;
schema?: Schema[];
}
export interface Record {
fields?: RecordField[];
record_id?: string;
}
export interface RecordField {
attachment?: any[];
channel?: any[];
checkbox?: boolean;
column_id?: string;
date?: any[];
email?: any[];
key?: string;
message?: Message;
team?: string;
ts?: string;
number?: any[];
phone?: any[];
rating?: any[];
rich_text?: any[];
select?: any[];
text?: string;
timestamp?: any[];
user?: any[];
value?: string;
}

@@ -779,2 +961,3 @@ export interface Message {

external_url?: string;
favorites?: any[];
file_access?: string;

@@ -803,2 +986,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -828,2 +1013,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -834,3 +1020,3 @@ quip_thread_id?: string;

sent_to_self?: boolean;
shares?: FluffyShares;
shares?: ListShares;
show_badge?: boolean;

@@ -908,4 +1094,2 @@ simplified_html?: string;

}
export interface FluffyShares {
}
export interface MessageIcons {

@@ -979,2 +1163,27 @@ emoji?: string;

}
export interface ListRecordElement {
created_by?: string;
date_created?: number;
fields?: RecordField[];
id?: string;
is_subscribed?: boolean;
list_id?: string;
platform_refs?: PlatformRefs;
position?: string;
saved?: Saved;
thread_ts?: string;
updated_by?: string;
updated_timestamp?: string;
}
export interface PlatformRefs {
bot_created_by?: string;
bot_deleted_by?: string;
bot_updated_by?: string;
}
export interface MessageBlock {
channel?: string;
message?: Message;
team?: string;
ts?: string;
}
export interface AttachmentMetadata {

@@ -1028,3 +1237,3 @@ extension?: string;

fields?: DescriptionElement[];
file?: MessageFile;
file?: FileElement;
file_id?: string;

@@ -1031,0 +1240,0 @@ function_trigger_id?: string;

@@ -12,3 +12,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.BlockType = exports.FluffyType = exports.PurpleType = exports.DescriptionType = void 0;
exports.Ts = exports.UserTeam = exports.LastEditor = exports.BlockType = exports.FluffyType = exports.PurpleType = exports.DescriptionType = void 0;
var DescriptionType;

@@ -50,2 +50,17 @@ (function (DescriptionType) {

})(BlockType || (exports.BlockType = BlockType = {}));
var LastEditor;
(function (LastEditor) {
LastEditor["Empty"] = "";
LastEditor["U00000000"] = "U00000000";
})(LastEditor || (exports.LastEditor = LastEditor = {}));
var UserTeam;
(function (UserTeam) {
UserTeam["Empty"] = "";
UserTeam["T00000000"] = "T00000000";
})(UserTeam || (exports.UserTeam = UserTeam = {}));
var Ts;
(function (Ts) {
Ts["Empty"] = "";
Ts["The0000000000000000"] = "0000000000.000000";
})(Ts || (exports.Ts = Ts = {}));
//# sourceMappingURL=SearchFilesResponse.js.map

@@ -52,3 +52,4 @@ import { WebAPICallResult } from '../../WebClient';

fallback?: string;
fields?: Field[];
fields?: AttachmentField[];
file_id?: string;
filename?: string;

@@ -59,2 +60,3 @@ files?: FileElement[];

from_url?: string;
hide_border?: boolean;
hide_color?: boolean;

@@ -72,2 +74,9 @@ id?: number;

is_thread_root_unfurl?: boolean;
list?: List;
list_record?: PurpleListRecord;
list_record_id?: string;
list_records?: ListRecordElement[];
list_schema?: Schema[];
list_view?: View;
list_view_id?: string;
message_blocks?: MessageBlock[];

@@ -332,3 +341,3 @@ metadata?: AttachmentMetadata;

}
export interface Field {
export interface AttachmentField {
short?: boolean;

@@ -367,2 +376,3 @@ title?: string;

external_url?: string;
favorites?: Favorite[];
file_access?: string;

@@ -391,2 +401,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -416,2 +428,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -504,2 +517,7 @@ quip_thread_id?: string;

}
export interface Favorite {
collection_id?: string;
collection_name?: string;
position?: string;
}
export interface Headers {

@@ -520,2 +538,90 @@ date?: string;

}
export interface ListLimits {
column_count?: number;
column_count_limit?: number;
over_column_maximum?: boolean;
over_row_maximum?: boolean;
over_view_maximum?: boolean;
row_count?: number;
row_count_limit?: number;
view_count?: number;
view_count_limit?: number;
}
export interface ListMetadata {
creation_source?: CreationSource;
description?: string;
icon?: string;
icon_team_id?: string;
icon_url?: string;
integrations?: string[];
is_trial?: boolean;
schema?: Schema[];
views?: View[];
}
export interface CreationSource {
reference_id?: string;
type?: string;
workflow_function_id?: string;
}
export interface Schema {
id?: string;
is_primary_column?: boolean;
key?: string;
name?: string;
options?: Options;
type?: string;
}
export interface Options {
canvas_id?: string;
canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
choices?: Choice[];
currency?: string;
currency_format?: string;
date_format?: string;
default_value?: string;
default_value_typed?: DefaultValueTyped;
emoji?: string;
emoji_team_id?: string;
for_assignment?: boolean;
format?: string;
linked_to?: string[];
mark_as_done_when_checked?: boolean;
max?: number;
notify_users?: boolean;
precision?: number;
rounding?: string;
show_member_name?: boolean;
time_format?: string;
}
export interface CanvasPlaceholderMapping {
column?: string;
variable?: string;
}
export interface Choice {
color?: string;
label?: string;
value?: string;
}
export interface DefaultValueTyped {
select?: string[];
}
export interface View {
columns?: Column[];
created_by?: string;
date_created?: number;
id?: string;
is_all_items_view?: boolean;
is_locked?: boolean;
name?: string;
position?: string;
stick_column_left?: boolean;
type?: string;
}
export interface Column {
id?: string;
key?: string;
position?: string;
visible?: boolean;
width?: number;
}
export interface MediaProgress {

@@ -564,7 +670,70 @@ duration_ms?: number;

}
export interface MessageBlock {
channel?: string;
export interface List {
channels?: string[];
comments_count?: number;
created?: number;
display_as_bot?: boolean;
dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
editable?: boolean;
external_type?: string;
file_access?: string;
filetype?: string;
groups?: string[];
has_more_shares?: boolean;
has_rich_preview?: boolean;
id?: string;
ims?: string[];
is_external?: boolean;
is_public?: boolean;
last_editor?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
mimetype?: string;
mode?: string;
name?: string;
permalink?: string;
permalink_public?: string;
pretty_type?: string;
private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;
shares?: ListShares;
size?: number;
timestamp?: number;
title?: string;
updated?: number;
url_private?: string;
url_private_download?: string;
user?: string;
user_team?: string;
username?: string;
}
export interface ListShares {
}
export interface PurpleListRecord {
record?: Record;
schema?: Schema[];
}
export interface Record {
fields?: RecordField[];
record_id?: string;
}
export interface RecordField {
attachment?: any[];
channel?: any[];
checkbox?: boolean;
column_id?: string;
date?: any[];
email?: any[];
key?: string;
message?: Message;
team?: string;
ts?: string;
number?: any[];
phone?: any[];
rating?: any[];
rich_text?: any[];
select?: any[];
text?: string;
timestamp?: any[];
user?: any[];
value?: string;
}

@@ -706,2 +875,3 @@ export interface Message {

external_url?: string;
favorites?: any[];
file_access?: string;

@@ -730,2 +900,4 @@ filetype?: string;

linked_channel_id?: string;
list_limits?: ListLimits;
list_metadata?: ListMetadata;
media_display_type?: string;

@@ -755,2 +927,3 @@ media_progress?: MediaProgress;

private_channels_with_file_access_count?: number;
private_file_with_access_count?: number;
public_url_shared?: boolean;

@@ -761,3 +934,3 @@ quip_thread_id?: string;

sent_to_self?: boolean;
shares?: FluffyShares;
shares?: ListShares;
show_badge?: boolean;

@@ -835,4 +1008,2 @@ simplified_html?: string;

}
export interface FluffyShares {
}
export interface MessageIcons {

@@ -906,2 +1077,27 @@ emoji?: string;

}
export interface ListRecordElement {
created_by?: string;
date_created?: number;
fields?: RecordField[];
id?: string;
is_subscribed?: boolean;
list_id?: string;
platform_refs?: PlatformRefs;
position?: string;
saved?: Saved;
thread_ts?: string;
updated_by?: string;
updated_timestamp?: string;
}
export interface PlatformRefs {
bot_created_by?: string;
bot_deleted_by?: string;
bot_updated_by?: string;
}
export interface MessageBlock {
channel?: string;
message?: Message;
team?: string;
ts?: string;
}
export interface AttachmentMetadata {

@@ -947,3 +1143,3 @@ extension?: string;

fields?: DescriptionElement[];
file?: MessageFile;
file?: FileElement;
file_id?: string;

@@ -950,0 +1146,0 @@ function_trigger_id?: string;

@@ -55,2 +55,3 @@ import { WebAPICallResult } from '../../WebClient';

posting_restricted_to?: PostingRestrictedTo;
threads_restricted_to?: ThreadsRestrictedTo;
}

@@ -66,2 +67,5 @@ export interface Canvas {

}
export interface ThreadsRestrictedTo {
type?: string[];
}
export interface Purpose {

@@ -68,0 +72,0 @@ creator?: string;

{
"name": "@slack/web-api",
"version": "7.1.0",
"version": "7.2.0",
"description": "Official library for using the Slack Platform's Web API",

@@ -5,0 +5,0 @@ "author": "Slack Technologies, LLC",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc