@abaplint/cli 2.113.132 → 2.113.134
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/cli.js +165 -15
- package/package.json +4 -4
package/build/cli.js
CHANGED
|
@@ -4850,7 +4850,8 @@ class CorrespondingBody extends combi_1.Expression {
|
|
|
4850
4850
|
const mapping = (0, combi_1.seq)("MAPPING", (0, combi_1.plus)((0, combi_1.seq)(_1.ComponentName, "=", component_chain_1.ComponentChain)));
|
|
4851
4851
|
const baseParen = (0, combi_1.seq)("BASE", (0, combi_1.tok)(tokens_1.WParenLeftW), _1.Source, (0, combi_1.tok)(tokens_1.WParenRightW));
|
|
4852
4852
|
const discarding = (0, combi_1.ver)(version_1.Version.v751, "DISCARDING DUPLICATES");
|
|
4853
|
-
return (0, combi_1.seq)((0, combi_1.optPrio)("DEEP"), (0, combi_1.optPrio)(baseParen), _1.Source, (0, combi_1.optPrio)(discarding), (0, combi_1.optPrio)(mapping), (0, combi_1.optPrio)("CHANGING CONTROL"), (0, combi_1.optPrio)((0, combi_1.seq)("
|
|
4853
|
+
return (0, combi_1.seq)((0, combi_1.optPrio)("DEEP"), (0, combi_1.optPrio)(baseParen), _1.Source, (0, combi_1.optPrio)(discarding), (0, combi_1.optPrio)(mapping), (0, combi_1.optPrio)("CHANGING CONTROL"), (0, combi_1.optPrio)((0, combi_1.seq)("MAPPING FROM ENTITY", (0, combi_1.optPrio)("USING CONTROL"))), // todo, version something?
|
|
4854
|
+
(0, combi_1.optPrio)((0, combi_1.seq)("EXCEPT", (0, combi_1.alt)((0, combi_1.plus)(_1.Field), "*"))));
|
|
4854
4855
|
}
|
|
4855
4856
|
}
|
|
4856
4857
|
exports.CorrespondingBody = CorrespondingBody;
|
|
@@ -8486,7 +8487,7 @@ const integer_1 = __webpack_require__(/*! ./integer */ "./node_modules/@abaplint
|
|
|
8486
8487
|
const sql_function_input_1 = __webpack_require__(/*! ./sql_function_input */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/sql_function_input.js");
|
|
8487
8488
|
class SQLFunction extends combi_1.Expression {
|
|
8488
8489
|
getRunnable() {
|
|
8489
|
-
const castTypes = (0, combi_1.altPrio)((0, combi_1.seq)("CHAR", (0, combi_1.optPrio)((0, combi_1.seq)((0, combi_1.tok)(tokens_1.ParenLeftW), integer_1.Integer, (0, combi_1.tok)(tokens_1.WParenRightW)))), (0, combi_1.seq)("DEC", (0, combi_1.tok)(tokens_1.ParenLeftW), integer_1.Integer, ",", integer_1.Integer, (0, combi_1.tok)(tokens_1.WParenRightW)), (0, combi_1.seq)("NUMC", (0, combi_1.optPrio)((0, combi_1.seq)((0, combi_1.tok)(tokens_1.ParenLeftW), integer_1.Integer, (0, combi_1.tok)(tokens_1.WParenRightW)))), "FLTP", "INT2", "INT8");
|
|
8490
|
+
const castTypes = (0, combi_1.altPrio)((0, combi_1.seq)("CHAR", (0, combi_1.optPrio)((0, combi_1.seq)((0, combi_1.tok)(tokens_1.ParenLeftW), integer_1.Integer, (0, combi_1.tok)(tokens_1.WParenRightW)))), (0, combi_1.seq)("DEC", (0, combi_1.tok)(tokens_1.ParenLeftW), integer_1.Integer, ",", integer_1.Integer, (0, combi_1.tok)(tokens_1.WParenRightW)), (0, combi_1.seq)("NUMC", (0, combi_1.optPrio)((0, combi_1.seq)((0, combi_1.tok)(tokens_1.ParenLeftW), integer_1.Integer, (0, combi_1.tok)(tokens_1.WParenRightW)))), "FLTP", "INT2", "INT4", "INT8");
|
|
8490
8491
|
const commaParam = (0, combi_1.seq)(",", sql_function_input_1.SQLFunctionInput);
|
|
8491
8492
|
// note: the function names are not keywords, they are usually in lower case
|
|
8492
8493
|
const abs = (0, combi_1.ver)(version_1.Version.v740sp05, (0, combi_1.seq)((0, combi_1.regex)(/^abs$/i), (0, combi_1.tok)(tokens_1.ParenLeftW), sql_function_input_1.SQLFunctionInput, (0, combi_1.tok)(tokens_1.WParenRightW)));
|
|
@@ -9458,15 +9459,17 @@ class TypeStructure extends combi_1.Expression {
|
|
|
9458
9459
|
const create = (0, combi_1.seq)("CREATE", (0, combi_1.alt)(_1.NamespaceSimpleName, _1.EntityAssociation));
|
|
9459
9460
|
const update = (0, combi_1.seq)("UPDATE", (0, combi_1.alt)(_1.NamespaceSimpleName, _1.EntityAssociation));
|
|
9460
9461
|
const readResult = (0, combi_1.seq)("READ RESULT", (0, combi_1.alt)(_1.NamespaceSimpleName, _1.EntityAssociation));
|
|
9462
|
+
const readLink = (0, combi_1.seq)("READ LINK", _1.EntityAssociation);
|
|
9461
9463
|
const action = (0, combi_1.seq)("ACTION IMPORT", _1.Source);
|
|
9462
9464
|
const permissionsRequest = (0, combi_1.seq)("PERMISSIONS REQUEST", _1.NamespaceSimpleName);
|
|
9463
9465
|
const evt = (0, combi_1.seq)("EVENT", _1.EventName);
|
|
9464
9466
|
const failedEarly = (0, combi_1.seq)("FAILED EARLY", _1.NamespaceSimpleName);
|
|
9465
9467
|
const mappedEarly = (0, combi_1.seq)("MAPPED EARLY", _1.NamespaceSimpleName);
|
|
9466
9468
|
const reportedEarly = (0, combi_1.seq)("REPORTED EARLY", _1.NamespaceSimpleName);
|
|
9467
|
-
const structure = (0, combi_1.seq)("STRUCTURE FOR", (0, combi_1.altPrio)(hier, evt, create, update, action, permissionsRequest, readResult));
|
|
9469
|
+
const structure = (0, combi_1.seq)("STRUCTURE FOR", (0, combi_1.altPrio)(hier, evt, create, update, action, permissionsRequest, readLink, readResult));
|
|
9468
9470
|
const response = (0, combi_1.seq)("RESPONSE FOR", (0, combi_1.altPrio)(failedEarly, mappedEarly, reportedEarly));
|
|
9469
|
-
|
|
9471
|
+
const request = (0, combi_1.seq)("REQUEST FOR CHANGE", _1.NamespaceSimpleName);
|
|
9472
|
+
return (0, combi_1.seq)("TYPE", (0, combi_1.altPrio)(structure, response, request));
|
|
9470
9473
|
}
|
|
9471
9474
|
}
|
|
9472
9475
|
exports.TypeStructure = TypeStructure;
|
|
@@ -11375,7 +11378,7 @@ class CommitEntities {
|
|
|
11375
11378
|
const failed = (0, combi_1.seq)("FAILED", expressions_1.Target);
|
|
11376
11379
|
const reported = (0, combi_1.seq)("REPORTED", expressions_1.Target);
|
|
11377
11380
|
const responses = (0, combi_1.seq)("RESPONSES", failed, reported);
|
|
11378
|
-
const s = (0, combi_1.seq)("COMMIT ENTITIES", (0, combi_1.optPrio)("IN SIMULATION MODE"), (0, combi_1.opt)(responses), (0, combi_1.opt)((0, combi_1.seq)("RESPONSE OF", expressions_1.NamespaceSimpleName, failed, reported)));
|
|
11381
|
+
const s = (0, combi_1.seq)("COMMIT ENTITIES", (0, combi_1.optPrio)("IN SIMULATION MODE"), (0, combi_1.opt)(responses), (0, combi_1.opt)((0, combi_1.seq)("RESPONSE OF", expressions_1.NamespaceSimpleName, (0, combi_1.per)(failed, reported))));
|
|
11379
11382
|
return (0, combi_1.ver)(version_1.Version.v754, s);
|
|
11380
11383
|
}
|
|
11381
11384
|
}
|
|
@@ -14978,20 +14981,18 @@ class MethodDef {
|
|
|
14978
14981
|
const def = (0, combi_1.ver)(version_1.Version.v740sp08, (0, combi_1.seq)("DEFAULT", (0, combi_1.altPrio)("FAIL", "IGNORE")));
|
|
14979
14982
|
const parameters = (0, combi_1.seq)((0, combi_1.optPrio)((0, combi_1.altPrio)("FINAL", def, expressions_1.Abstract)), (0, combi_1.optPrio)(expressions_1.MethodDefImporting), (0, combi_1.optPrio)(expressions_1.MethodDefExporting), (0, combi_1.optPrio)(expressions_1.MethodDefChanging), (0, combi_1.optPrio)(expressions_1.MethodDefReturning), (0, combi_1.optPrio)((0, combi_1.altPrio)(expressions_1.MethodDefRaising, expressions_1.MethodDefExceptions)));
|
|
14980
14983
|
const testing = (0, combi_1.seq)((0, combi_1.optPrio)(expressions_1.Abstract), "FOR TESTING", (0, combi_1.optPrio)((0, combi_1.altPrio)(expressions_1.MethodDefRaising, expressions_1.MethodDefExceptions)));
|
|
14981
|
-
// todo, this is only from version something
|
|
14982
|
-
const tableFunction = (0, combi_1.seq)("TABLE FUNCTION", expressions_1.NamespaceSimpleName);
|
|
14983
|
-
// todo, this is only from version something
|
|
14984
|
-
const ddl = "DDL OBJECT OPTIONS CDS SESSION CLIENT REQUIRED";
|
|
14985
14984
|
const result = (0, combi_1.seq)("RESULT", expressions_1.MethodParamName);
|
|
14986
14985
|
const link = (0, combi_1.seq)("LINK", expressions_1.MethodParamName);
|
|
14987
14986
|
const full = (0, combi_1.seq)("FULL", expressions_1.MethodParamName);
|
|
14988
14987
|
const modify = (0, combi_1.alt)((0, combi_1.seq)("FOR ACTION", expressions_1.TypeName, (0, combi_1.optPrio)(result)), (0, combi_1.seq)("FOR CREATE", (0, combi_1.alt)(expressions_1.TypeName, expressions_1.EntityAssociation)), (0, combi_1.seq)("FOR DELETE", expressions_1.TypeName), (0, combi_1.seq)("FOR UPDATE", expressions_1.TypeName));
|
|
14989
14988
|
const forRead = (0, combi_1.seq)("FOR READ", (0, combi_1.alt)(expressions_1.TypeName, expressions_1.EntityAssociation), (0, combi_1.optPrio)(full), result, (0, combi_1.optPrio)(link));
|
|
14990
14989
|
const forfunction = (0, combi_1.seq)("FOR FUNCTION", expressions_1.TypeName, result);
|
|
14991
|
-
const behavior = (0, combi_1.altPrio)(
|
|
14990
|
+
const behavior = (0, combi_1.altPrio)("DDL OBJECT OPTIONS CDS SESSION CLIENT REQUIRED", // todo, this is only from version something
|
|
14991
|
+
(0, combi_1.seq)("TABLE FUNCTION", expressions_1.NamespaceSimpleName), // todo, this is only from version something
|
|
14992
|
+
(0, combi_1.seq)("VALIDATE ON SAVE IMPORTING", expressions_1.MethodParamName, "FOR", expressions_1.TypeName), (0, combi_1.seq)("MODIFY IMPORTING", (0, combi_1.plus)((0, combi_1.seq)(expressions_1.MethodParamName, modify))), (0, combi_1.seq)("PRECHECK IMPORTING", expressions_1.MethodParamName, modify), (0, combi_1.seq)("READ IMPORTING", expressions_1.MethodParamName, (0, combi_1.altPrio)(forRead, forfunction)), (0, combi_1.seq)("FEATURES IMPORTING", expressions_1.MethodParamName, "REQUEST", expressions_1.NamespaceSimpleName, "FOR", expressions_1.NamespaceSimpleName, result), (0, combi_1.seq)("BEHAVIOR IMPORTING", expressions_1.MethodParamName, "FOR CREATE", expressions_1.TypeName, expressions_1.MethodParamName, "FOR UPDATE", expressions_1.TypeName, expressions_1.MethodParamName, "FOR DELETE", expressions_1.TypeName), (0, combi_1.seq)("BEHAVIOR IMPORTING", expressions_1.MethodParamName, "FOR READ", expressions_1.TypeName, result), (0, combi_1.seq)((0, combi_1.alt)("BEHAVIOR", "LOCK"), "IMPORTING", expressions_1.MethodParamName, "FOR LOCK", expressions_1.TypeName), (0, combi_1.seq)("DETERMINE", (0, combi_1.alt)("ON MODIFY", "ON SAVE"), "IMPORTING", expressions_1.MethodParamName, "FOR", expressions_1.TypeName), (0, combi_1.seq)("GLOBAL AUTHORIZATION IMPORTING REQUEST", expressions_1.MethodParamName, "FOR", expressions_1.TypeName, result), (0, combi_1.seq)("GLOBAL FEATURES IMPORTING REQUEST", expressions_1.MethodParamName, "FOR", expressions_1.TypeName, result), (0, combi_1.seq)("INSTANCE AUTHORIZATION IMPORTING", expressions_1.MethodParamName, "REQUEST", expressions_1.MethodParamName, "FOR", expressions_1.TypeName, result), (0, combi_1.seq)("INSTANCE FEATURES IMPORTING", expressions_1.MethodParamName, "REQUEST", expressions_1.MethodParamName, "FOR", expressions_1.TypeName, result));
|
|
14992
14993
|
// todo, this is only from version something
|
|
14993
14994
|
const amdp = (0, combi_1.seq)("AMDP OPTIONS", (0, combi_1.optPrio)("READ-ONLY"), "CDS SESSION CLIENT CURRENT", (0, combi_1.optPrio)(expressions_1.MethodDefImporting), (0, combi_1.optPrio)(expressions_1.MethodDefExporting), (0, combi_1.optPrio)(expressions_1.MethodDefRaising));
|
|
14994
|
-
const ret = (0, combi_1.seq)((0, combi_1.altPrio)("CLASS-METHODS", "METHODS"), expressions_1.MethodName, (0, combi_1.alt)((0, combi_1.seq)((0, combi_1.optPrio)(expressions_1.Abstract), (0, combi_1.optPrio)(def), expressions_1.EventHandler), parameters, testing, (0, combi_1.seq)("FOR",
|
|
14995
|
+
const ret = (0, combi_1.seq)((0, combi_1.altPrio)("CLASS-METHODS", "METHODS"), expressions_1.MethodName, (0, combi_1.alt)((0, combi_1.seq)((0, combi_1.optPrio)(expressions_1.Abstract), (0, combi_1.optPrio)(def), expressions_1.EventHandler), parameters, testing, (0, combi_1.seq)("FOR", behavior), amdp, "NOT AT END OF MODE", (0, combi_1.optPrio)(expressions_1.Redefinition)));
|
|
14995
14996
|
return ret;
|
|
14996
14997
|
}
|
|
14997
14998
|
}
|
|
@@ -15069,14 +15070,15 @@ class ModifyEntities {
|
|
|
15069
15070
|
const withh = (0, combi_1.seq)("WITH", expressions_1.Source);
|
|
15070
15071
|
const fieldsWith = (0, combi_1.seq)("FIELDS (", (0, combi_1.plus)(expressions_1.SimpleName), ")", withh);
|
|
15071
15072
|
const by = (0, combi_1.seq)("BY", expressions_1.AssociationName);
|
|
15072
|
-
const
|
|
15073
|
+
const relating = (0, combi_1.seq)("RELATING TO", expressions_1.NamespaceSimpleName, "BY", expressions_1.NamespaceSimpleName);
|
|
15074
|
+
const operation = (0, combi_1.alt)((0, combi_1.seq)("UPDATE SET FIELDS WITH", expressions_1.Source), (0, combi_1.seq)("CREATE SET FIELDS WITH", expressions_1.Source), (0, combi_1.seq)("UPDATE", fieldsWith), (0, combi_1.seq)("DELETE FROM", expressions_1.Source), (0, combi_1.seq)("CREATE", (0, combi_1.opt)(by), "FROM", expressions_1.Source, (0, combi_1.opt)(relating)), (0, combi_1.seq)("EXECUTE", expressions_1.SimpleName, "FROM", expressions_1.Source), (0, combi_1.seq)("CREATE", (0, combi_1.opt)(by), (0, combi_1.optPrio)("AUTO FILL CID"), (0, combi_1.altPrio)(withh, fieldsWith)));
|
|
15073
15075
|
const failed = (0, combi_1.seq)("FAILED", expressions_1.Target);
|
|
15074
15076
|
const result = (0, combi_1.seq)("RESULT", expressions_1.Target);
|
|
15075
15077
|
const mapped = (0, combi_1.seq)("MAPPED", expressions_1.Target);
|
|
15076
15078
|
const reported = (0, combi_1.seq)("REPORTED", expressions_1.Target);
|
|
15077
15079
|
const from = (0, combi_1.seq)("FROM", expressions_1.Source);
|
|
15078
15080
|
const execute = (0, combi_1.seq)("EXECUTE", expressions_1.NamespaceSimpleName);
|
|
15079
|
-
const entities = (0, combi_1.seq)("ENTITIES OF", expressions_1.NamespaceSimpleName, (0, combi_1.opt)("IN LOCAL MODE"), (0, combi_1.plusPrio)((0, combi_1.seq)("ENTITY", expressions_1.SimpleName, (0, combi_1.plus)(operation))), (0, combi_1.optPrio)((0, combi_1.per)(failed, result, mapped, reported)));
|
|
15081
|
+
const entities = (0, combi_1.seq)((0, combi_1.optPrio)("AUGMENTING"), "ENTITIES OF", expressions_1.NamespaceSimpleName, (0, combi_1.opt)("IN LOCAL MODE"), (0, combi_1.plusPrio)((0, combi_1.seq)("ENTITY", expressions_1.SimpleName, (0, combi_1.plus)(operation))), (0, combi_1.optPrio)((0, combi_1.per)(failed, result, mapped, reported)));
|
|
15080
15082
|
const entity = (0, combi_1.seq)("ENTITY", expressions_1.NamespaceSimpleName, execute, from, mapped, failed, reported);
|
|
15081
15083
|
return (0, combi_1.ver)(version_1.Version.v754, (0, combi_1.seq)("MODIFY", (0, combi_1.alt)(entities, entity)));
|
|
15082
15084
|
}
|
|
@@ -39523,6 +39525,7 @@ class ClassDefinition extends _identifier_1.Identifier {
|
|
|
39523
39525
|
this.abstract = (def === null || def === void 0 ? void 0 : def.findDirectTokenByText("ABSTRACT")) !== undefined;
|
|
39524
39526
|
// perform checks after everything has been initialized
|
|
39525
39527
|
this.checkMethodsFromSuperClasses(input.scope);
|
|
39528
|
+
this.checkMethodNameLength();
|
|
39526
39529
|
}
|
|
39527
39530
|
getFriends() {
|
|
39528
39531
|
return this.friends;
|
|
@@ -39575,6 +39578,14 @@ class ClassDefinition extends _identifier_1.Identifier {
|
|
|
39575
39578
|
const name = token === null || token === void 0 ? void 0 : token.getStr();
|
|
39576
39579
|
return name;
|
|
39577
39580
|
}
|
|
39581
|
+
checkMethodNameLength() {
|
|
39582
|
+
for (const m of this.methodDefs.getAll()) {
|
|
39583
|
+
if (m.getName().length > 30 && m.getName().includes("~") === false) {
|
|
39584
|
+
const message = `Method name "${m.getName()}" is too long, maximum length is 30 characters`;
|
|
39585
|
+
throw new Error(message);
|
|
39586
|
+
}
|
|
39587
|
+
}
|
|
39588
|
+
}
|
|
39578
39589
|
checkMethodsFromSuperClasses(scope) {
|
|
39579
39590
|
var _a;
|
|
39580
39591
|
let sup = this.getSuperClass();
|
|
@@ -40014,6 +40025,8 @@ class InterfaceDefinition extends _identifier_1.Identifier {
|
|
|
40014
40025
|
input.scope.push(_scope_type_1.ScopeType.Interface, name.getStr(), node.getFirstToken().getStart(), input.filename);
|
|
40015
40026
|
this.parse(input, node);
|
|
40016
40027
|
input.scope.pop(node.getLastToken().getEnd());
|
|
40028
|
+
// perform checks after everything has been initialized
|
|
40029
|
+
this.checkMethodNameLength();
|
|
40017
40030
|
}
|
|
40018
40031
|
getSuperClass() {
|
|
40019
40032
|
return undefined;
|
|
@@ -40043,6 +40056,14 @@ class InterfaceDefinition extends _identifier_1.Identifier {
|
|
|
40043
40056
|
return this.methodDefinitions;
|
|
40044
40057
|
}
|
|
40045
40058
|
/////////////////
|
|
40059
|
+
checkMethodNameLength() {
|
|
40060
|
+
for (const m of this.methodDefinitions.getAll()) {
|
|
40061
|
+
if (m.getName().length > 30) {
|
|
40062
|
+
const message = `Method name "${m.getName()}" is too long, maximum length is 30 characters`;
|
|
40063
|
+
throw new Error(message);
|
|
40064
|
+
}
|
|
40065
|
+
}
|
|
40066
|
+
}
|
|
40046
40067
|
checkInterfacesExists(input, node) {
|
|
40047
40068
|
var _a;
|
|
40048
40069
|
for (const i of node.findAllStatements(Statements.InterfaceDef)) {
|
|
@@ -41412,7 +41433,8 @@ const cds_type_1 = __webpack_require__(/*! ./cds_type */ "./node_modules/@abapli
|
|
|
41412
41433
|
class CDSDefineCustom extends combi_1.Expression {
|
|
41413
41434
|
getRunnable() {
|
|
41414
41435
|
const field = (0, combi_1.seq)((0, combi_1.star)(_1.CDSAnnotation), (0, combi_1.opt)((0, combi_1.str)("KEY")), cds_name_1.CDSName, ":", cds_type_1.CDSType, ";");
|
|
41415
|
-
|
|
41436
|
+
const composition = (0, combi_1.seq)((0, combi_1.star)(_1.CDSAnnotation), cds_name_1.CDSName, ":", _1.CDSComposition, ";");
|
|
41437
|
+
return (0, combi_1.seq)((0, combi_1.star)(_1.CDSAnnotation), (0, combi_1.str)("DEFINE"), (0, combi_1.opt)((0, combi_1.str)("ROOT")), (0, combi_1.str)("CUSTOM ENTITY"), cds_name_1.CDSName, (0, combi_1.str)("{"), (0, combi_1.plus)((0, combi_1.alt)(field, composition)), (0, combi_1.str)("}"), (0, combi_1.opt)(";"));
|
|
41416
41438
|
}
|
|
41417
41439
|
}
|
|
41418
41440
|
exports.CDSDefineCustom = CDSDefineCustom;
|
|
@@ -47131,6 +47153,37 @@ exports.BusinessCatalogAppAssignment = BusinessCatalogAppAssignment;
|
|
|
47131
47153
|
|
|
47132
47154
|
/***/ }),
|
|
47133
47155
|
|
|
47156
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/business_configuration_maintenance_object.js":
|
|
47157
|
+
/*!****************************************************************************************************!*\
|
|
47158
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/business_configuration_maintenance_object.js ***!
|
|
47159
|
+
\****************************************************************************************************/
|
|
47160
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
47161
|
+
|
|
47162
|
+
"use strict";
|
|
47163
|
+
|
|
47164
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
47165
|
+
exports.BusinessConfigurationMaintenanceObject = void 0;
|
|
47166
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
47167
|
+
class BusinessConfigurationMaintenanceObject extends _abstract_object_1.AbstractObject {
|
|
47168
|
+
getType() {
|
|
47169
|
+
return "SMBC";
|
|
47170
|
+
}
|
|
47171
|
+
getAllowedNaming() {
|
|
47172
|
+
return {
|
|
47173
|
+
maxLength: 60, // todo
|
|
47174
|
+
allowNamespace: true,
|
|
47175
|
+
};
|
|
47176
|
+
}
|
|
47177
|
+
getDescription() {
|
|
47178
|
+
// todo
|
|
47179
|
+
return undefined;
|
|
47180
|
+
}
|
|
47181
|
+
}
|
|
47182
|
+
exports.BusinessConfigurationMaintenanceObject = BusinessConfigurationMaintenanceObject;
|
|
47183
|
+
//# sourceMappingURL=business_configuration_maintenance_object.js.map
|
|
47184
|
+
|
|
47185
|
+
/***/ }),
|
|
47186
|
+
|
|
47134
47187
|
/***/ "./node_modules/@abaplint/core/build/src/objects/business_configuration_set.js":
|
|
47135
47188
|
/*!*************************************************************************************!*\
|
|
47136
47189
|
!*** ./node_modules/@abaplint/core/build/src/objects/business_configuration_set.js ***!
|
|
@@ -47745,6 +47798,37 @@ exports.ConceptsOfPackage = ConceptsOfPackage;
|
|
|
47745
47798
|
|
|
47746
47799
|
/***/ }),
|
|
47747
47800
|
|
|
47801
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/custom_data_browser_object.js":
|
|
47802
|
+
/*!*************************************************************************************!*\
|
|
47803
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/custom_data_browser_object.js ***!
|
|
47804
|
+
\*************************************************************************************/
|
|
47805
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
47806
|
+
|
|
47807
|
+
"use strict";
|
|
47808
|
+
|
|
47809
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
47810
|
+
exports.CustomDataBrowserObject = void 0;
|
|
47811
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
47812
|
+
class CustomDataBrowserObject extends _abstract_object_1.AbstractObject {
|
|
47813
|
+
getType() {
|
|
47814
|
+
return "CDBO";
|
|
47815
|
+
}
|
|
47816
|
+
getAllowedNaming() {
|
|
47817
|
+
return {
|
|
47818
|
+
maxLength: 32,
|
|
47819
|
+
allowNamespace: true,
|
|
47820
|
+
};
|
|
47821
|
+
}
|
|
47822
|
+
getDescription() {
|
|
47823
|
+
// todo
|
|
47824
|
+
return undefined;
|
|
47825
|
+
}
|
|
47826
|
+
}
|
|
47827
|
+
exports.CustomDataBrowserObject = CustomDataBrowserObject;
|
|
47828
|
+
//# sourceMappingURL=custom_data_browser_object.js.map
|
|
47829
|
+
|
|
47830
|
+
/***/ }),
|
|
47831
|
+
|
|
47748
47832
|
/***/ "./node_modules/@abaplint/core/build/src/objects/customer_enhancement_project.js":
|
|
47749
47833
|
/*!***************************************************************************************!*\
|
|
47750
47834
|
!*** ./node_modules/@abaplint/core/build/src/objects/customer_enhancement_project.js ***!
|
|
@@ -49148,6 +49232,37 @@ exports.GatewayModelMetadata = GatewayModelMetadata;
|
|
|
49148
49232
|
|
|
49149
49233
|
/***/ }),
|
|
49150
49234
|
|
|
49235
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/gateway_odata_group_and_assignment.js":
|
|
49236
|
+
/*!*********************************************************************************************!*\
|
|
49237
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/gateway_odata_group_and_assignment.js ***!
|
|
49238
|
+
\*********************************************************************************************/
|
|
49239
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
49240
|
+
|
|
49241
|
+
"use strict";
|
|
49242
|
+
|
|
49243
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
49244
|
+
exports.GatewayODataGroupAndAssignment = void 0;
|
|
49245
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
49246
|
+
class GatewayODataGroupAndAssignment extends _abstract_object_1.AbstractObject {
|
|
49247
|
+
getType() {
|
|
49248
|
+
return "G4BA";
|
|
49249
|
+
}
|
|
49250
|
+
getAllowedNaming() {
|
|
49251
|
+
return {
|
|
49252
|
+
maxLength: 32,
|
|
49253
|
+
allowNamespace: true,
|
|
49254
|
+
};
|
|
49255
|
+
}
|
|
49256
|
+
getDescription() {
|
|
49257
|
+
// todo
|
|
49258
|
+
return undefined;
|
|
49259
|
+
}
|
|
49260
|
+
}
|
|
49261
|
+
exports.GatewayODataGroupAndAssignment = GatewayODataGroupAndAssignment;
|
|
49262
|
+
//# sourceMappingURL=gateway_odata_group_and_assignment.js.map
|
|
49263
|
+
|
|
49264
|
+
/***/ }),
|
|
49265
|
+
|
|
49151
49266
|
/***/ "./node_modules/@abaplint/core/build/src/objects/gateway_project.js":
|
|
49152
49267
|
/*!**************************************************************************!*\
|
|
49153
49268
|
!*** ./node_modules/@abaplint/core/build/src/objects/gateway_project.js ***!
|
|
@@ -49760,6 +49875,7 @@ __exportStar(__webpack_require__(/*! ./bsp_application */ "./node_modules/@abapl
|
|
|
49760
49875
|
__exportStar(__webpack_require__(/*! ./business_add_in_implementation */ "./node_modules/@abaplint/core/build/src/objects/business_add_in_implementation.js"), exports);
|
|
49761
49876
|
__exportStar(__webpack_require__(/*! ./business_catalog_app_assignment */ "./node_modules/@abaplint/core/build/src/objects/business_catalog_app_assignment.js"), exports);
|
|
49762
49877
|
__exportStar(__webpack_require__(/*! ./business_catalog */ "./node_modules/@abaplint/core/build/src/objects/business_catalog.js"), exports);
|
|
49878
|
+
__exportStar(__webpack_require__(/*! ./business_configuration_maintenance_object */ "./node_modules/@abaplint/core/build/src/objects/business_configuration_maintenance_object.js"), exports);
|
|
49763
49879
|
__exportStar(__webpack_require__(/*! ./business_configuration_set */ "./node_modules/@abaplint/core/build/src/objects/business_configuration_set.js"), exports);
|
|
49764
49880
|
__exportStar(__webpack_require__(/*! ./business_function_assignment */ "./node_modules/@abaplint/core/build/src/objects/business_function_assignment.js"), exports);
|
|
49765
49881
|
__exportStar(__webpack_require__(/*! ./business_function_set_assignment */ "./node_modules/@abaplint/core/build/src/objects/business_function_set_assignment.js"), exports);
|
|
@@ -49776,6 +49892,7 @@ __exportStar(__webpack_require__(/*! ./communication_scenario */ "./node_modules
|
|
|
49776
49892
|
__exportStar(__webpack_require__(/*! ./composite_enhancement_implementation */ "./node_modules/@abaplint/core/build/src/objects/composite_enhancement_implementation.js"), exports);
|
|
49777
49893
|
__exportStar(__webpack_require__(/*! ./composite_enhancement_spot */ "./node_modules/@abaplint/core/build/src/objects/composite_enhancement_spot.js"), exports);
|
|
49778
49894
|
__exportStar(__webpack_require__(/*! ./concepts_of_package */ "./node_modules/@abaplint/core/build/src/objects/concepts_of_package.js"), exports);
|
|
49895
|
+
__exportStar(__webpack_require__(/*! ./custom_data_browser_object */ "./node_modules/@abaplint/core/build/src/objects/custom_data_browser_object.js"), exports);
|
|
49779
49896
|
__exportStar(__webpack_require__(/*! ./customer_enhancement_project */ "./node_modules/@abaplint/core/build/src/objects/customer_enhancement_project.js"), exports);
|
|
49780
49897
|
__exportStar(__webpack_require__(/*! ./customizing_attributes */ "./node_modules/@abaplint/core/build/src/objects/customizing_attributes.js"), exports);
|
|
49781
49898
|
__exportStar(__webpack_require__(/*! ./customizing_img_activity */ "./node_modules/@abaplint/core/build/src/objects/customizing_img_activity.js"), exports);
|
|
@@ -49803,6 +49920,7 @@ __exportStar(__webpack_require__(/*! ./format_type */ "./node_modules/@abaplint/
|
|
|
49803
49920
|
__exportStar(__webpack_require__(/*! ./function_group */ "./node_modules/@abaplint/core/build/src/objects/function_group.js"), exports);
|
|
49804
49921
|
__exportStar(__webpack_require__(/*! ./gateway_model_metadata */ "./node_modules/@abaplint/core/build/src/objects/gateway_model_metadata.js"), exports);
|
|
49805
49922
|
__exportStar(__webpack_require__(/*! ./gateway_model */ "./node_modules/@abaplint/core/build/src/objects/gateway_model.js"), exports);
|
|
49923
|
+
__exportStar(__webpack_require__(/*! ./gateway_odata_group_and_assignment */ "./node_modules/@abaplint/core/build/src/objects/gateway_odata_group_and_assignment.js"), exports);
|
|
49806
49924
|
__exportStar(__webpack_require__(/*! ./gateway_project */ "./node_modules/@abaplint/core/build/src/objects/gateway_project.js"), exports);
|
|
49807
49925
|
__exportStar(__webpack_require__(/*! ./gateway_service_groups_metadata */ "./node_modules/@abaplint/core/build/src/objects/gateway_service_groups_metadata.js"), exports);
|
|
49808
49926
|
__exportStar(__webpack_require__(/*! ./gateway_service */ "./node_modules/@abaplint/core/build/src/objects/gateway_service.js"), exports);
|
|
@@ -49823,6 +49941,7 @@ __exportStar(__webpack_require__(/*! ./inbound_service */ "./node_modules/@abapl
|
|
|
49823
49941
|
__exportStar(__webpack_require__(/*! ./info_area */ "./node_modules/@abaplint/core/build/src/objects/info_area.js"), exports);
|
|
49824
49942
|
__exportStar(__webpack_require__(/*! ./info_object */ "./node_modules/@abaplint/core/build/src/objects/info_object.js"), exports);
|
|
49825
49943
|
__exportStar(__webpack_require__(/*! ./interface */ "./node_modules/@abaplint/core/build/src/objects/interface.js"), exports);
|
|
49944
|
+
__exportStar(__webpack_require__(/*! ./knowledge_transfer_document */ "./node_modules/@abaplint/core/build/src/objects/knowledge_transfer_document.js"), exports);
|
|
49826
49945
|
__exportStar(__webpack_require__(/*! ./lock_object */ "./node_modules/@abaplint/core/build/src/objects/lock_object.js"), exports);
|
|
49827
49946
|
__exportStar(__webpack_require__(/*! ./maintenance_and_transport_object */ "./node_modules/@abaplint/core/build/src/objects/maintenance_and_transport_object.js"), exports);
|
|
49828
49947
|
__exportStar(__webpack_require__(/*! ./message_class */ "./node_modules/@abaplint/core/build/src/objects/message_class.js"), exports);
|
|
@@ -50051,6 +50170,37 @@ exports.Interface = Interface;
|
|
|
50051
50170
|
|
|
50052
50171
|
/***/ }),
|
|
50053
50172
|
|
|
50173
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/knowledge_transfer_document.js":
|
|
50174
|
+
/*!**************************************************************************************!*\
|
|
50175
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/knowledge_transfer_document.js ***!
|
|
50176
|
+
\**************************************************************************************/
|
|
50177
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
50178
|
+
|
|
50179
|
+
"use strict";
|
|
50180
|
+
|
|
50181
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
50182
|
+
exports.KnowledgeTransferDocument = void 0;
|
|
50183
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
50184
|
+
class KnowledgeTransferDocument extends _abstract_object_1.AbstractObject {
|
|
50185
|
+
getType() {
|
|
50186
|
+
return "SKTD";
|
|
50187
|
+
}
|
|
50188
|
+
getAllowedNaming() {
|
|
50189
|
+
return {
|
|
50190
|
+
maxLength: 60, // todo
|
|
50191
|
+
allowNamespace: true,
|
|
50192
|
+
};
|
|
50193
|
+
}
|
|
50194
|
+
getDescription() {
|
|
50195
|
+
// todo
|
|
50196
|
+
return undefined;
|
|
50197
|
+
}
|
|
50198
|
+
}
|
|
50199
|
+
exports.KnowledgeTransferDocument = KnowledgeTransferDocument;
|
|
50200
|
+
//# sourceMappingURL=knowledge_transfer_document.js.map
|
|
50201
|
+
|
|
50202
|
+
/***/ }),
|
|
50203
|
+
|
|
50054
50204
|
/***/ "./node_modules/@abaplint/core/build/src/objects/lock_object.js":
|
|
50055
50205
|
/*!**********************************************************************!*\
|
|
50056
50206
|
!*** ./node_modules/@abaplint/core/build/src/objects/lock_object.js ***!
|
|
@@ -54416,7 +54566,7 @@ class Registry {
|
|
|
54416
54566
|
}
|
|
54417
54567
|
static abaplintVersion() {
|
|
54418
54568
|
// magic, see build script "version.sh"
|
|
54419
|
-
return "2.113.
|
|
54569
|
+
return "2.113.134";
|
|
54420
54570
|
}
|
|
54421
54571
|
getDDICReferences() {
|
|
54422
54572
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.134",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.113.
|
|
41
|
+
"@abaplint/core": "^2.113.134",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|
|
45
|
-
"@types/node": "^24.0.
|
|
45
|
+
"@types/node": "^24.0.8",
|
|
46
46
|
"@types/progress": "^2.0.7",
|
|
47
47
|
"chai": "^4.5.0",
|
|
48
48
|
"p-limit": "^3.1.0",
|
|
49
49
|
"chalk": "^5.4.1",
|
|
50
|
-
"eslint": "^9.
|
|
50
|
+
"eslint": "^9.30.0",
|
|
51
51
|
"glob": "^11.0.3",
|
|
52
52
|
"json5": "^2.2.3",
|
|
53
53
|
"memfs": "^4.17.2",
|