@abaplint/runtime 1.8.10 → 1.8.11

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.
@@ -8,7 +8,7 @@ import { Console } from "./console";
8
8
  import { UnitTestResult } from "./unit_test";
9
9
  import { OffsetLength } from "./offset_length";
10
10
  import { templateFormatting } from "./template_formatting";
11
- export { UnitTestResult, RFC };
11
+ export { UnitTestResult, RFC, types };
12
12
  export declare class ABAP {
13
13
  FunctionModules: {
14
14
  [name: string]: any;
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ABAP = exports.RFC = exports.UnitTestResult = void 0;
3
+ exports.ABAP = exports.types = exports.RFC = exports.UnitTestResult = void 0;
4
4
  const types = require("./types");
5
+ exports.types = types;
5
6
  const builtin = require("./builtin");
6
7
  const compare = require("./compare");
7
8
  const operators = require("./operators");
@@ -20,6 +20,6 @@ export declare type RFCCallInput = {
20
20
  };
21
21
  };
22
22
  export interface RFCClient {
23
- call(name: string, input?: RFCCallInput): Promise<void>;
23
+ call(name: string, input: RFCCallInput): Promise<void>;
24
24
  }
25
25
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "1.8.10",
3
+ "version": "1.8.11",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",