Skip to content

Commit d4038ab

Browse files
committed
fix: Corrected parameter input/value assignments in Hubspot and Docs.
1 parent 235c8cc commit d4038ab

File tree

8 files changed

+31
-29
lines changed

8 files changed

+31
-29
lines changed

packages/docs/components/demos/UnfoldingDemo.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default ({ part }: { part: 'MAIN' | 'NESTED_NODE' | 'MAIN_UNFOLDED' }) =>
2424
.withParams([
2525
str({
2626
name: 'stamp',
27-
input: 'foo',
27+
value: 'foo',
2828
}),
2929
])
3030
.add('Input', { port_name: 'input' })

packages/hubspot/src/crm/entity/archive.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ const Template: Computer = {
2828
name: 'entity',
2929
label: 'Entity',
3030
help: 'The entity to retrieve.',
31-
input: 'ENTITY',
31+
value: 'ENTITY',
3232
}),
3333
str({
3434
name: 'properties',
3535
label: 'Properties',
3636
help: 'Comma separated list of properties.',
37-
input: '',
37+
value: '',
3838
}),
3939
num({
4040
name: 'limit',
4141
label: 'Limit',
4242
help: 'The maximum number of companies to return.',
43-
input: String('300'),
43+
value: String('300'),
4444
}),
4545
],
4646
async *run({ input, output, params }) {
@@ -68,7 +68,7 @@ export const archive = (name: string) => {
6868
}
6969

7070
const entityParam = config.params!.find((p) => p.name === 'entity')
71-
entityParam!.value = name.toLowerCase()
71+
entityParam!.input = name.toLowerCase()
7272

7373
return config
7474
}

packages/hubspot/src/crm/entity/batchArchive.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ const Template: Computer = {
2626
name: 'entity',
2727
label: 'Entity',
2828
help: 'The entity to retrieve.',
29-
input: 'ENTITY',
29+
value: 'ENTITY',
3030
}),
3131
str({
3232
name: 'properties',
3333
label: 'Properties',
3434
help: 'Comma separated list of properties.',
35-
input: '',
35+
value: '',
3636
}),
3737
num({
3838
name: 'limit',
3939
label: 'Limit',
4040
help: 'The maximum number of companies to return.',
41-
input: String('300'),
41+
value: String('300'),
4242
}),
4343
],
4444
async *run({ input, output, params }) {
@@ -66,7 +66,7 @@ export const batchArchive = (name: string) => {
6666
}
6767

6868
const entityParam = config.params!.find((p) => p.name === 'entity')
69-
entityParam!.value = name.toLowerCase()
69+
entityParam!.input = name.toLowerCase()
7070

7171
return config
7272
}

packages/hubspot/src/crm/entity/batchCreate.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ const Template: Computer = {
2626
name: 'entity',
2727
label: 'Entity',
2828
help: 'The entity to retrieve.',
29-
input: 'ENTITY',
29+
value: 'ENTITY',
3030
}),
3131
str({
3232
name: 'properties',
3333
label: 'Properties',
3434
help: 'Comma separated list of properties.',
35-
input: '',
35+
value: '',
3636
}),
3737
num({
3838
name: 'limit',
3939
label: 'Limit',
4040
help: 'The maximum number of companies to return.',
41-
input: String('300'),
41+
value: String('300'),
4242
}),
4343
],
4444
async *run({ input, output, params }) {
@@ -66,7 +66,7 @@ export const batchCreate = (name: string) => {
6666
}
6767

6868
const entityParam = config.params!.find((p) => p.name === 'entity')
69-
entityParam!.value = name.toLowerCase()
69+
entityParam!.input = name.toLowerCase()
7070

7171
return config
7272
}

