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
chore(lint): fix formatting in hubspot list_lists.ts from staging
  • Loading branch information
waleedlatif1 committed Mar 25, 2026
commit d1e72b454f3ba3badbc7960b2292ac88625921b1
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