Skip to content

Commit 7865be3

Browse files
committed
boolnum
1 parent 4b967a9 commit 7865be3

17 files changed

+72
-16
lines changed

src/ops/base/Ops.Data.JsonPath.ArrayGetArrayByPath/Ops.Data.JsonPath.ArrayGetArrayByPath.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const objectIn = op.inArray("Array");
22
const pathIn = op.inString("Path");
33
const resultOut = op.outArray("Output");
4-
const foundOut = op.outBool("Found");
4+
const foundOut = op.outBoolNum("Found");
55

66
objectIn.onChange = update;
77
pathIn.onChange = update;

src/ops/base/Ops.Data.JsonPath.ArrayGetArrayByPath/Ops.Data.JsonPath.ArrayGetArrayByPath.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,14 @@
5656
"type": "improvement",
5757
"author": "stephan",
5858
"date": 1736850792768
59+
},
60+
{
61+
"message": "change \"found\" port to boolNum type",
62+
"type": "improvement",
63+
"author": "stephan",
64+
"date": 1741354650893
5965
}
6066
],
61-
"exampleProjectId": "uqXSWr"
67+
"exampleProjectId": "uqXSWr",
68+
"license": "MIT"
6269
}

src/ops/base/Ops.Data.JsonPath.ArrayGetArrayValuesByPath/Ops.Data.JsonPath.ArrayGetArrayValuesByPath.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const objectIn = op.inArray("Array");
22
const pathIn = op.inString("Path");
33
const resultOut = op.outArray("Output");
4-
const foundOut = op.outBool("Found");
4+
const foundOut = op.outBoolNum("Found");
55

66
objectIn.onChange = update;
77
pathIn.onChange = update;

src/ops/base/Ops.Data.JsonPath.ArrayGetArrayValuesByPath/Ops.Data.JsonPath.ArrayGetArrayValuesByPath.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,14 @@
5656
"type": "improvement",
5757
"author": "stephan",
5858
"date": 1736850824494
59+
},
60+
{
61+
"message": "change \"found\" port to boolNum type",
62+
"type": "improvement",
63+
"author": "stephan",
64+
"date": 1741354673475
5965
}
6066
],
61-
"exampleProjectId": "Y3pXWr"
67+
"exampleProjectId": "Y3pXWr",
68+
"license": "MIT"
6269
}

src/ops/base/Ops.Data.JsonPath.ArrayGetNumberByPath/Ops.Data.JsonPath.ArrayGetNumberByPath.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const objectIn = op.inArray("Array");
22
const pathIn = op.inString("Path");
33
const resultOut = op.outNumber("Output");
4-
const foundOut = op.outBool("Found");
4+
const foundOut = op.outBoolNum("Found");
55

66
objectIn.onChange = update;
77
pathIn.onChange = update;

src/ops/base/Ops.Data.JsonPath.ArrayGetNumberByPath/Ops.Data.JsonPath.ArrayGetNumberByPath.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,14 @@
5757
"type": "improvement",
5858
"author": "stephan",
5959
"date": 1736850853376
60+
},
61+
{
62+
"message": "change \"found\" port to boolNum type",
63+
"type": "improvement",
64+
"author": "stephan",
65+
"date": 1741354689474
6066
}
6167
],
62-
"exampleProjectId": "7kSVWr"
68+
"exampleProjectId": "7kSVWr",
69+
"license": "MIT"
6370
}

src/ops/base/Ops.Data.JsonPath.ArrayGetObjectByPath/Ops.Data.JsonPath.ArrayGetObjectByPath.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const objectIn = op.inArray("Array");
22
const pathIn = op.inString("Path");
33
const resultOut = op.outObject("Output");
4-
const foundOut = op.outBool("Found");
4+
const foundOut = op.outBoolNum("Found");
55

66
objectIn.onChange = update;
77
pathIn.onChange = update;

src/ops/base/Ops.Data.JsonPath.ArrayGetObjectByPath/Ops.Data.JsonPath.ArrayGetObjectByPath.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,14 @@
5656
"type": "improvement",
5757
"author": "stephan",
5858
"date": 1736850870069
59+
},
60+
{
61+
"message": "change \"found\" port to boolNum type",
62+
"type": "improvement",
63+
"author": "stephan",
64+
"date": 1741354710376
5965
}
6066
],
61-
"exampleProjectId": "AapUWr"
67+
"exampleProjectId": "AapUWr",
68+
"license": "MIT"
6269
}

