@abaplint/cli 2.113.132 → 2.113.133
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 +139 -11
- 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)(
|
|
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)("MAPPING FROM ENTITY 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)));
|
|
@@ -9466,7 +9467,8 @@ class TypeStructure extends combi_1.Expression {
|
|
|
9466
9467
|
const reportedEarly = (0, combi_1.seq)("REPORTED EARLY", _1.NamespaceSimpleName);
|
|
9467
9468
|
const structure = (0, combi_1.seq)("STRUCTURE FOR", (0, combi_1.altPrio)(hier, evt, create, update, action, permissionsRequest, readResult));
|
|
9468
9469
|
const response = (0, combi_1.seq)("RESPONSE FOR", (0, combi_1.altPrio)(failedEarly, mappedEarly, reportedEarly));
|
|
9469
|
-
|
|
9470
|
+
const request = (0, combi_1.seq)("REQUEST FOR CHANGE", _1.NamespaceSimpleName);
|
|
9471
|
+
return (0, combi_1.seq)("TYPE", (0, combi_1.altPrio)(structure, response, request));
|
|
9470
9472
|
}
|
|
9471
9473
|
}
|
|
9472
9474
|
exports.TypeStructure = TypeStructure;
|
|
@@ -11375,7 +11377,7 @@ class CommitEntities {
|
|
|
11375
11377
|
const failed = (0, combi_1.seq)("FAILED", expressions_1.Target);
|
|
11376
11378
|
const reported = (0, combi_1.seq)("REPORTED", expressions_1.Target);
|
|
11377
11379
|
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)));
|
|
11380
|
+
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
11381
|
return (0, combi_1.ver)(version_1.Version.v754, s);
|
|
11380
11382
|
}
|
|
11381
11383
|
}
|
|
@@ -14978,20 +14980,18 @@ class MethodDef {
|
|
|
14978
14980
|
const def = (0, combi_1.ver)(version_1.Version.v740sp08, (0, combi_1.seq)("DEFAULT", (0, combi_1.altPrio)("FAIL", "IGNORE")));
|
|
14979
14981
|
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
14982
|
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
14983
|
const result = (0, combi_1.seq)("RESULT", expressions_1.MethodParamName);
|
|
14986
14984
|
const link = (0, combi_1.seq)("LINK", expressions_1.MethodParamName);
|
|
14987
14985
|
const full = (0, combi_1.seq)("FULL", expressions_1.MethodParamName);
|
|
14988
14986
|
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
14987
|
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
14988
|
const forfunction = (0, combi_1.seq)("FOR FUNCTION", expressions_1.TypeName, result);
|
|
14991
|
-
const behavior = (0, combi_1.altPrio)(
|
|
14989
|
+
const behavior = (0, combi_1.altPrio)("DDL OBJECT OPTIONS CDS SESSION CLIENT REQUIRED", // todo, this is only from version something
|
|
14990
|
+
(0, combi_1.seq)("TABLE FUNCTION", expressions_1.NamespaceSimpleName), // todo, this is only from version something
|
|
14991
|
+
(0, combi_1.seq)("VALIDATE ON SAVE IMPORTING", expressions_1.MethodParamName, "FOR", expressions_1.TypeName), (0, combi_1.seq)("MODIFY IMPORTING", 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)("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
14992
|
// todo, this is only from version something
|
|
14993
14993
|
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",
|
|
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", behavior), amdp, "NOT AT END OF MODE", (0, combi_1.optPrio)(expressions_1.Redefinition)));
|
|
14995
14995
|
return ret;
|
|
14996
14996
|
}
|
|
14997
14997
|
}
|
|
@@ -47131,6 +47131,37 @@ exports.BusinessCatalogAppAssignment = BusinessCatalogAppAssignment;
|
|
|
47131
47131
|
|
|
47132
47132
|
/***/ }),
|
|
47133
47133
|
|
|
47134
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/business_configuration_maintenance_object.js":
|
|
47135
|
+
/*!****************************************************************************************************!*\
|
|
47136
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/business_configuration_maintenance_object.js ***!
|
|
47137
|
+
\****************************************************************************************************/
|
|
47138
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
47139
|
+
|
|
47140
|
+
"use strict";
|
|
47141
|
+
|
|
47142
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
47143
|
+
exports.BusinessConfigurationMaintenanceObject = void 0;
|
|
47144
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
47145
|
+
class BusinessConfigurationMaintenanceObject extends _abstract_object_1.AbstractObject {
|
|
47146
|
+
getType() {
|
|
47147
|
+
return "SMBC";
|
|
47148
|
+
}
|
|
47149
|
+
getAllowedNaming() {
|
|
47150
|
+
return {
|
|
47151
|
+
maxLength: 60, // todo
|
|
47152
|
+
allowNamespace: true,
|
|
47153
|
+
};
|
|
47154
|
+
}
|
|
47155
|
+
getDescription() {
|
|
47156
|
+
// todo
|
|
47157
|
+
return undefined;
|
|
47158
|
+
}
|
|
47159
|
+
}
|
|
47160
|
+
exports.BusinessConfigurationMaintenanceObject = BusinessConfigurationMaintenanceObject;
|
|
47161
|
+
//# sourceMappingURL=business_configuration_maintenance_object.js.map
|
|
47162
|
+
|
|
47163
|
+
/***/ }),
|
|
47164
|
+
|
|
47134
47165
|
/***/ "./node_modules/@abaplint/core/build/src/objects/business_configuration_set.js":
|
|
47135
47166
|
/*!*************************************************************************************!*\
|
|
47136
47167
|
!*** ./node_modules/@abaplint/core/build/src/objects/business_configuration_set.js ***!
|
|
@@ -47745,6 +47776,37 @@ exports.ConceptsOfPackage = ConceptsOfPackage;
|
|
|
47745
47776
|
|
|
47746
47777
|
/***/ }),
|
|
47747
47778
|
|
|
47779
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/custom_data_browser_object.js":
|
|
47780
|
+
/*!*************************************************************************************!*\
|
|
47781
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/custom_data_browser_object.js ***!
|
|
47782
|
+
\*************************************************************************************/
|
|
47783
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
47784
|
+
|
|
47785
|
+
"use strict";
|
|
47786
|
+
|
|
47787
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
47788
|
+
exports.CustomDataBrowserObject = void 0;
|
|
47789
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
47790
|
+
class CustomDataBrowserObject extends _abstract_object_1.AbstractObject {
|
|
47791
|
+
getType() {
|
|
47792
|
+
return "CDBO";
|
|
47793
|
+
}
|
|
47794
|
+
getAllowedNaming() {
|
|
47795
|
+
return {
|
|
47796
|
+
maxLength: 32,
|
|
47797
|
+
allowNamespace: true,
|
|
47798
|
+
};
|
|
47799
|
+
}
|
|
47800
|
+
getDescription() {
|
|
47801
|
+
// todo
|
|
47802
|
+
return undefined;
|
|
47803
|
+
}
|
|
47804
|
+
}
|
|
47805
|
+
exports.CustomDataBrowserObject = CustomDataBrowserObject;
|
|
47806
|
+
//# sourceMappingURL=custom_data_browser_object.js.map
|
|
47807
|
+
|
|
47808
|
+
/***/ }),
|
|
47809
|
+
|
|
47748
47810
|
/***/ "./node_modules/@abaplint/core/build/src/objects/customer_enhancement_project.js":
|
|
47749
47811
|
/*!***************************************************************************************!*\
|
|
47750
47812
|
!*** ./node_modules/@abaplint/core/build/src/objects/customer_enhancement_project.js ***!
|
|
@@ -49148,6 +49210,37 @@ exports.GatewayModelMetadata = GatewayModelMetadata;
|
|
|
49148
49210
|
|
|
49149
49211
|
/***/ }),
|
|
49150
49212
|
|
|
49213
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/gateway_odata_group_and_assignment.js":
|
|
49214
|
+
/*!*********************************************************************************************!*\
|
|
49215
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/gateway_odata_group_and_assignment.js ***!
|
|
49216
|
+
\*********************************************************************************************/
|
|
49217
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
49218
|
+
|
|
49219
|
+
"use strict";
|
|
49220
|
+
|
|
49221
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
49222
|
+
exports.GatewayODataGroupAndAssignment = void 0;
|
|
49223
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
49224
|
+
class GatewayODataGroupAndAssignment extends _abstract_object_1.AbstractObject {
|
|
49225
|
+
getType() {
|
|
49226
|
+
return "G4BA";
|
|
49227
|
+
}
|
|
49228
|
+
getAllowedNaming() {
|
|
49229
|
+
return {
|
|
49230
|
+
maxLength: 32,
|
|
49231
|
+
allowNamespace: true,
|
|
49232
|
+
};
|
|
49233
|
+
}
|
|
49234
|
+
getDescription() {
|
|
49235
|
+
// todo
|
|
49236
|
+
return undefined;
|
|
49237
|
+
}
|
|
49238
|
+
}
|
|
49239
|
+
exports.GatewayODataGroupAndAssignment = GatewayODataGroupAndAssignment;
|
|
49240
|
+
//# sourceMappingURL=gateway_odata_group_and_assignment.js.map
|
|
49241
|
+
|
|
49242
|
+
/***/ }),
|
|
49243
|
+
|
|
49151
49244
|
/***/ "./node_modules/@abaplint/core/build/src/objects/gateway_project.js":
|
|
49152
49245
|
/*!**************************************************************************!*\
|
|
49153
49246
|
!*** ./node_modules/@abaplint/core/build/src/objects/gateway_project.js ***!
|
|
@@ -49760,6 +49853,7 @@ __exportStar(__webpack_require__(/*! ./bsp_application */ "./node_modules/@abapl
|
|
|
49760
49853
|
__exportStar(__webpack_require__(/*! ./business_add_in_implementation */ "./node_modules/@abaplint/core/build/src/objects/business_add_in_implementation.js"), exports);
|
|
49761
49854
|
__exportStar(__webpack_require__(/*! ./business_catalog_app_assignment */ "./node_modules/@abaplint/core/build/src/objects/business_catalog_app_assignment.js"), exports);
|
|
49762
49855
|
__exportStar(__webpack_require__(/*! ./business_catalog */ "./node_modules/@abaplint/core/build/src/objects/business_catalog.js"), exports);
|
|
49856
|
+
__exportStar(__webpack_require__(/*! ./business_configuration_maintenance_object */ "./node_modules/@abaplint/core/build/src/objects/business_configuration_maintenance_object.js"), exports);
|
|
49763
49857
|
__exportStar(__webpack_require__(/*! ./business_configuration_set */ "./node_modules/@abaplint/core/build/src/objects/business_configuration_set.js"), exports);
|
|
49764
49858
|
__exportStar(__webpack_require__(/*! ./business_function_assignment */ "./node_modules/@abaplint/core/build/src/objects/business_function_assignment.js"), exports);
|
|
49765
49859
|
__exportStar(__webpack_require__(/*! ./business_function_set_assignment */ "./node_modules/@abaplint/core/build/src/objects/business_function_set_assignment.js"), exports);
|
|
@@ -49776,6 +49870,7 @@ __exportStar(__webpack_require__(/*! ./communication_scenario */ "./node_modules
|
|
|
49776
49870
|
__exportStar(__webpack_require__(/*! ./composite_enhancement_implementation */ "./node_modules/@abaplint/core/build/src/objects/composite_enhancement_implementation.js"), exports);
|
|
49777
49871
|
__exportStar(__webpack_require__(/*! ./composite_enhancement_spot */ "./node_modules/@abaplint/core/build/src/objects/composite_enhancement_spot.js"), exports);
|
|
49778
49872
|
__exportStar(__webpack_require__(/*! ./concepts_of_package */ "./node_modules/@abaplint/core/build/src/objects/concepts_of_package.js"), exports);
|
|
49873
|
+
__exportStar(__webpack_require__(/*! ./custom_data_browser_object */ "./node_modules/@abaplint/core/build/src/objects/custom_data_browser_object.js"), exports);
|
|
49779
49874
|
__exportStar(__webpack_require__(/*! ./customer_enhancement_project */ "./node_modules/@abaplint/core/build/src/objects/customer_enhancement_project.js"), exports);
|
|
49780
49875
|
__exportStar(__webpack_require__(/*! ./customizing_attributes */ "./node_modules/@abaplint/core/build/src/objects/customizing_attributes.js"), exports);
|
|
49781
49876
|
__exportStar(__webpack_require__(/*! ./customizing_img_activity */ "./node_modules/@abaplint/core/build/src/objects/customizing_img_activity.js"), exports);
|
|
@@ -49803,6 +49898,7 @@ __exportStar(__webpack_require__(/*! ./format_type */ "./node_modules/@abaplint/
|
|
|
49803
49898
|
__exportStar(__webpack_require__(/*! ./function_group */ "./node_modules/@abaplint/core/build/src/objects/function_group.js"), exports);
|
|
49804
49899
|
__exportStar(__webpack_require__(/*! ./gateway_model_metadata */ "./node_modules/@abaplint/core/build/src/objects/gateway_model_metadata.js"), exports);
|
|
49805
49900
|
__exportStar(__webpack_require__(/*! ./gateway_model */ "./node_modules/@abaplint/core/build/src/objects/gateway_model.js"), exports);
|
|
49901
|
+
__exportStar(__webpack_require__(/*! ./gateway_odata_group_and_assignment */ "./node_modules/@abaplint/core/build/src/objects/gateway_odata_group_and_assignment.js"), exports);
|
|
49806
49902
|
__exportStar(__webpack_require__(/*! ./gateway_project */ "./node_modules/@abaplint/core/build/src/objects/gateway_project.js"), exports);
|
|
49807
49903
|
__exportStar(__webpack_require__(/*! ./gateway_service_groups_metadata */ "./node_modules/@abaplint/core/build/src/objects/gateway_service_groups_metadata.js"), exports);
|
|
49808
49904
|
__exportStar(__webpack_require__(/*! ./gateway_service */ "./node_modules/@abaplint/core/build/src/objects/gateway_service.js"), exports);
|
|
@@ -49823,6 +49919,7 @@ __exportStar(__webpack_require__(/*! ./inbound_service */ "./node_modules/@abapl
|
|
|
49823
49919
|
__exportStar(__webpack_require__(/*! ./info_area */ "./node_modules/@abaplint/core/build/src/objects/info_area.js"), exports);
|
|
49824
49920
|
__exportStar(__webpack_require__(/*! ./info_object */ "./node_modules/@abaplint/core/build/src/objects/info_object.js"), exports);
|
|
49825
49921
|
__exportStar(__webpack_require__(/*! ./interface */ "./node_modules/@abaplint/core/build/src/objects/interface.js"), exports);
|
|
49922
|
+
__exportStar(__webpack_require__(/*! ./knowledge_transfer_document */ "./node_modules/@abaplint/core/build/src/objects/knowledge_transfer_document.js"), exports);
|
|
49826
49923
|
__exportStar(__webpack_require__(/*! ./lock_object */ "./node_modules/@abaplint/core/build/src/objects/lock_object.js"), exports);
|
|
49827
49924
|
__exportStar(__webpack_require__(/*! ./maintenance_and_transport_object */ "./node_modules/@abaplint/core/build/src/objects/maintenance_and_transport_object.js"), exports);
|
|
49828
49925
|
__exportStar(__webpack_require__(/*! ./message_class */ "./node_modules/@abaplint/core/build/src/objects/message_class.js"), exports);
|
|
@@ -50051,6 +50148,37 @@ exports.Interface = Interface;
|
|
|
50051
50148
|
|
|
50052
50149
|
/***/ }),
|
|
50053
50150
|
|
|
50151
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/knowledge_transfer_document.js":
|
|
50152
|
+
/*!**************************************************************************************!*\
|
|
50153
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/knowledge_transfer_document.js ***!
|
|
50154
|
+
\**************************************************************************************/
|
|
50155
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
50156
|
+
|
|
50157
|
+
"use strict";
|
|
50158
|
+
|
|
50159
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
50160
|
+
exports.KnowledgeTransferDocument = void 0;
|
|
50161
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
50162
|
+
class KnowledgeTransferDocument extends _abstract_object_1.AbstractObject {
|
|
50163
|
+
getType() {
|
|
50164
|
+
return "SKTD";
|
|
50165
|
+
}
|
|
50166
|
+
getAllowedNaming() {
|
|
50167
|
+
return {
|
|
50168
|
+
maxLength: 60, // todo
|
|
50169
|
+
allowNamespace: true,
|
|
50170
|
+
};
|
|
50171
|
+
}
|
|
50172
|
+
getDescription() {
|
|
50173
|
+
// todo
|
|
50174
|
+
return undefined;
|
|
50175
|
+
}
|
|
50176
|
+
}
|
|
50177
|
+
exports.KnowledgeTransferDocument = KnowledgeTransferDocument;
|
|
50178
|
+
//# sourceMappingURL=knowledge_transfer_document.js.map
|
|
50179
|
+
|
|
50180
|
+
/***/ }),
|
|
50181
|
+
|
|
50054
50182
|
/***/ "./node_modules/@abaplint/core/build/src/objects/lock_object.js":
|
|
50055
50183
|
/*!**********************************************************************!*\
|
|
50056
50184
|
!*** ./node_modules/@abaplint/core/build/src/objects/lock_object.js ***!
|
|
@@ -54416,7 +54544,7 @@ class Registry {
|
|
|
54416
54544
|
}
|
|
54417
54545
|
static abaplintVersion() {
|
|
54418
54546
|
// magic, see build script "version.sh"
|
|
54419
|
-
return "2.113.
|
|
54547
|
+
return "2.113.133";
|
|
54420
54548
|
}
|
|
54421
54549
|
getDDICReferences() {
|
|
54422
54550
|
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.133",
|
|
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.133",
|
|
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.7",
|
|
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",
|