@credal/actions 0.1.84 → 0.1.86
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.d.ts +1 -2
- package/dist/actions/actionMapper.js +66 -65
- package/dist/actions/autogen/definitions.d.ts +5 -0
- package/dist/actions/autogen/definitions.js +132 -0
- package/dist/actions/autogen/templates.js +76 -76
- package/dist/actions/autogen/types.d.ts +85 -87
- package/dist/actions/autogen/types.js +1 -108
- package/dist/actions/definitions.js +35 -0
- package/dist/actions/invoke.d.ts +2 -3
- package/dist/actions/invoke.js +2 -6
- package/dist/actions/invokeMapper.d.ts +9 -0
- package/dist/actions/invokeMapper.js +33 -0
- package/dist/actions/parse.d.ts +14 -17
- package/dist/actions/parse.js +2 -28
- package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
- package/dist/actions/providers/confluence/updatePage.js +43 -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/createTicket.d.ts +3 -0
- package/dist/actions/providers/jira/createTicket.js +34 -0
- 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
@@ -25,8 +25,8 @@ exports.genericFillTemplateDefinition = {
|
|
25
25
|
},
|
26
26
|
},
|
27
27
|
},
|
28
|
-
provider: "generic",
|
29
28
|
name: "fillTemplate",
|
29
|
+
provider: "generic",
|
30
30
|
};
|
31
31
|
exports.asanaCommentTaskDefinition = {
|
32
32
|
description: "Comments on an Asana task with specified content",
|
@@ -67,8 +67,8 @@ exports.asanaCommentTaskDefinition = {
|
|
67
67
|
},
|
68
68
|
},
|
69
69
|
},
|
70
|
-
provider: "asana",
|
71
70
|
name: "commentTask",
|
71
|
+
provider: "asana",
|
72
72
|
};
|
73
73
|
exports.asanaListAsanaTasksByProjectDefinition = {
|
74
74
|
description: "List all tasks associated with an Asana project and their data",
|
@@ -234,8 +234,8 @@ exports.asanaListAsanaTasksByProjectDefinition = {
|
|
234
234
|
},
|
235
235
|
},
|
236
236
|
},
|
237
|
-
provider: "asana",
|
238
237
|
name: "listAsanaTasksByProject",
|
238
|
+
provider: "asana",
|
239
239
|
};
|
240
240
|
exports.asanaCreateTaskDefinition = {
|
241
241
|
description: "Create an Asana task with specified content using optional template",
|
@@ -297,8 +297,8 @@ exports.asanaCreateTaskDefinition = {
|
|
297
297
|
},
|
298
298
|
},
|
299
299
|
},
|
300
|
-
provider: "asana",
|
301
300
|
name: "createTask",
|
301
|
+
provider: "asana",
|
302
302
|
};
|
303
303
|
exports.asanaUpdateTaskDefinition = {
|
304
304
|
description: "Updates a Asana task with specified content",
|
@@ -360,8 +360,8 @@ exports.asanaUpdateTaskDefinition = {
|
|
360
360
|
},
|
361
361
|
},
|
362
362
|
},
|
363
|
-
provider: "asana",
|
364
363
|
name: "updateTask",
|
364
|
+
provider: "asana",
|
365
365
|
};
|
366
366
|
exports.slackSendMessageDefinition = {
|
367
367
|
description: "Sends a message to a Slack channel",
|
@@ -394,8 +394,8 @@ exports.slackSendMessageDefinition = {
|
|
394
394
|
},
|
395
395
|
},
|
396
396
|
},
|
397
|
-
provider: "slack",
|
398
397
|
name: "sendMessage",
|
398
|
+
provider: "slack",
|
399
399
|
};
|
400
400
|
exports.slackGetChannelMessagesDefinition = {
|
401
401
|
description: "Gets messages from a Slack channel",
|
@@ -443,8 +443,8 @@ exports.slackGetChannelMessagesDefinition = {
|
|
443
443
|
},
|
444
444
|
},
|
445
445
|
},
|
446
|
-
provider: "slack",
|
447
446
|
name: "getChannelMessages",
|
447
|
+
provider: "slack",
|
448
448
|
};
|
449
449
|
exports.mathAddDefinition = {
|
450
450
|
description: "Adds two numbers together",
|
@@ -473,8 +473,8 @@ exports.mathAddDefinition = {
|
|
473
473
|
},
|
474
474
|
},
|
475
475
|
},
|
476
|
-
provider: "math",
|
477
476
|
name: "add",
|
477
|
+
provider: "math",
|
478
478
|
};
|
479
479
|
exports.confluenceOverwritePageDefinition = {
|
480
480
|
description: "Updates a Confluence page with the new content specified",
|
@@ -497,8 +497,8 @@ exports.confluenceOverwritePageDefinition = {
|
|
497
497
|
},
|
498
498
|
},
|
499
499
|
},
|
500
|
-
provider: "confluence",
|
501
500
|
name: "overwritePage",
|
501
|
+
provider: "confluence",
|
502
502
|
};
|
503
503
|
exports.confluenceFetchPageContentDefinition = {
|
504
504
|
description: "Fetches content from a Confluence page",
|
@@ -531,8 +531,8 @@ exports.confluenceFetchPageContentDefinition = {
|
|
531
531
|
},
|
532
532
|
},
|
533
533
|
},
|
534
|
-
provider: "confluence",
|
535
534
|
name: "fetchPageContent",
|
535
|
+
provider: "confluence",
|
536
536
|
};
|
537
537
|
exports.jiraAssignJiraTicketDefinition = {
|
538
538
|
description: "Assigns/Re-assignes a Jira ticket to a specified user",
|
@@ -573,8 +573,8 @@ exports.jiraAssignJiraTicketDefinition = {
|
|
573
573
|
},
|
574
574
|
},
|
575
575
|
},
|
576
|
-
provider: "jira",
|
577
576
|
name: "assignJiraTicket",
|
577
|
+
provider: "jira",
|
578
578
|
};
|
579
579
|
exports.jiraCommentJiraTicketDefinition = {
|
580
580
|
description: "Comments on a Jira ticket with specified content",
|
@@ -615,8 +615,8 @@ exports.jiraCommentJiraTicketDefinition = {
|
|
615
615
|
},
|
616
616
|
},
|
617
617
|
},
|
618
|
-
provider: "jira",
|
619
618
|
name: "commentJiraTicket",
|
619
|
+
provider: "jira",
|
620
620
|
};
|
621
621
|
exports.jiraCreateJiraTicketDefinition = {
|
622
622
|
description: "Create a jira ticket with new content specified",
|
@@ -666,8 +666,8 @@ exports.jiraCreateJiraTicketDefinition = {
|
|
666
666
|
},
|
667
667
|
},
|
668
668
|
},
|
669
|
-
provider: "jira",
|
670
669
|
name: "createJiraTicket",
|
670
|
+
provider: "jira",
|
671
671
|
};
|
672
672
|
exports.jiraGetJiraTicketDetailsDefinition = {
|
673
673
|
description: "Get details of a ticket in Jira",
|
@@ -704,8 +704,8 @@ exports.jiraGetJiraTicketDetailsDefinition = {
|
|
704
704
|
},
|
705
705
|
},
|
706
706
|
},
|
707
|
-
provider: "jira",
|
708
707
|
name: "getJiraTicketDetails",
|
708
|
+
provider: "jira",
|
709
709
|
};
|
710
710
|
exports.jiraGetJiraTicketHistoryDefinition = {
|
711
711
|
description: "Get ticket history of a ticket in Jira",
|
@@ -742,8 +742,8 @@ exports.jiraGetJiraTicketHistoryDefinition = {
|
|
742
742
|
},
|
743
743
|
},
|
744
744
|
},
|
745
|
-
provider: "jira",
|
746
745
|
name: "getJiraTicketHistory",
|
746
|
+
provider: "jira",
|
747
747
|
};
|
748
748
|
exports.jiraUpdateJiraTicketDetailsDefinition = {
|
749
749
|
description: "Update a Jira ticket with new content specified",
|
@@ -789,8 +789,8 @@ exports.jiraUpdateJiraTicketDetailsDefinition = {
|
|
789
789
|
},
|
790
790
|
},
|
791
791
|
},
|
792
|
-
provider: "jira",
|
793
792
|
name: "updateJiraTicketDetails",
|
793
|
+
provider: "jira",
|
794
794
|
};
|
795
795
|
exports.jiraUpdateJiraTicketStatusDefinition = {
|
796
796
|
description: "Updates the status of Jira ticket with specified status",
|
@@ -831,8 +831,8 @@ exports.jiraUpdateJiraTicketStatusDefinition = {
|
|
831
831
|
},
|
832
832
|
},
|
833
833
|
},
|
834
|
-
provider: "jira",
|
835
834
|
name: "updateJiraTicketStatus",
|
835
|
+
provider: "jira",
|
836
836
|
};
|
837
837
|
exports.jiraGetJiraIssuesByQueryDefinition = {
|
838
838
|
description: "Retrieve Jira Issues by JQL query",
|
@@ -876,8 +876,8 @@ exports.jiraGetJiraIssuesByQueryDefinition = {
|
|
876
876
|
},
|
877
877
|
},
|
878
878
|
},
|
879
|
-
provider: "jira",
|
880
879
|
name: "getJiraIssuesByQuery",
|
880
|
+
provider: "jira",
|
881
881
|
};
|
882
882
|
exports.kandjiGetFVRecoveryKeyForDeviceDefinition = {
|
883
883
|
description: "Get the FileVault recovery key for a device",
|
@@ -914,8 +914,8 @@ exports.kandjiGetFVRecoveryKeyForDeviceDefinition = {
|
|
914
914
|
},
|
915
915
|
},
|
916
916
|
},
|
917
|
-
provider: "kandji",
|
918
917
|
name: "getFVRecoveryKeyForDevice",
|
918
|
+
provider: "kandji",
|
919
919
|
};
|
920
920
|
exports.googlemapsValidateAddressDefinition = {
|
921
921
|
description: "Validate a Google Maps address",
|
@@ -1081,8 +1081,8 @@ exports.googlemapsValidateAddressDefinition = {
|
|
1081
1081
|
},
|
1082
1082
|
},
|
1083
1083
|
},
|
1084
|
-
provider: "googlemaps",
|
1085
1084
|
name: "validateAddress",
|
1085
|
+
provider: "googlemaps",
|
1086
1086
|
};
|
1087
1087
|
exports.googlemapsNearbysearchRestaurantsDefinition = {
|
1088
1088
|
description: "Search for nearby places using Google Maps",
|
@@ -1148,8 +1148,8 @@ exports.googlemapsNearbysearchRestaurantsDefinition = {
|
|
1148
1148
|
},
|
1149
1149
|
},
|
1150
1150
|
},
|
1151
|
-
provider: "googlemaps",
|
1152
1151
|
name: "nearbysearchRestaurants",
|
1152
|
+
provider: "googlemaps",
|
1153
1153
|
};
|
1154
1154
|
exports.bingGetTopNSearchResultUrlsDefinition = {
|
1155
1155
|
description: "Get the top five search result URLs from Bing",
|
@@ -1195,8 +1195,8 @@ exports.bingGetTopNSearchResultUrlsDefinition = {
|
|
1195
1195
|
},
|
1196
1196
|
},
|
1197
1197
|
},
|
1198
|
-
provider: "bing",
|
1199
1198
|
name: "getTopNSearchResultUrls",
|
1199
|
+
provider: "bing",
|
1200
1200
|
};
|
1201
1201
|
exports.credalCallCopilotDefinition = {
|
1202
1202
|
description: "Call Credal Copilot for response on a given query",
|
@@ -1328,8 +1328,8 @@ exports.credalCallCopilotDefinition = {
|
|
1328
1328
|
},
|
1329
1329
|
},
|
1330
1330
|
},
|
1331
|
-
provider: "credal",
|
1332
1331
|
name: "callCopilot",
|
1332
|
+
provider: "credal",
|
1333
1333
|
};
|
1334
1334
|
exports.zendeskCreateZendeskTicketDefinition = {
|
1335
1335
|
description: "Create a ticket in Zendesk",
|
@@ -1366,8 +1366,8 @@ exports.zendeskCreateZendeskTicketDefinition = {
|
|
1366
1366
|
},
|
1367
1367
|
},
|
1368
1368
|
},
|
1369
|
-
provider: "zendesk",
|
1370
1369
|
name: "createZendeskTicket",
|
1370
|
+
provider: "zendesk",
|
1371
1371
|
};
|
1372
1372
|
exports.zendeskListZendeskTicketsDefinition = {
|
1373
1373
|
description: "List tickets in Zendesk from the past 3 months",
|
@@ -1403,8 +1403,8 @@ exports.zendeskListZendeskTicketsDefinition = {
|
|
1403
1403
|
},
|
1404
1404
|
},
|
1405
1405
|
},
|
1406
|
-
provider: "zendesk",
|
1407
1406
|
name: "listZendeskTickets",
|
1407
|
+
provider: "zendesk",
|
1408
1408
|
};
|
1409
1409
|
exports.zendeskGetTicketDetailsDefinition = {
|
1410
1410
|
description: "Get details of a ticket in Zendesk",
|
@@ -1433,8 +1433,8 @@ exports.zendeskGetTicketDetailsDefinition = {
|
|
1433
1433
|
},
|
1434
1434
|
},
|
1435
1435
|
},
|
1436
|
-
provider: "zendesk",
|
1437
1436
|
name: "getTicketDetails",
|
1437
|
+
provider: "zendesk",
|
1438
1438
|
};
|
1439
1439
|
exports.zendeskUpdateTicketStatusDefinition = {
|
1440
1440
|
description: "Update the status of a ticket in Zendesk",
|
@@ -1457,8 +1457,8 @@ exports.zendeskUpdateTicketStatusDefinition = {
|
|
1457
1457
|
},
|
1458
1458
|
},
|
1459
1459
|
},
|
1460
|
-
provider: "zendesk",
|
1461
1460
|
name: "updateTicketStatus",
|
1461
|
+
provider: "zendesk",
|
1462
1462
|
};
|
1463
1463
|
exports.zendeskAddCommentToTicketDefinition = {
|
1464
1464
|
description: "Add a comment to a ticket in Zendesk",
|
@@ -1492,8 +1492,8 @@ exports.zendeskAddCommentToTicketDefinition = {
|
|
1492
1492
|
},
|
1493
1493
|
},
|
1494
1494
|
},
|
1495
|
-
provider: "zendesk",
|
1496
1495
|
name: "addCommentToTicket",
|
1496
|
+
provider: "zendesk",
|
1497
1497
|
};
|
1498
1498
|
exports.zendeskAssignTicketDefinition = {
|
1499
1499
|
description: "Assign a ticket in Zendesk to a specific user",
|
@@ -1516,8 +1516,8 @@ exports.zendeskAssignTicketDefinition = {
|
|
1516
1516
|
},
|
1517
1517
|
},
|
1518
1518
|
},
|
1519
|
-
provider: "zendesk",
|
1520
1519
|
name: "assignTicket",
|
1520
|
+
provider: "zendesk",
|
1521
1521
|
};
|
1522
1522
|
exports.linkedinCreateShareLinkedinPostUrlDefinition = {
|
1523
1523
|
description: "Create a share linkedin post link",
|
@@ -1546,8 +1546,8 @@ exports.linkedinCreateShareLinkedinPostUrlDefinition = {
|
|
1546
1546
|
},
|
1547
1547
|
},
|
1548
1548
|
},
|
1549
|
-
provider: "linkedin",
|
1550
1549
|
name: "createShareLinkedinPostUrl",
|
1550
|
+
provider: "linkedin",
|
1551
1551
|
};
|
1552
1552
|
exports.xCreateShareXPostUrlDefinition = {
|
1553
1553
|
description: "Create a share X (formerly twitter) post link",
|
@@ -1591,8 +1591,8 @@ exports.xCreateShareXPostUrlDefinition = {
|
|
1591
1591
|
},
|
1592
1592
|
},
|
1593
1593
|
},
|
1594
|
-
provider: "x",
|
1595
1594
|
name: "createShareXPostUrl",
|
1595
|
+
provider: "x",
|
1596
1596
|
};
|
1597
1597
|
exports.mongoInsertMongoDocDefinition = {
|
1598
1598
|
description: "Insert a document into a MongoDB collection",
|
@@ -1625,8 +1625,8 @@ exports.mongoInsertMongoDocDefinition = {
|
|
1625
1625
|
},
|
1626
1626
|
},
|
1627
1627
|
},
|
1628
|
-
provider: "mongo",
|
1629
1628
|
name: "insertMongoDoc",
|
1629
|
+
provider: "mongo",
|
1630
1630
|
};
|
1631
1631
|
exports.snowflakeGetRowByFieldValueDefinition = {
|
1632
1632
|
description: "Get a row from a Snowflake table by a field value",
|
@@ -1681,8 +1681,8 @@ exports.snowflakeGetRowByFieldValueDefinition = {
|
|
1681
1681
|
},
|
1682
1682
|
},
|
1683
1683
|
},
|
1684
|
-
provider: "snowflake",
|
1685
1684
|
name: "getRowByFieldValue",
|
1685
|
+
provider: "snowflake",
|
1686
1686
|
};
|
1687
1687
|
exports.snowflakeRunSnowflakeQueryDefinition = {
|
1688
1688
|
description: "Execute a Snowflake query and return output.",
|
@@ -1749,8 +1749,8 @@ exports.snowflakeRunSnowflakeQueryDefinition = {
|
|
1749
1749
|
},
|
1750
1750
|
},
|
1751
1751
|
},
|
1752
|
-
provider: "snowflake",
|
1753
1752
|
name: "runSnowflakeQuery",
|
1753
|
+
provider: "snowflake",
|
1754
1754
|
};
|
1755
1755
|
exports.openstreetmapGetLatitudeLongitudeFromLocationDefinition = {
|
1756
1756
|
description: "Get the latitude and longitude of a location",
|
@@ -1793,8 +1793,8 @@ exports.openstreetmapGetLatitudeLongitudeFromLocationDefinition = {
|
|
1793
1793
|
},
|
1794
1794
|
},
|
1795
1795
|
},
|
1796
|
-
provider: "openstreetmap",
|
1797
1796
|
name: "getLatitudeLongitudeFromLocation",
|
1797
|
+
provider: "openstreetmap",
|
1798
1798
|
};
|
1799
1799
|
exports.nwsGetForecastForLocationDefinition = {
|
1800
1800
|
description: "Get the weather forecast for a location using latitude and longitude",
|
@@ -1841,8 +1841,8 @@ exports.nwsGetForecastForLocationDefinition = {
|
|
1841
1841
|
},
|
1842
1842
|
},
|
1843
1843
|
},
|
1844
|
-
provider: "nws",
|
1845
1844
|
name: "getForecastForLocation",
|
1845
|
+
provider: "nws",
|
1846
1846
|
};
|
1847
1847
|
exports.firecrawlDeepResearchDefinition = {
|
1848
1848
|
description: "Deep research on a topic using Firecrawl",
|
@@ -1901,8 +1901,8 @@ exports.firecrawlDeepResearchDefinition = {
|
|
1901
1901
|
},
|
1902
1902
|
},
|
1903
1903
|
},
|
1904
|
-
provider: "firecrawl",
|
1905
1904
|
name: "deepResearch",
|
1905
|
+
provider: "firecrawl",
|
1906
1906
|
};
|
1907
1907
|
exports.firecrawlScrapeUrlDefinition = {
|
1908
1908
|
description: "Scrape a URL and get website content using Firecrawl",
|
@@ -1927,8 +1927,8 @@ exports.firecrawlScrapeUrlDefinition = {
|
|
1927
1927
|
},
|
1928
1928
|
},
|
1929
1929
|
},
|
1930
|
-
provider: "firecrawl",
|
1931
1930
|
name: "scrapeUrl",
|
1931
|
+
provider: "firecrawl",
|
1932
1932
|
};
|
1933
1933
|
exports.firecrawlScrapeTweetDataWithNitterDefinition = {
|
1934
1934
|
description: "Given A tweet URL scrape the tweet data with nitter+firecrawl",
|
@@ -1953,8 +1953,8 @@ exports.firecrawlScrapeTweetDataWithNitterDefinition = {
|
|
1953
1953
|
},
|
1954
1954
|
},
|
1955
1955
|
},
|
1956
|
-
provider: "firecrawl",
|
1957
1956
|
name: "scrapeTweetDataWithNitter",
|
1957
|
+
provider: "firecrawl",
|
1958
1958
|
};
|
1959
1959
|
exports.resendSendEmailDefinition = {
|
1960
1960
|
description: "Send an email using Resend",
|
@@ -1991,8 +1991,8 @@ exports.resendSendEmailDefinition = {
|
|
1991
1991
|
},
|
1992
1992
|
},
|
1993
1993
|
},
|
1994
|
-
provider: "resend",
|
1995
1994
|
name: "sendEmail",
|
1995
|
+
provider: "resend",
|
1996
1996
|
};
|
1997
1997
|
exports.googleOauthCreateNewGoogleDocDefinition = {
|
1998
1998
|
description: "Create a new Google Docs document using OAuth authentication",
|
@@ -2025,8 +2025,8 @@ exports.googleOauthCreateNewGoogleDocDefinition = {
|
|
2025
2025
|
},
|
2026
2026
|
},
|
2027
2027
|
},
|
2028
|
-
provider: "googleOauth",
|
2029
2028
|
name: "createNewGoogleDoc",
|
2029
|
+
provider: "googleOauth",
|
2030
2030
|
};
|
2031
2031
|
exports.googleOauthUpdateDocDefinition = {
|
2032
2032
|
description: "Update an existing Google Docs document using OAuth authentication with batch requests",
|
@@ -3136,8 +3136,8 @@ exports.googleOauthUpdateDocDefinition = {
|
|
3136
3136
|
},
|
3137
3137
|
},
|
3138
3138
|
},
|
3139
|
-
provider: "googleOauth",
|
3140
3139
|
name: "updateDoc",
|
3140
|
+
provider: "googleOauth",
|
3141
3141
|
};
|
3142
3142
|
exports.googleOauthScheduleCalendarMeetingDefinition = {
|
3143
3143
|
description: "Schedule a meeting on google calendar using OAuth authentication",
|
@@ -3202,8 +3202,8 @@ exports.googleOauthScheduleCalendarMeetingDefinition = {
|
|
3202
3202
|
},
|
3203
3203
|
},
|
3204
3204
|
},
|
3205
|
-
provider: "googleOauth",
|
3206
3205
|
name: "scheduleCalendarMeeting",
|
3206
|
+
provider: "googleOauth",
|
3207
3207
|
};
|
3208
3208
|
exports.googleOauthCreateSpreadsheetDefinition = {
|
3209
3209
|
description: "Create a new Google Spreadsheet using OAuth authentication",
|
@@ -3314,8 +3314,8 @@ exports.googleOauthCreateSpreadsheetDefinition = {
|
|
3314
3314
|
},
|
3315
3315
|
},
|
3316
3316
|
},
|
3317
|
-
provider: "googleOauth",
|
3318
3317
|
name: "createSpreadsheet",
|
3318
|
+
provider: "googleOauth",
|
3319
3319
|
};
|
3320
3320
|
exports.googleOauthUpdateSpreadsheetDefinition = {
|
3321
3321
|
description: "Update a Google Spreadsheet with new content specified",
|
@@ -3697,8 +3697,8 @@ exports.googleOauthUpdateSpreadsheetDefinition = {
|
|
3697
3697
|
},
|
3698
3698
|
},
|
3699
3699
|
},
|
3700
|
-
provider: "googleOauth",
|
3701
3700
|
name: "updateSpreadsheet",
|
3701
|
+
provider: "googleOauth",
|
3702
3702
|
};
|
3703
3703
|
exports.googleOauthCreatePresentationDefinition = {
|
3704
3704
|
description: "Create a Google Presentation",
|
@@ -3770,8 +3770,8 @@ exports.googleOauthCreatePresentationDefinition = {
|
|
3770
3770
|
},
|
3771
3771
|
},
|
3772
3772
|
},
|
3773
|
-
provider: "googleOauth",
|
3774
3773
|
name: "createPresentation",
|
3774
|
+
provider: "googleOauth",
|
3775
3775
|
};
|
3776
3776
|
exports.googleOauthUpdatePresentationDefinition = {
|
3777
3777
|
description: "Update a Google Presentation",
|
@@ -5059,8 +5059,8 @@ exports.googleOauthUpdatePresentationDefinition = {
|
|
5059
5059
|
},
|
5060
5060
|
},
|
5061
5061
|
},
|
5062
|
-
provider: "googleOauth",
|
5063
5062
|
name: "updatePresentation",
|
5063
|
+
provider: "googleOauth",
|
5064
5064
|
};
|
5065
5065
|
exports.gongGetGongTranscriptsDefinition = {
|
5066
5066
|
description: "Get sales call transcripts from Gong",
|
@@ -5164,8 +5164,8 @@ exports.gongGetGongTranscriptsDefinition = {
|
|
5164
5164
|
},
|
5165
5165
|
},
|
5166
5166
|
},
|
5167
|
-
provider: "gong",
|
5168
5167
|
name: "getGongTranscripts",
|
5168
|
+
provider: "gong",
|
5169
5169
|
};
|
5170
5170
|
exports.finnhubSymbolLookupDefinition = {
|
5171
5171
|
description: "Look up a stock symbol by name",
|
@@ -5204,8 +5204,8 @@ exports.finnhubSymbolLookupDefinition = {
|
|
5204
5204
|
},
|
5205
5205
|
},
|
5206
5206
|
},
|
5207
|
-
provider: "finnhub",
|
5208
5207
|
name: "symbolLookup",
|
5208
|
+
provider: "finnhub",
|
5209
5209
|
};
|
5210
5210
|
exports.finnhubGetBasicFinancialsDefinition = {
|
5211
5211
|
description: "Get company basic financials such as margin, P/E ratio, 52-week high/low etc.",
|
@@ -5296,8 +5296,8 @@ exports.finnhubGetBasicFinancialsDefinition = {
|
|
5296
5296
|
},
|
5297
5297
|
},
|
5298
5298
|
},
|
5299
|
-
provider: "finnhub",
|
5300
5299
|
name: "getBasicFinancials",
|
5300
|
+
provider: "finnhub",
|
5301
5301
|
};
|
5302
5302
|
exports.lookerEnableUserByEmailDefinition = {
|
5303
5303
|
description: "Search for a Looker user by email and enable them if disabled",
|
@@ -5357,8 +5357,8 @@ exports.lookerEnableUserByEmailDefinition = {
|
|
5357
5357
|
},
|
5358
5358
|
},
|
5359
5359
|
},
|
5360
|
-
provider: "looker",
|
5361
5360
|
name: "enableUserByEmail",
|
5361
|
+
provider: "looker",
|
5362
5362
|
};
|
5363
5363
|
exports.ashbyCreateNoteDefinition = {
|
5364
5364
|
description: "Creates a note on a candidate",
|
@@ -5377,8 +5377,8 @@ exports.ashbyCreateNoteDefinition = {
|
|
5377
5377
|
},
|
5378
5378
|
},
|
5379
5379
|
},
|
5380
|
-
provider: "ashby",
|
5381
5380
|
name: "createNote",
|
5381
|
+
provider: "ashby",
|
5382
5382
|
};
|
5383
5383
|
exports.ashbyGetCandidateInfoDefinition = {
|
5384
5384
|
description: "Gets a candidate's information",
|
@@ -5404,8 +5404,8 @@ exports.ashbyGetCandidateInfoDefinition = {
|
|
5404
5404
|
},
|
5405
5405
|
},
|
5406
5406
|
},
|
5407
|
-
provider: "ashby",
|
5408
5407
|
name: "getCandidateInfo",
|
5408
|
+
provider: "ashby",
|
5409
5409
|
};
|
5410
5410
|
exports.ashbyAddCandidateToProjectDefinition = {
|
5411
5411
|
description: "Adds a candidate to a project",
|
@@ -5424,8 +5424,8 @@ exports.ashbyAddCandidateToProjectDefinition = {
|
|
5424
5424
|
},
|
5425
5425
|
},
|
5426
5426
|
},
|
5427
|
-
provider: "ashby",
|
5428
5427
|
name: "addCandidateToProject",
|
5428
|
+
provider: "ashby",
|
5429
5429
|
};
|
5430
5430
|
exports.ashbyListCandidatesDefinition = {
|
5431
5431
|
description: "Lists all candidates",
|
@@ -5440,8 +5440,8 @@ exports.ashbyListCandidatesDefinition = {
|
|
5440
5440
|
},
|
5441
5441
|
},
|
5442
5442
|
},
|
5443
|
-
provider: "ashby",
|
5444
5443
|
name: "listCandidates",
|
5444
|
+
provider: "ashby",
|
5445
5445
|
};
|
5446
5446
|
exports.ashbySearchCandidatesDefinition = {
|
5447
5447
|
description: "Search for candidates by email and/or name.",
|
@@ -5470,8 +5470,8 @@ exports.ashbySearchCandidatesDefinition = {
|
|
5470
5470
|
},
|
5471
5471
|
},
|
5472
5472
|
},
|
5473
|
-
provider: "ashby",
|
5474
5473
|
name: "searchCandidates",
|
5474
|
+
provider: "ashby",
|
5475
5475
|
};
|
5476
5476
|
exports.ashbyListCandidateNotesDefinition = {
|
5477
5477
|
description: "Lists all notes on a candidate",
|
@@ -5496,8 +5496,8 @@ exports.ashbyListCandidateNotesDefinition = {
|
|
5496
5496
|
},
|
5497
5497
|
},
|
5498
5498
|
},
|
5499
|
-
provider: "ashby",
|
5500
5499
|
name: "listCandidateNotes",
|
5500
|
+
provider: "ashby",
|
5501
5501
|
};
|
5502
5502
|
exports.ashbyCreateCandidateDefinition = {
|
5503
5503
|
description: "Creates a candidate",
|
@@ -5565,8 +5565,8 @@ exports.ashbyCreateCandidateDefinition = {
|
|
5565
5565
|
},
|
5566
5566
|
},
|
5567
5567
|
},
|
5568
|
-
provider: "ashby",
|
5569
5568
|
name: "createCandidate",
|
5569
|
+
provider: "ashby",
|
5570
5570
|
};
|
5571
5571
|
exports.ashbyUpdateCandidateDefinition = {
|
5572
5572
|
description: "Updates a candidate",
|
@@ -5660,8 +5660,8 @@ exports.ashbyUpdateCandidateDefinition = {
|
|
5660
5660
|
},
|
5661
5661
|
},
|
5662
5662
|
},
|
5663
|
-
provider: "ashby",
|
5664
5663
|
name: "updateCandidate",
|
5664
|
+
provider: "ashby",
|
5665
5665
|
};
|
5666
5666
|
exports.salesforceUpdateRecordDefinition = {
|
5667
5667
|
description: "Update a record in Salesforce",
|
@@ -5701,8 +5701,8 @@ exports.salesforceUpdateRecordDefinition = {
|
|
5701
5701
|
},
|
5702
5702
|
},
|
5703
5703
|
},
|
5704
|
-
provider: "salesforce",
|
5705
5704
|
name: "updateRecord",
|
5705
|
+
provider: "salesforce",
|
5706
5706
|
};
|
5707
5707
|
exports.salesforceCreateRecordDefinition = {
|
5708
5708
|
description: "Create a record in Salesforce",
|
@@ -5742,8 +5742,8 @@ exports.salesforceCreateRecordDefinition = {
|
|
5742
5742
|
},
|
5743
5743
|
},
|
5744
5744
|
},
|
5745
|
-
provider: "salesforce",
|
5746
5745
|
name: "createRecord",
|
5746
|
+
provider: "salesforce",
|
5747
5747
|
};
|
5748
5748
|
exports.salesforceCreateCaseDefinition = {
|
5749
5749
|
description: "Create a case or support ticket in Salesforce",
|
@@ -5795,8 +5795,8 @@ exports.salesforceCreateCaseDefinition = {
|
|
5795
5795
|
},
|
5796
5796
|
},
|
5797
5797
|
},
|
5798
|
-
provider: "salesforce",
|
5799
5798
|
name: "createCase",
|
5799
|
+
provider: "salesforce",
|
5800
5800
|
};
|
5801
5801
|
exports.salesforceGenerateSalesReportDefinition = {
|
5802
5802
|
description: "Generate a sales report from Salesforce",
|
@@ -5847,8 +5847,8 @@ exports.salesforceGenerateSalesReportDefinition = {
|
|
5847
5847
|
},
|
5848
5848
|
},
|
5849
5849
|
},
|
5850
|
-
provider: "salesforce",
|
5851
5850
|
name: "generateSalesReport",
|
5851
|
+
provider: "salesforce",
|
5852
5852
|
};
|
5853
5853
|
exports.salesforceGetSalesforceRecordsByQueryDefinition = {
|
5854
5854
|
description: "Retrieve Salesforce records by SOQL query",
|
@@ -5892,8 +5892,8 @@ exports.salesforceGetSalesforceRecordsByQueryDefinition = {
|
|
5892
5892
|
},
|
5893
5893
|
},
|
5894
5894
|
},
|
5895
|
-
provider: "salesforce",
|
5896
5895
|
name: "getSalesforceRecordsByQuery",
|
5896
|
+
provider: "salesforce",
|
5897
5897
|
};
|
5898
5898
|
exports.salesforceGetRecordDefinition = {
|
5899
5899
|
description: "Retrieve a record from Salesforce",
|
@@ -5933,8 +5933,8 @@ exports.salesforceGetRecordDefinition = {
|
|
5933
5933
|
},
|
5934
5934
|
},
|
5935
5935
|
},
|
5936
|
-
provider: "salesforce",
|
5937
5936
|
name: "getRecord",
|
5937
|
+
provider: "salesforce",
|
5938
5938
|
};
|
5939
5939
|
exports.salesforceFetchSalesforceSchemaByObjectDefinition = {
|
5940
5940
|
description: "Fetch the schema of a Salesforce object",
|
@@ -5970,8 +5970,8 @@ exports.salesforceFetchSalesforceSchemaByObjectDefinition = {
|
|
5970
5970
|
},
|
5971
5971
|
},
|
5972
5972
|
},
|
5973
|
-
provider: "salesforce",
|
5974
5973
|
name: "fetchSalesforceSchemaByObject",
|
5974
|
+
provider: "salesforce",
|
5975
5975
|
};
|
5976
5976
|
exports.microsoftCreateDocumentDefinition = {
|
5977
5977
|
description: "Creates a new Office365 document",
|
@@ -6024,8 +6024,8 @@ exports.microsoftCreateDocumentDefinition = {
|
|
6024
6024
|
},
|
6025
6025
|
},
|
6026
6026
|
},
|
6027
|
-
provider: "microsoft",
|
6028
6027
|
name: "createDocument",
|
6028
|
+
provider: "microsoft",
|
6029
6029
|
};
|
6030
6030
|
exports.microsoftUpdateDocumentDefinition = {
|
6031
6031
|
description: "Updates a Office365 document",
|
@@ -6066,8 +6066,8 @@ exports.microsoftUpdateDocumentDefinition = {
|
|
6066
6066
|
},
|
6067
6067
|
},
|
6068
6068
|
},
|
6069
|
-
provider: "microsoft",
|
6070
6069
|
name: "updateDocument",
|
6070
|
+
provider: "microsoft",
|
6071
6071
|
};
|
6072
6072
|
exports.microsoftUpdateSpreadsheetDefinition = {
|
6073
6073
|
description: "Updates a Microsoft Excel spreadsheet",
|
@@ -6118,8 +6118,8 @@ exports.microsoftUpdateSpreadsheetDefinition = {
|
|
6118
6118
|
},
|
6119
6119
|
},
|
6120
6120
|
},
|
6121
|
-
provider: "microsoft",
|
6122
6121
|
name: "updateSpreadsheet",
|
6122
|
+
provider: "microsoft",
|
6123
6123
|
};
|
6124
6124
|
exports.microsoftMessageTeamsChatDefinition = {
|
6125
6125
|
description: "Sends a message to a Microsoft Teams chat",
|
@@ -6156,8 +6156,8 @@ exports.microsoftMessageTeamsChatDefinition = {
|
|
6156
6156
|
},
|
6157
6157
|
},
|
6158
6158
|
},
|
6159
|
-
provider: "microsoft",
|
6160
6159
|
name: "messageTeamsChat",
|
6160
|
+
provider: "microsoft",
|
6161
6161
|
};
|
6162
6162
|
exports.microsoftMessageTeamsChannelDefinition = {
|
6163
6163
|
description: "Sends a message to a Microsoft Teams channel",
|
@@ -6198,8 +6198,8 @@ exports.microsoftMessageTeamsChannelDefinition = {
|
|
6198
6198
|
},
|
6199
6199
|
},
|
6200
6200
|
},
|
6201
|
-
provider: "microsoft",
|
6202
6201
|
name: "messageTeamsChannel",
|
6202
|
+
provider: "microsoft",
|
6203
6203
|
};
|
6204
6204
|
exports.microsoftGetDocumentDefinition = {
|
6205
6205
|
description: "Retrieves the content of a Microsoft Office document",
|
@@ -6236,8 +6236,8 @@ exports.microsoftGetDocumentDefinition = {
|
|
6236
6236
|
},
|
6237
6237
|
},
|
6238
6238
|
},
|
6239
|
-
provider: "microsoft",
|
6240
6239
|
name: "getDocument",
|
6240
|
+
provider: "microsoft",
|
6241
6241
|
};
|
6242
6242
|
exports.githubCreateOrUpdateFileDefinition = {
|
6243
6243
|
description: "Create or update a file in a GitHub repository",
|
@@ -6299,8 +6299,8 @@ exports.githubCreateOrUpdateFileDefinition = {
|
|
6299
6299
|
},
|
6300
6300
|
},
|
6301
6301
|
},
|
6302
|
-
provider: "github",
|
6303
6302
|
name: "createOrUpdateFile",
|
6303
|
+
provider: "github",
|
6304
6304
|
};
|
6305
6305
|
exports.githubCreateBranchDefinition = {
|
6306
6306
|
description: "Create a new branch in a GitHub repository",
|
@@ -6341,8 +6341,8 @@ exports.githubCreateBranchDefinition = {
|
|
6341
6341
|
},
|
6342
6342
|
},
|
6343
6343
|
},
|
6344
|
-
provider: "github",
|
6345
6344
|
name: "createBranch",
|
6345
|
+
provider: "github",
|
6346
6346
|
};
|
6347
6347
|
exports.githubCreatePullRequestDefinition = {
|
6348
6348
|
description: "Create a pull request in a GitHub repository",
|
@@ -6399,8 +6399,8 @@ exports.githubCreatePullRequestDefinition = {
|
|
6399
6399
|
},
|
6400
6400
|
},
|
6401
6401
|
},
|
6402
|
-
provider: "github",
|
6403
6402
|
name: "createPullRequest",
|
6403
|
+
provider: "github",
|
6404
6404
|
};
|
6405
6405
|
exports.githubListPullRequestsDefinition = {
|
6406
6406
|
description: "List pull requests in a GitHub repository",
|
@@ -6475,6 +6475,6 @@ exports.githubListPullRequestsDefinition = {
|
|
6475
6475
|
},
|
6476
6476
|
},
|
6477
6477
|
},
|
6478
|
-
provider: "github",
|
6479
6478
|
name: "listPullRequests",
|
6479
|
+
provider: "github",
|
6480
6480
|
};
|