Skip to content

Commit 663746f

Browse files
committed
lint
1 parent 31cb704 commit 663746f

File tree

5 files changed

+832
-185
lines changed

5 files changed

+832
-185
lines changed

apps/docs/components/ui/icon-mapping.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ import {
3333
DatadogIcon,
3434
DevinIcon,
3535
DiscordIcon,
36-
DocumentIcon,
3736
DocuSignIcon,
37+
DocumentIcon,
3838
DropboxIcon,
3939
DsPyIcon,
4040
DubIcon,
@@ -50,8 +50,8 @@ import {
5050
FirecrawlIcon,
5151
FirefliesIcon,
5252
GammaIcon,
53-
GithubIcon,
5453
GitLabIcon,
54+
GithubIcon,
5555
GmailIcon,
5656
GongIcon,
5757
GoogleAdsIcon,
@@ -95,9 +95,9 @@ import {
9595
LinkupIcon,
9696
LoopsIcon,
9797
LumaIcon,
98+
MailServerIcon,
9899
MailchimpIcon,
99100
MailgunIcon,
100-
MailServerIcon,
101101
Mem0Icon,
102102
MicrosoftDataverseIcon,
103103
MicrosoftExcelIcon,
@@ -133,6 +133,8 @@ import {
133133
ResendIcon,
134134
RevenueCatIcon,
135135
S3Icon,
136+
SQSIcon,
137+
STTIcon,
136138
SalesforceIcon,
137139
SearchIcon,
138140
SendgridIcon,
@@ -144,19 +146,17 @@ import {
144146
SimilarwebIcon,
145147
SlackIcon,
146148
SmtpIcon,
147-
SQSIcon,
148149
SshIcon,
149-
STTIcon,
150150
StagehandIcon,
151151
StripeIcon,
152152
SupabaseIcon,
153+
TTSIcon,
153154
TavilyIcon,
154155
TelegramIcon,
155156
TextractIcon,
156157
TinybirdIcon,
157158
TranslateIcon,
158159
TrelloIcon,
159-
TTSIcon,
160160
TwilioIcon,
161161
TypeformIcon,
162162
UpstashIcon,
@@ -168,11 +168,11 @@ import {
168168
WikipediaIcon,
169169
WordpressIcon,
170170
WorkdayIcon,
171-
xIcon,
172171
YouTubeIcon,
173172
ZendeskIcon,
174173
ZepIcon,
175174
ZoomIcon,
175+
xIcon,
176176
} from '@/components/icons'
177177

178178
type IconComponent = ComponentType<SVGProps<SVGSVGElement>>

apps/docs/content/docs/en/tools/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,4 +173,4 @@
173173
"zep",
174174
"zoom"
175175
]
176-
}
176+
}

apps/docs/content/docs/en/tools/slack.mdx

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -925,6 +925,82 @@ Create a canvas pinned to a Slack channel as its resource hub
925925
| --------- | ---- | ----------- |
926926
| `canvas_id` | string | ID of the created channel canvas |
927927

928+
### `slack_create_conversation`
929+
930+
Create a new public or private channel in a Slack workspace.
931+
932+
#### Input
933+
934+
| Parameter | Type | Required | Description |
935+
| --------- | ---- | -------- | ----------- |
936+
| `authMethod` | string | No | Authentication method: oauth or bot_token |
937+
| `botToken` | string | No | Bot token for Custom Bot |
938+
| `name` | string | Yes | Name of the channel to create \(lowercase, numbers, hyphens, underscores only; max 80 characters\) |
939+
| `isPrivate` | boolean | No | Create a private channel instead of a public one \(default: false\) |
940+
| `teamId` | string | No | Encoded team ID to create the channel in \(required if using an org token\) |
941+
942+
#### Output
943+
944+
| Parameter | Type | Description |
945+
| --------- | ---- | ----------- |
946+
| `channel` | object | The newly created channel object |
947+
|`id` | string | Channel ID \(e.g., C1234567890\) |
948+
|`name` | string | Channel name without # prefix |
949+
|`is_channel` | boolean | Whether this is a channel |
950+
|`is_private` | boolean | Whether channel is private |
951+
|`is_archived` | boolean | Whether channel is archived |
952+
|`is_general` | boolean | Whether this is the general channel |
953+
|`is_member` | boolean | Whether the bot/user is a member |
954+
|`is_shared` | boolean | Whether channel is shared across workspaces |
955+
|`is_ext_shared` | boolean | Whether channel is externally shared |
956+
|`is_org_shared` | boolean | Whether channel is org-wide shared |
957+
|`num_members` | number | Number of members in the channel |
958+
|`topic` | string | Channel topic |
959+
|`purpose` | string | Channel purpose/description |
960+
|`created` | number | Unix timestamp when channel was created |
961+
|`creator` | string | User ID of channel creator |
962+
|`updated` | number | Unix timestamp of last update |
963+
964+
### `slack_invite_to_conversation`
965+
966+
Invite one or more users to a Slack channel. Supports up to 100 users at a time.
967+
968+
#### Input
969+
970+
| Parameter | Type | Required | Description |
971+
| --------- | ---- | -------- | ----------- |
972+
| `authMethod` | string | No | Authentication method: oauth or bot_token |
973+
| `botToken` | string | No | Bot token for Custom Bot |
974+
| `channel` | string | Yes | The ID of the channel to invite users to |
975+
| `users` | string | Yes | Comma-separated list of user IDs to invite \(up to 100\) |
976+
| `force` | boolean | No | When true, continues inviting valid users while skipping invalid ones \(default: false\) |
977+
978+
#### Output
979+
980+
| Parameter | Type | Description |
981+
| --------- | ---- | ----------- |
982+
| `channel` | object | The channel object after inviting users |
983+
|`id` | string | Channel ID \(e.g., C1234567890\) |
984+
|`name` | string | Channel name without # prefix |
985+
|`is_channel` | boolean | Whether this is a channel |
986+
|`is_private` | boolean | Whether channel is private |
987+
|`is_archived` | boolean | Whether channel is archived |
988+
|`is_general` | boolean | Whether this is the general channel |
989+
|`is_member` | boolean | Whether the bot/user is a member |
990+
|`is_shared` | boolean | Whether channel is shared across workspaces |
991+
|`is_ext_shared` | boolean | Whether channel is externally shared |
992+
|`is_org_shared` | boolean | Whether channel is org-wide shared |
993+
|`num_members` | number | Number of members in the channel |
994+
|`topic` | string | Channel topic |
995+
|`purpose` | string | Channel purpose/description |
996+
|`created` | number | Unix timestamp when channel was created |
997+
|`creator` | string | User ID of channel creator |
998+
|`updated` | number | Unix timestamp of last update |
999+
| `errors` | array | Per-user errors when force is true and some invitations failed |
1000+
|`user` | string | User ID that failed |
1001+
|`ok` | boolean | Always false for error entries |
1002+
|`error` | string | Error code for this user |
1003+
9281004
### `slack_open_view`
9291005

9301006
Open a modal view in Slack using a trigger_id from an interaction payload. Used to display forms, confirmations, and other interactive modals.

apps/sim/app/(landing)/integrations/data/icon-mapping.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ import {
3333
DatadogIcon,
3434
DevinIcon,
3535
DiscordIcon,
36-
DocumentIcon,
3736
DocuSignIcon,
37+
DocumentIcon,
3838
DropboxIcon,
3939
DsPyIcon,
4040
DubIcon,
@@ -50,8 +50,8 @@ import {
5050
FirecrawlIcon,
5151
FirefliesIcon,
5252
GammaIcon,
53-
GithubIcon,
5453
GitLabIcon,
54+
GithubIcon,
5555
GmailIcon,
5656
GongIcon,
5757
GoogleAdsIcon,
@@ -95,9 +95,9 @@ import {
9595
LinkupIcon,
9696
LoopsIcon,
9797
LumaIcon,
98+
MailServerIcon,
9899
MailchimpIcon,
99100
MailgunIcon,
100-
MailServerIcon,
101101
Mem0Icon,
102102
MicrosoftDataverseIcon,
103103
MicrosoftExcelIcon,
@@ -133,6 +133,8 @@ import {
133133
ResendIcon,
134134
RevenueCatIcon,
135135
S3Icon,
136+
SQSIcon,
137+
STTIcon,
136138
SalesforceIcon,
137139
SearchIcon,
138140
SendgridIcon,
@@ -144,19 +146,17 @@ import {
144146
SimilarwebIcon,
145147
SlackIcon,
146148
SmtpIcon,
147-
SQSIcon,
148149
SshIcon,
149-
STTIcon,
150150
StagehandIcon,
151151
StripeIcon,
152152
SupabaseIcon,
153+
TTSIcon,
153154
TavilyIcon,
154155
TelegramIcon,
155156
TextractIcon,
156157
TinybirdIcon,
157158
TranslateIcon,
158159
TrelloIcon,
159-
TTSIcon,
160160
TwilioIcon,
161161
TypeformIcon,
162162
UpstashIcon,
@@ -168,11 +168,11 @@ import {
168168
WikipediaIcon,
169169
WordpressIcon,
170170
WorkdayIcon,
171-
xIcon,
172171
YouTubeIcon,
173172
ZendeskIcon,
174173
ZepIcon,
175174
ZoomIcon,
175+
xIcon,
176176
} from '@/components/icons'
177177

178178
type IconComponent = ComponentType<SVGProps<SVGSVGElement>>

0 commit comments

Comments
 (0)