@credal/actions 0.2.172 → 0.2.173
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/dist/actions/autogen/definitions.d.ts +5 -0
- package/dist/actions/autogen/definitions.js +132 -0
- package/dist/actions/autogen/templates.js +176 -0
- package/dist/actions/autogen/types.d.ts +6 -0
- package/dist/actions/autogen/types.js +14 -23
- package/dist/actions/definitions.js +35 -0
- package/dist/actions/groups.js +14 -1
- package/dist/actions/invokeMapper.d.ts +9 -0
- package/dist/actions/invokeMapper.js +33 -0
- package/dist/actions/parse.d.ts +3 -0
- package/dist/actions/parse.js +94 -1
- package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
- package/dist/actions/providers/confluence/updatePage.js +43 -0
- package/dist/actions/providers/google-oauth/getSheetValue.d.ts +3 -0
- package/dist/actions/providers/google-oauth/getSheetValue.js +50 -0
- package/dist/actions/providers/google-oauth/getSheetValues.d.ts +3 -0
- package/dist/actions/providers/google-oauth/getSheetValues.js +50 -0
- package/dist/actions/providers/google-oauth/listGmailThreads.d.ts +3 -0
- package/dist/actions/providers/google-oauth/listGmailThreads.js +98 -0
- package/dist/actions/providers/google-oauth/searchGmailMessages.d.ts +3 -0
- package/dist/actions/providers/google-oauth/searchGmailMessages.js +91 -0
- package/dist/actions/providers/googlemaps/nearbysearch.d.ts +3 -0
- package/dist/actions/providers/googlemaps/nearbysearch.js +96 -0
- package/dist/actions/providers/jamf/types.d.ts +8 -0
- package/dist/actions/providers/jamf/types.js +7 -0
- package/dist/actions/providers/jira/createTicket.d.ts +3 -0
- package/dist/actions/providers/jira/createTicket.js +34 -0
- package/dist/actions/providers/slack/archiveChannel.js +9 -2
- package/dist/actions/providers/slack/listConversations.d.ts +1 -1
- package/dist/actions/providers/slack/list_conversations.d.ts +3 -0
- package/dist/actions/providers/slack/list_conversations.js +60 -0
- package/dist/actions/providers/slack/summarizeChannel.d.ts +3 -0
- package/dist/actions/providers/slack/summarizeChannel.js +51 -0
- package/dist/actions/schema.js +6 -0
- package/dist/actions/types.js +2 -0
- package/dist/main.js +11 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ActionTemplate } from "@/actions/parse";
|
|
2
|
+
export declare const slackSendMessageDefinition: ActionTemplate;
|
|
3
|
+
export declare const slackListConversationsDefinition: ActionTemplate;
|
|
4
|
+
export declare const mathAddDefinition: ActionTemplate;
|
|
5
|
+
export declare const confluenceUpdatePageDefinition: ActionTemplate;
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.confluenceUpdatePageDefinition = exports.mathAddDefinition = exports.slackListConversationsDefinition = exports.slackSendMessageDefinition = void 0;
|
|
4
|
+
exports.slackSendMessageDefinition = {
|
|
5
|
+
provider: "slack",
|
|
6
|
+
name: "send_message",
|
|
7
|
+
description: "Sends a message to a Slack channel",
|
|
8
|
+
scopes: ["chat:write"],
|
|
9
|
+
parameters: {
|
|
10
|
+
channel: {
|
|
11
|
+
type: "string",
|
|
12
|
+
description: "The Slack channel to send the message to (e.g., \\#general, \\#alerts)",
|
|
13
|
+
required: true,
|
|
14
|
+
},
|
|
15
|
+
message: {
|
|
16
|
+
type: "string",
|
|
17
|
+
description: "The message content to send to Slack. Can include markdown formatting.",
|
|
18
|
+
required: true,
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
output: {},
|
|
22
|
+
};
|
|
23
|
+
exports.slackListConversationsDefinition = {
|
|
24
|
+
provider: "slack",
|
|
25
|
+
name: "list_conversations",
|
|
26
|
+
description: "Lists all conversations in a Slack workspace",
|
|
27
|
+
scopes: ["channels:read", "groups:read", "im:read", "mpim:read"],
|
|
28
|
+
authToken: {
|
|
29
|
+
type: "string",
|
|
30
|
+
description: "The Slack access token to use",
|
|
31
|
+
required: true,
|
|
32
|
+
},
|
|
33
|
+
parameters: {},
|
|
34
|
+
output: {
|
|
35
|
+
channels: {
|
|
36
|
+
type: "array",
|
|
37
|
+
description: "A list of channels in Slack",
|
|
38
|
+
required: true,
|
|
39
|
+
items: {
|
|
40
|
+
type: "object",
|
|
41
|
+
description: "A channel in Slack",
|
|
42
|
+
required: true,
|
|
43
|
+
properties: {
|
|
44
|
+
id: {
|
|
45
|
+
type: "string",
|
|
46
|
+
description: "The ID of the channel",
|
|
47
|
+
required: true,
|
|
48
|
+
},
|
|
49
|
+
name: {
|
|
50
|
+
type: "string",
|
|
51
|
+
description: "The name of the channel",
|
|
52
|
+
required: true,
|
|
53
|
+
},
|
|
54
|
+
topic: {
|
|
55
|
+
type: "string",
|
|
56
|
+
description: "The topic of the channel",
|
|
57
|
+
required: true,
|
|
58
|
+
},
|
|
59
|
+
purpose: {
|
|
60
|
+
type: "string",
|
|
61
|
+
description: "The purpose of the channel",
|
|
62
|
+
required: true,
|
|
63
|
+
},
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
};
|
|
69
|
+
exports.mathAddDefinition = {
|
|
70
|
+
provider: "math",
|
|
71
|
+
name: "add",
|
|
72
|
+
description: "Adds two numbers together",
|
|
73
|
+
scopes: [],
|
|
74
|
+
parameters: {
|
|
75
|
+
a: {
|
|
76
|
+
type: "number",
|
|
77
|
+
description: "The first number to add",
|
|
78
|
+
required: true,
|
|
79
|
+
},
|
|
80
|
+
b: {
|
|
81
|
+
type: "number",
|
|
82
|
+
description: "The second number to add",
|
|
83
|
+
required: true,
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
output: {
|
|
87
|
+
result: {
|
|
88
|
+
type: "number",
|
|
89
|
+
description: "The sum of the two numbers",
|
|
90
|
+
required: true,
|
|
91
|
+
},
|
|
92
|
+
},
|
|
93
|
+
};
|
|
94
|
+
exports.confluenceUpdatePageDefinition = {
|
|
95
|
+
provider: "confluence",
|
|
96
|
+
name: "updatePage",
|
|
97
|
+
description: "Updates a confluence page with the new content specified",
|
|
98
|
+
scopes: [],
|
|
99
|
+
authToken: {
|
|
100
|
+
type: "string",
|
|
101
|
+
description: "The access token to use for confluence",
|
|
102
|
+
required: true,
|
|
103
|
+
},
|
|
104
|
+
baseUrl: {
|
|
105
|
+
type: "string",
|
|
106
|
+
description: "The base url required to access the confluence instance",
|
|
107
|
+
required: true,
|
|
108
|
+
},
|
|
109
|
+
parameters: {
|
|
110
|
+
pageId: {
|
|
111
|
+
type: "string",
|
|
112
|
+
description: "The page id that should be updated",
|
|
113
|
+
required: true,
|
|
114
|
+
},
|
|
115
|
+
title: {
|
|
116
|
+
type: "string",
|
|
117
|
+
description: "The title of the page that should be updated",
|
|
118
|
+
required: true,
|
|
119
|
+
},
|
|
120
|
+
username: {
|
|
121
|
+
type: "string",
|
|
122
|
+
description: "The username of the person updating the page",
|
|
123
|
+
required: true,
|
|
124
|
+
},
|
|
125
|
+
content: {
|
|
126
|
+
type: "string",
|
|
127
|
+
description: "The new content for the page",
|
|
128
|
+
required: true,
|
|
129
|
+
},
|
|
130
|
+
},
|
|
131
|
+
output: {},
|
|
132
|
+
};
|