@credal/actions 0.2.177 → 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.
Files changed (41) hide show
  1. package/README.md +29 -0
  2. package/dist/actions/actionMapper.js +9 -9
  3. package/dist/actions/autogen/definitions.d.ts +5 -0
  4. package/dist/actions/autogen/definitions.js +132 -0
  5. package/dist/actions/autogen/templates.d.ts +1 -3
  6. package/dist/actions/autogen/templates.js +140 -330
  7. package/dist/actions/autogen/types.d.ts +100 -341
  8. package/dist/actions/autogen/types.js +88 -134
  9. package/dist/actions/definitions.js +35 -0
  10. package/dist/actions/invokeMapper.d.ts +9 -0
  11. package/dist/actions/invokeMapper.js +33 -0
  12. package/dist/actions/providers/confluence/updatePage.js +9 -13
  13. package/dist/actions/providers/google-oauth/appendRowsToSpreadsheet.d.ts +7 -0
  14. package/dist/actions/providers/google-oauth/appendRowsToSpreadsheet.js +61 -0
  15. package/dist/actions/providers/google-oauth/getSheetValue.d.ts +3 -0
  16. package/dist/actions/providers/google-oauth/getSheetValue.js +50 -0
  17. package/dist/actions/providers/google-oauth/getSheetValues.d.ts +3 -0
  18. package/dist/actions/providers/google-oauth/getSheetValues.js +50 -0
  19. package/dist/actions/providers/google-oauth/listCalendarEvents.js +7 -20
  20. package/dist/actions/providers/google-oauth/listGmailThreads.d.ts +3 -0
  21. package/dist/actions/providers/google-oauth/listGmailThreads.js +98 -0
  22. package/dist/actions/providers/google-oauth/searchGmailMessages.d.ts +3 -0
  23. package/dist/actions/providers/google-oauth/searchGmailMessages.js +91 -0
  24. package/dist/actions/providers/googlemaps/nearbysearch.d.ts +3 -0
  25. package/dist/actions/providers/googlemaps/nearbysearch.js +96 -0
  26. package/dist/actions/providers/jira/createTicket.d.ts +3 -0
  27. package/dist/actions/providers/jira/createTicket.js +34 -0
  28. package/dist/actions/providers/salesforce/createRecord.js +2 -2
  29. package/dist/actions/providers/salesforce/getRecord.js +2 -2
  30. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.d.ts +3 -0
  31. package/dist/actions/providers/salesforce/getSalesforceRecordByQuery.js +43 -0
  32. package/dist/actions/providers/salesforce/updateRecord.js +2 -2
  33. package/dist/actions/providers/slack/listConversations.d.ts +1 -1
  34. package/dist/actions/providers/slack/list_conversations.d.ts +3 -0
  35. package/dist/actions/providers/slack/list_conversations.js +60 -0
  36. package/dist/actions/providers/slack/summarizeChannel.d.ts +3 -0
  37. package/dist/actions/providers/slack/summarizeChannel.js +51 -0
  38. package/dist/actions/schema.js +6 -0
  39. package/dist/actions/types.js +2 -0
  40. package/dist/main.js +11 -0
  41. package/package.json +1 -1
@@ -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 it to",
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 it to",
1298
+ description: "The key for the project you want to add the ticket to.",
1299
1299
  tags: ["recommend-predefined"],
1300
1300
  },
