Skip to content

Commit 6225f21

Browse files
merge staging and fix hubspot list formatting
Co-authored-by: Theodore Li <TheodoreSpeaks@users.noreply.github.com>
1 parent 6eff46a commit 6225f21

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

apps/sim/tools/hubspot/list_lists.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
import { createLogger } from '@sim/logger'
22
import type { HubSpotListListsParams, HubSpotListListsResponse } from '@/tools/hubspot/types'
3-
import { LISTS_ARRAY_OUTPUT, METADATA_OUTPUT_PROPERTIES, PAGING_OUTPUT } from '@/tools/hubspot/types'
3+
import {
4+
LISTS_ARRAY_OUTPUT,
5+
METADATA_OUTPUT_PROPERTIES,
6+
PAGING_OUTPUT,
7+
} from '@/tools/hubspot/types'
48
import type { ToolConfig } from '@/tools/types'
59

610
const logger = createLogger('HubSpotListLists')
@@ -99,7 +103,11 @@ export const hubspotListListsTool: ToolConfig<HubSpotListListsParams, HubSpotLis
99103
description: 'Response metadata',
100104
properties: {
101105
...METADATA_OUTPUT_PROPERTIES,
102-
total: { type: 'number', description: 'Total number of lists matching the query', optional: true },
106+
total: {
107+
type: 'number',
108+
description: 'Total number of lists matching the query',
109+
optional: true,
110+
},
103111
},
104112
},
105113
success: { type: 'boolean', description: 'Operation success status' },

0 commit comments

Comments
 (0)