We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daa620b commit 6900b8cCopy full SHA for 6900b8c
components/hubspot/actions/search-crm/search-crm.mjs
@@ -209,7 +209,10 @@ export default {
209
});
210
211
if (!schema.searchableProperties.includes(searchProperty)) {
212
- throw new ConfigurationError(`\`${searchProperty}\` is not a searchable property of object type \`${objectType}\``);
+ throw new ConfigurationError(
213
+ `Property \`${searchProperty}\` is not a searchable property of object type \`${objectType}\`. ` +
214
+ `\n\nAvailable searchable properties are: \`${schema.searchableProperties.join("`, `")}\``,
215
+ );
216
}
217
218
const properties = creationProps
0 commit comments