@credal/actions 0.2.220 → 0.2.222
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 +31 -1
- package/dist/actions/autogen/templates.d.ts +4 -0
- package/dist/actions/autogen/templates.js +274 -0
- package/dist/actions/autogen/types.d.ts +261 -5
- package/dist/actions/autogen/types.js +106 -0
- package/dist/actions/groups.d.ts +6 -0
- package/dist/actions/groups.js +248 -0
- package/dist/actions/providers/ashby/addCandidateToProject.d.ts +3 -0
- package/dist/actions/providers/ashby/addCandidateToProject.js +31 -0
- package/dist/actions/providers/ashby/createCandidate.d.ts +3 -0
- package/dist/actions/providers/ashby/createCandidate.js +38 -0
- package/dist/actions/providers/ashby/createNote.d.ts +3 -0
- package/dist/actions/providers/ashby/createNote.js +31 -0
- package/dist/actions/providers/ashby/getCandidateInfo.d.ts +3 -0
- package/dist/actions/providers/ashby/getCandidateInfo.js +33 -0
- package/dist/actions/providers/ashby/listCandidateNotes.d.ts +3 -0
- package/dist/actions/providers/ashby/listCandidateNotes.js +33 -0
- package/dist/actions/providers/ashby/listCandidates.d.ts +3 -0
- package/dist/actions/providers/ashby/listCandidates.js +30 -0
- package/dist/actions/providers/ashby/searchCandidates.d.ts +3 -0
- package/dist/actions/providers/ashby/searchCandidates.js +34 -0
- package/dist/actions/providers/ashby/updateCandidate.d.ts +3 -0
- package/dist/actions/providers/ashby/updateCandidate.js +56 -0
- package/dist/actions/providers/credal/callCopilot.d.ts +3 -0
- package/dist/actions/providers/credal/callCopilot.js +36 -0
- package/dist/actions/providers/gong/getGongTranscripts.d.ts +3 -0
- package/dist/actions/providers/gong/getGongTranscripts.js +315 -0
- package/dist/actions/providers/google-oauth/editAGoogleCalendarEvent.js +3 -1
- package/dist/actions/providers/google-oauth/scheduleCalendarMeeting.js +16 -5
- package/dist/actions/providers/google-oauth/updateCalendarEvent.js +2 -0
- package/dist/actions/providers/jamf/getJamfComputerInventory.d.ts +3 -0
- package/dist/actions/providers/jamf/getJamfComputerInventory.js +37 -0
- package/dist/actions/providers/jamf/getJamfFileVaultRecoveryKey.d.ts +3 -0
- package/dist/actions/providers/jamf/getJamfFileVaultRecoveryKey.js +39 -0
- package/dist/actions/providers/jamf/getJamfUserComputerId.d.ts +3 -0
- package/dist/actions/providers/jamf/getJamfUserComputerId.js +45 -0
- package/dist/actions/providers/jamf/lockJamfComputerById.d.ts +3 -0
- package/dist/actions/providers/jamf/lockJamfComputerById.js +39 -0
- package/dist/actions/providers/jira/getJiraDCIssuesByQuery.js +3 -1
- package/dist/actions/providers/jira/getJiraIssuesByQuery.js +3 -1
- package/dist/actions/providers/kandji/getFVRecoveryKeyForDevice.d.ts +3 -0
- package/dist/actions/providers/kandji/getFVRecoveryKeyForDevice.js +85 -0
- package/dist/actions/providers/math/index.d.ts +1 -0
- package/dist/actions/providers/math/index.js +37 -0
- package/dist/actions/providers/okta/addUserToGroup.d.ts +3 -0
- package/dist/actions/providers/okta/addUserToGroup.js +56 -0
- package/dist/actions/providers/okta/getOktaGroup.d.ts +3 -0
- package/dist/actions/providers/okta/getOktaGroup.js +73 -0
- package/dist/actions/providers/okta/getOktaUser.d.ts +3 -0
- package/dist/actions/providers/okta/getOktaUser.js +40 -0
- package/dist/actions/providers/okta/listMFA.d.ts +3 -0
- package/dist/actions/providers/okta/listMFA.js +52 -0
- package/dist/actions/providers/okta/listOktaGroupMembers.d.ts +3 -0
- package/dist/actions/providers/okta/listOktaGroupMembers.js +99 -0
- package/dist/actions/providers/okta/listOktaGroups.d.ts +3 -0
- package/dist/actions/providers/okta/listOktaGroups.js +92 -0
- package/dist/actions/providers/okta/listOktaUserGroups.d.ts +3 -0
- package/dist/actions/providers/okta/listOktaUserGroups.js +83 -0
- package/dist/actions/providers/okta/listOktaUsers.d.ts +3 -0
- package/dist/actions/providers/okta/listOktaUsers.js +100 -0
- package/dist/actions/providers/okta/removeUserFromGroup.d.ts +3 -0
- package/dist/actions/providers/okta/removeUserFromGroup.js +56 -0
- package/dist/actions/providers/okta/resetMFA.d.ts +3 -0
- package/dist/actions/providers/okta/resetMFA.js +62 -0
- package/dist/actions/providers/okta/resetPassword.d.ts +3 -0
- package/dist/actions/providers/okta/resetPassword.js +57 -0
- package/dist/actions/providers/okta/triggerOktaWorkflow.d.ts +3 -0
- package/dist/actions/providers/okta/triggerOktaWorkflow.js +44 -0
- package/dist/actions/providers/salesforce/fetchSalesforceSchema.d.ts +3 -0
- package/dist/actions/providers/salesforce/fetchSalesforceSchema.js +40 -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/archiveChannel.d.ts +3 -0
- package/dist/actions/providers/slack/archiveChannel.js +35 -0
- 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/smartsheet/addRowToSheet.d.ts +3 -0
- package/dist/actions/providers/smartsheet/addRowToSheet.js +34 -0
- package/dist/actions/providers/smartsheet/getSheetRows.d.ts +3 -0
- package/dist/actions/providers/smartsheet/getSheetRows.js +48 -0
- package/dist/actions/providers/smartsheet/listSheets.d.ts +3 -0
- package/dist/actions/providers/smartsheet/listSheets.js +26 -0
- package/dist/actions/providers/smartsheet/updateRow.d.ts +3 -0
- package/dist/actions/providers/smartsheet/updateRow.js +34 -0
- package/dist/actions/providers/smartsheet/utils.d.ts +33 -0
- package/dist/actions/providers/smartsheet/utils.js +45 -0
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { genericFillTemplateParamsSchema, genericFillTemplateOutputSchema, confluenceOverwritePageParamsSchema, confluenceOverwritePageOutputSchema, googlemapsValidateAddressOutputSchema, googlemapsValidateAddressParamsSchema, googleOauthCreateNewGoogleDocParamsSchema, googleOauthCreateNewGoogleDocOutputSchema, mathAddOutputSchema, mathAddParamsSchema, mongoInsertMongoDocOutputSchema, mongoInsertMongoDocParamsSchema, slackSendMessageOutputSchema, slackSendMessageParamsSchema, slackGetChannelMessagesOutputSchema, slackGetChannelMessagesParamsSchema, slackCreateChannelParamsSchema, slackCreateChannelOutputSchema, snowflakeGetRowByFieldValueOutputSchema, snowflakeGetRowByFieldValueParamsSchema, zendeskCreateZendeskTicketOutputSchema, zendeskCreateZendeskTicketParamsSchema, zendeskGetTicketDetailsOutputSchema, zendeskGetTicketDetailsParamsSchema, zendeskUpdateTicketStatusOutputSchema, zendeskUpdateTicketStatusParamsSchema, zendeskAddCommentToTicketOutputSchema, zendeskAddCommentToTicketParamsSchema, zendeskAssignTicketOutputSchema, zendeskAssignTicketParamsSchema, zendeskListZendeskTicketsOutputSchema, zendeskListZendeskTicketsParamsSchema, zendeskSearchZendeskByQueryOutputSchema, zendeskSearchZendeskByQueryParamsSchema, jiraAssignJiraTicketParamsSchema, jiraAssignJiraTicketOutputSchema, jiraCommentJiraTicketParamsSchema, jiraCommentJiraTicketOutputSchema, jiraCommentJiraTicketWithMentionsParamsSchema, jiraCommentJiraTicketWithMentionsOutputSchema, jiraCreateJiraTicketParamsSchema, jiraCreateJiraTicketOutputSchema, jiraGetJiraTicketDetailsParamsSchema, jiraGetJiraTicketDetailsOutputSchema, jiraGetJiraTicketHistoryParamsSchema, jiraGetJiraTicketHistoryOutputSchema, jiraMoveJiraTicketToProjectParamsSchema, jiraMoveJiraTicketToProjectOutputSchema, jiraUpdateJiraTicketDetailsParamsSchema, jiraUpdateJiraTicketDetailsOutputSchema, jiraUpdateJiraTicketStatusParamsSchema, jiraUpdateJiraTicketStatusOutputSchema, jiraCreateServiceDeskRequestParamsSchema, jiraCreateServiceDeskRequestOutputSchema, jiraLinkJiraIssuesParamsSchema, jiraLinkJiraIssuesOutputSchema, jiraLinkAndAssignJiraIssuesParamsSchema, jiraLinkAndAssignJiraIssuesOutputSchema, openstreetmapGetLatitudeLongitudeFromLocationParamsSchema, openstreetmapGetLatitudeLongitudeFromLocationOutputSchema, nwsGetForecastForLocationParamsSchema, nwsGetForecastForLocationOutputSchema, googlemapsNearbysearchRestaurantsOutputSchema, googlemapsNearbysearchRestaurantsParamsSchema, firecrawlScrapeUrlOutputSchema, firecrawlScrapeUrlParamsSchema, resendSendEmailOutputSchema, resendSendEmailHtmlParamsSchema, resendSendEmailHtmlOutputSchema, firecrawlScrapeTweetDataWithNitterParamsSchema, firecrawlScrapeTweetDataWithNitterOutputSchema, resendSendEmailParamsSchema, linkedinCreateShareLinkedinPostUrlParamsSchema, linkedinCreateShareLinkedinPostUrlOutputSchema, xCreateShareXPostUrlParamsSchema, xCreateShareXPostUrlOutputSchema, finnhubSymbolLookupParamsSchema, finnhubSymbolLookupOutputSchema, finnhubGetBasicFinancialsParamsSchema, finnhubGetBasicFinancialsOutputSchema, confluenceFetchPageContentParamsSchema, confluenceFetchPageContentOutputSchema, confluenceDataCenterOverwritePageParamsSchema, confluenceDataCenterOverwritePageOutputSchema, confluenceDataCenterCreatePageParamsSchema, confluenceDataCenterCreatePageOutputSchema, confluenceDataCenterFetchPageContentParamsSchema, confluenceDataCenterFetchPageContentOutputSchema, snowflakeRunSnowflakeQueryParamsSchema, snowflakeRunSnowflakeQueryOutputSchema, lookerEnableUserByEmailParamsSchema, lookerEnableUserByEmailOutputSchema, googleOauthUpdateDocParamsSchema, googleOauthUpdateDocOutputSchema, googleOauthAddTextToTopOfDocParamsSchema, googleOauthAddTextToTopOfDocOutputSchema, googleOauthCreateSpreadsheetParamsSchema, googleOauthCreateSpreadsheetOutputSchema, googleOauthGetSpreadsheetMetadataParamsSchema, googleOauthGetSpreadsheetMetadataOutputSchema, googleOauthUpdateSpreadsheetParamsSchema, googleOauthUpdateSpreadsheetOutputSchema, googleOauthAppendRowsToSpreadsheetParamsSchema, googleOauthAppendRowsToSpreadsheetOutputSchema, googleOauthDeleteRowFromSpreadsheetParamsSchema, googleOauthDeleteRowFromSpreadsheetOutputSchema, googleOauthScheduleCalendarMeetingParamsSchema, googleOauthScheduleCalendarMeetingOutputSchema, googleOauthListCalendarsParamsSchema, googleOauthListCalendarsOutputSchema, googleOauthListCalendarEventsParamsSchema, googleOauthListCalendarEventsOutputSchema, googleOauthUpdateCalendarEventParamsSchema, googleOauthUpdateCalendarEventOutputSchema, googleOauthDeleteCalendarEventParamsSchema, googleOauthDeleteCalendarEventOutputSchema, googleOauthEditAGoogleCalendarEventParamsSchema, googleOauthEditAGoogleCalendarEventOutputSchema, googleOauthCreatePresentationParamsSchema, googleOauthCreatePresentationOutputSchema, googleOauthUpdatePresentationParamsSchema, googleOauthUpdatePresentationOutputSchema, googleOauthGetPresentationParamsSchema, googleOauthGetPresentationOutputSchema, googleOauthSearchDriveByKeywordsParamsSchema, googleOauthSearchDriveByKeywordsOutputSchema, googleOauthListGroupsOutputSchema, googleOauthListGroupsParamsSchema, googleOauthGetGroupOutputSchema, googleOauthGetGroupParamsSchema, googleOauthListGroupMembersOutputSchema, googleOauthListGroupMembersParamsSchema, googleOauthHasGroupMemberOutputSchema, googleOauthHasGroupMemberParamsSchema, googleOauthAddGroupMemberOutputSchema, googleOauthAddGroupMemberParamsSchema, googleOauthDeleteGroupMemberOutputSchema, googleOauthDeleteGroupMemberParamsSchema, salesforceUpdateRecordParamsSchema, salesforceUpdateRecordOutputSchema, salesforceCreateCaseParamsSchema, salesforceCreateCaseOutputSchema, salesforceGenerateSalesReportParamsSchema, salesforceGenerateSalesReportOutputSchema, salesforceGetRecordParamsSchema, salesforceGetRecordOutputSchema, microsoftMessageTeamsChatParamsSchema, microsoftMessageTeamsChatOutputSchema, microsoftMessageTeamsChannelParamsSchema, microsoftMessageTeamsChannelOutputSchema, salesforceGetSalesforceRecordsByQueryParamsSchema, salesforceGetSalesforceRecordsByQueryOutputSchema, asanaCommentTaskParamsSchema, asanaCommentTaskOutputSchema, asanaCreateTaskParamsSchema, asanaCreateTaskOutputSchema, asanaUpdateTaskParamsSchema, asanaUpdateTaskOutputSchema, githubCreateOrUpdateFileParamsSchema, githubCreateOrUpdateFileOutputSchema, githubCreateBranchParamsSchema, githubCreateBranchOutputSchema, githubCreatePullRequestParamsSchema, githubCreatePullRequestOutputSchema, microsoftUpdateSpreadsheetParamsSchema, microsoftUpdateSpreadsheetOutputSchema, microsoftUpdateDocumentParamsSchema, microsoftUpdateDocumentOutputSchema, microsoftGetDocumentParamsSchema, microsoftGetDocumentOutputSchema, githubListPullRequestsParamsSchema, githubListPullRequestsOutputSchema, jiraGetJiraIssuesByQueryOutputSchema, jiraGetJiraIssuesByQueryParamsSchema, jiraDataCenterGetJiraIssuesByQueryOutputSchema, jiraDataCenterGetJiraIssuesByQueryParamsSchema, salesforceCreateRecordParamsSchema, salesforceCreateRecordOutputSchema, firecrawlDeepResearchParamsSchema, firecrawlDeepResearchOutputSchema, bingGetTopNSearchResultUrlsParamsSchema, bingGetTopNSearchResultUrlsOutputSchema, microsoftCreateDocumentParamsSchema, microsoftCreateDocumentOutputSchema, asanaListAsanaTasksByProjectParamsSchema, asanaListAsanaTasksByProjectOutputSchema, asanaSearchTasksParamsSchema, asanaSearchTasksOutputSchema, asanaGetTasksDetailsParamsSchema, asanaGetTasksDetailsOutputSchema, notionSearchByTitleParamsSchema, notionSearchByTitleOutputSchema, googlemailSearchGmailMessagesOutputSchema, googlemailSearchGmailMessagesParamsSchema, googlemailListGmailThreadsOutputSchema, googlemailListGmailThreadsParamsSchema, gitlabSearchGroupOutputSchema, gitlabSearchGroupParamsSchema, githubSearchOrganizationOutputSchema, githubSearchOrganizationParamsSchema, salesforceSearchSalesforceRecordsParamsSchema, salesforceSearchSalesforceRecordsOutputSchema, googleOauthGetDriveFileContentByIdOutputSchema, googleOauthGetDriveFileContentByIdParamsSchema, googleOauthSearchDriveByQueryOutputSchema, googleOauthSearchDriveByQueryParamsSchema, googleOauthSearchDriveByQueryAndGetFileContentParamsSchema, googleOauthSearchDriveByQueryAndGetFileContentOutputSchema, googleOauthQueryGoogleBigQueryParamsSchema, googleOauthQueryGoogleBigQueryOutputSchema, githubGetFileContentParamsSchema, githubGetFileContentOutputSchema, githubListDirectoryOutputSchema, githubListDirectoryParamsSchema, githubGetBranchParamsSchema, githubGetBranchOutputSchema, githubListCommitsParamsSchema, githubListCommitsOutputSchema, githubGetPullRequestDetailsParamsSchema, githubGetPullRequestDetailsOutputSchema, linearGetIssuesParamsSchema, linearGetIssuesOutputSchema, linearGetIssueDetailsParamsSchema, linearGetIssueDetailsOutputSchema, linearGetProjectDetailsParamsSchema, linearGetProjectDetailsOutputSchema, linearGetTeamDetailsParamsSchema, linearGetTeamDetailsOutputSchema, linearGetProjectsParamsSchema, linearGetProjectsOutputSchema, linearGetTeamsParamsSchema, linearGetTeamsOutputSchema, linearCreateIssueParamsSchema, linearCreateIssueOutputSchema, hubspotGetContactsParamsSchema, hubspotGetContactsOutputSchema, hubspotGetContactDetailsParamsSchema, hubspotGetContactDetailsOutputSchema, hubspotGetCompaniesParamsSchema, hubspotGetCompaniesOutputSchema, hubspotGetCompanyDetailsParamsSchema, hubspotGetCompanyDetailsOutputSchema, hubspotGetDealsParamsSchema, hubspotGetDealsOutputSchema, hubspotGetDealDetailsParamsSchema, hubspotGetDealDetailsOutputSchema, hubspotGetTicketsParamsSchema, hubspotGetTicketsOutputSchema, hubspotGetTicketDetailsParamsSchema, hubspotGetTicketDetailsOutputSchema, gitlabGetFileContentParamsSchema, gitlabGetFileContentOutputSchema, gitlabGetMergeRequestParamsSchema, gitlabGetMergeRequestOutputSchema, jiraPublicCommentOnServiceDeskRequestParamsSchema, jiraPublicCommentOnServiceDeskRequestOutputSchema, googlemailSendGmailParamsSchema, googlemailSendGmailOutputSchema, googlemailReplyToGmailParamsSchema, googlemailReplyToGmailOutputSchema, gitlabListDirectoryParamsSchema, gitlabListDirectoryOutputSchema, firecrawlSearchAndScrapeOutputSchema, firecrawlSearchAndScrapeParamsSchema, firecrawlGetTopNSearchResultUrlsParamsSchema, firecrawlGetTopNSearchResultUrlsOutputSchema, googleOauthSearchDriveByKeywordsAndGetFileContentParamsSchema, googleOauthSearchDriveByKeywordsAndGetFileContentOutputSchema, perplexityPerplexityDeepResearchParamsSchema, perplexityPerplexityDeepResearchOutputSchema, slackUserSearchSlackParamsSchema, slackUserSearchSlackOutputSchema, slackUserSearchSlackRTSParamsSchema, slackUserSearchSlackRTSOutputSchema, oktaOrgGetOktaUserByNameParamsSchema, oktaOrgGetOktaUserByNameOutputSchema, googleSearchCustomSearchParamsSchema, googleSearchCustomSearchOutputSchema, salesforceSearchAllSalesforceRecordsParamsSchema, salesforceSearchAllSalesforceRecordsOutputSchema, salesforceListReportsParamsSchema, salesforceListReportsOutputSchema, salesforceExecuteReportParamsSchema, salesforceExecuteReportOutputSchema, slackSendDmFromBotParamsSchema, slackSendDmFromBotOutputSchema, slackGetChannelMembersParamsSchema, slackGetChannelMembersOutputSchema, salesforceGetReportMetadataParamsSchema, salesforceGetReportMetadataOutputSchema, googleOauthUpdateRowsInSpreadsheetParamsSchema, googleOauthUpdateRowsInSpreadsheetOutputSchema, } from "./autogen/types.js";
|
|
1
|
+
import { genericFillTemplateParamsSchema, genericFillTemplateOutputSchema, confluenceOverwritePageParamsSchema, confluenceOverwritePageOutputSchema, googlemapsValidateAddressOutputSchema, googlemapsValidateAddressParamsSchema, googleOauthCreateNewGoogleDocParamsSchema, googleOauthCreateNewGoogleDocOutputSchema, mathAddOutputSchema, mathAddParamsSchema, mongoInsertMongoDocOutputSchema, mongoInsertMongoDocParamsSchema, slackSendMessageOutputSchema, slackSendMessageParamsSchema, slackGetChannelMessagesOutputSchema, slackGetChannelMessagesParamsSchema, slackCreateChannelParamsSchema, slackCreateChannelOutputSchema, snowflakeGetRowByFieldValueOutputSchema, snowflakeGetRowByFieldValueParamsSchema, zendeskCreateZendeskTicketOutputSchema, zendeskCreateZendeskTicketParamsSchema, zendeskGetTicketDetailsOutputSchema, zendeskGetTicketDetailsParamsSchema, zendeskUpdateTicketStatusOutputSchema, zendeskUpdateTicketStatusParamsSchema, zendeskAddCommentToTicketOutputSchema, zendeskAddCommentToTicketParamsSchema, zendeskAssignTicketOutputSchema, zendeskAssignTicketParamsSchema, zendeskListZendeskTicketsOutputSchema, zendeskListZendeskTicketsParamsSchema, zendeskSearchZendeskByQueryOutputSchema, zendeskSearchZendeskByQueryParamsSchema, jiraAssignJiraTicketParamsSchema, jiraAssignJiraTicketOutputSchema, jiraCommentJiraTicketParamsSchema, jiraCommentJiraTicketOutputSchema, jiraCommentJiraTicketWithMentionsParamsSchema, jiraCommentJiraTicketWithMentionsOutputSchema, jiraCreateJiraTicketParamsSchema, jiraCreateJiraTicketOutputSchema, jiraGetJiraTicketDetailsParamsSchema, jiraGetJiraTicketDetailsOutputSchema, jiraGetJiraTicketHistoryParamsSchema, jiraGetJiraTicketHistoryOutputSchema, jiraMoveJiraTicketToProjectParamsSchema, jiraMoveJiraTicketToProjectOutputSchema, jiraUpdateJiraTicketDetailsParamsSchema, jiraUpdateJiraTicketDetailsOutputSchema, jiraUpdateJiraTicketStatusParamsSchema, jiraUpdateJiraTicketStatusOutputSchema, jiraCreateServiceDeskRequestParamsSchema, jiraCreateServiceDeskRequestOutputSchema, jiraLinkJiraIssuesParamsSchema, jiraLinkJiraIssuesOutputSchema, jiraLinkAndAssignJiraIssuesParamsSchema, jiraLinkAndAssignJiraIssuesOutputSchema, openstreetmapGetLatitudeLongitudeFromLocationParamsSchema, openstreetmapGetLatitudeLongitudeFromLocationOutputSchema, nwsGetForecastForLocationParamsSchema, nwsGetForecastForLocationOutputSchema, googlemapsNearbysearchRestaurantsOutputSchema, googlemapsNearbysearchRestaurantsParamsSchema, firecrawlScrapeUrlOutputSchema, firecrawlScrapeUrlParamsSchema, resendSendEmailOutputSchema, resendSendEmailHtmlParamsSchema, resendSendEmailHtmlOutputSchema, firecrawlScrapeTweetDataWithNitterParamsSchema, firecrawlScrapeTweetDataWithNitterOutputSchema, resendSendEmailParamsSchema, linkedinCreateShareLinkedinPostUrlParamsSchema, linkedinCreateShareLinkedinPostUrlOutputSchema, xCreateShareXPostUrlParamsSchema, xCreateShareXPostUrlOutputSchema, finnhubSymbolLookupParamsSchema, finnhubSymbolLookupOutputSchema, finnhubGetBasicFinancialsParamsSchema, finnhubGetBasicFinancialsOutputSchema, confluenceFetchPageContentParamsSchema, confluenceFetchPageContentOutputSchema, confluenceDataCenterOverwritePageParamsSchema, confluenceDataCenterOverwritePageOutputSchema, confluenceDataCenterCreatePageParamsSchema, confluenceDataCenterCreatePageOutputSchema, confluenceDataCenterFetchPageContentParamsSchema, confluenceDataCenterFetchPageContentOutputSchema, snowflakeRunSnowflakeQueryParamsSchema, snowflakeRunSnowflakeQueryOutputSchema, lookerEnableUserByEmailParamsSchema, lookerEnableUserByEmailOutputSchema, googleOauthUpdateDocParamsSchema, googleOauthUpdateDocOutputSchema, googleOauthAddTextToTopOfDocParamsSchema, googleOauthAddTextToTopOfDocOutputSchema, googleOauthCreateSpreadsheetParamsSchema, googleOauthCreateSpreadsheetOutputSchema, googleOauthGetSpreadsheetMetadataParamsSchema, googleOauthGetSpreadsheetMetadataOutputSchema, googleOauthUpdateSpreadsheetParamsSchema, googleOauthUpdateSpreadsheetOutputSchema, googleOauthAppendRowsToSpreadsheetParamsSchema, googleOauthAppendRowsToSpreadsheetOutputSchema, googleOauthDeleteRowFromSpreadsheetParamsSchema, googleOauthDeleteRowFromSpreadsheetOutputSchema, googleOauthScheduleCalendarMeetingParamsSchema, googleOauthScheduleCalendarMeetingOutputSchema, googleOauthListCalendarsParamsSchema, googleOauthListCalendarsOutputSchema, googleOauthListCalendarEventsParamsSchema, googleOauthListCalendarEventsOutputSchema, googleOauthUpdateCalendarEventParamsSchema, googleOauthUpdateCalendarEventOutputSchema, googleOauthDeleteCalendarEventParamsSchema, googleOauthDeleteCalendarEventOutputSchema, googleOauthEditAGoogleCalendarEventParamsSchema, googleOauthEditAGoogleCalendarEventOutputSchema, googleOauthCreatePresentationParamsSchema, googleOauthCreatePresentationOutputSchema, googleOauthUpdatePresentationParamsSchema, googleOauthUpdatePresentationOutputSchema, googleOauthGetPresentationParamsSchema, googleOauthGetPresentationOutputSchema, googleOauthSearchDriveByKeywordsParamsSchema, googleOauthSearchDriveByKeywordsOutputSchema, googleOauthListGroupsOutputSchema, googleOauthListGroupsParamsSchema, googleOauthGetGroupOutputSchema, googleOauthGetGroupParamsSchema, googleOauthListGroupMembersOutputSchema, googleOauthListGroupMembersParamsSchema, googleOauthHasGroupMemberOutputSchema, googleOauthHasGroupMemberParamsSchema, googleOauthAddGroupMemberOutputSchema, googleOauthAddGroupMemberParamsSchema, googleOauthDeleteGroupMemberOutputSchema, googleOauthDeleteGroupMemberParamsSchema, salesforceUpdateRecordParamsSchema, salesforceUpdateRecordOutputSchema, salesforceCreateCaseParamsSchema, salesforceCreateCaseOutputSchema, salesforceGenerateSalesReportParamsSchema, salesforceGenerateSalesReportOutputSchema, salesforceGetRecordParamsSchema, salesforceGetRecordOutputSchema, microsoftMessageTeamsChatParamsSchema, microsoftMessageTeamsChatOutputSchema, microsoftMessageTeamsChannelParamsSchema, microsoftMessageTeamsChannelOutputSchema, salesforceGetSalesforceRecordsByQueryParamsSchema, salesforceGetSalesforceRecordsByQueryOutputSchema, asanaCommentTaskParamsSchema, asanaCommentTaskOutputSchema, asanaCreateTaskParamsSchema, asanaCreateTaskOutputSchema, asanaUpdateTaskParamsSchema, asanaUpdateTaskOutputSchema, githubCreateOrUpdateFileParamsSchema, githubCreateOrUpdateFileOutputSchema, githubCreateBranchParamsSchema, githubCreateBranchOutputSchema, githubCreatePullRequestParamsSchema, githubCreatePullRequestOutputSchema, microsoftUpdateSpreadsheetParamsSchema, microsoftUpdateSpreadsheetOutputSchema, microsoftUpdateDocumentParamsSchema, microsoftUpdateDocumentOutputSchema, microsoftGetDocumentParamsSchema, microsoftGetDocumentOutputSchema, githubListPullRequestsParamsSchema, githubListPullRequestsOutputSchema, jiraGetJiraIssuesByQueryOutputSchema, jiraGetJiraIssuesByQueryParamsSchema, jiraDataCenterGetJiraIssuesByQueryOutputSchema, jiraDataCenterGetJiraIssuesByQueryParamsSchema, salesforceCreateRecordParamsSchema, salesforceCreateRecordOutputSchema, firecrawlDeepResearchParamsSchema, firecrawlDeepResearchOutputSchema, bingGetTopNSearchResultUrlsParamsSchema, bingGetTopNSearchResultUrlsOutputSchema, microsoftCreateDocumentParamsSchema, microsoftCreateDocumentOutputSchema, asanaListAsanaTasksByProjectParamsSchema, asanaListAsanaTasksByProjectOutputSchema, asanaSearchTasksParamsSchema, asanaSearchTasksOutputSchema, asanaGetTasksDetailsParamsSchema, asanaGetTasksDetailsOutputSchema, notionSearchByTitleParamsSchema, notionSearchByTitleOutputSchema, googlemailSearchGmailMessagesOutputSchema, googlemailSearchGmailMessagesParamsSchema, googlemailListGmailThreadsOutputSchema, googlemailListGmailThreadsParamsSchema, gitlabSearchGroupOutputSchema, gitlabSearchGroupParamsSchema, githubSearchOrganizationOutputSchema, githubSearchOrganizationParamsSchema, salesforceSearchSalesforceRecordsParamsSchema, salesforceSearchSalesforceRecordsOutputSchema, googleOauthGetDriveFileContentByIdOutputSchema, googleOauthGetDriveFileContentByIdParamsSchema, googleOauthSearchDriveByQueryOutputSchema, googleOauthSearchDriveByQueryParamsSchema, googleOauthSearchDriveByQueryAndGetFileContentParamsSchema, googleOauthSearchDriveByQueryAndGetFileContentOutputSchema, googleOauthQueryGoogleBigQueryParamsSchema, googleOauthQueryGoogleBigQueryOutputSchema, githubGetFileContentParamsSchema, githubGetFileContentOutputSchema, githubListDirectoryOutputSchema, githubListDirectoryParamsSchema, githubGetBranchParamsSchema, githubGetBranchOutputSchema, githubListCommitsParamsSchema, githubListCommitsOutputSchema, githubGetPullRequestDetailsParamsSchema, githubGetPullRequestDetailsOutputSchema, linearGetIssuesParamsSchema, linearGetIssuesOutputSchema, linearGetIssueDetailsParamsSchema, linearGetIssueDetailsOutputSchema, linearGetProjectDetailsParamsSchema, linearGetProjectDetailsOutputSchema, linearGetTeamDetailsParamsSchema, linearGetTeamDetailsOutputSchema, linearGetProjectsParamsSchema, linearGetProjectsOutputSchema, linearGetTeamsParamsSchema, linearGetTeamsOutputSchema, linearCreateIssueParamsSchema, linearCreateIssueOutputSchema, hubspotGetContactsParamsSchema, hubspotGetContactsOutputSchema, hubspotGetContactDetailsParamsSchema, hubspotGetContactDetailsOutputSchema, hubspotGetCompaniesParamsSchema, hubspotGetCompaniesOutputSchema, hubspotGetCompanyDetailsParamsSchema, hubspotGetCompanyDetailsOutputSchema, hubspotGetDealsParamsSchema, hubspotGetDealsOutputSchema, hubspotGetDealDetailsParamsSchema, hubspotGetDealDetailsOutputSchema, hubspotGetTicketsParamsSchema, hubspotGetTicketsOutputSchema, hubspotGetTicketDetailsParamsSchema, hubspotGetTicketDetailsOutputSchema, gitlabGetFileContentParamsSchema, gitlabGetFileContentOutputSchema, gitlabGetMergeRequestParamsSchema, gitlabGetMergeRequestOutputSchema, jiraPublicCommentOnServiceDeskRequestParamsSchema, jiraPublicCommentOnServiceDeskRequestOutputSchema, googlemailSendGmailParamsSchema, googlemailSendGmailOutputSchema, googlemailReplyToGmailParamsSchema, googlemailReplyToGmailOutputSchema, gitlabListDirectoryParamsSchema, gitlabListDirectoryOutputSchema, firecrawlSearchAndScrapeOutputSchema, firecrawlSearchAndScrapeParamsSchema, firecrawlGetTopNSearchResultUrlsParamsSchema, firecrawlGetTopNSearchResultUrlsOutputSchema, googleOauthSearchDriveByKeywordsAndGetFileContentParamsSchema, googleOauthSearchDriveByKeywordsAndGetFileContentOutputSchema, perplexityPerplexityDeepResearchParamsSchema, perplexityPerplexityDeepResearchOutputSchema, slackUserSearchSlackParamsSchema, slackUserSearchSlackOutputSchema, slackUserSearchSlackRTSParamsSchema, slackUserSearchSlackRTSOutputSchema, oktaOrgGetOktaUserByNameParamsSchema, oktaOrgGetOktaUserByNameOutputSchema, googleSearchCustomSearchParamsSchema, googleSearchCustomSearchOutputSchema, salesforceSearchAllSalesforceRecordsParamsSchema, salesforceSearchAllSalesforceRecordsOutputSchema, salesforceListReportsParamsSchema, salesforceListReportsOutputSchema, salesforceExecuteReportParamsSchema, salesforceExecuteReportOutputSchema, slackSendDmFromBotParamsSchema, slackSendDmFromBotOutputSchema, slackGetChannelMembersParamsSchema, slackGetChannelMembersOutputSchema, salesforceGetReportMetadataParamsSchema, salesforceGetReportMetadataOutputSchema, googleOauthUpdateRowsInSpreadsheetParamsSchema, googleOauthUpdateRowsInSpreadsheetOutputSchema, smartsheetListSheetsParamsSchema, smartsheetListSheetsOutputSchema, smartsheetGetSheetRowsParamsSchema, smartsheetGetSheetRowsOutputSchema, smartsheetAddRowToSheetParamsSchema, smartsheetAddRowToSheetOutputSchema, smartsheetUpdateRowParamsSchema, smartsheetUpdateRowOutputSchema, } from "./autogen/types.js";
|
|
2
2
|
import validateAddress from "./providers/googlemaps/validateAddress.js";
|
|
3
3
|
import add from "./providers/math/add.js";
|
|
4
4
|
import fillTemplate from "./providers/generic/fillTemplate.js";
|
|
@@ -145,6 +145,10 @@ import searchAllSalesforceRecords from "./providers/salesforce/searchAllSalesfor
|
|
|
145
145
|
import listReports from "./providers/salesforce/listReports.js";
|
|
146
146
|
import getReportMetadata from "./providers/salesforce/getReportMetadata.js";
|
|
147
147
|
import executeReport from "./providers/salesforce/executeReport.js";
|
|
148
|
+
import smartsheetListSheets from "./providers/smartsheet/listSheets.js";
|
|
149
|
+
import smartsheetGetSheetRows from "./providers/smartsheet/getSheetRows.js";
|
|
150
|
+
import smartsheetAddRowToSheet from "./providers/smartsheet/addRowToSheet.js";
|
|
151
|
+
import smartsheetUpdateRow from "./providers/smartsheet/updateRow.js";
|
|
148
152
|
const jiraActions = {
|
|
149
153
|
getJiraIssuesByQuery: {
|
|
150
154
|
fn: getJiraIssuesByQuery,
|
|
@@ -1129,4 +1133,30 @@ export const ActionMapper = {
|
|
|
1129
1133
|
},
|
|
1130
1134
|
},
|
|
1131
1135
|
boxUser: {},
|
|
1136
|
+
smartsheet: {
|
|
1137
|
+
listSheets: {
|
|
1138
|
+
fn: smartsheetListSheets,
|
|
1139
|
+
paramsSchema: smartsheetListSheetsParamsSchema,
|
|
1140
|
+
outputSchema: smartsheetListSheetsOutputSchema,
|
|
1141
|
+
actionType: "read",
|
|
1142
|
+
},
|
|
1143
|
+
getSheetRows: {
|
|
1144
|
+
fn: smartsheetGetSheetRows,
|
|
1145
|
+
paramsSchema: smartsheetGetSheetRowsParamsSchema,
|
|
1146
|
+
outputSchema: smartsheetGetSheetRowsOutputSchema,
|
|
1147
|
+
actionType: "read",
|
|
1148
|
+
},
|
|
1149
|
+
addRowToSheet: {
|
|
1150
|
+
fn: smartsheetAddRowToSheet,
|
|
1151
|
+
paramsSchema: smartsheetAddRowToSheetParamsSchema,
|
|
1152
|
+
outputSchema: smartsheetAddRowToSheetOutputSchema,
|
|
1153
|
+
actionType: "write",
|
|
1154
|
+
},
|
|
1155
|
+
updateRow: {
|
|
1156
|
+
fn: smartsheetUpdateRow,
|
|
1157
|
+
paramsSchema: smartsheetUpdateRowParamsSchema,
|
|
1158
|
+
outputSchema: smartsheetUpdateRowOutputSchema,
|
|
1159
|
+
actionType: "write",
|
|
1160
|
+
},
|
|
1161
|
+
},
|
|
1132
1162
|
};
|
|
@@ -172,3 +172,7 @@ export declare const hubspotGetDealsDefinition: ActionTemplate;
|
|
|
172
172
|
export declare const hubspotGetDealDetailsDefinition: ActionTemplate;
|
|
173
173
|
export declare const hubspotGetTicketsDefinition: ActionTemplate;
|
|
174
174
|
export declare const hubspotGetTicketDetailsDefinition: ActionTemplate;
|
|
175
|
+
export declare const smartsheetListSheetsDefinition: ActionTemplate;
|
|
176
|
+
export declare const smartsheetGetSheetRowsDefinition: ActionTemplate;
|
|
177
|
+
export declare const smartsheetAddRowToSheetDefinition: ActionTemplate;
|
|
178
|
+
export declare const smartsheetUpdateRowDefinition: ActionTemplate;
|
|
@@ -2253,6 +2253,13 @@ export const jiraGetJiraIssuesByQueryDefinition = {
|
|
|
2253
2253
|
nullable: true,
|
|
2254
2254
|
format: "date",
|
|
2255
2255
|
},
|
|
2256
|
+
labels: {
|
|
2257
|
+
type: "array",
|
|
2258
|
+
description: "The labels assigned to the issue (empty array if none)",
|
|
2259
|
+
items: {
|
|
2260
|
+
type: "string",
|
|
2261
|
+
},
|
|
2262
|
+
},
|
|
2256
2263
|
},
|
|
2257
2264
|
},
|
|
2258
2265
|
},
|
|
@@ -3121,6 +3128,13 @@ export const jiraOrgGetJiraIssuesByQueryDefinition = {
|
|
|
3121
3128
|
nullable: true,
|
|
3122
3129
|
format: "date",
|
|
3123
3130
|
},
|
|
3131
|
+
labels: {
|
|
3132
|
+
type: "array",
|
|
3133
|
+
description: "The labels assigned to the issue (empty array if none)",
|
|
3134
|
+
items: {
|
|
3135
|
+
type: "string",
|
|
3136
|
+
},
|
|
3137
|
+
},
|
|
3124
3138
|
},
|
|
3125
3139
|
},
|
|
3126
3140
|
},
|
|
@@ -3977,6 +3991,13 @@ export const jiraDataCenterGetJiraIssuesByQueryDefinition = {
|
|
|
3977
3991
|
nullable: true,
|
|
3978
3992
|
format: "date",
|
|
3979
3993
|
},
|
|
3994
|
+
labels: {
|
|
3995
|
+
type: "array",
|
|
3996
|
+
description: "The labels assigned to the issue (empty array if none)",
|
|
3997
|
+
items: {
|
|
3998
|
+
type: "string",
|
|
3999
|
+
},
|
|
4000
|
+
},
|
|
3980
4001
|
},
|
|
3981
4002
|
},
|
|
3982
4003
|
},
|
|
@@ -6595,6 +6616,11 @@ export const googleOauthScheduleCalendarMeetingDefinition = {
|
|
|
6595
6616
|
type: "string",
|
|
6596
6617
|
description: "The time zone for the meeting, IANA Time Zone identifier (e.g., 'America/New_York')",
|
|
6597
6618
|
},
|
|
6619
|
+
transparency: {
|
|
6620
|
+
type: "string",
|
|
6621
|
+
enum: ["opaque", "transparent"],
|
|
6622
|
+
description: 'Opaque is the default value, and it blocks time on the calendar. This is equivalent to setting "Show me as" to "Busy" in the UI. Transparent means the event does not block time on the calendar. This is equivalent to setting "Show me as" to "Available" in the UI.',
|
|
6623
|
+
},
|
|
6598
6624
|
recurrence: {
|
|
6599
6625
|
type: "object",
|
|
6600
6626
|
description: "Recurring meeting configuration. If not provided, creates a one-time meeting.",
|
|
@@ -6973,6 +6999,11 @@ export const googleOauthUpdateCalendarEventDefinition = {
|
|
|
6973
6999
|
type: "string",
|
|
6974
7000
|
description: "The time zone for the event, IANA Time Zone identifier (e.g., 'America/New_York')",
|
|
6975
7001
|
},
|
|
7002
|
+
transparency: {
|
|
7003
|
+
type: "string",
|
|
7004
|
+
enum: ["opaque", "transparent"],
|
|
7005
|
+
description: 'Opaque is the default value, and it blocks time on the calendar. This is equivalent to setting "Show me as" to "Busy" in the UI. Transparent means the event does not block time on the calendar.',
|
|
7006
|
+
},
|
|
6976
7007
|
},
|
|
6977
7008
|
},
|
|
6978
7009
|
},
|
|
@@ -7070,6 +7101,11 @@ export const googleOauthEditAGoogleCalendarEventDefinition = {
|
|
|
7070
7101
|
type: "string",
|
|
7071
7102
|
description: "The time zone for the event, IANA Time Zone identifier (e.g., 'America/New_York')",
|
|
7072
7103
|
},
|
|
7104
|
+
transparency: {
|
|
7105
|
+
type: "string",
|
|
7106
|
+
enum: ["opaque", "transparent"],
|
|
7107
|
+
description: 'Opaque is the default value, and it blocks time on the calendar. This is equivalent to setting "Show me as" to "Busy" in the UI. Transparent means the event does not block time on the calendar.',
|
|
7108
|
+
},
|
|
7073
7109
|
},
|
|
7074
7110
|
},
|
|
7075
7111
|
output: {
|
|
@@ -15268,3 +15304,241 @@ export const hubspotGetTicketDetailsDefinition = {
|
|
|
15268
15304
|
name: "getTicketDetails",
|
|
15269
15305
|
provider: "hubspot",
|
|
15270
15306
|
};
|
|
15307
|
+
export const smartsheetListSheetsDefinition = {
|
|
15308
|
+
displayName: "List Smartsheet sheets",
|
|
15309
|
+
description: "List all Smartsheet sheets the authenticated user has access to. Use this first to find a sheet's sheetId by its name before calling other Smartsheet actions.",
|
|
15310
|
+
scopes: [],
|
|
15311
|
+
tags: [],
|
|
15312
|
+
parameters: {
|
|
15313
|
+
type: "object",
|
|
15314
|
+
required: [],
|
|
15315
|
+
properties: {},
|
|
15316
|
+
},
|
|
15317
|
+
output: {
|
|
15318
|
+
type: "object",
|
|
15319
|
+
required: ["success"],
|
|
15320
|
+
properties: {
|
|
15321
|
+
success: {
|
|
15322
|
+
type: "boolean",
|
|
15323
|
+
description: "Whether the sheets were successfully listed",
|
|
15324
|
+
},
|
|
15325
|
+
error: {
|
|
15326
|
+
type: "string",
|
|
15327
|
+
description: "Error message if the operation failed",
|
|
15328
|
+
},
|
|
15329
|
+
sheets: {
|
|
15330
|
+
type: "array",
|
|
15331
|
+
description: "The sheets the user has access to",
|
|
15332
|
+
items: {
|
|
15333
|
+
type: "object",
|
|
15334
|
+
properties: {
|
|
15335
|
+
id: {
|
|
15336
|
+
type: "string",
|
|
15337
|
+
description: "The sheet ID, passed as sheetId to other Smartsheet actions",
|
|
15338
|
+
},
|
|
15339
|
+
name: {
|
|
15340
|
+
type: "string",
|
|
15341
|
+
description: "The sheet name",
|
|
15342
|
+
},
|
|
15343
|
+
permalink: {
|
|
15344
|
+
type: "string",
|
|
15345
|
+
description: "URL to open the sheet in Smartsheet",
|
|
15346
|
+
},
|
|
15347
|
+
},
|
|
15348
|
+
},
|
|
15349
|
+
},
|
|
15350
|
+
},
|
|
15351
|
+
},
|
|
15352
|
+
name: "listSheets",
|
|
15353
|
+
provider: "smartsheet",
|
|
15354
|
+
};
|
|
15355
|
+
export const smartsheetGetSheetRowsDefinition = {
|
|
15356
|
+
displayName: "Get rows from a Smartsheet sheet",
|
|
15357
|
+
description: "Get the columns and rows of a Smartsheet sheet. Each row's cells are returned as a map keyed by column title. Use this to read a sheet's contents and to discover column titles and row IDs before adding or updating rows.",
|
|
15358
|
+
scopes: [],
|
|
15359
|
+
tags: [],
|
|
15360
|
+
parameters: {
|
|
15361
|
+
type: "object",
|
|
15362
|
+
required: ["sheetId"],
|
|
15363
|
+
properties: {
|
|
15364
|
+
sheetId: {
|
|
15365
|
+
type: "string",
|
|
15366
|
+
description: "The ID of the sheet to read. Obtain this from the listSheets action or from the user; do not guess it.",
|
|
15367
|
+
},
|
|
15368
|
+
},
|
|
15369
|
+
},
|
|
15370
|
+
output: {
|
|
15371
|
+
type: "object",
|
|
15372
|
+
required: ["success"],
|
|
15373
|
+
properties: {
|
|
15374
|
+
success: {
|
|
15375
|
+
type: "boolean",
|
|
15376
|
+
description: "Whether the sheet was successfully retrieved",
|
|
15377
|
+
},
|
|
15378
|
+
error: {
|
|
15379
|
+
type: "string",
|
|
15380
|
+
description: "Error message if the operation failed",
|
|
15381
|
+
},
|
|
15382
|
+
sheet: {
|
|
15383
|
+
type: "object",
|
|
15384
|
+
description: "The sheet's columns and rows",
|
|
15385
|
+
properties: {
|
|
15386
|
+
id: {
|
|
15387
|
+
type: "string",
|
|
15388
|
+
description: "The sheet ID",
|
|
15389
|
+
},
|
|
15390
|
+
name: {
|
|
15391
|
+
type: "string",
|
|
15392
|
+
description: "The sheet name",
|
|
15393
|
+
},
|
|
15394
|
+
permalink: {
|
|
15395
|
+
type: "string",
|
|
15396
|
+
description: "URL to open the sheet in Smartsheet",
|
|
15397
|
+
},
|
|
15398
|
+
columns: {
|
|
15399
|
+
type: "array",
|
|
15400
|
+
description: "The sheet's columns, in display order",
|
|
15401
|
+
items: {
|
|
15402
|
+
type: "object",
|
|
15403
|
+
properties: {
|
|
15404
|
+
id: {
|
|
15405
|
+
type: "string",
|
|
15406
|
+
description: "The column ID",
|
|
15407
|
+
},
|
|
15408
|
+
title: {
|
|
15409
|
+
type: "string",
|
|
15410
|
+
description: "The column title. Use these exact titles as keys in the cells parameter of addRowToSheet and updateRow.",
|
|
15411
|
+
},
|
|
15412
|
+
type: {
|
|
15413
|
+
type: "string",
|
|
15414
|
+
description: "The column type (e.g. TEXT_NUMBER, PICKLIST, DATE, CHECKBOX, CONTACT_LIST)",
|
|
15415
|
+
},
|
|
15416
|
+
options: {
|
|
15417
|
+
type: "array",
|
|
15418
|
+
description: "The valid values for PICKLIST columns",
|
|
15419
|
+
items: {
|
|
15420
|
+
type: "string",
|
|
15421
|
+
},
|
|
15422
|
+
},
|
|
15423
|
+
},
|
|
15424
|
+
},
|
|
15425
|
+
},
|
|
15426
|
+
rows: {
|
|
15427
|
+
type: "array",
|
|
15428
|
+
description: "The sheet's rows",
|
|
15429
|
+
items: {
|
|
15430
|
+
type: "object",
|
|
15431
|
+
properties: {
|
|
15432
|
+
id: {
|
|
15433
|
+
type: "string",
|
|
15434
|
+
description: "The row ID, passed as rowId to the updateRow action",
|
|
15435
|
+
},
|
|
15436
|
+
rowNumber: {
|
|
15437
|
+
type: "number",
|
|
15438
|
+
description: "The row's position in the sheet, starting at 1",
|
|
15439
|
+
},
|
|
15440
|
+
cells: {
|
|
15441
|
+
type: "object",
|
|
15442
|
+
description: "The row's cell values, keyed by column title",
|
|
15443
|
+
additionalProperties: true,
|
|
15444
|
+
},
|
|
15445
|
+
},
|
|
15446
|
+
},
|
|
15447
|
+
},
|
|
15448
|
+
},
|
|
15449
|
+
},
|
|
15450
|
+
},
|
|
15451
|
+
},
|
|
15452
|
+
name: "getSheetRows",
|
|
15453
|
+
provider: "smartsheet",
|
|
15454
|
+
};
|
|
15455
|
+
export const smartsheetAddRowToSheetDefinition = {
|
|
15456
|
+
displayName: "Add a row to a Smartsheet sheet",
|
|
15457
|
+
description: "Add a new row to a Smartsheet sheet. Cell values are provided as a map keyed by column title. Call getSheetRows first to see the sheet's column titles and the valid values for PICKLIST columns.",
|
|
15458
|
+
scopes: [],
|
|
15459
|
+
tags: [],
|
|
15460
|
+
parameters: {
|
|
15461
|
+
type: "object",
|
|
15462
|
+
required: ["sheetId", "cells"],
|
|
15463
|
+
properties: {
|
|
15464
|
+
sheetId: {
|
|
15465
|
+
type: "string",
|
|
15466
|
+
description: "The ID of the sheet to add the row to. Obtain this from the listSheets action or from the user; do not guess it.",
|
|
15467
|
+
},
|
|
15468
|
+
cells: {
|
|
15469
|
+
type: "object",
|
|
15470
|
+
description: 'The new row\'s cell values, keyed by column title exactly as returned by getSheetRows, e.g. {"Task Name": "Review budget", "Status": "In Progress"}. Values may be strings, numbers, or booleans.',
|
|
15471
|
+
additionalProperties: true,
|
|
15472
|
+
},
|
|
15473
|
+
toTop: {
|
|
15474
|
+
type: "boolean",
|
|
15475
|
+
description: "If true, the row is added to the top of the sheet. Defaults to false (added to the bottom).",
|
|
15476
|
+
},
|
|
15477
|
+
},
|
|
15478
|
+
},
|
|
15479
|
+
output: {
|
|
15480
|
+
type: "object",
|
|
15481
|
+
required: ["success"],
|
|
15482
|
+
properties: {
|
|
15483
|
+
success: {
|
|
15484
|
+
type: "boolean",
|
|
15485
|
+
description: "Whether the row was successfully added",
|
|
15486
|
+
},
|
|
15487
|
+
error: {
|
|
15488
|
+
type: "string",
|
|
15489
|
+
description: "Error message if the operation failed",
|
|
15490
|
+
},
|
|
15491
|
+
rowId: {
|
|
15492
|
+
type: "string",
|
|
15493
|
+
description: "The ID of the newly created row",
|
|
15494
|
+
},
|
|
15495
|
+
},
|
|
15496
|
+
},
|
|
15497
|
+
name: "addRowToSheet",
|
|
15498
|
+
provider: "smartsheet",
|
|
15499
|
+
};
|
|
15500
|
+
export const smartsheetUpdateRowDefinition = {
|
|
15501
|
+
displayName: "Update a row in a Smartsheet sheet",
|
|
15502
|
+
description: "Update cell values of an existing row in a Smartsheet sheet. Only the columns included in the cells parameter are changed. Call getSheetRows first to find the row's rowId and the sheet's column titles.",
|
|
15503
|
+
scopes: [],
|
|
15504
|
+
tags: [],
|
|
15505
|
+
parameters: {
|
|
15506
|
+
type: "object",
|
|
15507
|
+
required: ["sheetId", "rowId", "cells"],
|
|
15508
|
+
properties: {
|
|
15509
|
+
sheetId: {
|
|
15510
|
+
type: "string",
|
|
15511
|
+
description: "The ID of the sheet containing the row. Obtain this from the listSheets action or from the user; do not guess it.",
|
|
15512
|
+
},
|
|
15513
|
+
rowId: {
|
|
15514
|
+
type: "string",
|
|
15515
|
+
description: "The ID of the row to update, as returned by the getSheetRows action",
|
|
15516
|
+
},
|
|
15517
|
+
cells: {
|
|
15518
|
+
type: "object",
|
|
15519
|
+
description: 'The cell values to change, keyed by column title exactly as returned by getSheetRows, e.g. {"Status": "Complete"}. Columns not included are left unchanged. Values may be strings, numbers, or booleans.',
|
|
15520
|
+
additionalProperties: true,
|
|
15521
|
+
},
|
|
15522
|
+
},
|
|
15523
|
+
},
|
|
15524
|
+
output: {
|
|
15525
|
+
type: "object",
|
|
15526
|
+
required: ["success"],
|
|
15527
|
+
properties: {
|
|
15528
|
+
success: {
|
|
15529
|
+
type: "boolean",
|
|
15530
|
+
description: "Whether the row was successfully updated",
|
|
15531
|
+
},
|
|
15532
|
+
error: {
|
|
15533
|
+
type: "string",
|
|
15534
|
+
description: "Error message if the operation failed",
|
|
15535
|
+
},
|
|
15536
|
+
rowId: {
|
|
15537
|
+
type: "string",
|
|
15538
|
+
description: "The ID of the updated row",
|
|
15539
|
+
},
|
|
15540
|
+
},
|
|
15541
|
+
},
|
|
15542
|
+
name: "updateRow",
|
|
15543
|
+
provider: "smartsheet",
|
|
15544
|
+
};
|