@fincity/kirun-js 1.6.9 → 1.6.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fincity/kirun-js",
3
- "version": "1.6.9",
3
+ "version": "1.6.10",
4
4
  "description": "Javascript Runtime for Kinetic Instructions",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -19,7 +19,7 @@ export abstract class AbstractObjectFunction extends AbstractFunction {
19
19
  super();
20
20
  this.signature = new FunctionSignature(functionName)
21
21
  .setNamespace(Namespaces.SYSTEM_OBJECT)
22
- .setParameters(new Map([[SOURCE, new Parameter(SOURCE, Schema.ofAny(SOURCE))]]))
22
+ .setParameters(new Map([Parameter.ofEntry(SOURCE, Schema.ofAny(SOURCE))]))
23
23
  .setEvents(new Map([Event.outputEventMapEntry(new Map([[VALUE, valueSchema]]))]));
24
24
  }
25
25
 
@@ -24,8 +24,8 @@ export class ObjectDeleteKey extends AbstractFunction {
24
24
  .setNamespace(Namespaces.SYSTEM_OBJECT)
25
25
  .setParameters(
26
26
  new Map([
27
- [SOURCE, new Parameter(SOURCE, Schema.ofAny(SOURCE))],
28
- [KEY, new Parameter(KEY, Schema.ofString(KEY))],
27
+ Parameter.ofEntry(SOURCE, Schema.ofAny(SOURCE)),
28
+ Parameter.ofEntry(KEY, Schema.ofString(KEY)),
29
29
  ]),
30
30
  )
31
31
  .setEvents(