@abaplint/transpiler-cli 2.12.15 → 2.12.16
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/build/bundle.js +6 -2
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -83244,7 +83244,9 @@ abap.FunctionModules["ENQUEUE_${obj.getName().toUpperCase()}"] = async (INPUT) =
|
|
|
83244
83244
|
if (lookup === undefined) {
|
|
83245
83245
|
throw new Error("Lock, kernel class missing");
|
|
83246
83246
|
}
|
|
83247
|
-
|
|
83247
|
+
const table_name = new abap.types.String({qualifiedName: "STRING"}).set("${tableName}" );
|
|
83248
|
+
const enqueue_name = new abap.types.String({qualifiedName: "STRING"}).set("${obj.getName().toUpperCase()}");
|
|
83249
|
+
await lookup.enqueue({table_name: table_name, enqueue_name: enqueue_name, input: INPUT.exporting});
|
|
83248
83250
|
};
|
|
83249
83251
|
|
|
83250
83252
|
abap.FunctionModules["DEQUEUE_${obj.getName().toUpperCase()}"] = async (INPUT) => {
|
|
@@ -83252,7 +83254,9 @@ abap.FunctionModules["DEQUEUE_${obj.getName().toUpperCase()}"] = async (INPUT) =
|
|
|
83252
83254
|
if (lookup === undefined) {
|
|
83253
83255
|
throw new Error("Lock, kernel class missing");
|
|
83254
83256
|
}
|
|
83255
|
-
|
|
83257
|
+
const table_name = new abap.types.String({qualifiedName: "STRING"}).set("${tableName}" );
|
|
83258
|
+
const enqueue_name = new abap.types.String({qualifiedName: "STRING"}).set("${obj.getName().toUpperCase()}");
|
|
83259
|
+
await lookup.dequeue({table_name: table_name, enqueue_name: enqueue_name, input: INPUT.exporting});
|
|
83256
83260
|
};`);
|
|
83257
83261
|
const output = {
|
|
83258
83262
|
object: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.16",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@abaplint/core": "^2.114.6",
|
|
31
|
-
"@abaplint/transpiler": "^2.12.
|
|
31
|
+
"@abaplint/transpiler": "^2.12.16",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^24.10.1",
|
|
34
34
|
"@types/progress": "^2.0.7",
|