Skip to content

Commit 1946ae9

Browse files
committed
update prop descriptions
1 parent 6d66e61 commit 1946ae9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/hubspot/hubspot.app.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default {
8282
objectType: {
8383
type: "string",
8484
label: "Object Type",
85-
description: "Watch for new events concerning the object type specified.",
85+
description: "Watch for new events concerning the object type specified. For custom objects, this is the object's `fullyQualifiedName`, `objectTypeId`, or the short-hand custom object type name (aka `p_{object_name}`)",
8686
async options({ includeCustom = false }) {
8787
const objectTypes = OBJECT_TYPES;
8888
if (includeCustom) {
@@ -101,7 +101,7 @@ export default {
101101
objectSchema: {
102102
type: "string",
103103
label: "Object Schema",
104-
description: "Watch for new events of objects with the specified custom schema.",
104+
description: "Watch for new events of objects with the specified custom schema. This is the `objectTypeId` of an object.",
105105
async options() {
106106
const { results } = await this.listSchemas();
107107
return results?.map(({
@@ -437,7 +437,7 @@ export default {
437437
customObjectType: {
438438
type: "string",
439439
label: "Custom Object Type",
440-
description: "The type of custom object to create",
440+
description: "The type of custom object to create. This is the object's `fullyQualifiedName`, `objectTypeId`, or the short-hand custom object type name (aka `p_{object_name}`)",
441441
async options() {
442442
const { results } = await this.listSchemas();
443443
return results?.map(({

components/hubspot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/hubspot",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Pipedream Hubspot Components",
55
"main": "hubspot.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)