@credal/actions 0.1.32 → 0.1.35
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/actionMapper.js +125 -1
- package/dist/actions/autogen/definitions.d.ts +5 -0
- package/dist/actions/autogen/definitions.js +132 -0
- package/dist/actions/autogen/templates.d.ts +21 -1
- package/dist/actions/autogen/templates.js +3956 -260
- package/dist/actions/autogen/types.d.ts +880 -26
- package/dist/actions/autogen/types.js +1622 -12
- package/dist/actions/definitions.js +35 -0
- package/dist/actions/groups.js +34 -4
- package/dist/actions/invokeMapper.d.ts +9 -0
- package/dist/actions/invokeMapper.js +33 -0
- package/dist/actions/providers/asana/commentAsanaTask.d.ts +3 -0
- package/dist/actions/providers/asana/commentAsanaTask.js +44 -0
- package/dist/actions/providers/asana/createAsanaTask.d.ts +3 -0
- package/dist/actions/providers/asana/createAsanaTask.js +93 -0
- package/dist/actions/providers/asana/updateAsanaTask.d.ts +3 -0
- package/dist/actions/providers/asana/updateAsanaTask.js +50 -0
- package/dist/actions/providers/asana/utils.d.ts +6 -0
- package/dist/actions/providers/asana/utils.js +73 -0
- package/dist/actions/providers/confluence/updatePage.js +9 -13
- package/dist/actions/providers/github/createBranch.d.ts +6 -0
- package/dist/actions/providers/github/createBranch.js +68 -0
- package/dist/actions/providers/github/createOrUpdateFile.d.ts +6 -0
- package/dist/actions/providers/github/createOrUpdateFile.js +75 -0
- package/dist/actions/providers/github/createPullRequest.d.ts +6 -0
- package/dist/actions/providers/github/createPullRequest.js +48 -0
- package/dist/actions/providers/google-oauth/createPresentation.d.ts +6 -0
- package/dist/actions/providers/google-oauth/createPresentation.js +52 -0
- package/dist/actions/providers/google-oauth/createSpreadsheet.d.ts +6 -0
- package/dist/actions/providers/google-oauth/createSpreadsheet.js +62 -0
- package/dist/actions/providers/google-oauth/updateDoc.d.ts +7 -0
- package/dist/actions/providers/google-oauth/updateDoc.js +69 -0
- package/dist/actions/providers/google-oauth/updatePresentation.d.ts +7 -0
- package/dist/actions/providers/google-oauth/updatePresentation.js +64 -0
- package/dist/actions/providers/google-oauth/updateSpreadsheet.d.ts +7 -0
- package/dist/actions/providers/google-oauth/updateSpreadsheet.js +51 -0
- package/dist/actions/providers/googlemaps/nearbysearch.d.ts +3 -0
- package/dist/actions/providers/googlemaps/nearbysearch.js +96 -0
- package/dist/actions/providers/jira/commentJiraTicket.d.ts +2 -2
- package/dist/actions/providers/jira/commentJiraTicket.js +2 -2
- package/dist/actions/providers/jira/createTicket.d.ts +3 -0
- package/dist/actions/providers/jira/createTicket.js +34 -0
- package/dist/actions/providers/jira/getJiraTicketDetails.d.ts +3 -0
- package/dist/actions/providers/jira/getJiraTicketDetails.js +40 -0
- package/dist/actions/providers/jira/getJiraTicketHistory.d.ts +3 -0
- package/dist/actions/providers/jira/getJiraTicketHistory.js +41 -0
- package/dist/actions/providers/jira/updateJiraTicketDetails.d.ts +3 -0
- package/dist/actions/providers/jira/updateJiraTicketDetails.js +56 -0
- package/dist/actions/providers/jira/updateJiraTicketStatus.d.ts +3 -0
- package/dist/actions/providers/jira/updateJiraTicketStatus.js +57 -0
- package/dist/actions/providers/microsoft/createDocument.d.ts +3 -0
- package/dist/actions/providers/microsoft/createDocument.js +47 -0
- package/dist/actions/providers/microsoft/getDocument.d.ts +3 -0
- package/dist/actions/providers/microsoft/getDocument.js +45 -0
- package/dist/actions/providers/microsoft/messageTeamsChannel.js +18 -3
- package/dist/actions/providers/microsoft/messageTeamsChat.js +18 -3
- package/dist/actions/providers/microsoft/updateDocument.d.ts +3 -0
- package/dist/actions/providers/microsoft/updateDocument.js +45 -0
- package/dist/actions/providers/microsoft/updateSpreadsheet.d.ts +3 -0
- package/dist/actions/providers/microsoft/updateSpreadsheet.js +56 -0
- package/dist/actions/providers/microsoft/utils.d.ts +7 -2
- package/dist/actions/providers/microsoft/utils.js +26 -14
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +3 -0
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +43 -0
- 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 +3 -1
- package/dist/actions/providers/workday/requestTimeOff.d.ts +0 -23
- package/dist/actions/providers/workday/requestTimeOff.js +0 -88
@@ -15,17 +15,25 @@ const getChannelMessages_1 = __importDefault(require("./providers/slack/getChann
|
|
15
15
|
const getRowByFieldValue_1 = __importDefault(require("./providers/snowflake/getRowByFieldValue"));
|
16
16
|
const createZendeskTicket_1 = __importDefault(require("./providers/zendesk/createZendeskTicket"));
|
17
17
|
const getTicketDetails_1 = __importDefault(require("./providers/zendesk/getTicketDetails"));
|
18
|
-
const assignJiraTicket_1 = __importDefault(require("./providers/jira/assignJiraTicket"));
|
19
18
|
const updateTicketStatus_1 = __importDefault(require("./providers/zendesk/updateTicketStatus"));
|
20
19
|
const addCommentToTicket_1 = __importDefault(require("./providers/zendesk/addCommentToTicket"));
|
21
20
|
const assignTicket_1 = __importDefault(require("./providers/zendesk/assignTicket"));
|
21
|
+
const assignJiraTicket_1 = __importDefault(require("./providers/jira/assignJiraTicket"));
|
22
22
|
const commentJiraTicket_1 = __importDefault(require("./providers/jira/commentJiraTicket"));
|
23
23
|
const createJiraTicket_1 = __importDefault(require("./providers/jira/createJiraTicket"));
|
24
|
+
const getJiraTicketDetails_1 = __importDefault(require("./providers/jira/getJiraTicketDetails"));
|
25
|
+
const getJiraTicketHistory_1 = __importDefault(require("./providers/jira/getJiraTicketHistory"));
|
26
|
+
const updateJiraTicketDetails_1 = __importDefault(require("./providers/jira/updateJiraTicketDetails"));
|
27
|
+
const updateJiraTicketStatus_1 = __importDefault(require("./providers/jira/updateJiraTicketStatus"));
|
24
28
|
const getLatitudeLongitudeFromLocation_1 = __importDefault(require("./providers/openstreetmap/getLatitudeLongitudeFromLocation"));
|
25
29
|
const getForecastForLocation_1 = __importDefault(require("./providers/nws/getForecastForLocation"));
|
30
|
+
const getSalesforceRecordByQuery_1 = __importDefault(require("./providers/salesforce/getSalesforceRecordByQuery"));
|
26
31
|
const nearbysearchRestaurants_1 = __importDefault(require("./providers/googlemaps/nearbysearchRestaurants"));
|
27
32
|
const scrapeUrl_1 = __importDefault(require("./providers/firecrawl/scrapeUrl"));
|
28
33
|
const sendEmail_1 = __importDefault(require("./providers/resend/sendEmail"));
|
34
|
+
const commentAsanaTask_1 = __importDefault(require("./providers/asana/commentAsanaTask"));
|
35
|
+
const createAsanaTask_1 = __importDefault(require("./providers/asana/createAsanaTask"));
|
36
|
+
const updateAsanaTask_1 = __importDefault(require("./providers/asana/updateAsanaTask"));
|
29
37
|
const createSharePostLinkedinUrl_1 = __importDefault(require("./providers/linkedin/createSharePostLinkedinUrl"));
|
30
38
|
const createNewGoogleDoc_1 = __importDefault(require("./providers/google-oauth/createNewGoogleDoc"));
|
31
39
|
const createXSharePostUrl_1 = __importDefault(require("./providers/x/createXSharePostUrl"));
|
@@ -36,7 +44,12 @@ const overwritePage_1 = __importDefault(require("./providers/confluence/overwrit
|
|
36
44
|
const fetchPageContent_1 = __importDefault(require("./providers/confluence/fetchPageContent"));
|
37
45
|
const runSnowflakeQuery_1 = __importDefault(require("./providers/snowflake/runSnowflakeQuery"));
|
38
46
|
const enableUserByEmail_1 = __importDefault(require("./providers/looker/enableUserByEmail"));
|
47
|
+
const updateDoc_1 = __importDefault(require("./providers/google-oauth/updateDoc"));
|
39
48
|
const scheduleCalendarMeeting_1 = __importDefault(require("./providers/google-oauth/scheduleCalendarMeeting"));
|
49
|
+
const createSpreadsheet_1 = __importDefault(require("./providers/google-oauth/createSpreadsheet"));
|
50
|
+
const updateSpreadsheet_1 = __importDefault(require("./providers/google-oauth/updateSpreadsheet"));
|
51
|
+
const createPresentation_1 = __importDefault(require("./providers/google-oauth/createPresentation"));
|
52
|
+
const updatePresentation_1 = __importDefault(require("./providers/google-oauth/updatePresentation"));
|
40
53
|
const createNote_1 = __importDefault(require("./providers/ashby/createNote"));
|
41
54
|
const getCandidateInfo_1 = __importDefault(require("./providers/ashby/getCandidateInfo"));
|
42
55
|
const updateRecord_1 = __importDefault(require("./providers/salesforce/updateRecord"));
|
@@ -51,7 +64,31 @@ const updateCandidate_1 = __importDefault(require("./providers/ashby/updateCandi
|
|
51
64
|
const addCandidateToProject_1 = __importDefault(require("./providers/ashby/addCandidateToProject"));
|
52
65
|
const messageTeamsChat_1 = __importDefault(require("./providers/microsoft/messageTeamsChat"));
|
53
66
|
const messageTeamsChannel_1 = __importDefault(require("./providers/microsoft/messageTeamsChannel"));
|
67
|
+
const createOrUpdateFile_1 = __importDefault(require("./providers/github/createOrUpdateFile"));
|
68
|
+
const createBranch_1 = __importDefault(require("./providers/github/createBranch"));
|
69
|
+
const createPullRequest_1 = __importDefault(require("./providers/github/createPullRequest"));
|
70
|
+
const updateSpreadsheet_2 = __importDefault(require("./providers/microsoft/updateSpreadsheet"));
|
71
|
+
const updateDocument_1 = __importDefault(require("./providers/microsoft/updateDocument"));
|
72
|
+
const createDocument_1 = __importDefault(require("./providers/microsoft/createDocument"));
|
73
|
+
const getDocument_1 = __importDefault(require("./providers/microsoft/getDocument"));
|
54
74
|
exports.ActionMapper = {
|
75
|
+
asana: {
|
76
|
+
commentTask: {
|
77
|
+
fn: commentAsanaTask_1.default,
|
78
|
+
paramsSchema: types_1.asanaCommentTaskParamsSchema,
|
79
|
+
outputSchema: types_1.asanaCommentTaskOutputSchema,
|
80
|
+
},
|
81
|
+
createTask: {
|
82
|
+
fn: createAsanaTask_1.default,
|
83
|
+
paramsSchema: types_1.asanaCreateTaskParamsSchema,
|
84
|
+
outputSchema: types_1.asanaCreateTaskOutputSchema,
|
85
|
+
},
|
86
|
+
updateTask: {
|
87
|
+
fn: updateAsanaTask_1.default,
|
88
|
+
paramsSchema: types_1.asanaUpdateTaskParamsSchema,
|
89
|
+
outputSchema: types_1.asanaUpdateTaskOutputSchema,
|
90
|
+
},
|
91
|
+
},
|
55
92
|
math: {
|
56
93
|
add: {
|
57
94
|
fn: add_1.default,
|
@@ -176,6 +213,26 @@ exports.ActionMapper = {
|
|
176
213
|
paramsSchema: types_1.jiraCreateJiraTicketParamsSchema,
|
177
214
|
outputSchema: types_1.jiraCreateJiraTicketOutputSchema,
|
178
215
|
},
|
216
|
+
getJiraTicketDetails: {
|
217
|
+
fn: getJiraTicketDetails_1.default,
|
218
|
+
paramsSchema: types_1.jiraGetJiraTicketDetailsParamsSchema,
|
219
|
+
outputSchema: types_1.jiraGetJiraTicketDetailsOutputSchema,
|
220
|
+
},
|
221
|
+
getJiraTicketHistory: {
|
222
|
+
fn: getJiraTicketHistory_1.default,
|
223
|
+
paramsSchema: types_1.jiraGetJiraTicketHistoryParamsSchema,
|
224
|
+
outputSchema: types_1.jiraGetJiraTicketHistoryOutputSchema,
|
225
|
+
},
|
226
|
+
updateJiraTicketDetails: {
|
227
|
+
fn: updateJiraTicketDetails_1.default,
|
228
|
+
paramsSchema: types_1.jiraUpdateJiraTicketDetailsParamsSchema,
|
229
|
+
outputSchema: types_1.jiraUpdateJiraTicketDetailsOutputSchema,
|
230
|
+
},
|
231
|
+
updateJiraTicketStatus: {
|
232
|
+
fn: updateJiraTicketStatus_1.default,
|
233
|
+
paramsSchema: types_1.jiraUpdateJiraTicketStatusParamsSchema,
|
234
|
+
outputSchema: types_1.jiraUpdateJiraTicketStatusOutputSchema,
|
235
|
+
},
|
179
236
|
},
|
180
237
|
openstreetmap: {
|
181
238
|
getLatitudeLongitudeFromLocation: {
|
@@ -216,11 +273,36 @@ exports.ActionMapper = {
|
|
216
273
|
paramsSchema: types_1.googleOauthCreateNewGoogleDocParamsSchema,
|
217
274
|
outputSchema: types_1.googleOauthCreateNewGoogleDocOutputSchema,
|
218
275
|
},
|
276
|
+
updateDoc: {
|
277
|
+
fn: updateDoc_1.default,
|
278
|
+
paramsSchema: types_1.googleOauthUpdateDocParamsSchema,
|
279
|
+
outputSchema: types_1.googleOauthUpdateDocOutputSchema,
|
280
|
+
},
|
219
281
|
scheduleCalendarMeeting: {
|
220
282
|
fn: scheduleCalendarMeeting_1.default,
|
221
283
|
paramsSchema: types_1.googleOauthScheduleCalendarMeetingParamsSchema,
|
222
284
|
outputSchema: types_1.googleOauthScheduleCalendarMeetingOutputSchema,
|
223
285
|
},
|
286
|
+
createSpreadsheet: {
|
287
|
+
fn: createSpreadsheet_1.default,
|
288
|
+
paramsSchema: types_1.googleOauthCreateSpreadsheetParamsSchema,
|
289
|
+
outputSchema: types_1.googleOauthCreateSpreadsheetOutputSchema,
|
290
|
+
},
|
291
|
+
updateSpreadsheet: {
|
292
|
+
fn: updateSpreadsheet_1.default,
|
293
|
+
paramsSchema: types_1.googleOauthUpdateSpreadsheetParamsSchema,
|
294
|
+
outputSchema: types_1.googleOauthUpdateSpreadsheetOutputSchema,
|
295
|
+
},
|
296
|
+
createPresentation: {
|
297
|
+
fn: createPresentation_1.default,
|
298
|
+
paramsSchema: types_1.googleOauthCreatePresentationParamsSchema,
|
299
|
+
outputSchema: types_1.googleOauthCreatePresentationOutputSchema,
|
300
|
+
},
|
301
|
+
updatePresentation: {
|
302
|
+
fn: updatePresentation_1.default,
|
303
|
+
paramsSchema: types_1.googleOauthUpdatePresentationParamsSchema,
|
304
|
+
outputSchema: types_1.googleOauthUpdatePresentationOutputSchema,
|
305
|
+
},
|
224
306
|
},
|
225
307
|
x: {
|
226
308
|
createShareXPostUrl: {
|
@@ -311,6 +393,11 @@ exports.ActionMapper = {
|
|
311
393
|
paramsSchema: types_1.salesforceGetRecordParamsSchema,
|
312
394
|
outputSchema: types_1.salesforceGetRecordOutputSchema,
|
313
395
|
},
|
396
|
+
getSalesforceRecordByQuery: {
|
397
|
+
fn: getSalesforceRecordByQuery_1.default,
|
398
|
+
paramsSchema: types_1.salesforceGetSalesforceRecordsByQueryParamsSchema,
|
399
|
+
outputSchema: types_1.salesforceGetSalesforceRecordsByQueryOutputSchema,
|
400
|
+
},
|
314
401
|
},
|
315
402
|
microsoft: {
|
316
403
|
messageTeamsChat: {
|
@@ -323,5 +410,42 @@ exports.ActionMapper = {
|
|
323
410
|
paramsSchema: types_1.microsoftMessageTeamsChannelParamsSchema,
|
324
411
|
outputSchema: types_1.microsoftMessageTeamsChannelOutputSchema,
|
325
412
|
},
|
413
|
+
updateSpreadsheet: {
|
414
|
+
fn: updateSpreadsheet_2.default,
|
415
|
+
paramsSchema: types_1.microsoftUpdateSpreadsheetParamsSchema,
|
416
|
+
outputSchema: types_1.microsoftUpdateSpreadsheetOutputSchema,
|
417
|
+
},
|
418
|
+
updateDocument: {
|
419
|
+
fn: updateDocument_1.default,
|
420
|
+
paramsSchema: types_1.microsoftUpdateDocumentParamsSchema,
|
421
|
+
outputSchema: types_1.microsoftUpdateDocumentOutputSchema,
|
422
|
+
},
|
423
|
+
createDocument: {
|
424
|
+
fn: createDocument_1.default,
|
425
|
+
paramsSchema: types_1.microsoftUpdateDocumentParamsSchema,
|
426
|
+
outputSchema: types_1.microsoftUpdateDocumentOutputSchema,
|
427
|
+
},
|
428
|
+
getDocument: {
|
429
|
+
fn: getDocument_1.default,
|
430
|
+
paramsSchema: types_1.microsoftGetDocumentParamsSchema,
|
431
|
+
outputSchema: types_1.microsoftGetDocumentOutputSchema,
|
432
|
+
},
|
433
|
+
},
|
434
|
+
github: {
|
435
|
+
createOrUpdateFile: {
|
436
|
+
fn: createOrUpdateFile_1.default,
|
437
|
+
paramsSchema: types_1.githubCreateOrUpdateFileParamsSchema,
|
438
|
+
outputSchema: types_1.githubCreateOrUpdateFileOutputSchema,
|
439
|
+
},
|
440
|
+
createBranch: {
|
441
|
+
fn: createBranch_1.default,
|
442
|
+
paramsSchema: types_1.githubCreateBranchParamsSchema,
|
443
|
+
outputSchema: types_1.githubCreateBranchOutputSchema,
|
444
|
+
},
|
445
|
+
createPullRequest: {
|
446
|
+
fn: createPullRequest_1.default,
|
447
|
+
paramsSchema: types_1.githubCreatePullRequestParamsSchema,
|
448
|
+
outputSchema: types_1.githubCreatePullRequestOutputSchema,
|
449
|
+
},
|
326
450
|
},
|
327
451
|
};
|
@@ -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
|
+
};
|
@@ -1,13 +1,20 @@
|
|
1
1
|
import { ActionTemplate } from "../../actions/parse";
|
2
|
+
export declare const asanaCommentTaskDefinition: ActionTemplate;
|
3
|
+
export declare const asanaCreateTaskDefinition: ActionTemplate;
|
4
|
+
export declare const asanaUpdateTaskDefinition: ActionTemplate;
|
2
5
|
export declare const slackSendMessageDefinition: ActionTemplate;
|
3
6
|
export declare const slackListConversationsDefinition: ActionTemplate;
|
4
7
|
export declare const slackGetChannelMessagesDefinition: ActionTemplate;
|
5
8
|
export declare const mathAddDefinition: ActionTemplate;
|
6
9
|
export declare const confluenceOverwritePageDefinition: ActionTemplate;
|
7
10
|
export declare const confluenceFetchPageContentDefinition: ActionTemplate;
|
8
|
-
export declare const jiraCommentJiraTicketDefinition: ActionTemplate;
|
9
11
|
export declare const jiraAssignJiraTicketDefinition: ActionTemplate;
|
12
|
+
export declare const jiraCommentJiraTicketDefinition: ActionTemplate;
|
10
13
|
export declare const jiraCreateJiraTicketDefinition: ActionTemplate;
|
14
|
+
export declare const jiraGetJiraTicketDetailsDefinition: ActionTemplate;
|
15
|
+
export declare const jiraGetJiraTicketHistoryDefinition: ActionTemplate;
|
16
|
+
export declare const jiraUpdateJiraTicketDetailsDefinition: ActionTemplate;
|
17
|
+
export declare const jiraUpdateJiraTicketStatusDefinition: ActionTemplate;
|
11
18
|
export declare const googlemapsValidateAddressDefinition: ActionTemplate;
|
12
19
|
export declare const googlemapsNearbysearchRestaurantsDefinition: ActionTemplate;
|
13
20
|
export declare const credalCallCopilotDefinition: ActionTemplate;
|
@@ -27,7 +34,12 @@ export declare const firecrawlScrapeUrlDefinition: ActionTemplate;
|
|
27
34
|
export declare const firecrawlScrapeTweetDataWithNitterDefinition: ActionTemplate;
|
28
35
|
export declare const resendSendEmailDefinition: ActionTemplate;
|
29
36
|
export declare const googleOauthCreateNewGoogleDocDefinition: ActionTemplate;
|
37
|
+
export declare const googleOauthUpdateDocDefinition: ActionTemplate;
|
30
38
|
export declare const googleOauthScheduleCalendarMeetingDefinition: ActionTemplate;
|
39
|
+
export declare const googleOauthCreateSpreadsheetDefinition: ActionTemplate;
|
40
|
+
export declare const googleOauthUpdateSpreadsheetDefinition: ActionTemplate;
|
41
|
+
export declare const googleOauthCreatePresentationDefinition: ActionTemplate;
|
42
|
+
export declare const googleOauthUpdatePresentationDefinition: ActionTemplate;
|
31
43
|
export declare const finnhubSymbolLookupDefinition: ActionTemplate;
|
32
44
|
export declare const finnhubGetBasicFinancialsDefinition: ActionTemplate;
|
33
45
|
export declare const lookerEnableUserByEmailDefinition: ActionTemplate;
|
@@ -42,6 +54,14 @@ export declare const ashbyUpdateCandidateDefinition: ActionTemplate;
|
|
42
54
|
export declare const salesforceUpdateRecordDefinition: ActionTemplate;
|
43
55
|
export declare const salesforceCreateCaseDefinition: ActionTemplate;
|
44
56
|
export declare const salesforceGenerateSalesReportDefinition: ActionTemplate;
|
57
|
+
export declare const salesforceGetSalesforceRecordsByQueryDefinition: ActionTemplate;
|
45
58
|
export declare const salesforceGetRecordDefinition: ActionTemplate;
|
59
|
+
export declare const microsoftCreateDocumentDefinition: ActionTemplate;
|
60
|
+
export declare const microsoftUpdateDocumentDefinition: ActionTemplate;
|
61
|
+
export declare const microsoftUpdateSpreadsheetDefinition: ActionTemplate;
|
46
62
|
export declare const microsoftMessageTeamsChatDefinition: ActionTemplate;
|
47
63
|
export declare const microsoftMessageTeamsChannelDefinition: ActionTemplate;
|
64
|
+
export declare const microsoftGetDocumentDefinition: ActionTemplate;
|
65
|
+
export declare const githubCreateOrUpdateFileDefinition: ActionTemplate;
|
66
|
+
export declare const githubCreateBranchDefinition: ActionTemplate;
|
67
|
+
export declare const githubCreatePullRequestDefinition: ActionTemplate;
|