@credal/actions 0.2.179 → 0.2.181
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/README.md +29 -0
- package/dist/actions/actionMapper.js +8 -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 +1 -0
- package/dist/actions/autogen/templates.js +107 -48
- package/dist/actions/autogen/types.d.ts +50 -11
- package/dist/actions/autogen/types.js +71 -41
- package/dist/actions/definitions.js +35 -0
- package/dist/actions/groups.js +11 -1
- package/dist/actions/invokeMapper.d.ts +9 -0
- package/dist/actions/invokeMapper.js +33 -0
- package/dist/actions/providers/confluence/updatePage.d.ts +3 -0
- package/dist/actions/providers/confluence/updatePage.js +43 -0
- package/dist/actions/providers/credal/callCopilot.d.ts +3 -0
- package/dist/actions/providers/credal/callCopilot.js +36 -0
- package/dist/actions/providers/google-oauth/appendRowsToSpreadsheet.d.ts +7 -0
- package/dist/actions/providers/google-oauth/appendRowsToSpreadsheet.js +61 -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/math/index.d.ts +1 -0
- package/dist/actions/providers/math/index.js +37 -0
- package/dist/actions/providers/salesforce/createRecord.js +2 -2
- package/dist/actions/providers/salesforce/getRecord.js +2 -2
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +3 -0
- package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +43 -0
- package/dist/actions/providers/salesforce/updateRecord.js +2 -2
- package/dist/actions/providers/slack/index.d.ts +1 -0
- package/dist/actions/providers/slack/index.js +37 -0
- package/dist/actions/providers/slack/listConversations.d.ts +3 -0
- package/dist/actions/providers/slack/listConversations.js +41 -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 +1 -1
- package/dist/actions/providers/github/fetchFile.d.ts +0 -3
- package/dist/actions/providers/github/fetchFile.js +0 -131
- package/dist/actions/providers/github/getContents.d.ts +0 -3
- package/dist/actions/providers/github/getContents.js +0 -41
|
@@ -57,7 +57,7 @@ export const perplexityPerplexityDeepResearchDefinition = {
|
|
|
57
57
|
},
|
|
58
58
|
result: {
|
|
59
59
|
type: "object",
|
|
60
|
-
description: "The main research response/analysis",
|
|
60
|
+
description: "The main research response/analysis object",
|
|
61
61
|
properties: {
|
|
62
62
|
content: {
|
|
63
63
|
type: "string",
|
|
@@ -1168,7 +1168,7 @@ export const jiraAssignJiraTicketDefinition = {
|
|
|
1168
1168
|
properties: {
|
|
1169
1169
|
projectKey: {
|
|
1170
1170
|
type: "string",
|
|
1171
|
-
description: "The key for the project you want to add
|
|
1171
|
+
description: "The key for the project you want to add the ticket to.",
|
|
1172
1172
|
tags: ["recommend-predefined"],
|
|
1173
1173
|
},
|
|
1174
1174
|
assignee: {
|
|
@@ -1251,16 +1251,16 @@ export const jiraCommentJiraTicketDefinition = {
|
|
|
1251
1251
|
properties: {
|
|
1252
1252
|
projectKey: {
|
|
1253
1253
|
type: "string",
|
|
1254
|
-
description: "The key for the project",
|
|
1254
|
+
description: "The key for the project to which the ticket you want to comment on belongs.",
|
|
1255
1255
|
tags: ["recommend-predefined"],
|
|
1256
1256
|
},
|
|
1257
1257
|
issueId: {
|
|
1258
1258
|
type: "string",
|
|
1259
|
-
description: "The issue ID associated with the ticket to be commented on",
|
|
1259
|
+
description: "The issue ID associated with the ticket to be commented on.",
|
|
1260
1260
|
},
|
|
1261
1261
|
comment: {
|
|
1262
1262
|
type: "string",
|
|
1263
|
-
description: "The text to be commented on the ticket",
|
|
1263
|
+
description: "The text to be commented on the ticket.",
|
|
1264
1264
|
},
|
|
1265
1265
|
},
|
|
1266
1266
|
},
|
|
@@ -1295,7 +1295,7 @@ export const jiraCreateJiraTicketDefinition = {
|
|
|
1295
1295
|
properties: {
|
|
1296
1296
|
projectKey: {
|
|
1297
1297
|
type: "string",
|
|
1298
|
-
description: "The key for the project you want to add
|
|
1298
|
+
description: "The key for the project you want to add the ticket to.",
|
|
1299
1299
|
tags: ["recommend-predefined"],
|
|
1300
1300
|
},
|
|
1301
1301
|
summary: {
|
|
@@ -1419,7 +1419,7 @@ export const jiraGetJiraTicketDetailsDefinition = {
|
|
|
1419
1419
|
properties: {
|
|
1420
1420
|
projectKey: {
|
|
1421
1421
|
type: "string",
|
|
1422
|
-
description: "The key for the project",
|
|
1422
|
+
description: "The key for the project the ticket belongs to.",
|
|
1423
1423
|
tags: ["recommend-predefined"],
|
|
1424
1424
|
},
|
|
1425
1425
|
issueId: {
|
|
@@ -1477,7 +1477,7 @@ export const jiraGetJiraTicketHistoryDefinition = {
|
|
|
1477
1477
|
properties: {
|
|
1478
1478
|
projectKey: {
|
|
1479
1479
|
type: "string",
|
|
1480
|
-
description: "The key for the project",
|
|
1480
|
+
description: "The key for the project the ticket belongs to.",
|
|
1481
1481
|
tags: ["recommend-predefined"],
|
|
1482
1482
|
},
|
|
1483
1483
|
issueId: {
|
|
@@ -1517,7 +1517,7 @@ export const jiraUpdateJiraTicketDetailsDefinition = {
|
|
|
1517
1517
|
properties: {
|
|
1518
1518
|
projectKey: {
|
|
1519
1519
|
type: "string",
|
|
1520
|
-
description: "The key for the project
|
|
1520
|
+
description: "The key for the project the ticket belongs to.",
|
|
1521
1521
|
tags: ["recommend-predefined"],
|
|
1522
1522
|
},
|
|
1523
1523
|
issueId: {
|
|
@@ -1578,7 +1578,7 @@ export const jiraUpdateJiraTicketStatusDefinition = {
|
|
|
1578
1578
|
properties: {
|
|
1579
1579
|
projectKey: {
|
|
1580
1580
|
type: "string",
|
|
1581
|
-
description: "The key for the project you want to add
|
|
1581
|
+
description: "The key for the project you want to add the ticket to.",
|
|
1582
1582
|
tags: ["recommend-predefined"],
|
|
1583
1583
|
},
|
|
1584
1584
|
issueId: {
|
|
@@ -1821,7 +1821,7 @@ export const jiraOrgAssignJiraTicketDefinition = {
|
|
|
1821
1821
|
properties: {
|
|
1822
1822
|
projectKey: {
|
|
1823
1823
|
type: "string",
|
|
1824
|
-
description: "The key for the project you want to add
|
|
1824
|
+
description: "The key for the project you want to add the ticket to.",
|
|
1825
1825
|
tags: ["recommend-predefined"],
|
|
1826
1826
|
},
|
|
1827
1827
|
assignee: {
|
|
@@ -1904,16 +1904,16 @@ export const jiraOrgCommentJiraTicketDefinition = {
|
|
|
1904
1904
|
properties: {
|
|
1905
1905
|
projectKey: {
|
|
1906
1906
|
type: "string",
|
|
1907
|
-
description: "The key for the project",
|
|
1907
|
+
description: "The key for the project to which the ticket you want to comment on belongs.",
|
|
1908
1908
|
tags: ["recommend-predefined"],
|
|
1909
1909
|
},
|
|
1910
1910
|
issueId: {
|
|
1911
1911
|
type: "string",
|
|
1912
|
-
description: "The issue ID associated with the ticket to be commented on",
|
|
1912
|
+
description: "The issue ID associated with the ticket to be commented on.",
|
|
1913
1913
|
},
|
|
1914
1914
|
comment: {
|
|
1915
1915
|
type: "string",
|
|
1916
|
-
description: "The text to be commented on the ticket",
|
|
1916
|
+
description: "The text to be commented on the ticket.",
|
|
1917
1917
|
},
|
|
1918
1918
|
},
|
|
1919
1919
|
},
|
|
@@ -1948,7 +1948,7 @@ export const jiraOrgCreateJiraTicketDefinition = {
|
|
|
1948
1948
|
properties: {
|
|
1949
1949
|
projectKey: {
|
|
1950
1950
|
type: "string",
|
|
1951
|
-
description: "The key for the project you want to add
|
|
1951
|
+
description: "The key for the project you want to add the ticket to.",
|
|
1952
1952
|
tags: ["recommend-predefined"],
|
|
1953
1953
|
},
|
|
1954
1954
|
summary: {
|
|
@@ -2072,7 +2072,7 @@ export const jiraOrgGetJiraTicketDetailsDefinition = {
|
|
|
2072
2072
|
properties: {
|
|
2073
2073
|
projectKey: {
|
|
2074
2074
|
type: "string",
|
|
2075
|
-
description: "The key for the project",
|
|
2075
|
+
description: "The key for the project the ticket belongs to.",
|
|
2076
2076
|
tags: ["recommend-predefined"],
|
|
2077
2077
|
},
|
|
2078
2078
|
issueId: {
|
|
@@ -2130,7 +2130,7 @@ export const jiraOrgGetJiraTicketHistoryDefinition = {
|
|
|
2130
2130
|
properties: {
|
|
2131
2131
|
projectKey: {
|
|
2132
2132
|
type: "string",
|
|
2133
|
-
description: "The key for the project",
|
|
2133
|
+
description: "The key for the project the ticket belongs to.",
|
|
2134
2134
|
tags: ["recommend-predefined"],
|
|
2135
2135
|
},
|
|
2136
2136
|
issueId: {
|
|
@@ -2170,7 +2170,7 @@ export const jiraOrgUpdateJiraTicketDetailsDefinition = {
|
|
|
2170
2170
|
properties: {
|
|
2171
2171
|
projectKey: {
|
|
2172
2172
|
type: "string",
|
|
2173
|
-
description: "The key for the project
|
|
2173
|
+
description: "The key for the project the ticket belongs to.",
|
|
2174
2174
|
tags: ["recommend-predefined"],
|
|
2175
2175
|
},
|
|
2176
2176
|
issueId: {
|
|
@@ -2231,7 +2231,7 @@ export const jiraOrgUpdateJiraTicketStatusDefinition = {
|
|
|
2231
2231
|
properties: {
|
|
2232
2232
|
projectKey: {
|
|
2233
2233
|
type: "string",
|
|
2234
|
-
description: "The key for the project you want to add
|
|
2234
|
+
description: "The key for the project you want to add the ticket to.",
|
|
2235
2235
|
tags: ["recommend-predefined"],
|
|
2236
2236
|
},
|
|
2237
2237
|
issueId: {
|
|
@@ -2474,7 +2474,7 @@ export const jiraDataCenterAssignJiraTicketDefinition = {
|
|
|
2474
2474
|
properties: {
|
|
2475
2475
|
projectKey: {
|
|
2476
2476
|
type: "string",
|
|
2477
|
-
description: "The key for the project you want to add
|
|
2477
|
+
description: "The key for the project you want to add the ticket to.",
|
|
2478
2478
|
tags: ["recommend-predefined"],
|
|
2479
2479
|
},
|
|
2480
2480
|
assignee: {
|
|
@@ -2557,16 +2557,16 @@ export const jiraDataCenterCommentJiraTicketDefinition = {
|
|
|
2557
2557
|
properties: {
|
|
2558
2558
|
projectKey: {
|
|
2559
2559
|
type: "string",
|
|
2560
|
-
description: "The key for the project",
|
|
2560
|
+
description: "The key for the project to which the ticket you want to comment on belongs.",
|
|
2561
2561
|
tags: ["recommend-predefined"],
|
|
2562
2562
|
},
|
|
2563
2563
|
issueId: {
|
|
2564
2564
|
type: "string",
|
|
2565
|
-
description: "The issue ID associated with the ticket to be commented on",
|
|
2565
|
+
description: "The issue ID associated with the ticket to be commented on.",
|
|
2566
2566
|
},
|
|
2567
2567
|
comment: {
|
|
2568
2568
|
type: "string",
|
|
2569
|
-
description: "The text to be commented on the ticket",
|
|
2569
|
+
description: "The text to be commented on the ticket.",
|
|
2570
2570
|
},
|
|
2571
2571
|
},
|
|
2572
2572
|
},
|
|
@@ -2601,7 +2601,7 @@ export const jiraDataCenterCreateJiraTicketDefinition = {
|
|
|
2601
2601
|
properties: {
|
|
2602
2602
|
projectKey: {
|
|
2603
2603
|
type: "string",
|
|
2604
|
-
description: "The key for the project you want to add
|
|
2604
|
+
description: "The key for the project you want to add the ticket to.",
|
|
2605
2605
|
tags: ["recommend-predefined"],
|
|
2606
2606
|
},
|
|
2607
2607
|
summary: {
|
|
@@ -2725,7 +2725,7 @@ export const jiraDataCenterGetJiraTicketDetailsDefinition = {
|
|
|
2725
2725
|
properties: {
|
|
2726
2726
|
projectKey: {
|
|
2727
2727
|
type: "string",
|
|
2728
|
-
description: "The key for the project",
|
|
2728
|
+
description: "The key for the project the ticket belongs to.",
|
|
2729
2729
|
tags: ["recommend-predefined"],
|
|
2730
2730
|
},
|
|
2731
2731
|
issueId: {
|
|
@@ -2783,7 +2783,7 @@ export const jiraDataCenterGetJiraTicketHistoryDefinition = {
|
|
|
2783
2783
|
properties: {
|
|
2784
2784
|
projectKey: {
|
|
2785
2785
|
type: "string",
|
|
2786
|
-
description: "The key for the project",
|
|
2786
|
+
description: "The key for the project the ticket belongs to.",
|
|
2787
2787
|
tags: ["recommend-predefined"],
|
|
2788
2788
|
},
|
|
2789
2789
|
issueId: {
|
|
@@ -2823,7 +2823,7 @@ export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
|
|
|
2823
2823
|
properties: {
|
|
2824
2824
|
projectKey: {
|
|
2825
2825
|
type: "string",
|
|
2826
|
-
description: "The key for the project
|
|
2826
|
+
description: "The key for the project the ticket belongs to.",
|
|
2827
2827
|
tags: ["recommend-predefined"],
|
|
2828
2828
|
},
|
|
2829
2829
|
issueId: {
|
|
@@ -2884,7 +2884,7 @@ export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
|
|
|
2884
2884
|
properties: {
|
|
2885
2885
|
projectKey: {
|
|
2886
2886
|
type: "string",
|
|
2887
|
-
description: "The key for the project you want to add
|
|
2887
|
+
description: "The key for the project you want to add the ticket to.",
|
|
2888
2888
|
tags: ["recommend-predefined"],
|
|
2889
2889
|
},
|
|
2890
2890
|
issueId: {
|
|
@@ -3118,7 +3118,7 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
|
|
|
3118
3118
|
provider: "jiraDataCenter",
|
|
3119
3119
|
};
|
|
3120
3120
|
export const googlemapsValidateAddressDefinition = {
|
|
3121
|
-
description: "Validate
|
|
3121
|
+
description: "Validate an address using the Google Maps API",
|
|
3122
3122
|
scopes: [],
|
|
3123
3123
|
tags: [],
|
|
3124
3124
|
parameters: {
|
|
@@ -3381,7 +3381,7 @@ export const bingGetTopNSearchResultUrlsDefinition = {
|
|
|
3381
3381
|
properties: {
|
|
3382
3382
|
results: {
|
|
3383
3383
|
type: "array",
|
|
3384
|
-
description: "The top
|
|
3384
|
+
description: "The top search result objects",
|
|
3385
3385
|
items: {
|
|
3386
3386
|
type: "object",
|
|
3387
3387
|
properties: {
|
|
@@ -5507,11 +5507,11 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
|
|
|
5507
5507
|
},
|
|
5508
5508
|
start: {
|
|
5509
5509
|
type: "string",
|
|
5510
|
-
description: "The start time of the meeting",
|
|
5510
|
+
description: "The start time of the meeting (in datetime format)",
|
|
5511
5511
|
},
|
|
5512
5512
|
end: {
|
|
5513
5513
|
type: "string",
|
|
5514
|
-
description: "The end time of the meeting",
|
|
5514
|
+
description: "The end time of the meeting (in datetime format)",
|
|
5515
5515
|
},
|
|
5516
5516
|
description: {
|
|
5517
5517
|
type: "string",
|
|
@@ -5522,7 +5522,7 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
|
|
|
5522
5522
|
description: "The attendees of the meeting",
|
|
5523
5523
|
items: {
|
|
5524
5524
|
type: "string",
|
|
5525
|
-
description: "The
|
|
5525
|
+
description: "The emails of the attendees",
|
|
5526
5526
|
},
|
|
5527
5527
|
},
|
|
5528
5528
|
useGoogleMeet: {
|
|
@@ -6573,6 +6573,64 @@ export const googleOauthUpdateSpreadsheetDefinition = {
|
|
|
6573
6573
|
name: "updateSpreadsheet",
|
|
6574
6574
|
provider: "googleOauth",
|
|
6575
6575
|
};
|
|
6576
|
+
export const googleOauthAppendRowsToSpreadsheetDefinition = {
|
|
6577
|
+
description: "Adds new cells after the last row with data in a sheet, inserting new rows into the sheet if necessary.",
|
|
6578
|
+
scopes: [],
|
|
6579
|
+
tags: [],
|
|
6580
|
+
parameters: {
|
|
6581
|
+
type: "object",
|
|
6582
|
+
required: ["spreadsheetId", "rows"],
|
|
6583
|
+
properties: {
|
|
6584
|
+
spreadsheetId: {
|
|
6585
|
+
type: "string",
|
|
6586
|
+
description: 'The ID of the Google Spreadsheet to update. This should be provided by the user. Can be found in the URL of the spreadsheet. For example, "1bWp1w2OVwH19mkXEiLIaP8As7N-9c_3EXF_Eo5d5Nm0".',
|
|
6587
|
+
tags: ["recommend-predefined"],
|
|
6588
|
+
},
|
|
6589
|
+
sheetName: {
|
|
6590
|
+
type: "string",
|
|
6591
|
+
description: 'The name of the SHEET to append to. This should be provided by the user. For example, "Sheet1".',
|
|
6592
|
+
},
|
|
6593
|
+
rows: {
|
|
6594
|
+
type: "array",
|
|
6595
|
+
description: "Rows of cells to append to the spreadsheet",
|
|
6596
|
+
items: {
|
|
6597
|
+
type: "array",
|
|
6598
|
+
description: "A list of cells to append to the spreadsheet",
|
|
6599
|
+
items: {
|
|
6600
|
+
type: "object",
|
|
6601
|
+
required: ["stringValue"],
|
|
6602
|
+
properties: {
|
|
6603
|
+
stringValue: {
|
|
6604
|
+
type: "string",
|
|
6605
|
+
description: "The value of the cell",
|
|
6606
|
+
},
|
|
6607
|
+
},
|
|
6608
|
+
},
|
|
6609
|
+
},
|
|
6610
|
+
},
|
|
6611
|
+
},
|
|
6612
|
+
},
|
|
6613
|
+
output: {
|
|
6614
|
+
type: "object",
|
|
6615
|
+
required: ["success"],
|
|
6616
|
+
properties: {
|
|
6617
|
+
success: {
|
|
6618
|
+
type: "boolean",
|
|
6619
|
+
description: "Whether the spreadsheet was updated successfully",
|
|
6620
|
+
},
|
|
6621
|
+
spreadsheetUrl: {
|
|
6622
|
+
type: "string",
|
|
6623
|
+
description: "The URL of the updated spreadsheet",
|
|
6624
|
+
},
|
|
6625
|
+
error: {
|
|
6626
|
+
type: "string",
|
|
6627
|
+
description: "The error that occurred if the spreadsheet was not updated successfully",
|
|
6628
|
+
},
|
|
6629
|
+
},
|
|
6630
|
+
},
|
|
6631
|
+
name: "appendRowsToSpreadsheet",
|
|
6632
|
+
provider: "googleOauth",
|
|
6633
|
+
};
|
|
6576
6634
|
export const googleOauthCreatePresentationDefinition = {
|
|
6577
6635
|
description: "Create a Google Presentation",
|
|
6578
6636
|
scopes: [],
|
|
@@ -9389,11 +9447,11 @@ export const salesforceUpdateRecordDefinition = {
|
|
|
9389
9447
|
tags: [],
|
|
9390
9448
|
parameters: {
|
|
9391
9449
|
type: "object",
|
|
9392
|
-
required: ["
|
|
9450
|
+
required: ["recordType", "recordId", "fieldsToUpdate"],
|
|
9393
9451
|
properties: {
|
|
9394
|
-
|
|
9452
|
+
recordType: {
|
|
9395
9453
|
type: "string",
|
|
9396
|
-
description: "The Salesforce
|
|
9454
|
+
description: "The Salesforce record type to update (e.g., Lead, Account, Contact)",
|
|
9397
9455
|
},
|
|
9398
9456
|
recordId: {
|
|
9399
9457
|
type: "string",
|
|
@@ -9431,11 +9489,11 @@ export const salesforceCreateRecordDefinition = {
|
|
|
9431
9489
|
tags: [],
|
|
9432
9490
|
parameters: {
|
|
9433
9491
|
type: "object",
|
|
9434
|
-
required: ["
|
|
9492
|
+
required: ["recordType"],
|
|
9435
9493
|
properties: {
|
|
9436
|
-
|
|
9494
|
+
recordType: {
|
|
9437
9495
|
type: "string",
|
|
9438
|
-
description: "The Salesforce
|
|
9496
|
+
description: "The Salesforce record type to create (e.g., Lead, Account, Contact)",
|
|
9439
9497
|
},
|
|
9440
9498
|
fieldsToCreate: {
|
|
9441
9499
|
type: "object",
|
|
@@ -9589,6 +9647,7 @@ export const salesforceSearchAllSalesforceRecordsDefinition = {
|
|
|
9589
9647
|
usesLightningKnowledge: {
|
|
9590
9648
|
type: "boolean",
|
|
9591
9649
|
description: "Whether your Salesforce instance uses lightning knowledge articles",
|
|
9650
|
+
tags: ["recommend-predefined"],
|
|
9592
9651
|
},
|
|
9593
9652
|
limit: {
|
|
9594
9653
|
type: "number",
|
|
@@ -9819,11 +9878,11 @@ export const salesforceGetRecordDefinition = {
|
|
|
9819
9878
|
tags: [],
|
|
9820
9879
|
parameters: {
|
|
9821
9880
|
type: "object",
|
|
9822
|
-
required: ["
|
|
9881
|
+
required: ["recordType", "recordId"],
|
|
9823
9882
|
properties: {
|
|
9824
|
-
|
|
9883
|
+
recordType: {
|
|
9825
9884
|
type: "string",
|
|
9826
|
-
description: "The Salesforce
|
|
9885
|
+
description: "The Salesforce record type to retrieve (e.g., Lead, Account, Contact)",
|
|
9827
9886
|
},
|
|
9828
9887
|
recordId: {
|
|
9829
9888
|
type: "string",
|
|
@@ -12965,7 +13024,7 @@ export const hubspotGetContactsDefinition = {
|
|
|
12965
13024
|
properties: {
|
|
12966
13025
|
query: {
|
|
12967
13026
|
type: "string",
|
|
12968
|
-
description: "Optional search query to filter contacts by name, email, or other properties",
|
|
13027
|
+
description: "Optional keyword search query to filter contacts by name, email, or other properties",
|
|
12969
13028
|
},
|
|
12970
13029
|
limit: {
|
|
12971
13030
|
type: "number",
|
|
@@ -13029,7 +13088,7 @@ export const hubspotGetContactDetailsDefinition = {
|
|
|
13029
13088
|
properties: {
|
|
13030
13089
|
contactId: {
|
|
13031
13090
|
type: "string",
|
|
13032
|
-
description: "The ID of the HubSpot contact to retrieve",
|
|
13091
|
+
description: "The ID of the HubSpot contact to retrieve. If you view the contact online, the url contains record/0-1/{contactId}/.",
|
|
13033
13092
|
},
|
|
13034
13093
|
},
|
|
13035
13094
|
},
|
|
@@ -13130,7 +13189,7 @@ export const hubspotGetCompaniesDefinition = {
|
|
|
13130
13189
|
properties: {
|
|
13131
13190
|
query: {
|
|
13132
13191
|
type: "string",
|
|
13133
|
-
description: "Optional search query to filter companies by name, domain, or other properties",
|
|
13192
|
+
description: "Optional keyword search query to filter companies by name, domain, or other properties",
|
|
13134
13193
|
},
|
|
13135
13194
|
limit: {
|
|
13136
13195
|
type: "number",
|
|
@@ -13190,7 +13249,7 @@ export const hubspotGetCompanyDetailsDefinition = {
|
|
|
13190
13249
|
properties: {
|
|
13191
13250
|
companyId: {
|
|
13192
13251
|
type: "string",
|
|
13193
|
-
description: "The ID of the HubSpot company to retrieve",
|
|
13252
|
+
description: "The ID of the HubSpot company to retrieve. If you view the company online, the url contains record/0-2/{companyId}/.",
|
|
13194
13253
|
},
|
|
13195
13254
|
},
|
|
13196
13255
|
},
|
|
@@ -13347,7 +13406,7 @@ export const hubspotGetDealDetailsDefinition = {
|
|
|
13347
13406
|
properties: {
|
|
13348
13407
|
dealId: {
|
|
13349
13408
|
type: "string",
|
|
13350
|
-
description: "The ID of the HubSpot deal to retrieve",
|
|
13409
|
+
description: "The ID of the HubSpot deal to retrieve. If you view the deal online, the url contains record/0-3/{dealId}/.",
|
|
13351
13410
|
},
|
|
13352
13411
|
},
|
|
13353
13412
|
},
|
|
@@ -13492,7 +13551,7 @@ export const hubspotGetTicketDetailsDefinition = {
|
|
|
13492
13551
|
properties: {
|
|
13493
13552
|
ticketId: {
|
|
13494
13553
|
type: "string",
|
|
13495
|
-
description: "The ID of the HubSpot ticket to retrieve",
|
|
13554
|
+
description: "The ID of the HubSpot ticket to retrieve. If you view the ticket online, the url contains record/0-5/{ticketId}/.",
|
|
13496
13555
|
},
|
|
13497
13556
|
},
|
|
13498
13557
|
},
|
|
@@ -5131,6 +5131,45 @@ export declare const googleOauthUpdateSpreadsheetOutputSchema: z.ZodObject<{
|
|
|
5131
5131
|
}>;
|
|
5132
5132
|
export type googleOauthUpdateSpreadsheetOutputType = z.infer<typeof googleOauthUpdateSpreadsheetOutputSchema>;
|
|
5133
5133
|
export type googleOauthUpdateSpreadsheetFunction = ActionFunction<googleOauthUpdateSpreadsheetParamsType, AuthParamsType, googleOauthUpdateSpreadsheetOutputType>;
|
|
5134
|
+
export declare const googleOauthAppendRowsToSpreadsheetParamsSchema: z.ZodObject<{
|
|
5135
|
+
spreadsheetId: z.ZodString;
|
|
5136
|
+
sheetName: z.ZodOptional<z.ZodString>;
|
|
5137
|
+
rows: z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
5138
|
+
stringValue: z.ZodString;
|
|
5139
|
+
}, "strip", z.ZodTypeAny, {
|
|
5140
|
+
stringValue: string;
|
|
5141
|
+
}, {
|
|
5142
|
+
stringValue: string;
|
|
5143
|
+
}>, "many">, "many">;
|
|
5144
|
+
}, "strip", z.ZodTypeAny, {
|
|
5145
|
+
spreadsheetId: string;
|
|
5146
|
+
rows: {
|
|
5147
|
+
stringValue: string;
|
|
5148
|
+
}[][];
|
|
5149
|
+
sheetName?: string | undefined;
|
|
5150
|
+
}, {
|
|
5151
|
+
spreadsheetId: string;
|
|
5152
|
+
rows: {
|
|
5153
|
+
stringValue: string;
|
|
5154
|
+
}[][];
|
|
5155
|
+
sheetName?: string | undefined;
|
|
5156
|
+
}>;
|
|
5157
|
+
export type googleOauthAppendRowsToSpreadsheetParamsType = z.infer<typeof googleOauthAppendRowsToSpreadsheetParamsSchema>;
|
|
5158
|
+
export declare const googleOauthAppendRowsToSpreadsheetOutputSchema: z.ZodObject<{
|
|
5159
|
+
success: z.ZodBoolean;
|
|
5160
|
+
spreadsheetUrl: z.ZodOptional<z.ZodString>;
|
|
5161
|
+
error: z.ZodOptional<z.ZodString>;
|
|
5162
|
+
}, "strip", z.ZodTypeAny, {
|
|
5163
|
+
success: boolean;
|
|
5164
|
+
error?: string | undefined;
|
|
5165
|
+
spreadsheetUrl?: string | undefined;
|
|
5166
|
+
}, {
|
|
5167
|
+
success: boolean;
|
|
5168
|
+
error?: string | undefined;
|
|
5169
|
+
spreadsheetUrl?: string | undefined;
|
|
5170
|
+
}>;
|
|
5171
|
+
export type googleOauthAppendRowsToSpreadsheetOutputType = z.infer<typeof googleOauthAppendRowsToSpreadsheetOutputSchema>;
|
|
5172
|
+
export type googleOauthAppendRowsToSpreadsheetFunction = ActionFunction<googleOauthAppendRowsToSpreadsheetParamsType, AuthParamsType, googleOauthAppendRowsToSpreadsheetOutputType>;
|
|
5134
5173
|
export declare const googleOauthCreatePresentationParamsSchema: z.ZodObject<{
|
|
5135
5174
|
title: z.ZodString;
|
|
5136
5175
|
pageSize: z.ZodOptional<z.ZodObject<{
|
|
@@ -6547,15 +6586,15 @@ export declare const lookerEnableUserByEmailOutputSchema: z.ZodObject<{
|
|
|
6547
6586
|
export type lookerEnableUserByEmailOutputType = z.infer<typeof lookerEnableUserByEmailOutputSchema>;
|
|
6548
6587
|
export type lookerEnableUserByEmailFunction = ActionFunction<lookerEnableUserByEmailParamsType, AuthParamsType, lookerEnableUserByEmailOutputType>;
|
|
6549
6588
|
export declare const salesforceUpdateRecordParamsSchema: z.ZodObject<{
|
|
6550
|
-
|
|
6589
|
+
recordType: z.ZodString;
|
|
6551
6590
|
recordId: z.ZodString;
|
|
6552
6591
|
fieldsToUpdate: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6553
6592
|
}, "strip", z.ZodTypeAny, {
|
|
6554
|
-
|
|
6593
|
+
recordType: string;
|
|
6555
6594
|
recordId: string;
|
|
6556
6595
|
fieldsToUpdate: Record<string, string>;
|
|
6557
6596
|
}, {
|
|
6558
|
-
|
|
6597
|
+
recordType: string;
|
|
6559
6598
|
recordId: string;
|
|
6560
6599
|
fieldsToUpdate: Record<string, string>;
|
|
6561
6600
|
}>;
|
|
@@ -6573,13 +6612,13 @@ export declare const salesforceUpdateRecordOutputSchema: z.ZodObject<{
|
|
|
6573
6612
|
export type salesforceUpdateRecordOutputType = z.infer<typeof salesforceUpdateRecordOutputSchema>;
|
|
6574
6613
|
export type salesforceUpdateRecordFunction = ActionFunction<salesforceUpdateRecordParamsType, AuthParamsType, salesforceUpdateRecordOutputType>;
|
|
6575
6614
|
export declare const salesforceCreateRecordParamsSchema: z.ZodObject<{
|
|
6576
|
-
|
|
6615
|
+
recordType: z.ZodString;
|
|
6577
6616
|
fieldsToCreate: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6578
6617
|
}, "strip", z.ZodTypeAny, {
|
|
6579
|
-
|
|
6618
|
+
recordType: string;
|
|
6580
6619
|
fieldsToCreate?: Record<string, string> | undefined;
|
|
6581
6620
|
}, {
|
|
6582
|
-
|
|
6621
|
+
recordType: string;
|
|
6583
6622
|
fieldsToCreate?: Record<string, string> | undefined;
|
|
6584
6623
|
}>;
|
|
6585
6624
|
export type salesforceCreateRecordParamsType = z.infer<typeof salesforceCreateRecordParamsSchema>;
|
|
@@ -6805,14 +6844,14 @@ export declare const salesforceSearchSalesforceRecordsParamsSchema: z.ZodObject<
|
|
|
6805
6844
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
6806
6845
|
maxLimit: z.ZodOptional<z.ZodNumber>;
|
|
6807
6846
|
}, "strip", z.ZodTypeAny, {
|
|
6808
|
-
keyword: string;
|
|
6809
6847
|
recordType: string;
|
|
6848
|
+
keyword: string;
|
|
6810
6849
|
fieldsToSearch: string[];
|
|
6811
6850
|
limit?: number | undefined;
|
|
6812
6851
|
maxLimit?: number | undefined;
|
|
6813
6852
|
}, {
|
|
6814
|
-
keyword: string;
|
|
6815
6853
|
recordType: string;
|
|
6854
|
+
keyword: string;
|
|
6816
6855
|
fieldsToSearch: string[];
|
|
6817
6856
|
limit?: number | undefined;
|
|
6818
6857
|
maxLimit?: number | undefined;
|
|
@@ -6964,13 +7003,13 @@ export declare const salesforceGetSalesforceRecordsByQueryOutputSchema: z.ZodObj
|
|
|
6964
7003
|
export type salesforceGetSalesforceRecordsByQueryOutputType = z.infer<typeof salesforceGetSalesforceRecordsByQueryOutputSchema>;
|
|
6965
7004
|
export type salesforceGetSalesforceRecordsByQueryFunction = ActionFunction<salesforceGetSalesforceRecordsByQueryParamsType, AuthParamsType, salesforceGetSalesforceRecordsByQueryOutputType>;
|
|
6966
7005
|
export declare const salesforceGetRecordParamsSchema: z.ZodObject<{
|
|
6967
|
-
|
|
7006
|
+
recordType: z.ZodString;
|
|
6968
7007
|
recordId: z.ZodString;
|
|
6969
7008
|
}, "strip", z.ZodTypeAny, {
|
|
6970
|
-
|
|
7009
|
+
recordType: string;
|
|
6971
7010
|
recordId: string;
|
|
6972
7011
|
}, {
|
|
6973
|
-
|
|
7012
|
+
recordType: string;
|
|
6974
7013
|
recordId: string;
|
|
6975
7014
|
}>;
|
|
6976
7015
|
export type salesforceGetRecordParamsType = z.infer<typeof salesforceGetRecordParamsSchema>;
|