1301
1301
  summary: {
@@ -1350,100 +1350,6 @@ export const jiraCreateJiraTicketDefinition = {
1350
1350
  name: "createJiraTicket",
1351
1351
  provider: "jira",
1352
1352
  };
1353
- export const jiraGetServiceDesksDefinition = {
1354
- description: "Get the service desks for a Jira instance",
1355
- scopes: [],
1356
- tags: [],
1357
- parameters: {
1358
- type: "object",
1359
- required: [],
1360
- properties: {},
1361
- },
1362
- output: {
1363
- type: "object",
1364
- required: ["success"],
1365
- properties: {
1366
- success: {
1367
- type: "boolean",
1368
- description: "Whether the service desks were retrieved successfully",
1369
- },
1370
- error: {
1371
- type: "string",
1372
- description: "The error that occurred if the service desks were not retrieved successfully",
1373
- },
1374
- serviceDesks: {
1375
- type: "array",
1376
- description: "The list of service desks",
1377
- items: {
1378
- type: "object",
1379
- description: "A service desk",
1380
- properties: {
1381
- id: {
1382
- type: "string",
1383
- description: "The ID of the service desk",
1384
- },
1385
- projectId: {
1386
- type: "string",
1387
- description: "The ID of the project",
1388
- },
1389
- projectKey: {
1390
- type: "string",
1391
- description: "The key of the project",
1392
- },
1393
- projectName: {
1394
- type: "string",
1395
- description: "The name of the service desk",
1396
- },
1397
- requestTypes: {
1398
- type: "array",
1399
- description: "The list of request types",
1400
- items: {
1401
- type: "object",
1402
- description: "A request type",
1403
- properties: {
1404
- id: {
1405
- type: "string",
1406
- description: "The ID of the request type",
1407
- },
1408
- name: {
1409
- type: "string",
1410
- description: "The name of the request type",
1411
- },
1412
- description: {
1413
- type: "string",
1414
- description: "The description of the request type",
1415
- },
1416
- issueTypeId: {
1417
- type: "string",
1418
- description: "The ID of the issue type",
1419
- },
1420
- portalId: {
1421
- type: "string",
1422
- description: "The ID of the customer portal",
1423
- },
1424
- helpText: {
1425
- type: "string",
1426
- description: "The help text for the request type",
1427
- },
1428
- serviceDeskId: {
1429
- type: "string",
1430
- description: "The ID of the service desk",
1431
- },
1432
- canCreateRequest: {
1433
- type: "boolean",
1434
- description: "Whether the request type can be created",
1435
- },
1436
- },
1437
- },
1438
- },
1439
- },
1440
- },
1441
- },
1442
- },
1443
- },
1444
- name: "getServiceDesks",
1445
- provider: "jira",
1446
- };
1447
1353
  export const jiraCreateServiceDeskRequestDefinition = {
1448
1354
  description: "Create a jira service desk request with specified content",
1449
1355
  scopes: [],
@@ -1513,7 +1419,7 @@ export const jiraGetJiraTicketDetailsDefinition = {
1513
1419
  properties: {
1514
1420
  projectKey: {
1515
1421
  type: "string",
1516
- description: "The key for the project",
1422
+ description: "The key for the project the ticket belongs to.",
1517
1423
  tags: ["recommend-predefined"],
1518
1424
  },
1519
1425
  issueId: {
@@ -1571,7 +1477,7 @@ export const jiraGetJiraTicketHistoryDefinition = {
1571
1477
  properties: {
1572
1478
  projectKey: {
1573
1479
  type: "string",
1574
- description: "The key for the project",
1480
+ description: "The key for the project the ticket belongs to.",
1575
1481
  tags: ["recommend-predefined"],
1576
1482
  },
1577
1483
  issueId: {
@@ -1611,7 +1517,7 @@ export const jiraUpdateJiraTicketDetailsDefinition = {
1611
1517
  properties: {
1612
1518
  projectKey: {
1613
1519
  type: "string",
1614
- description: "The key for the project you want to add it to",
1520
+ description: "The key for the project the ticket belongs to.",
1615
1521
  tags: ["recommend-predefined"],
1616
1522
  },
1617
1523
  issueId: {
@@ -1672,7 +1578,7 @@ export const jiraUpdateJiraTicketStatusDefinition = {
1672
1578
  properties: {
1673
1579
  projectKey: {
1674
1580
  type: "string",
1675
- description: "The key for the project you want to add it to",
1581
+ description: "The key for the project you want to add the ticket to.",
1676
1582
  tags: ["recommend-predefined"],
1677
1583
  },
1678
1584
  issueId: {
@@ -1915,7 +1821,7 @@ export const jiraOrgAssignJiraTicketDefinition = {
1915
1821
  properties: {
1916
1822
  projectKey: {
1917
1823
  type: "string",
1918
- description: "The key for the project you want to add it to",
1824
+ description: "The key for the project you want to add the ticket to.",
1919
1825
  tags: ["recommend-predefined"],
1920
1826
  },
1921
1827
  assignee: {
@@ -1998,16 +1904,16 @@ export const jiraOrgCommentJiraTicketDefinition = {
1998
1904
  properties: {
1999
1905
  projectKey: {
2000
1906
  type: "string",
2001
- description: "The key for the project",
1907
+ description: "The key for the project to which the ticket you want to comment on belongs.",
2002
1908
  tags: ["recommend-predefined"],
2003
1909
  },
2004
1910
  issueId: {
2005
1911
  type: "string",
2006
- 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.",
2007
1913
  },
2008
1914
  comment: {
2009
1915
  type: "string",
2010
- description: "The text to be commented on the ticket",
1916
+ description: "The text to be commented on the ticket.",
2011
1917
  },
2012
1918
  },
2013
1919
  },
@@ -2042,7 +1948,7 @@ export const jiraOrgCreateJiraTicketDefinition = {
2042
1948
  properties: {
2043
1949
  projectKey: {
2044
1950
  type: "string",
2045
- description: "The key for the project you want to add it to",
1951
+ description: "The key for the project you want to add the ticket to.",
2046
1952
  tags: ["recommend-predefined"],
2047
1953
  },
2048
1954
  summary: {
@@ -2097,100 +2003,6 @@ export const jiraOrgCreateJiraTicketDefinition = {
2097
2003
  name: "createJiraTicket",
2098
2004
  provider: "jiraOrg",
2099
2005
  };
2100
- export const jiraOrgGetServiceDesksDefinition = {
2101
- description: "Get the service desks for a Jira instance",
2102
- scopes: [],
2103
- tags: [],
2104
- parameters: {
2105
- type: "object",
2106
- required: [],
2107
- properties: {},
2108
- },
2109
- output: {
2110
- type: "object",
2111
- required: ["success"],
2112
- properties: {
2113
- success: {
2114
- type: "boolean",
2115
- description: "Whether the service desks were retrieved successfully",
2116
- },
2117
- error: {
2118
- type: "string",
2119
- description: "The error that occurred if the service desks were not retrieved successfully",
2120
- },
2121
- serviceDesks: {
2122
- type: "array",
2123
- description: "The list of service desks",
2124
- items: {
2125
- type: "object",
2126
- description: "A service desk",
2127
- properties: {
2128
- id: {
2129
- type: "string",
2130
- description: "The ID of the service desk",
2131
- },
2132
- projectId: {
2133
- type: "string",
2134
- description: "The ID of the project",
2135
- },
2136
- projectKey: {
2137
- type: "string",
2138
- description: "The key of the project",
2139
- },
2140
- projectName: {
2141
- type: "string",
2142
- description: "The name of the service desk",
2143
- },
2144
- requestTypes: {
2145
- type: "array",
2146
- description: "The list of request types",
2147
- items: {
2148
- type: "object",
2149
- description: "A request type",
2150
- properties: {
2151
- id: {
2152
- type: "string",
2153
- description: "The ID of the request type",
2154
- },
2155
- name: {
2156
- type: "string",
2157
- description: "The name of the request type",
2158
- },
2159
- description: {
2160
- type: "string",
2161
- description: "The description of the request type",
2162
- },
2163
- issueTypeId: {
2164
- type: "string",
2165
- description: "The ID of the issue type",
2166
- },
2167
- portalId: {
2168
- type: "string",
2169
- description: "The ID of the customer portal",
2170
- },
2171
- helpText: {
2172
- type: "string",
2173
- description: "The help text for the request type",
2174
- },
2175
- serviceDeskId: {
2176
- type: "string",
2177
- description: "The ID of the service desk",
2178
- },
2179
- canCreateRequest: {
2180
- type: "boolean",
2181
- description: "Whether the request type can be created",
2182
- },
2183
- },
2184
- },
2185
- },
2186
- },
2187
- },
2188
- },
2189
- },
2190
- },
2191
- name: "getServiceDesks",
2192
- provider: "jiraOrg",
2193
- };
2194
2006
  export const jiraOrgCreateServiceDeskRequestDefinition = {
2195
2007
  description: "Create a jira service desk request with specified content",
2196
2008
  scopes: [],
@@ -2260,7 +2072,7 @@ export const jiraOrgGetJiraTicketDetailsDefinition = {
2260
2072
  properties: {
2261
2073
  projectKey: {
2262
2074
  type: "string",
2263
- description: "The key for the project",
2075
+ description: "The key for the project the ticket belongs to.",
2264
2076
  tags: ["recommend-predefined"],
2265
2077
  },
2266
2078
  issueId: {
@@ -2318,7 +2130,7 @@ export const jiraOrgGetJiraTicketHistoryDefinition = {
2318
2130
  properties: {
2319
2131
  projectKey: {
2320
2132
  type: "string",
2321
- description: "The key for the project",
2133
+ description: "The key for the project the ticket belongs to.",
2322
2134
  tags: ["recommend-predefined"],
2323
2135
  },
2324
2136
  issueId: {
@@ -2358,7 +2170,7 @@ export const jiraOrgUpdateJiraTicketDetailsDefinition = {
2358
2170
  properties: {
2359
2171
  projectKey: {
2360
2172
  type: "string",
2361
- description: "The key for the project you want to add it to",
2173
+ description: "The key for the project the ticket belongs to.",
2362
2174
  tags: ["recommend-predefined"],
2363
2175
  },
2364
2176
  issueId: {
@@ -2419,7 +2231,7 @@ export const jiraOrgUpdateJiraTicketStatusDefinition = {
2419
2231
  properties: {
2420
2232
  projectKey: {
2421
2233
  type: "string",
2422
- description: "The key for the project you want to add it to",
2234
+ description: "The key for the project you want to add the ticket to.",
2423
2235
  tags: ["recommend-predefined"],
2424
2236
  },
2425
2237
  issueId: {
@@ -2662,7 +2474,7 @@ export const jiraDataCenterAssignJiraTicketDefinition = {
2662
2474
  properties: {
2663
2475
  projectKey: {
2664
2476
  type: "string",
2665
- description: "The key for the project you want to add it to",
2477
+ description: "The key for the project you want to add the ticket to.",
2666
2478
  tags: ["recommend-predefined"],
2667
2479
  },
2668
2480
  assignee: {
@@ -2745,16 +2557,16 @@ export const jiraDataCenterCommentJiraTicketDefinition = {
2745
2557
  properties: {
2746
2558
  projectKey: {
2747
2559
  type: "string",
2748
- description: "The key for the project",
2560
+ description: "The key for the project to which the ticket you want to comment on belongs.",
2749
2561
  tags: ["recommend-predefined"],
2750
2562
  },
2751
2563
  issueId: {
2752
2564
  type: "string",
2753
- 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.",
2754
2566
  },
2755
2567
  comment: {
2756
2568
  type: "string",
2757
- description: "The text to be commented on the ticket",
2569
+ description: "The text to be commented on the ticket.",
2758
2570
  },
2759
2571
  },
2760
2572
  },
@@ -2789,7 +2601,7 @@ export const jiraDataCenterCreateJiraTicketDefinition = {
2789
2601
  properties: {
2790
2602
  projectKey: {
2791
2603
  type: "string",
2792
- description: "The key for the project you want to add it to",
2604
+ description: "The key for the project you want to add the ticket to.",
2793
2605
  tags: ["recommend-predefined"],
2794
2606
  },
2795
2607
  summary: {
@@ -2844,100 +2656,6 @@ export const jiraDataCenterCreateJiraTicketDefinition = {
2844
2656
  name: "createJiraTicket",
2845
2657
  provider: "jiraDataCenter",
2846
2658
  };
2847
- export const jiraDataCenterGetServiceDesksDefinition = {
2848
- description: "Get the service desks for a Jira instance",
2849
- scopes: [],
2850
- tags: [],
2851
- parameters: {
2852
- type: "object",
2853
- required: [],
2854
- properties: {},
2855
- },
2856
- output: {
2857
- type: "object",
2858
- required: ["success"],
2859
- properties: {
2860
- success: {
2861
- type: "boolean",
2862
- description: "Whether the service desks were retrieved successfully",
2863
- },
2864
- error: {
2865
- type: "string",
2866
- description: "The error that occurred if the service desks were not retrieved successfully",
2867
- },
2868
- serviceDesks: {
2869
- type: "array",
2870
- description: "The list of service desks",
2871
- items: {
2872
- type: "object",
2873
- description: "A service desk",
2874
- properties: {
2875
- id: {
2876
- type: "string",
2877
- description: "The ID of the service desk",
2878
- },
2879
- projectId: {
2880
- type: "string",
2881
- description: "The ID of the project",
2882
- },
2883
- projectKey: {
2884
- type: "string",
2885
- description: "The key of the project",
2886
- },
2887
- projectName: {
2888
- type: "string",
2889
- description: "The name of the service desk",
2890
- },
2891
- requestTypes: {
2892
- type: "array",
2893
- description: "The list of request types",
2894
- items: {
2895
- type: "object",
2896
- description: "A request type",
2897
- properties: {
2898
- id: {
2899
- type: "string",
2900
- description: "The ID of the request type",
2901
- },
2902
- name: {
2903
- type: "string",
2904
- description: "The name of the request type",
2905
- },
2906
- description: {
2907
- type: "string",
2908
- description: "The description of the request type",
2909
- },
2910
- issueTypeId: {
2911
- type: "string",
2912
- description: "The ID of the issue type",
2913
- },
2914
- portalId: {
2915
- type: "string",
2916
- description: "The ID of the customer portal",
2917
- },
2918
- helpText: {
2919
- type: "string",
2920
- description: "The help text for the request type",
2921
- },
2922
- serviceDeskId: {
2923
- type: "string",
2924
- description: "The ID of the service desk",
2925
- },
2926
- canCreateRequest: {
2927
- type: "boolean",
2928
- description: "Whether the request type can be created",
2929
- },
2930
- },
2931
- },
2932
- },
2933
- },
2934
- },
2935
- },
2936
- },
2937
- },
2938
- name: "getServiceDesks",
2939
- provider: "jiraDataCenter",
2940
- };
2941
2659
  export const jiraDataCenterCreateServiceDeskRequestDefinition = {
2942
2660
  description: "Create a jira service desk request with specified content",
2943
2661
  scopes: [],
@@ -3007,7 +2725,7 @@ export const jiraDataCenterGetJiraTicketDetailsDefinition = {
3007
2725
  properties: {
3008
2726
  projectKey: {
3009
2727
  type: "string",
3010
- description: "The key for the project",
2728
+ description: "The key for the project the ticket belongs to.",
3011
2729
  tags: ["recommend-predefined"],
3012
2730
  },
3013
2731
  issueId: {
@@ -3065,7 +2783,7 @@ export const jiraDataCenterGetJiraTicketHistoryDefinition = {
3065
2783
  properties: {
3066
2784
  projectKey: {
3067
2785
  type: "string",
3068
- description: "The key for the project",
2786
+ description: "The key for the project the ticket belongs to.",
3069
2787
  tags: ["recommend-predefined"],
3070
2788
  },
3071
2789
  issueId: {
@@ -3105,7 +2823,7 @@ export const jiraDataCenterUpdateJiraTicketDetailsDefinition = {
3105
2823
  properties: {
3106
2824
  projectKey: {
3107
2825
  type: "string",
3108
- description: "The key for the project you want to add it to",
2826
+ description: "The key for the project the ticket belongs to.",
3109
2827
  tags: ["recommend-predefined"],
3110
2828
  },
3111
2829
  issueId: {
@@ -3166,7 +2884,7 @@ export const jiraDataCenterUpdateJiraTicketStatusDefinition = {
3166
2884
  properties: {
3167
2885
  projectKey: {
3168
2886
  type: "string",
3169
- description: "The key for the project you want to add it to",
2887
+ description: "The key for the project you want to add the ticket to.",
3170
2888
  tags: ["recommend-predefined"],
3171
2889
  },
3172
2890
  issueId: {
@@ -3400,7 +3118,7 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
3400
3118
  provider: "jiraDataCenter",
3401
3119
  };
3402
3120
  export const googlemapsValidateAddressDefinition = {
3403
- description: "Validate a Google Maps address",
3121
+ description: "Validate an address using the Google Maps API",
3404
3122
  scopes: [],
3405
3123
  tags: [],
3406
3124
  parameters: {
@@ -3663,7 +3381,7 @@ export const bingGetTopNSearchResultUrlsDefinition = {
3663
3381
  properties: {
3664
3382
  results: {
3665
3383
  type: "array",
3666
- description: "The top five search result objects",
3384
+ description: "The top search result objects",
3667
3385
  items: {
3668
3386
  type: "object",
3669
3387
  properties: {
@@ -5789,11 +5507,11 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
5789
5507
  },
5790
5508
  start: {
5791
5509
  type: "string",
5792
- description: "The start time of the meeting",
5510
+ description: "The start time of the meeting (in datetime format)",
5793
5511
  },
5794
5512
  end: {
5795
5513
  type: "string",
5796
- description: "The end time of the meeting",
5514
+ description: "The end time of the meeting (in datetime format)",
5797
5515
  },
5798
5516
  description: {
5799
5517
  type: "string",
@@ -5804,7 +5522,7 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
5804
5522
  description: "The attendees of the meeting",
5805
5523
  items: {
5806
5524
  type: "string",
5807
- description: "The email of the attendee",
5525
+ description: "The emails of the attendees",
5808
5526
  },
5809
5527
  },
5810
5528
  useGoogleMeet: {
@@ -6070,6 +5788,39 @@ export const googleOauthListCalendarEventsDefinition = {
6070
5788
  type: "string",
6071
5789
  description: "Last modification time of the event (RFC3339 timestamp)",
6072
5790
  },
5791
+ attachments: {
5792
+ type: "array",
5793
+ description: "List of file attachments for the event",
5794
+ items: {
5795
+ type: "object",
5796
+ properties: {
5797
+ fileId: {
5798
+ type: "string",
5799
+ description: "ID of the attached file",
5800
+ },
5801
+ fileUrl: {
5802
+ type: "string",
5803
+ description: "URL link to the attachment",
5804
+ },
5805
+ title: {
5806
+ type: "string",
5807
+ description: "Attachment title",
5808
+ },
5809
+ mimeType: {
5810
+ type: "string",
5811
+ description: "Internet media type (MIME type) of the attachment",
5812
+ },
5813
+ },
5814
+ },
5815
+ },
5816
+ eventType: {
5817
+ type: "string",
5818
+ description: 'Differentiate "workingLocation" events, which simply specify a location, from real meetings',
5819
+ },
5820
+ transparency: {
5821
+ type: "string",
5822
+ description: 'Whether the event blocks time on the calendar and is considered a "busy" time. Populated when transparent.',
5823
+ },
6073
5824
  },
6074
5825
  },
6075
5826
  },
@@ -6822,6 +6573,64 @@ export const googleOauthUpdateSpreadsheetDefinition = {
6822
6573
  name: "updateSpreadsheet",
6823
6574
  provider: "googleOauth",
6824
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
+ };
6825
6634
  export const googleOauthCreatePresentationDefinition = {
6826
6635
  description: "Create a Google Presentation",
6827
6636
  scopes: [],
@@ -9638,11 +9447,11 @@ export const salesforceUpdateRecordDefinition = {
9638
9447
  tags: [],
9639
9448
  parameters: {
9640
9449
  type: "object",
9641
- required: ["objectType", "recordId", "fieldsToUpdate"],
9450
+ required: ["recordType", "recordId", "fieldsToUpdate"],
9642
9451
  properties: {
9643
- objectType: {
9452
+ recordType: {
9644
9453
  type: "string",
9645
- description: "The Salesforce object type to update (e.g., Lead, Account, Contact)",
9454
+ description: "The Salesforce record type to update (e.g., Lead, Account, Contact)",
9646
9455
  },
9647
9456
  recordId: {
9648
9457
  type: "string",
@@ -9680,11 +9489,11 @@ export const salesforceCreateRecordDefinition = {
9680
9489
  tags: [],
9681
9490
  parameters: {
9682
9491
  type: "object",
9683
- required: ["objectType"],
9492
+ required: ["recordType"],
9684
9493
  properties: {
9685
- objectType: {
9494
+ recordType: {
9686
9495
  type: "string",
9687
- description: "The Salesforce object type to create (e.g., Lead, Account, Contact)",
9496
+ description: "The Salesforce record type to create (e.g., Lead, Account, Contact)",
9688
9497
  },
9689
9498
  fieldsToCreate: {
9690
9499
  type: "object",
@@ -9838,6 +9647,7 @@ export const salesforceSearchAllSalesforceRecordsDefinition = {
9838
9647
  usesLightningKnowledge: {
9839
9648
  type: "boolean",
9840
9649
  description: "Whether your Salesforce instance uses lightning knowledge articles",
9650
+ tags: ["recommend-predefined"],
9841
9651
  },
9842
9652
  limit: {
9843
9653
  type: "number",
@@ -10068,11 +9878,11 @@ export const salesforceGetRecordDefinition = {
10068
9878
  tags: [],
10069
9879
  parameters: {
10070
9880
  type: "object",
10071
- required: ["objectType", "recordId"],
9881
+ required: ["recordType", "recordId"],
10072
9882
  properties: {
10073
- objectType: {
9883
+ recordType: {
10074
9884
  type: "string",
10075
- description: "The Salesforce object type to retrieve (e.g., Lead, Account, Contact)",
9885
+ description: "The Salesforce record type to retrieve (e.g., Lead, Account, Contact)",
10076
9886
  },
10077
9887
  recordId: {
10078
9888
  type: "string",
@@ -13214,7 +13024,7 @@ export const hubspotGetContactsDefinition = {
13214
13024
  properties: {
13215
13025
  query: {
13216
13026
  type: "string",
13217
- 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",
13218
13028
  },
13219
13029
  limit: {
13220
13030
  type: "number",
@@ -13278,7 +13088,7 @@ export const hubspotGetContactDetailsDefinition = {
13278
13088
  properties: {
13279
13089
  contactId: {
13280
13090
  type: "string",
13281
- 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}/.",
13282
13092
  },
13283
13093
  },
13284
13094
  },
@@ -13379,7 +13189,7 @@ export const hubspotGetCompaniesDefinition = {
13379
13189
  properties: {
13380
13190
  query: {
13381
13191
  type: "string",
13382
- 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",
13383
13193
  },
13384
13194
  limit: {
13385
13195
  type: "number",
@@ -13439,7 +13249,7 @@ export const hubspotGetCompanyDetailsDefinition = {
13439
13249
  properties: {
13440
13250
  companyId: {
13441
13251
  type: "string",
13442
- 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}/.",
13443
13253
  },
13444
13254
  },
13445
13255
  },
@@ -13596,7 +13406,7 @@ export const hubspotGetDealDetailsDefinition = {
13596
13406
  properties: {
13597
13407
  dealId: {
13598
13408
  type: "string",
13599
- 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}/.",
13600
13410
  },
13601
13411
  },
13602
13412
  },
@@ -13741,7 +13551,7 @@ export const hubspotGetTicketDetailsDefinition = {
13741
13551
  properties: {
13742
13552
  ticketId: {
13743
13553
  type: "string",
13744
- 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}/.",
13745
13555
  },
13746
13556
  },
13747
13557
  },