packages/hubspot/src/crm/entity/batchUpdate.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ const Template: Computer = {
2626
name: 'entity',
2727
label: 'Entity',
2828
help: 'The entity to retrieve.',
29-
input: 'ENTITY',
29+
value: 'ENTITY',
3030
}),
3131
str({
3232
name: 'properties',
3333
label: 'Properties',
3434
help: 'Comma separated list of properties.',
35-
input: '',
35+
value: '',
3636
}),
3737
num({
3838
name: 'limit',
3939
label: 'Limit',
4040
help: 'The maximum number of companies to return.',
41-
input: String('300'),
41+
value: String('300'),
4242
}),
4343
],
4444
async *run({ input, output, params }) {
@@ -66,7 +66,9 @@ export const batchUpdate = (name: string) => {
6666
}
6767

6868
const entityParam = config.params!.find((p) => p.name === 'entity')
69-
entityParam!.value = name.toLowerCase()
69+
if (entityParam && 'input' in entityParam && entityParam.input && typeof entityParam.input === 'object' && 'rawValue' in entityParam.input) {
70+
entityParam.input.rawValue = name.toLowerCase()
71+
}
7072

7173
return config
7274
}

packages/hubspot/src/crm/entity/create.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ const Template: Computer = {
2626
name: 'entity',
2727
label: 'Entity',
2828
help: 'The entity to retrieve.',
29-
input: 'ENTITY',
29+
value: 'ENTITY',
3030
}),
3131
str({
3232
name: 'properties',
3333
label: 'Properties',
3434
help: 'Comma separated list of properties.',
35-
input: '',
35+
value: '',
3636
}),
3737
num({
3838
name: 'limit',
3939
label: 'Limit',
4040
help: 'The maximum number of companies to return.',
41-
input: String('300'),
41+
value: String('300'),
4242
}),
4343
],
4444
async *run({ input, output, params }) {
@@ -66,7 +66,7 @@ export const create = (name: string) => {
6666
}
6767

6868
const entityParam = config.params!.find((p) => p.name === 'entity')
69-
entityParam!.value = name.toLowerCase()
69+
entityParam!.input = name.toLowerCase()
7070

7171
return config
7272
}

packages/hubspot/src/crm/entity/getAll.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ const Template: Computer = {
2323
name: 'entity',
2424
label: 'Entity',
2525
help: 'The entity to retrieve.',
26-
input: 'ENTITY',
26+
value: 'ENTITY',
2727
}),
2828
str({
2929
name: 'properties',
3030
label: 'Properties',
3131
help: 'Comma separated list of properties.',
32-
input: '',
32+
value: '',
3333
}),
3434
num({
3535
name: 'limit',
3636
label: 'Limit',
3737
help: 'The maximum number of companies to return.',
38-
input: String('300'),
38+
value: String('300'),
3939
}),
4040
],
4141
async *run({ output, params }) {
@@ -97,7 +97,7 @@ export const getAll = (name: string) => {
9797
}
9898

9999
const entityParam = config.params!.find((p) => p.name === 'entity')
100-
entityParam!.value = name.toLowerCase()
100+
entityParam!.input = name.toLowerCase()
101101

102102
return config
103103
}

packages/hubspot/src/crm/entity/update.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ const Template: Computer = {
2626
name: 'entity',
2727
label: 'Entity',
2828
help: 'The entity to retrieve.',
29-
input: 'ENTITY',
29+
value: 'ENTITY',
3030
}),
3131
str({
3232
name: 'properties',
3333
label: 'Properties',
3434
help: 'Comma separated list of properties.',
35-
input: '',
35+
value: '',
3636
}),
3737
num({
3838
name: 'limit',
3939
label: 'Limit',
4040
help: 'The maximum number of companies to return.',
41-
input: String('300'),
41+
value: String('300'),
4242
}),
4343
],
4444
async *run({ input, output, params }) {
@@ -66,7 +66,7 @@ export const update = (name: string) => {
6666
}
6767

6868
const entityParam = config.params!.find((p) => p.name === 'entity')
69-
entityParam!.value = name.toLowerCase()
69+
entityParam!.input = name.toLowerCase()
7070

7171
return config
7272
}

0 commit comments

Comments
 (0)