File tree 8 files changed +31
-29
lines changed
8 files changed +31
-29
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export default ({ part }: { part: 'MAIN' | 'NESTED_NODE' | 'MAIN_UNFOLDED' }) =>
24
24
. withParams ( [
25
25
str ( {
26
26
name : 'stamp' ,
27
- input : 'foo' ,
27
+ value : 'foo' ,
28
28
} ) ,
29
29
] )
30
30
. add ( 'Input' , { port_name : 'input' } )
Original file line number Diff line number Diff line change @@ -28,19 +28,19 @@ const Template: Computer = {
28
28
name : 'entity' ,
29
29
label : 'Entity' ,
30
30
help : 'The entity to retrieve.' ,
31
- input : 'ENTITY' ,
31
+ value : 'ENTITY' ,
32
32
} ) ,
33
33
str ( {
34
34
name : 'properties' ,
35
35
label : 'Properties' ,
36
36
help : 'Comma separated list of properties.' ,
37
- input : '' ,
37
+ value : '' ,
38
38
} ) ,
39
39
num ( {
40
40
name : 'limit' ,
41
41
label : 'Limit' ,
42
42
help : 'The maximum number of companies to return.' ,
43
- input : String ( '300' ) ,
43
+ value : String ( '300' ) ,
44
44
} ) ,
45
45
] ,
46
46
async * run ( { input, output, params } ) {
@@ -68,7 +68,7 @@ export const archive = (name: string) => {
68
68
}
69
69
70
70
const entityParam = config . params ! . find ( ( p ) => p . name === 'entity' )
71
- entityParam ! . value = name . toLowerCase ( )
71
+ entityParam ! . input = name . toLowerCase ( )
72
72
73
73
return config
74
74
}
Original file line number Diff line number Diff line change @@ -26,19 +26,19 @@ const Template: Computer = {
26
26
name : 'entity' ,
27
27
label : 'Entity' ,
28
28
help : 'The entity to retrieve.' ,
29
- input : 'ENTITY' ,
29
+ value : 'ENTITY' ,
30
30
} ) ,
31
31
str ( {
32
32
name : 'properties' ,
33
33
label : 'Properties' ,
34
34
help : 'Comma separated list of properties.' ,
35
- input : '' ,
35
+ value : '' ,
36
36
} ) ,
37
37
num ( {
38
38
name : 'limit' ,
39
39
label : 'Limit' ,
40
40
help : 'The maximum number of companies to return.' ,
41
- input : String ( '300' ) ,
41
+ value : String ( '300' ) ,
42
42
} ) ,
43
43
] ,
44
44
async * run ( { input, output, params } ) {
@@ -66,7 +66,7 @@ export const batchArchive = (name: string) => {
66
66
}
67
67
68
68
const entityParam = config . params ! . find ( ( p ) => p . name === 'entity' )
69
- entityParam ! . value = name . toLowerCase ( )
69
+ entityParam ! . input = name . toLowerCase ( )
70
70
71
71
return config
72
72
}
Original file line number Diff line number Diff line change @@ -26,19 +26,19 @@ const Template: Computer = {
26
26
name : 'entity' ,
27
27
label : 'Entity' ,
28
28
help : 'The entity to retrieve.' ,
29
- input : 'ENTITY' ,
29
+ value : 'ENTITY' ,
30
30
} ) ,
31
31
str ( {
32
32
name : 'properties' ,
33
33
label : 'Properties' ,
34
34
help : 'Comma separated list of properties.' ,
35
- input : '' ,
35
+ value : '' ,
36
36
} ) ,
37
37
num ( {
38
38
name : 'limit' ,
39
39
label : 'Limit' ,
40
40
help : 'The maximum number of companies to return.' ,
41
- input : String ( '300' ) ,
41
+ value : String ( '300' ) ,
42
42
} ) ,
43
43
] ,
44
44
async * run ( { input, output, params } ) {
@@ -66,7 +66,7 @@ export const batchCreate = (name: string) => {
66
66
}
67
67
68
68
const entityParam = config . params ! . find ( ( p ) => p . name === 'entity' )
69
- entityParam ! . value = name . toLowerCase ( )
69
+ entityParam ! . input = name . toLowerCase ( )
70
70
71
71
return config
72
72
}
Original file line number Diff line number Diff line change @@ -26,19 +26,19 @@ const Template: Computer = {
26
26
name : 'entity' ,
27
27
label : 'Entity' ,
28
28
help : 'The entity to retrieve.' ,
29
- input : 'ENTITY' ,
29
+ value : 'ENTITY' ,
30
30
} ) ,
31
31
str ( {
32
32
name : 'properties' ,
33
33
label : 'Properties' ,
34
34
help : 'Comma separated list of properties.' ,
35
- input : '' ,
35
+ value : '' ,
36
36
} ) ,
37
37
num ( {
38
38
name : 'limit' ,
39
39
label : 'Limit' ,
40
40
help : 'The maximum number of companies to return.' ,
41
- input : String ( '300' ) ,
41
+ value : String ( '300' ) ,
42
42
} ) ,
43
43
] ,
44
44
async * run ( { input, output, params } ) {
@@ -66,7 +66,9 @@ export const batchUpdate = (name: string) => {
66
66
}
67
67
68
68
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
+ }
70
72
71
73
return config
72
74
}
Original file line number Diff line number Diff line change @@ -26,19 +26,19 @@ const Template: Computer = {
26
26
name : 'entity' ,
27
27
label : 'Entity' ,
28
28
help : 'The entity to retrieve.' ,
29
- input : 'ENTITY' ,
29
+ value : 'ENTITY' ,
30
30
} ) ,
31
31
str ( {
32
32
name : 'properties' ,
33
33
label : 'Properties' ,
34
34
help : 'Comma separated list of properties.' ,
35
- input : '' ,
35
+ value : '' ,
36
36
} ) ,
37
37
num ( {
38
38
name : 'limit' ,
39
39
label : 'Limit' ,
40
40
help : 'The maximum number of companies to return.' ,
41
- input : String ( '300' ) ,
41
+ value : String ( '300' ) ,
42
42
} ) ,
43
43
] ,
44
44
async * run ( { input, output, params } ) {
@@ -66,7 +66,7 @@ export const create = (name: string) => {
66
66
}
67
67
68
68
const entityParam = config . params ! . find ( ( p ) => p . name === 'entity' )
69
- entityParam ! . value = name . toLowerCase ( )
69
+ entityParam ! . input = name . toLowerCase ( )
70
70
71
71
return config
72
72
}
Original file line number Diff line number Diff line change @@ -23,19 +23,19 @@ const Template: Computer = {
23
23
name : 'entity' ,
24
24
label : 'Entity' ,
25
25
help : 'The entity to retrieve.' ,
26
- input : 'ENTITY' ,
26
+ value : 'ENTITY' ,
27
27
} ) ,
28
28
str ( {
29
29
name : 'properties' ,
30
30
label : 'Properties' ,
31
31
help : 'Comma separated list of properties.' ,
32
- input : '' ,
32
+ value : '' ,
33
33
} ) ,
34
34
num ( {
35
35
name : 'limit' ,
36
36
label : 'Limit' ,
37
37
help : 'The maximum number of companies to return.' ,
38
- input : String ( '300' ) ,
38
+ value : String ( '300' ) ,
39
39
} ) ,
40
40
] ,
41
41
async * run ( { output, params } ) {
@@ -97,7 +97,7 @@ export const getAll = (name: string) => {
97
97
}
98
98
99
99
const entityParam = config . params ! . find ( ( p ) => p . name === 'entity' )
100
- entityParam ! . value = name . toLowerCase ( )
100
+ entityParam ! . input = name . toLowerCase ( )
101
101
102
102
return config
103
103
}
Original file line number Diff line number Diff line change @@ -26,19 +26,19 @@ const Template: Computer = {
26
26
name : 'entity' ,
27
27
label : 'Entity' ,
28
28
help : 'The entity to retrieve.' ,
29
- input : 'ENTITY' ,
29
+ value : 'ENTITY' ,
30
30
} ) ,
31
31
str ( {
32
32
name : 'properties' ,
33
33
label : 'Properties' ,
34
34
help : 'Comma separated list of properties.' ,
35
- input : '' ,
35
+ value : '' ,
36
36
} ) ,
37
37
num ( {
38
38
name : 'limit' ,
39
39
label : 'Limit' ,
40
40
help : 'The maximum number of companies to return.' ,
41
- input : String ( '300' ) ,
41
+ value : String ( '300' ) ,
42
42
} ) ,
43
43
] ,
44
44
async * run ( { input, output, params } ) {
@@ -66,7 +66,7 @@ export const update = (name: string) => {
66
66
}
67
67
68
68
const entityParam = config . params ! . find ( ( p ) => p . name === 'entity' )
69
- entityParam ! . value = name . toLowerCase ( )
69
+ entityParam ! . input = name . toLowerCase ( )
70
70
71
71
return config
72
72
}
You can’t perform that action at this time.
0 commit comments