src/ops/base/Ops.Data.JsonPath.ArrayGetStringByPath/Ops.Data.JsonPath.ArrayGetStringByPath.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const objectIn = op.inArray("Array");
22
const pathIn = op.inString("Path");
33
const returnPathIn = op.inBool("Return path if missing", false);
44
const resultOut = op.outString("Output");
5-
const foundOut = op.outBool("Found");
5+
const foundOut = op.outBoolNum("Found");
66

77
objectIn.onChange = update;
88
pathIn.onChange = update;

src/ops/base/Ops.Data.JsonPath.ArrayGetStringByPath/Ops.Data.JsonPath.ArrayGetStringByPath.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,14 @@
6565
"type": "improvement",
6666
"author": "stephan",
6767
"date": 1736850804953
68+
},
69+
{
70+
"message": "change \"found\" port to boolNum type",
71+
"type": "improvement",
72+
"author": "stephan",
73+
"date": 1741354726032
6874
}
6975
],
70-
"exampleProjectId": "rs0XWr"
76+
"exampleProjectId": "rs0XWr",
77+
"license": "MIT"
7178
}

src/ops/base/Ops.Data.JsonPath.ObjectGetArrayByPath/Ops.Data.JsonPath.ObjectGetArrayByPath.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const
22
objectIn = op.inObject("Object"),
33
pathIn = op.inString("Path"),
44
resultOut = op.outArray("Output"),
5-
foundOut = op.outBool("Found");
5+
foundOut = op.outBoolNum("Found");
66

77
objectIn.onChange =
88
pathIn.onChange = update;

src/ops/base/Ops.Data.JsonPath.ObjectGetArrayByPath/Ops.Data.JsonPath.ObjectGetArrayByPath.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@
5151
"type": "improvement",
5252
"author": "stephan",
5353
"date": 1736850832217
54+
},
55+
{
56+
"message": "change \"found\" port to boolNum type",
57+
"type": "improvement",
58+
"author": "stephan",
59+
"date": 1741354743959
5460
}
55-
]
61+
],
62+
"license": "MIT"
5663
}

src/ops/base/Ops.Data.JsonPath.ObjectGetArrayValuesByPath/Ops.Data.JsonPath.ObjectGetArrayValuesByPath.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,6 @@
5252
"author": "stephan",
5353
"date": 1736850861949
5454
}
55-
]
55+
],
56+
"license": "MIT"
5657
}

src/ops/base/Ops.Data.JsonPath.ObjectGetNumberByPath/Ops.Data.JsonPath.ObjectGetNumberByPath.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const
22
objectIn = op.inObject("Object"),
33
pathIn = op.inString("Path"),
44
resultOut = op.outNumber("Output"),
5-
foundOut = op.outBool("Found");
5+
foundOut = op.outBoolNum("Found");
66

77
objectIn.onChange = update;
88
pathIn.onChange = update;

src/ops/base/Ops.Data.JsonPath.ObjectGetNumberByPath/Ops.Data.JsonPath.ObjectGetNumberByPath.json

+6
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@
5959
"type": "improvement",
6060
"author": "stephan",
6161
"date": 1736850879305
62+
},
63+
{
64+
"message": "change \"found\" port to boolNum type",
65+
"type": "improvement",
66+
"author": "stephan",
67+
"date": 1741354771619
6268
}
6369
]
6470
}

src/ops/base/Ops.Data.JsonPath.ObjectGetObjectByPath/Ops.Data.JsonPath.ObjectGetObjectByPath.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const
22
objectIn = op.inObject("Object"),
33
pathIn = op.inString("Path"),
44
resultOut = op.outObject("Output"),
5-
foundOut = op.outBool("Found");
5+
foundOut = op.outBoolNum("Found");
66

77
objectIn.onChange = pathIn.onChange = update;
88

src/ops/base/Ops.Data.JsonPath.ObjectGetObjectByPath/Ops.Data.JsonPath.ObjectGetObjectByPath.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@
5151
"type": "improvement",
5252
"author": "stephan",
5353
"date": 1736850815747
54+
},
55+
{
56+
"message": "change \"found\" port to boolNum type",
57+
"type": "improvement",
58+
"author": "stephan",
59+
"date": 1741354786849
5460
}
55-
]
61+
],
62+
"license": "MIT"
5663
}

0 commit comments

Comments
 (0)