Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
merge staging and fix hubspot list formatting
Co-authored-by: Theodore Li <TheodoreSpeaks@users.noreply.github.com>
  • Loading branch information
cursoragent and TheodoreSpeaks committed Mar 25, 2026
commit 6225f210df1f1889ea7531562b5175e70093145a
12 changes: 10 additions & 2 deletions apps/sim/tools/hubspot/list_lists.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { createLogger } from '@sim/logger'
import type { HubSpotListListsParams, HubSpotListListsResponse } from '@/tools/hubspot/types'
import { LISTS_ARRAY_OUTPUT, METADATA_OUTPUT_PROPERTIES, PAGING_OUTPUT } from '@/tools/hubspot/types'
import {
LISTS_ARRAY_OUTPUT,
METADATA_OUTPUT_PROPERTIES,
PAGING_OUTPUT,
} from '@/tools/hubspot/types'
import type { ToolConfig } from '@/tools/types'

const logger = createLogger('HubSpotListLists')
Expand Down Expand Up @@ -99,7 +103,11 @@ export const hubspotListListsTool: ToolConfig<HubSpotListListsParams, HubSpotLis
description: 'Response metadata',
properties: {
...METADATA_OUTPUT_PROPERTIES,
total: { type: 'number', description: 'Total number of lists matching the query', optional: true },
total: {
type: 'number',
description: 'Total number of lists matching the query',
optional: true,
},
},
},
success: { type: 'boolean', description: 'Operation success status' },
Expand Down
Loading