@credal/actions 0.1.32 → 0.1.34
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 +101 -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 +17 -1
- package/dist/actions/autogen/templates.js +3629 -119
- package/dist/actions/autogen/types.d.ts +755 -26
- package/dist/actions/autogen/types.js +1579 -12
- package/dist/actions/definitions.js +35 -0
- package/dist/actions/groups.js +26 -3
- 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/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 +2 -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,27 @@ 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"));
|
54
70
|
exports.ActionMapper = {
|
71
|
+
asana: {
|
72
|
+
commentTask: {
|
73
|
+
fn: commentAsanaTask_1.default,
|
74
|
+
paramsSchema: types_1.asanaCommentTaskParamsSchema,
|
75
|
+
outputSchema: types_1.asanaCommentTaskOutputSchema,
|
76
|
+
},
|
77
|
+
createTask: {
|
78
|
+
fn: createAsanaTask_1.default,
|
79
|
+
paramsSchema: types_1.asanaCreateTaskParamsSchema,
|
80
|
+
outputSchema: types_1.asanaCreateTaskOutputSchema,
|
81
|
+
},
|
82
|
+
updateTask: {
|
83
|
+
fn: updateAsanaTask_1.default,
|
84
|
+
paramsSchema: types_1.asanaUpdateTaskParamsSchema,
|
85
|
+
outputSchema: types_1.asanaUpdateTaskOutputSchema,
|
86
|
+
},
|
87
|
+
},
|
55
88
|
math: {
|
56
89
|
add: {
|
57
90
|
fn: add_1.default,
|
@@ -176,6 +209,26 @@ exports.ActionMapper = {
|
|
176
209
|
paramsSchema: types_1.jiraCreateJiraTicketParamsSchema,
|
177
210
|
outputSchema: types_1.jiraCreateJiraTicketOutputSchema,
|
178
211
|
},
|
212
|
+
getJiraTicketDetails: {
|
213
|
+
fn: getJiraTicketDetails_1.default,
|
214
|
+
paramsSchema: types_1.jiraGetJiraTicketDetailsParamsSchema,
|
215
|
+
outputSchema: types_1.jiraGetJiraTicketDetailsOutputSchema,
|
216
|
+
},
|
217
|
+
getJiraTicketHistory: {
|
218
|
+
fn: getJiraTicketHistory_1.default,
|
219
|
+
paramsSchema: types_1.jiraGetJiraTicketHistoryParamsSchema,
|
220
|
+
outputSchema: types_1.jiraGetJiraTicketHistoryOutputSchema,
|
221
|
+
},
|
222
|
+
updateJiraTicketDetails: {
|
223
|
+
fn: updateJiraTicketDetails_1.default,
|
224
|
+
paramsSchema: types_1.jiraUpdateJiraTicketDetailsParamsSchema,
|
225
|
+
outputSchema: types_1.jiraUpdateJiraTicketDetailsOutputSchema,
|
226
|
+
},
|
227
|
+
updateJiraTicketStatus: {
|
228
|
+
fn: updateJiraTicketStatus_1.default,
|
229
|
+
paramsSchema: types_1.jiraUpdateJiraTicketStatusParamsSchema,
|
230
|
+
outputSchema: types_1.jiraUpdateJiraTicketStatusOutputSchema,
|
231
|
+
},
|
179
232
|
},
|
180
233
|
openstreetmap: {
|
181
234
|
getLatitudeLongitudeFromLocation: {
|
@@ -216,11 +269,36 @@ exports.ActionMapper = {
|
|
216
269
|
paramsSchema: types_1.googleOauthCreateNewGoogleDocParamsSchema,
|
217
270
|
outputSchema: types_1.googleOauthCreateNewGoogleDocOutputSchema,
|
218
271
|
},
|
272
|
+
updateDoc: {
|
273
|
+
fn: updateDoc_1.default,
|
274
|
+
paramsSchema: types_1.googleOauthUpdateDocParamsSchema,
|
275
|
+
outputSchema: types_1.googleOauthUpdateDocOutputSchema,
|
276
|
+
},
|
219
277
|
scheduleCalendarMeeting: {
|
220
278
|
fn: scheduleCalendarMeeting_1.default,
|
221
279
|
paramsSchema: types_1.googleOauthScheduleCalendarMeetingParamsSchema,
|
222
280
|
outputSchema: types_1.googleOauthScheduleCalendarMeetingOutputSchema,
|
223
281
|
},
|
282
|
+
createSpreadsheet: {
|
283
|
+
fn: createSpreadsheet_1.default,
|
284
|
+
paramsSchema: types_1.googleOauthCreateSpreadsheetParamsSchema,
|
285
|
+
outputSchema: types_1.googleOauthCreateSpreadsheetOutputSchema,
|
286
|
+
},
|
287
|
+
updateSpreadsheet: {
|
288
|
+
fn: updateSpreadsheet_1.default,
|
289
|
+
paramsSchema: types_1.googleOauthUpdateSpreadsheetParamsSchema,
|
290
|
+
outputSchema: types_1.googleOauthUpdateSpreadsheetOutputSchema,
|
291
|
+
},
|
292
|
+
createPresentation: {
|
293
|
+
fn: createPresentation_1.default,
|
294
|
+
paramsSchema: types_1.googleOauthCreatePresentationParamsSchema,
|
295
|
+
outputSchema: types_1.googleOauthCreatePresentationOutputSchema,
|
296
|
+
},
|
297
|
+
updatePresentation: {
|
298
|
+
fn: updatePresentation_1.default,
|
299
|
+
paramsSchema: types_1.googleOauthUpdatePresentationParamsSchema,
|
300
|
+
outputSchema: types_1.googleOauthUpdatePresentationOutputSchema,
|
301
|
+
},
|
224
302
|
},
|
225
303
|
x: {
|
226
304
|
createShareXPostUrl: {
|
@@ -311,6 +389,11 @@ exports.ActionMapper = {
|
|
311
389
|
paramsSchema: types_1.salesforceGetRecordParamsSchema,
|
312
390
|
outputSchema: types_1.salesforceGetRecordOutputSchema,
|
313
391
|
},
|
392
|
+
getSalesforceRecordByQuery: {
|
393
|
+
fn: getSalesforceRecordByQuery_1.default,
|
394
|
+
paramsSchema: types_1.salesforceGetSalesforceRecordsByQueryParamsSchema,
|
395
|
+
outputSchema: types_1.salesforceGetSalesforceRecordsByQueryOutputSchema,
|
396
|
+
},
|
314
397
|
},
|
315
398
|
microsoft: {
|
316
399
|
messageTeamsChat: {
|
@@ -324,4 +407,21 @@ exports.ActionMapper = {
|
|
324
407
|
outputSchema: types_1.microsoftMessageTeamsChannelOutputSchema,
|
325
408
|
},
|
326
409
|
},
|
410
|
+
github: {
|
411
|
+
createOrUpdateFile: {
|
412
|
+
fn: createOrUpdateFile_1.default,
|
413
|
+
paramsSchema: types_1.githubCreateOrUpdateFileParamsSchema,
|
414
|
+
outputSchema: types_1.githubCreateOrUpdateFileOutputSchema,
|
415
|
+
},
|
416
|
+
createBranch: {
|
417
|
+
fn: createBranch_1.default,
|
418
|
+
paramsSchema: types_1.githubCreateBranchParamsSchema,
|
419
|
+
outputSchema: types_1.githubCreateBranchOutputSchema,
|
420
|
+
},
|
421
|
+
createPullRequest: {
|
422
|
+
fn: createPullRequest_1.default,
|
423
|
+
paramsSchema: types_1.githubCreatePullRequestParamsSchema,
|
424
|
+
outputSchema: types_1.githubCreatePullRequestOutputSchema,
|
425
|
+
},
|
426
|
+
},
|
327
427
|
};
|
@@ -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,10 @@ 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;
|
46
59
|
export declare const microsoftMessageTeamsChatDefinition: ActionTemplate;
|
47
60
|
export declare const microsoftMessageTeamsChannelDefinition: ActionTemplate;
|
61
|
+
export declare const githubCreateOrUpdateFileDefinition: ActionTemplate;
|
62
|
+
export declare const githubCreateBranchDefinition: ActionTemplate;
|
63
|
+
export declare const githubCreatePullRequestDefinition: ActionTemplate;
|