@vm0/cli 9.204.0 → 9.204.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{chunk-NQ6BMAY6.js → chunk-UFX4Q2F4.js} +258 -29361
- package/{chunk-NQ6BMAY6.js.map → chunk-UFX4Q2F4.js.map} +1 -1
- package/index.js +9 -9
- package/package.json +1 -1
- package/{slack.generated-Z5UGWOL5.js → slack.generated-FHXHHWCT.js} +38 -122
- package/slack.generated-FHXHHWCT.js.map +1 -0
- package/zero.js +28921 -6
- package/zero.js.map +1 -1
- package/slack.generated-Z5UGWOL5.js.map +0 -1
package/index.js
CHANGED
|
@@ -75,7 +75,7 @@ import {
|
|
|
75
75
|
uo,
|
|
76
76
|
volumeConfigSchema,
|
|
77
77
|
withErrorHandler
|
|
78
|
-
} from "./chunk-
|
|
78
|
+
} from "./chunk-UFX4Q2F4.js";
|
|
79
79
|
import "./chunk-NR42YJMI.js";
|
|
80
80
|
import {
|
|
81
81
|
__toESM,
|
|
@@ -409,7 +409,7 @@ function getConfigPath() {
|
|
|
409
409
|
return join(os.homedir(), ".vm0", "config.json");
|
|
410
410
|
}
|
|
411
411
|
var infoCommand = new Command().name("info").description("Display environment and debug information").action(async () => {
|
|
412
|
-
console.log(source_default.bold(`VM0 CLI v${"9.204.
|
|
412
|
+
console.log(source_default.bold(`VM0 CLI v${"9.204.1"}`));
|
|
413
413
|
console.log();
|
|
414
414
|
const config = await loadConfig();
|
|
415
415
|
const hasEnvToken = !!process.env.VM0_TOKEN;
|
|
@@ -1111,7 +1111,7 @@ var composeCommand = new Command().name("compose").description("Create or update
|
|
|
1111
1111
|
options.autoUpdate = false;
|
|
1112
1112
|
}
|
|
1113
1113
|
if (options.autoUpdate !== false) {
|
|
1114
|
-
await startSilentUpgrade("9.204.
|
|
1114
|
+
await startSilentUpgrade("9.204.1");
|
|
1115
1115
|
}
|
|
1116
1116
|
try {
|
|
1117
1117
|
const { config, agentName, agent, basePath } = await loadAndValidateConfig(resolvedConfigFile);
|
|
@@ -1208,7 +1208,7 @@ var mainRunCommand = new Command().name("run").description("Run an agent").argum
|
|
|
1208
1208
|
withErrorHandler(
|
|
1209
1209
|
async (identifier, prompt, options) => {
|
|
1210
1210
|
if (options.autoUpdate !== false) {
|
|
1211
|
-
await startSilentUpgrade("9.204.
|
|
1211
|
+
await startSilentUpgrade("9.204.1");
|
|
1212
1212
|
}
|
|
1213
1213
|
const { name, version } = parseIdentifier(identifier);
|
|
1214
1214
|
let composeId;
|
|
@@ -3014,13 +3014,13 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
3014
3014
|
if (latestVersion === null) {
|
|
3015
3015
|
throw new Error("Could not check for updates. Please try again later.");
|
|
3016
3016
|
}
|
|
3017
|
-
if (latestVersion === "9.204.
|
|
3018
|
-
console.log(source_default.green(`\u2713 Already up to date (${"9.204.
|
|
3017
|
+
if (latestVersion === "9.204.1") {
|
|
3018
|
+
console.log(source_default.green(`\u2713 Already up to date (${"9.204.1"})`));
|
|
3019
3019
|
return;
|
|
3020
3020
|
}
|
|
3021
3021
|
console.log(
|
|
3022
3022
|
source_default.yellow(
|
|
3023
|
-
`Current version: ${"9.204.
|
|
3023
|
+
`Current version: ${"9.204.1"} -> Latest version: ${latestVersion}`
|
|
3024
3024
|
)
|
|
3025
3025
|
);
|
|
3026
3026
|
console.log();
|
|
@@ -3047,7 +3047,7 @@ var upgradeCommand = new Command().name("upgrade").description("Upgrade vm0 CLI
|
|
|
3047
3047
|
const success = await performUpgrade(packageManager);
|
|
3048
3048
|
if (success) {
|
|
3049
3049
|
console.log(
|
|
3050
|
-
source_default.green(`\u2713 Upgraded from ${"9.204.
|
|
3050
|
+
source_default.green(`\u2713 Upgraded from ${"9.204.1"} to ${latestVersion}`)
|
|
3051
3051
|
);
|
|
3052
3052
|
return;
|
|
3053
3053
|
}
|
|
@@ -3114,7 +3114,7 @@ var whoamiCommand = new Command().name("whoami").description("Show current ident
|
|
|
3114
3114
|
|
|
3115
3115
|
// src/index.ts
|
|
3116
3116
|
var program = new Command();
|
|
3117
|
-
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.204.
|
|
3117
|
+
program.name("vm0").description("VM0 CLI - Build and run agents with natural language").version("9.204.1");
|
|
3118
3118
|
program.addCommand(authCommand);
|
|
3119
3119
|
program.addCommand(infoCommand);
|
|
3120
3120
|
program.addCommand(composeCommand);
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@ init_esm_shims();
|
|
|
10
10
|
var firewallPermissionMetadata = {
|
|
11
11
|
"type": "slack",
|
|
12
12
|
"label": "Slack",
|
|
13
|
-
"permissionCount":
|
|
13
|
+
"permissionCount": 84,
|
|
14
14
|
"permissions": [
|
|
15
15
|
{
|
|
16
16
|
"name": "admin",
|
|
@@ -112,6 +112,10 @@ var firewallPermissionMetadata = {
|
|
|
112
112
|
"name": "apps",
|
|
113
113
|
"description": "Manage Slack app collaborators"
|
|
114
114
|
},
|
|
115
|
+
{
|
|
116
|
+
"name": "assistant.search:read",
|
|
117
|
+
"description": "Search assistant context across Slack content"
|
|
118
|
+
},
|
|
115
119
|
{
|
|
116
120
|
"name": "assistant:write",
|
|
117
121
|
"description": "Act as an AI Assistant app"
|
|
@@ -140,49 +144,49 @@ var firewallPermissionMetadata = {
|
|
|
140
144
|
"name": "canvases:write",
|
|
141
145
|
"description": "Create and edit canvases"
|
|
142
146
|
},
|
|
143
|
-
{
|
|
144
|
-
"name": "channels:history",
|
|
145
|
-
"description": "View messages and other content in public channels that the app has been added to"
|
|
146
|
-
},
|
|
147
147
|
{
|
|
148
148
|
"name": "channels:join",
|
|
149
149
|
"description": "Join public channels in a workspace"
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
|
-
"name": "
|
|
153
|
-
"description": "
|
|
152
|
+
"name": "chat:write",
|
|
153
|
+
"description": "Send messages as the app"
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
|
-
"name": "
|
|
157
|
-
"description": "
|
|
156
|
+
"name": "client",
|
|
157
|
+
"description": "Full access to all client features (legacy, deprecated)"
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
|
-
"name": "
|
|
161
|
-
"description": "Manage
|
|
160
|
+
"name": "conversations.connect:manage",
|
|
161
|
+
"description": "Manage Slack Connect channels (approve or decline invitations)"
|
|
162
162
|
},
|
|
163
163
|
{
|
|
164
|
-
"name": "
|
|
165
|
-
"description": "
|
|
164
|
+
"name": "conversations.connect:read",
|
|
165
|
+
"description": "View Slack Connect external teams and discoverable contacts"
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
|
-
"name": "
|
|
169
|
-
"description": "
|
|
168
|
+
"name": "conversations.connect:write",
|
|
169
|
+
"description": "Create Slack Connect invitations and accept invitations"
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
|
-
"name": "
|
|
173
|
-
"description": "
|
|
172
|
+
"name": "conversations:history",
|
|
173
|
+
"description": "View messages and replies across Slack conversation types"
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
|
-
"name": "
|
|
177
|
-
"description": "
|
|
176
|
+
"name": "conversations:read",
|
|
177
|
+
"description": "View basic information across Slack conversation types"
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
|
-
"name": "conversations
|
|
181
|
-
"description": "Manage Slack
|
|
180
|
+
"name": "conversations:write",
|
|
181
|
+
"description": "Manage Slack conversations across conversation types"
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
|
-
"name": "conversations
|
|
185
|
-
"description": "
|
|
184
|
+
"name": "conversations:write.invites",
|
|
185
|
+
"description": "Invite members across Slack conversation types"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "conversations:write.topic",
|
|
189
|
+
"description": "Set topics and purposes across Slack conversation types"
|
|
186
190
|
},
|
|
187
191
|
{
|
|
188
192
|
"name": "datastore:read",
|
|
@@ -212,26 +216,6 @@ var firewallPermissionMetadata = {
|
|
|
212
216
|
"name": "files:write",
|
|
213
217
|
"description": "Upload, edit, and delete files as the app"
|
|
214
218
|
},
|
|
215
|
-
{
|
|
216
|
-
"name": "groups:history",
|
|
217
|
-
"description": "View messages and other content in private channels that the app has been added to"
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
"name": "groups:read",
|
|
221
|
-
"description": "View basic information about private channels that the app has been added to"
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
"name": "groups:write",
|
|
225
|
-
"description": "Manage private channels that the user is a member of and create new ones"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"name": "groups:write.invites",
|
|
229
|
-
"description": "Invite members to private channels"
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"name": "groups:write.topic",
|
|
233
|
-
"description": "Set the topic and purpose of private channels"
|
|
234
|
-
},
|
|
235
219
|
{
|
|
236
220
|
"name": "hosting:read",
|
|
237
221
|
"description": "Read hosting environment information"
|
|
@@ -240,22 +224,6 @@ var firewallPermissionMetadata = {
|
|
|
240
224
|
"name": "identity:read",
|
|
241
225
|
"description": "View a user's Slack identity (Sign in with Slack)"
|
|
242
226
|
},
|
|
243
|
-
{
|
|
244
|
-
"name": "im:history",
|
|
245
|
-
"description": "View messages and other content in direct messages that the app has been added to"
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"name": "im:read",
|
|
249
|
-
"description": "View basic information about direct messages that the app has access to"
|
|
250
|
-
},
|
|
251
|
-
{
|
|
252
|
-
"name": "im:write",
|
|
253
|
-
"description": "Start direct messages with people"
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"name": "im:write.topic",
|
|
257
|
-
"description": "Set the topic of direct messages"
|
|
258
|
-
},
|
|
259
227
|
{
|
|
260
228
|
"name": "links:write",
|
|
261
229
|
"description": "Show previews of URLs in messages"
|
|
@@ -268,22 +236,6 @@ var firewallPermissionMetadata = {
|
|
|
268
236
|
"name": "lists:write",
|
|
269
237
|
"description": "Create and manage lists in a workspace"
|
|
270
238
|
},
|
|
271
|
-
{
|
|
272
|
-
"name": "mpim:history",
|
|
273
|
-
"description": "View messages and other content in group direct messages that the app has been added to"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"name": "mpim:read",
|
|
277
|
-
"description": "View basic information about group direct messages that the app has been added to"
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
"name": "mpim:write",
|
|
281
|
-
"description": "Start group direct messages with people"
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
"name": "mpim:write.topic",
|
|
285
|
-
"description": "Set the topic and purpose of group direct messages"
|
|
286
|
-
},
|
|
287
239
|
{
|
|
288
240
|
"name": "no_scopes_required",
|
|
289
241
|
"description": "Methods that require a valid token but no specific scope"
|
|
@@ -332,30 +284,10 @@ var firewallPermissionMetadata = {
|
|
|
332
284
|
"name": "search:read",
|
|
333
285
|
"description": "Search a workspace's content"
|
|
334
286
|
},
|
|
335
|
-
{
|
|
336
|
-
"name": "search:read.files",
|
|
337
|
-
"description": "Search for files in a workspace"
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
"name": "search:read.im",
|
|
341
|
-
"description": "Search direct messages"
|
|
342
|
-
},
|
|
343
|
-
{
|
|
344
|
-
"name": "search:read.mpim",
|
|
345
|
-
"description": "Search group direct messages"
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"name": "search:read.private",
|
|
349
|
-
"description": "Search private channels"
|
|
350
|
-
},
|
|
351
287
|
{
|
|
352
288
|
"name": "search:read.public",
|
|
353
289
|
"description": "Search public channels"
|
|
354
290
|
},
|
|
355
|
-
{
|
|
356
|
-
"name": "search:read.users",
|
|
357
|
-
"description": "Search for users in a workspace"
|
|
358
|
-
},
|
|
359
291
|
{
|
|
360
292
|
"name": "stars:read",
|
|
361
293
|
"description": "View starred messages and files"
|
|
@@ -444,6 +376,7 @@ var firewallPermissionMetadata = {
|
|
|
444
376
|
"app_configurations:read": "Read",
|
|
445
377
|
"app_configurations:write": "Write",
|
|
446
378
|
"apps": "Admin",
|
|
379
|
+
"assistant.search:read": "Read",
|
|
447
380
|
"assistant:write": "Send",
|
|
448
381
|
"bookmarks:read": "Read",
|
|
449
382
|
"bookmarks:write": "Write",
|
|
@@ -451,17 +384,17 @@ var firewallPermissionMetadata = {
|
|
|
451
384
|
"calls:write": "Write",
|
|
452
385
|
"canvases:read": "Read",
|
|
453
386
|
"canvases:write": "Write",
|
|
454
|
-
"channels:history": "Read",
|
|
455
387
|
"channels:join": "Misc",
|
|
456
|
-
"channels:manage": "Admin",
|
|
457
|
-
"channels:read": "Read",
|
|
458
|
-
"channels:write": "Write",
|
|
459
|
-
"channels:write.invites": "Write",
|
|
460
|
-
"channels:write.topic": "Write",
|
|
461
388
|
"chat:write": "Send",
|
|
462
389
|
"client": "Misc",
|
|
463
390
|
"conversations.connect:manage": "Admin",
|
|
391
|
+
"conversations.connect:read": "Read",
|
|
464
392
|
"conversations.connect:write": "Send",
|
|
393
|
+
"conversations:history": "Read",
|
|
394
|
+
"conversations:read": "Read",
|
|
395
|
+
"conversations:write": "Write",
|
|
396
|
+
"conversations:write.invites": "Write",
|
|
397
|
+
"conversations:write.topic": "Write",
|
|
465
398
|
"datastore:read": "Read",
|
|
466
399
|
"datastore:write": "Write",
|
|
467
400
|
"dnd:read": "Read",
|
|
@@ -469,24 +402,11 @@ var firewallPermissionMetadata = {
|
|
|
469
402
|
"emoji:read": "Read",
|
|
470
403
|
"files:read": "Read",
|
|
471
404
|
"files:write": "Send",
|
|
472
|
-
"groups:history": "Read",
|
|
473
|
-
"groups:read": "Read",
|
|
474
|
-
"groups:write": "Write",
|
|
475
|
-
"groups:write.invites": "Write",
|
|
476
|
-
"groups:write.topic": "Write",
|
|
477
405
|
"hosting:read": "Read",
|
|
478
406
|
"identity:read": "Read",
|
|
479
|
-
"im:history": "Read",
|
|
480
|
-
"im:read": "Read",
|
|
481
|
-
"im:write": "Send",
|
|
482
|
-
"im:write.topic": "Write",
|
|
483
407
|
"links:write": "Write",
|
|
484
408
|
"lists:read": "Read",
|
|
485
409
|
"lists:write": "Write",
|
|
486
|
-
"mpim:history": "Read",
|
|
487
|
-
"mpim:read": "Read",
|
|
488
|
-
"mpim:write": "Send",
|
|
489
|
-
"mpim:write.topic": "Send",
|
|
490
410
|
"no_scopes_required": "Misc",
|
|
491
411
|
"openid": "Misc",
|
|
492
412
|
"pins:read": "Read",
|
|
@@ -499,12 +419,7 @@ var firewallPermissionMetadata = {
|
|
|
499
419
|
"remote_files:share": "Send",
|
|
500
420
|
"remote_files:write": "Write",
|
|
501
421
|
"search:read": "Read",
|
|
502
|
-
"search:read.files": "Read",
|
|
503
|
-
"search:read.im": "Read",
|
|
504
|
-
"search:read.mpim": "Read",
|
|
505
|
-
"search:read.private": "Read",
|
|
506
422
|
"search:read.public": "Read",
|
|
507
|
-
"search:read.users": "Read",
|
|
508
423
|
"stars:read": "Read",
|
|
509
424
|
"stars:write": "Write",
|
|
510
425
|
"team.billing:read": "Admin",
|
|
@@ -534,8 +449,9 @@ var firewallPermissionMetadata = {
|
|
|
534
449
|
"permissionOverrides": {
|
|
535
450
|
"allow": [
|
|
536
451
|
"bookmarks:read",
|
|
537
|
-
"
|
|
538
|
-
"
|
|
452
|
+
"conversations.connect:read",
|
|
453
|
+
"conversations:history",
|
|
454
|
+
"conversations:read",
|
|
539
455
|
"emoji:read",
|
|
540
456
|
"pins:read",
|
|
541
457
|
"reactions:read",
|
|
@@ -552,4 +468,4 @@ var firewallPermissionMetadata = {
|
|
|
552
468
|
export {
|
|
553
469
|
firewallPermissionMetadata
|
|
554
470
|
};
|
|
555
|
-
//# sourceMappingURL=slack.generated-
|
|
471
|
+
//# sourceMappingURL=slack.generated-FHXHHWCT.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../packages/connectors/src/firewall-metadata/details/slack.generated.ts"],"sourcesContent":["// Auto-generated by @vm0/firewalls-generator.\n// Regenerate: cd turbo && pnpm -F @vm0/firewalls-generator generate\n//\n// DO NOT EDIT THIS FILE MANUALLY.\nimport type { FirewallPermissionDetailMetadata } from \"../types\";\n\nexport const firewallPermissionMetadata = {\n \"type\": \"slack\",\n \"label\": \"Slack\",\n \"permissionCount\": 84,\n \"permissions\": [\n {\n \"name\": \"admin\",\n \"description\": \"Administer a workspace (access audit logs, SCIM API, and billing info)\"\n },\n {\n \"name\": \"admin.analytics:read\",\n \"description\": \"Access workspace analytics data\"\n },\n {\n \"name\": \"admin.app_activities:read\",\n \"description\": \"View app activities within an Enterprise organization\"\n },\n {\n \"name\": \"admin.apps:read\",\n \"description\": \"View apps and app requests in an Enterprise organization\"\n },\n {\n \"name\": \"admin.apps:write\",\n \"description\": \"Manage apps and app requests in an Enterprise organization\"\n },\n {\n \"name\": \"admin.barriers:read\",\n \"description\": \"Read information barriers in an Enterprise organization\"\n },\n {\n \"name\": \"admin.barriers:write\",\n \"description\": \"Manage information barriers in an Enterprise organization\"\n },\n {\n \"name\": \"admin.conversations:manage_objects\",\n \"description\": \"Manage channel objects in an Enterprise organization\"\n },\n {\n \"name\": \"admin.conversations:read\",\n \"description\": \"View channels and their settings in an Enterprise organization\"\n },\n {\n \"name\": \"admin.conversations:write\",\n \"description\": \"Set channel settings in an Enterprise organization\"\n },\n {\n \"name\": \"admin.invites:read\",\n \"description\": \"View workspace invite requests in an Enterprise organization\"\n },\n {\n \"name\": \"admin.invites:write\",\n \"description\": \"Manage workspace invite requests in an Enterprise organization\"\n },\n {\n \"name\": \"admin.roles:read\",\n \"description\": \"View role assignments in an Enterprise organization\"\n },\n {\n \"name\": \"admin.roles:write\",\n \"description\": \"Manage role assignments in an Enterprise organization\"\n },\n {\n \"name\": \"admin.teams:read\",\n \"description\": \"View workspace settings in an Enterprise organization\"\n },\n {\n \"name\": \"admin.teams:write\",\n \"description\": \"Manage workspace settings in an Enterprise organization\"\n },\n {\n \"name\": \"admin.usergroups:read\",\n \"description\": \"View user groups in an Enterprise organization\"\n },\n {\n \"name\": \"admin.usergroups:write\",\n \"description\": \"Manage user groups in an Enterprise organization\"\n },\n {\n \"name\": \"admin.users:read\",\n \"description\": \"View users in an Enterprise organization\"\n },\n {\n \"name\": \"admin.users:write\",\n \"description\": \"Manage users in an Enterprise organization\"\n },\n {\n \"name\": \"admin.workflows:read\",\n \"description\": \"View workflow builder workflows in an Enterprise organization\"\n },\n {\n \"name\": \"admin.workflows:write\",\n \"description\": \"Manage workflow builder workflows in an Enterprise organization\"\n },\n {\n \"name\": \"app_configurations:read\",\n \"description\": \"Read app configuration info via App Manifest APIs\"\n },\n {\n \"name\": \"app_configurations:write\",\n \"description\": \"Write app configuration info and create apps via App Manifest APIs\"\n },\n {\n \"name\": \"apps\",\n \"description\": \"Manage Slack app collaborators\"\n },\n {\n \"name\": \"assistant.search:read\",\n \"description\": \"Search assistant context across Slack content\"\n },\n {\n \"name\": \"assistant:write\",\n \"description\": \"Act as an AI Assistant app\"\n },\n {\n \"name\": \"bookmarks:read\",\n \"description\": \"List bookmarks in channels\"\n },\n {\n \"name\": \"bookmarks:write\",\n \"description\": \"Create, edit, and remove bookmarks\"\n },\n {\n \"name\": \"calls:read\",\n \"description\": \"View information about ongoing and past calls\"\n },\n {\n \"name\": \"calls:write\",\n \"description\": \"Start and manage calls in a workspace\"\n },\n {\n \"name\": \"canvases:read\",\n \"description\": \"Access contents of canvases created inside Slack\"\n },\n {\n \"name\": \"canvases:write\",\n \"description\": \"Create and edit canvases\"\n },\n {\n \"name\": \"channels:join\",\n \"description\": \"Join public channels in a workspace\"\n },\n {\n \"name\": \"chat:write\",\n \"description\": \"Send messages as the app\"\n },\n {\n \"name\": \"client\",\n \"description\": \"Full access to all client features (legacy, deprecated)\"\n },\n {\n \"name\": \"conversations.connect:manage\",\n \"description\": \"Manage Slack Connect channels (approve or decline invitations)\"\n },\n {\n \"name\": \"conversations.connect:read\",\n \"description\": \"View Slack Connect external teams and discoverable contacts\"\n },\n {\n \"name\": \"conversations.connect:write\",\n \"description\": \"Create Slack Connect invitations and accept invitations\"\n },\n {\n \"name\": \"conversations:history\",\n \"description\": \"View messages and replies across Slack conversation types\"\n },\n {\n \"name\": \"conversations:read\",\n \"description\": \"View basic information across Slack conversation types\"\n },\n {\n \"name\": \"conversations:write\",\n \"description\": \"Manage Slack conversations across conversation types\"\n },\n {\n \"name\": \"conversations:write.invites\",\n \"description\": \"Invite members across Slack conversation types\"\n },\n {\n \"name\": \"conversations:write.topic\",\n \"description\": \"Set topics and purposes across Slack conversation types\"\n },\n {\n \"name\": \"datastore:read\",\n \"description\": \"Read data from Slack's hosted datastore\"\n },\n {\n \"name\": \"datastore:write\",\n \"description\": \"Write data to Slack's hosted datastore\"\n },\n {\n \"name\": \"dnd:read\",\n \"description\": \"View Do Not Disturb settings for people in a workspace\"\n },\n {\n \"name\": \"dnd:write\",\n \"description\": \"Edit a user's Do Not Disturb settings\"\n },\n {\n \"name\": \"emoji:read\",\n \"description\": \"View custom emoji in a workspace\"\n },\n {\n \"name\": \"files:read\",\n \"description\": \"View files shared in channels and conversations that the app has been added to\"\n },\n {\n \"name\": \"files:write\",\n \"description\": \"Upload, edit, and delete files as the app\"\n },\n {\n \"name\": \"hosting:read\",\n \"description\": \"Read hosting environment information\"\n },\n {\n \"name\": \"identity:read\",\n \"description\": \"View a user's Slack identity (Sign in with Slack)\"\n },\n {\n \"name\": \"links:write\",\n \"description\": \"Show previews of URLs in messages\"\n },\n {\n \"name\": \"lists:read\",\n \"description\": \"View lists in a workspace\"\n },\n {\n \"name\": \"lists:write\",\n \"description\": \"Create and manage lists in a workspace\"\n },\n {\n \"name\": \"no_scopes_required\",\n \"description\": \"Methods that require a valid token but no specific scope\"\n },\n {\n \"name\": \"openid\",\n \"description\": \"View information about a user's identity (Sign in with Slack)\"\n },\n {\n \"name\": \"pins:read\",\n \"description\": \"View pinned content in channels and conversations that the app has been added to\"\n },\n {\n \"name\": \"pins:write\",\n \"description\": \"Add and remove pinned messages and files\"\n },\n {\n \"name\": \"reactions:read\",\n \"description\": \"View emoji reactions and their associated content in channels and conversations\"\n },\n {\n \"name\": \"reactions:write\",\n \"description\": \"Add and edit emoji reactions\"\n },\n {\n \"name\": \"reminders:read\",\n \"description\": \"View reminders created by the app\"\n },\n {\n \"name\": \"reminders:write\",\n \"description\": \"Add, remove, or complete reminders\"\n },\n {\n \"name\": \"remote_files:read\",\n \"description\": \"View remote files added by the app in a workspace\"\n },\n {\n \"name\": \"remote_files:share\",\n \"description\": \"Share remote files on a user's behalf\"\n },\n {\n \"name\": \"remote_files:write\",\n \"description\": \"Add, edit, and delete remote files on a user's behalf\"\n },\n {\n \"name\": \"search:read\",\n \"description\": \"Search a workspace's content\"\n },\n {\n \"name\": \"search:read.public\",\n \"description\": \"Search public channels\"\n },\n {\n \"name\": \"stars:read\",\n \"description\": \"View starred messages and files\"\n },\n {\n \"name\": \"stars:write\",\n \"description\": \"Add or remove stars (saved items)\"\n },\n {\n \"name\": \"team.billing:read\",\n \"description\": \"View billing information for a workspace\"\n },\n {\n \"name\": \"team.preferences:read\",\n \"description\": \"View team preferences\"\n },\n {\n \"name\": \"team:read\",\n \"description\": \"View the name, email domain, and icon for workspaces the app is connected to\"\n },\n {\n \"name\": \"tokens.basic\",\n \"description\": \"Execute methods with no required scope\"\n },\n {\n \"name\": \"triggers:read\",\n \"description\": \"View triggers in a workspace\"\n },\n {\n \"name\": \"triggers:write\",\n \"description\": \"Create and manage triggers in a workspace\"\n },\n {\n \"name\": \"usergroups:read\",\n \"description\": \"View user groups in a workspace\"\n },\n {\n \"name\": \"usergroups:write\",\n \"description\": \"Create and manage user groups\"\n },\n {\n \"name\": \"users.profile:read\",\n \"description\": \"View profile details of people in a workspace\"\n },\n {\n \"name\": \"users.profile:write\",\n \"description\": \"Edit a user's profile information and status\"\n },\n {\n \"name\": \"users:read\",\n \"description\": \"View people in a workspace\"\n },\n {\n \"name\": \"users:read.email\",\n \"description\": \"View email addresses of people in a workspace\"\n },\n {\n \"name\": \"users:write\",\n \"description\": \"Set a user's presence status\"\n }\n ],\n \"categories\": {\n \"categories\": {\n \"admin\": \"Admin\",\n \"admin.analytics:read\": \"Admin\",\n \"admin.app_activities:read\": \"Admin\",\n \"admin.apps:read\": \"Admin\",\n \"admin.apps:write\": \"Admin\",\n \"admin.barriers:read\": \"Admin\",\n \"admin.barriers:write\": \"Admin\",\n \"admin.conversations:manage_objects\": \"Admin\",\n \"admin.conversations:read\": \"Admin\",\n \"admin.conversations:write\": \"Admin\",\n \"admin.invites:read\": \"Admin\",\n \"admin.invites:write\": \"Admin\",\n \"admin.roles:read\": \"Admin\",\n \"admin.roles:write\": \"Admin\",\n \"admin.teams:read\": \"Admin\",\n \"admin.teams:write\": \"Admin\",\n \"admin.usergroups:read\": \"Admin\",\n \"admin.usergroups:write\": \"Admin\",\n \"admin.users:read\": \"Admin\",\n \"admin.users:write\": \"Admin\",\n \"admin.workflows:read\": \"Admin\",\n \"admin.workflows:write\": \"Admin\",\n \"app_configurations:read\": \"Read\",\n \"app_configurations:write\": \"Write\",\n \"apps\": \"Admin\",\n \"assistant.search:read\": \"Read\",\n \"assistant:write\": \"Send\",\n \"bookmarks:read\": \"Read\",\n \"bookmarks:write\": \"Write\",\n \"calls:read\": \"Read\",\n \"calls:write\": \"Write\",\n \"canvases:read\": \"Read\",\n \"canvases:write\": \"Write\",\n \"channels:join\": \"Misc\",\n \"chat:write\": \"Send\",\n \"client\": \"Misc\",\n \"conversations.connect:manage\": \"Admin\",\n \"conversations.connect:read\": \"Read\",\n \"conversations.connect:write\": \"Send\",\n \"conversations:history\": \"Read\",\n \"conversations:read\": \"Read\",\n \"conversations:write\": \"Write\",\n \"conversations:write.invites\": \"Write\",\n \"conversations:write.topic\": \"Write\",\n \"datastore:read\": \"Read\",\n \"datastore:write\": \"Write\",\n \"dnd:read\": \"Read\",\n \"dnd:write\": \"Write\",\n \"emoji:read\": \"Read\",\n \"files:read\": \"Read\",\n \"files:write\": \"Send\",\n \"hosting:read\": \"Read\",\n \"identity:read\": \"Read\",\n \"links:write\": \"Write\",\n \"lists:read\": \"Read\",\n \"lists:write\": \"Write\",\n \"no_scopes_required\": \"Misc\",\n \"openid\": \"Misc\",\n \"pins:read\": \"Read\",\n \"pins:write\": \"Write\",\n \"reactions:read\": \"Read\",\n \"reactions:write\": \"Write\",\n \"reminders:read\": \"Read\",\n \"reminders:write\": \"Write\",\n \"remote_files:read\": \"Read\",\n \"remote_files:share\": \"Send\",\n \"remote_files:write\": \"Write\",\n \"search:read\": \"Read\",\n \"search:read.public\": \"Read\",\n \"stars:read\": \"Read\",\n \"stars:write\": \"Write\",\n \"team.billing:read\": \"Admin\",\n \"team.preferences:read\": \"Read\",\n \"team:read\": \"Read\",\n \"tokens.basic\": \"Misc\",\n \"triggers:read\": \"Read\",\n \"triggers:write\": \"Write\",\n \"usergroups:read\": \"Read\",\n \"usergroups:write\": \"Write\",\n \"users.profile:read\": \"Read\",\n \"users.profile:write\": \"Write\",\n \"users:read\": \"Read\",\n \"users:read.email\": \"Read\",\n \"users:write\": \"Write\"\n },\n \"displayOrder\": [\n \"Read\",\n \"Write\",\n \"Send\",\n \"Admin\",\n \"Misc\"\n ]\n },\n \"defaultPolicy\": {\n \"permissionDefault\": \"deny\",\n \"permissionOverrides\": {\n \"allow\": [\n \"bookmarks:read\",\n \"conversations.connect:read\",\n \"conversations:history\",\n \"conversations:read\",\n \"emoji:read\",\n \"pins:read\",\n \"reactions:read\",\n \"search:read\",\n \"team:read\",\n \"usergroups:read\",\n \"users.profile:read\",\n \"users:read\"\n ]\n },\n \"unknownPolicy\": \"allow\"\n }\n} as const satisfies FirewallPermissionDetailMetadata;\n"],"mappings":";;;;;;;;AAAA;AAMO,IAAM,6BAA6B;AAAA,EACxC,QAAQ;AAAA,EACR,SAAS;AAAA,EACT,mBAAmB;AAAA,EACnB,eAAe;AAAA,IACb;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAAe;AAAA,IACjB;AAAA,IACA;AAAA,MACE,QAAQ;AAAA,MACR,eAA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","names":[]}
|