@abaplint/cli 2.103.2 → 2.103.4
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 +161 -7
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -4730,7 +4730,7 @@ class DataDefinition extends combi_1.Expression {
|
|
|
4730
4730
|
getRunnable() {
|
|
4731
4731
|
const simple = (0, combi_1.opt)((0, combi_1.per)("READ-ONLY", Expressions.Type, Expressions.Length, Expressions.Decimals, Expressions.Value));
|
|
4732
4732
|
const table = (0, combi_1.seq)(Expressions.TypeTable, (0, combi_1.optPrio)("READ-ONLY"));
|
|
4733
|
-
return (0, combi_1.seq)(Expressions.DefinitionName, (0, combi_1.optPrio)(Expressions.ConstantFieldLength), (0, combi_1.alt)(simple, table));
|
|
4733
|
+
return (0, combi_1.seq)(Expressions.DefinitionName, (0, combi_1.optPrio)(Expressions.ConstantFieldLength), (0, combi_1.alt)(simple, table, Expressions.TypeStructure));
|
|
4734
4734
|
}
|
|
4735
4735
|
}
|
|
4736
4736
|
exports.DataDefinition = DataDefinition;
|
|
@@ -5859,6 +5859,7 @@ __exportStar(__webpack_require__(/*! ./string_template_formatting */ "./node_mod
|
|
|
5859
5859
|
__exportStar(__webpack_require__(/*! ./string_template_source */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/string_template_source.js"), exports);
|
|
5860
5860
|
__exportStar(__webpack_require__(/*! ./string_template */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/string_template.js"), exports);
|
|
5861
5861
|
__exportStar(__webpack_require__(/*! ./super_class_name */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/super_class_name.js"), exports);
|
|
5862
|
+
__exportStar(__webpack_require__(/*! ./type_structure */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/type_structure.js"), exports);
|
|
5862
5863
|
__exportStar(__webpack_require__(/*! ./switch_body */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/switch_body.js"), exports);
|
|
5863
5864
|
__exportStar(__webpack_require__(/*! ./table_body */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/table_body.js"), exports);
|
|
5864
5865
|
__exportStar(__webpack_require__(/*! ./table_expression */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/table_expression.js"), exports);
|
|
@@ -9142,6 +9143,31 @@ exports.TypeParam = TypeParam;
|
|
|
9142
9143
|
|
|
9143
9144
|
/***/ }),
|
|
9144
9145
|
|
|
9146
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/type_structure.js":
|
|
9147
|
+
/*!***********************************************************************************************!*\
|
|
9148
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/type_structure.js ***!
|
|
9149
|
+
\***********************************************************************************************/
|
|
9150
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
9151
|
+
|
|
9152
|
+
"use strict";
|
|
9153
|
+
|
|
9154
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
9155
|
+
exports.TypeStructure = void 0;
|
|
9156
|
+
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
9157
|
+
const _1 = __webpack_require__(/*! . */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/index.js");
|
|
9158
|
+
class TypeStructure extends combi_1.Expression {
|
|
9159
|
+
getRunnable() {
|
|
9160
|
+
// todo, add version,
|
|
9161
|
+
const hier = (0, combi_1.seq)("HIERARCHY", _1.NamespaceSimpleName);
|
|
9162
|
+
const evt = (0, combi_1.seq)("EVENT", _1.EventName);
|
|
9163
|
+
return (0, combi_1.seq)("TYPE STRUCTURE FOR", (0, combi_1.altPrio)(hier, evt));
|
|
9164
|
+
}
|
|
9165
|
+
}
|
|
9166
|
+
exports.TypeStructure = TypeStructure;
|
|
9167
|
+
//# sourceMappingURL=type_structure.js.map
|
|
9168
|
+
|
|
9169
|
+
/***/ }),
|
|
9170
|
+
|
|
9145
9171
|
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/type_table.js":
|
|
9146
9172
|
/*!*******************************************************************************************!*\
|
|
9147
9173
|
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/type_table.js ***!
|
|
@@ -9170,7 +9196,7 @@ class TypeTable extends combi_1.Expression {
|
|
|
9170
9196
|
// "WITH" is not allowed as a field name in keys
|
|
9171
9197
|
const typetable = (0, combi_1.alt)(generic, (0, combi_1.seq)(normal1, (0, combi_1.alt)((0, combi_1.opt)((0, combi_1.per)(header, initial, (0, combi_1.plusPrio)(type_table_key_1.TypeTableKey))), (0, combi_1.seq)((0, combi_1.plus)(type_table_key_1.TypeTableKey), (0, combi_1.optPrio)(initial)))));
|
|
9172
9198
|
const occurs = (0, combi_1.seq)("OCCURS", _1.Integer);
|
|
9173
|
-
const derived = (0, combi_1.ver)(version_1.Version.v754, (0, combi_1.seq)("TABLE FOR", (0, combi_1.altPrio)("ACTION IMPORT", "ACTION RESULT", "CREATE", "FAILED", "LOCK", "READ RESULT", "UPDATE"), _1.TypeName));
|
|
9199
|
+
const derived = (0, combi_1.ver)(version_1.Version.v754, (0, combi_1.seq)("TABLE FOR", (0, combi_1.altPrio)("ACTION IMPORT", "ACTION RESULT", "CREATE", "EVENT", "FAILED", "LOCK", "READ RESULT", "UPDATE"), _1.TypeName));
|
|
9174
9200
|
const oldType = (0, combi_1.seq)((0, combi_1.opt)("REF TO"), _1.TypeName, (0, combi_1.alt)((0, combi_1.seq)(occurs, (0, combi_1.opt)(header)), header));
|
|
9175
9201
|
const oldLike = (0, combi_1.seq)((0, combi_1.opt)("REF TO"), field_chain_1.FieldChain, (0, combi_1.alt)((0, combi_1.seq)(occurs, (0, combi_1.opt)(header)), header));
|
|
9176
9202
|
const ret = (0, combi_1.altPrio)((0, combi_1.seq)(occurs, (0, combi_1.opt)(header)), (0, combi_1.seq)("LIKE", (0, combi_1.alt)(oldLike, likeType, rangeLike)), (0, combi_1.seq)("TYPE", (0, combi_1.alt)(oldType, typetable, rangeType, derived)));
|
|
@@ -13819,6 +13845,7 @@ __exportStar(__webpack_require__(/*! ./free */ "./node_modules/@abaplint/core/bu
|
|
|
13819
13845
|
__exportStar(__webpack_require__(/*! ./endon */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/endon.js"), exports);
|
|
13820
13846
|
__exportStar(__webpack_require__(/*! ./fetch_next_cursor */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/fetch_next_cursor.js"), exports);
|
|
13821
13847
|
__exportStar(__webpack_require__(/*! ./reserve */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/reserve.js"), exports);
|
|
13848
|
+
__exportStar(__webpack_require__(/*! ./raise_entity_event */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/raise_entity_event.js"), exports);
|
|
13822
13849
|
__exportStar(__webpack_require__(/*! ./refresh_control */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/refresh_control.js"), exports);
|
|
13823
13850
|
__exportStar(__webpack_require__(/*! ./delete_dynpro */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/delete_dynpro.js"), exports);
|
|
13824
13851
|
__exportStar(__webpack_require__(/*! ./generate_dynpro */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/generate_dynpro.js"), exports);
|
|
@@ -15237,6 +15264,28 @@ exports.Raise = Raise;
|
|
|
15237
15264
|
|
|
15238
15265
|
/***/ }),
|
|
15239
15266
|
|
|
15267
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/raise_entity_event.js":
|
|
15268
|
+
/*!**************************************************************************************************!*\
|
|
15269
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/raise_entity_event.js ***!
|
|
15270
|
+
\**************************************************************************************************/
|
|
15271
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
15272
|
+
|
|
15273
|
+
"use strict";
|
|
15274
|
+
|
|
15275
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
15276
|
+
exports.RaiseEntityEvent = void 0;
|
|
15277
|
+
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
15278
|
+
const expressions_1 = __webpack_require__(/*! ../expressions */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/index.js");
|
|
15279
|
+
class RaiseEntityEvent {
|
|
15280
|
+
getMatcher() {
|
|
15281
|
+
return (0, combi_1.seq)("RAISE ENTITY EVENT", expressions_1.EventName, "FROM", expressions_1.Source);
|
|
15282
|
+
}
|
|
15283
|
+
}
|
|
15284
|
+
exports.RaiseEntityEvent = RaiseEntityEvent;
|
|
15285
|
+
//# sourceMappingURL=raise_entity_event.js.map
|
|
15286
|
+
|
|
15287
|
+
/***/ }),
|
|
15288
|
+
|
|
15240
15289
|
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/raise_event.js":
|
|
15241
15290
|
/*!*******************************************************************************************!*\
|
|
15242
15291
|
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/raise_event.js ***!
|
|
@@ -17177,7 +17226,7 @@ const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@a
|
|
|
17177
17226
|
class Type {
|
|
17178
17227
|
getMatcher() {
|
|
17179
17228
|
const simple = (0, combi_1.per)(Expressions.Type, Expressions.Decimals, Expressions.Length);
|
|
17180
|
-
const def = (0, combi_1.seq)(Expressions.NamespaceSimpleName, (0, combi_1.opt)(Expressions.ConstantFieldLength), (0, combi_1.opt)((0, combi_1.alt)(simple, Expressions.TypeTable)));
|
|
17229
|
+
const def = (0, combi_1.seq)(Expressions.NamespaceSimpleName, (0, combi_1.opt)(Expressions.ConstantFieldLength), (0, combi_1.opt)((0, combi_1.alt)(simple, Expressions.TypeTable, Expressions.TypeStructure)));
|
|
17181
17230
|
// todo, BOXED is only allowed with structures inside structures?
|
|
17182
17231
|
const boxed = (0, combi_1.ver)(version_1.Version.v702, "BOXED");
|
|
17183
17232
|
const ret = (0, combi_1.seq)("TYPES", def, (0, combi_1.opt)(boxed));
|
|
@@ -17752,7 +17801,7 @@ class Write {
|
|
|
17752
17801
|
const as = (0, combi_1.seq)("AS", (0, combi_1.altPrio)("LINE", "ICON", "CHECKBOX", "SYMBOL"));
|
|
17753
17802
|
const to = (0, combi_1.seq)("TO", expressions_1.Target);
|
|
17754
17803
|
const options = (0, combi_1.per)(mask, to, (0, combi_1.seq)("EXPONENT", expressions_1.Source), "NO-GROUPING", "NO-ZERO", "CENTERED", (0, combi_1.seq)("INPUT", (0, combi_1.opt)(onOff)), "NO-GAP", "LEFT-JUSTIFIED", as, (0, combi_1.seq)("FRAMES", onOff), (0, combi_1.seq)("HOTSPOT", (0, combi_1.opt)(onOff)), "RIGHT-JUSTIFIED", (0, combi_1.seq)("TIME ZONE", expressions_1.Source), (0, combi_1.seq)("UNDER", expressions_1.Source), (0, combi_1.seq)("STYLE", expressions_1.Source), (0, combi_1.seq)("ROUND", expressions_1.Source), (0, combi_1.seq)("QUICKINFO", expressions_1.Source), "ENVIRONMENT TIME FORMAT", dateFormat, (0, combi_1.seq)("UNIT", expressions_1.Source), (0, combi_1.seq)("INTENSIFIED", (0, combi_1.opt)(onOff)), (0, combi_1.seq)("INDEX", expressions_1.Source), (0, combi_1.seq)("DECIMALS", expressions_1.Source), (0, combi_1.seq)("INVERSE", (0, combi_1.opt)(onOff)), expressions_1.Color, (0, combi_1.seq)("CURRENCY", expressions_1.Source), "NO-SIGN");
|
|
17755
|
-
const ret = (0, combi_1.seq)("WRITE", (0, combi_1.opt)(expressions_1.WriteOffsetLength), (0, combi_1.altPrio)(expressions_1.Source, expressions_1.Dynamic, "/"), (0, combi_1.opt)(options));
|
|
17804
|
+
const ret = (0, combi_1.seq)("WRITE", (0, combi_1.alt)("AT /", (0, combi_1.seq)((0, combi_1.opt)(expressions_1.WriteOffsetLength), (0, combi_1.altPrio)(expressions_1.Source, expressions_1.Dynamic, "/"), (0, combi_1.opt)(options))));
|
|
17756
17805
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
17757
17806
|
}
|
|
17758
17807
|
}
|
|
@@ -24268,6 +24317,11 @@ class DataDefinition {
|
|
|
24268
24317
|
if (valueNode) {
|
|
24269
24318
|
value = new basic_types_1.BasicTypes(filename, scope).findValue(node);
|
|
24270
24319
|
}
|
|
24320
|
+
const name = node.findFirstExpression(Expressions.DefinitionName);
|
|
24321
|
+
const typeStructure = node.findFirstExpression(Expressions.TypeStructure);
|
|
24322
|
+
if (typeStructure && name) {
|
|
24323
|
+
return new _typed_identifier_1.TypedIdentifier(name.getFirstToken(), filename, new basic_1.VoidType("DataDefinition, TypeStructure"));
|
|
24324
|
+
}
|
|
24271
24325
|
const bfound = new basic_types_1.BasicTypes(filename, scope).simpleType(node);
|
|
24272
24326
|
if (bfound) {
|
|
24273
24327
|
if (value) {
|
|
@@ -24277,8 +24331,8 @@ class DataDefinition {
|
|
|
24277
24331
|
return bfound;
|
|
24278
24332
|
}
|
|
24279
24333
|
}
|
|
24280
|
-
const name = node.findFirstExpression(Expressions.DefinitionName);
|
|
24281
24334
|
if (name) {
|
|
24335
|
+
console.dir("undef");
|
|
24282
24336
|
return new _typed_identifier_1.TypedIdentifier(name.getFirstToken(), filename, new basic_1.UnknownType("DataDefinition, fallback"));
|
|
24283
24337
|
}
|
|
24284
24338
|
return undefined;
|
|
@@ -26281,7 +26335,7 @@ class Select {
|
|
|
26281
26335
|
const token = node.getFirstToken();
|
|
26282
26336
|
const from = node.findDirectExpression(Expressions.SQLFrom);
|
|
26283
26337
|
const dbSources = from ? new sql_from_1.SQLFrom().runSyntax(from, scope, filename) : [];
|
|
26284
|
-
if (
|
|
26338
|
+
if (from === undefined) {
|
|
26285
26339
|
throw new Error(`Missing FROM`);
|
|
26286
26340
|
}
|
|
26287
26341
|
const fields = this.findFields(node);
|
|
@@ -43574,6 +43628,37 @@ exports.ApplicationJobTemplate = ApplicationJobTemplate;
|
|
|
43574
43628
|
|
|
43575
43629
|
/***/ }),
|
|
43576
43630
|
|
|
43631
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/application_log_object.js":
|
|
43632
|
+
/*!*********************************************************************************!*\
|
|
43633
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/application_log_object.js ***!
|
|
43634
|
+
\*********************************************************************************/
|
|
43635
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
43636
|
+
|
|
43637
|
+
"use strict";
|
|
43638
|
+
|
|
43639
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
43640
|
+
exports.ApplicationLogObject = void 0;
|
|
43641
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
43642
|
+
class ApplicationLogObject extends _abstract_object_1.AbstractObject {
|
|
43643
|
+
getType() {
|
|
43644
|
+
return "APLO";
|
|
43645
|
+
}
|
|
43646
|
+
getAllowedNaming() {
|
|
43647
|
+
return {
|
|
43648
|
+
maxLength: 200,
|
|
43649
|
+
allowNamespace: true,
|
|
43650
|
+
};
|
|
43651
|
+
}
|
|
43652
|
+
getDescription() {
|
|
43653
|
+
// todo
|
|
43654
|
+
return undefined;
|
|
43655
|
+
}
|
|
43656
|
+
}
|
|
43657
|
+
exports.ApplicationLogObject = ApplicationLogObject;
|
|
43658
|
+
//# sourceMappingURL=application_log_object.js.map
|
|
43659
|
+
|
|
43660
|
+
/***/ }),
|
|
43661
|
+
|
|
43577
43662
|
/***/ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js":
|
|
43578
43663
|
/*!****************************************************************************************************!*\
|
|
43579
43664
|
!*** ./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js ***!
|
|
@@ -45425,6 +45510,37 @@ exports.EventBinding = EventBinding;
|
|
|
45425
45510
|
|
|
45426
45511
|
/***/ }),
|
|
45427
45512
|
|
|
45513
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/event_consumer.js":
|
|
45514
|
+
/*!*************************************************************************!*\
|
|
45515
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/event_consumer.js ***!
|
|
45516
|
+
\*************************************************************************/
|
|
45517
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
45518
|
+
|
|
45519
|
+
"use strict";
|
|
45520
|
+
|
|
45521
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
45522
|
+
exports.EventConsumer = void 0;
|
|
45523
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
45524
|
+
class EventConsumer extends _abstract_object_1.AbstractObject {
|
|
45525
|
+
getType() {
|
|
45526
|
+
return "EEEC";
|
|
45527
|
+
}
|
|
45528
|
+
getAllowedNaming() {
|
|
45529
|
+
return {
|
|
45530
|
+
maxLength: 200,
|
|
45531
|
+
allowNamespace: true,
|
|
45532
|
+
};
|
|
45533
|
+
}
|
|
45534
|
+
getDescription() {
|
|
45535
|
+
// todo
|
|
45536
|
+
return undefined;
|
|
45537
|
+
}
|
|
45538
|
+
}
|
|
45539
|
+
exports.EventConsumer = EventConsumer;
|
|
45540
|
+
//# sourceMappingURL=event_consumer.js.map
|
|
45541
|
+
|
|
45542
|
+
/***/ }),
|
|
45543
|
+
|
|
45428
45544
|
/***/ "./node_modules/@abaplint/core/build/src/objects/extension_index.js":
|
|
45429
45545
|
/*!**************************************************************************!*\
|
|
45430
45546
|
!*** ./node_modules/@abaplint/core/build/src/objects/extension_index.js ***!
|
|
@@ -46406,6 +46522,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
46406
46522
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
46407
46523
|
__exportStar(__webpack_require__(/*! ./activation_variant */ "./node_modules/@abaplint/core/build/src/objects/activation_variant.js"), exports);
|
|
46408
46524
|
__exportStar(__webpack_require__(/*! ./api_release_state */ "./node_modules/@abaplint/core/build/src/objects/api_release_state.js"), exports);
|
|
46525
|
+
__exportStar(__webpack_require__(/*! ./application_log_object */ "./node_modules/@abaplint/core/build/src/objects/application_log_object.js"), exports);
|
|
46409
46526
|
__exportStar(__webpack_require__(/*! ./application_job_catalog_entry */ "./node_modules/@abaplint/core/build/src/objects/application_job_catalog_entry.js"), exports);
|
|
46410
46527
|
__exportStar(__webpack_require__(/*! ./application_job_template */ "./node_modules/@abaplint/core/build/src/objects/application_job_template.js"), exports);
|
|
46411
46528
|
__exportStar(__webpack_require__(/*! ./assignment_service_to_authorization_group */ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js"), exports);
|
|
@@ -46452,6 +46569,8 @@ __exportStar(__webpack_require__(/*! ./ecatt_test_script */ "./node_modules/@aba
|
|
|
46452
46569
|
__exportStar(__webpack_require__(/*! ./enhancement_implementation */ "./node_modules/@abaplint/core/build/src/objects/enhancement_implementation.js"), exports);
|
|
46453
46570
|
__exportStar(__webpack_require__(/*! ./enhancement_spot */ "./node_modules/@abaplint/core/build/src/objects/enhancement_spot.js"), exports);
|
|
46454
46571
|
__exportStar(__webpack_require__(/*! ./event_binding */ "./node_modules/@abaplint/core/build/src/objects/event_binding.js"), exports);
|
|
46572
|
+
__exportStar(__webpack_require__(/*! ./event_consumer */ "./node_modules/@abaplint/core/build/src/objects/event_consumer.js"), exports);
|
|
46573
|
+
__exportStar(__webpack_require__(/*! ./event_binding */ "./node_modules/@abaplint/core/build/src/objects/event_binding.js"), exports);
|
|
46455
46574
|
__exportStar(__webpack_require__(/*! ./extension_index */ "./node_modules/@abaplint/core/build/src/objects/extension_index.js"), exports);
|
|
46456
46575
|
__exportStar(__webpack_require__(/*! ./field_catalog */ "./node_modules/@abaplint/core/build/src/objects/field_catalog.js"), exports);
|
|
46457
46576
|
__exportStar(__webpack_require__(/*! ./form_object_form */ "./node_modules/@abaplint/core/build/src/objects/form_object_form.js"), exports);
|
|
@@ -46495,6 +46614,7 @@ __exportStar(__webpack_require__(/*! ./personalization_object */ "./node_modules
|
|
|
46495
46614
|
__exportStar(__webpack_require__(/*! ./program */ "./node_modules/@abaplint/core/build/src/objects/program.js"), exports);
|
|
46496
46615
|
__exportStar(__webpack_require__(/*! ./proxy_object */ "./node_modules/@abaplint/core/build/src/objects/proxy_object.js"), exports);
|
|
46497
46616
|
__exportStar(__webpack_require__(/*! ./push_channel */ "./node_modules/@abaplint/core/build/src/objects/push_channel.js"), exports);
|
|
46617
|
+
__exportStar(__webpack_require__(/*! ./query_user_group */ "./node_modules/@abaplint/core/build/src/objects/query_user_group.js"), exports);
|
|
46498
46618
|
__exportStar(__webpack_require__(/*! ./restriction_field */ "./node_modules/@abaplint/core/build/src/objects/restriction_field.js"), exports);
|
|
46499
46619
|
__exportStar(__webpack_require__(/*! ./restriction_type */ "./node_modules/@abaplint/core/build/src/objects/restriction_type.js"), exports);
|
|
46500
46620
|
__exportStar(__webpack_require__(/*! ./rfc_service */ "./node_modules/@abaplint/core/build/src/objects/rfc_service.js"), exports);
|
|
@@ -47474,6 +47594,37 @@ exports.PushChannel = PushChannel;
|
|
|
47474
47594
|
|
|
47475
47595
|
/***/ }),
|
|
47476
47596
|
|
|
47597
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/query_user_group.js":
|
|
47598
|
+
/*!***************************************************************************!*\
|
|
47599
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/query_user_group.js ***!
|
|
47600
|
+
\***************************************************************************/
|
|
47601
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
47602
|
+
|
|
47603
|
+
"use strict";
|
|
47604
|
+
|
|
47605
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
47606
|
+
exports.QueryUserGroup = void 0;
|
|
47607
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
47608
|
+
class QueryUserGroup extends _abstract_object_1.AbstractObject {
|
|
47609
|
+
getType() {
|
|
47610
|
+
return "AQBG";
|
|
47611
|
+
}
|
|
47612
|
+
getAllowedNaming() {
|
|
47613
|
+
return {
|
|
47614
|
+
maxLength: 200,
|
|
47615
|
+
allowNamespace: true,
|
|
47616
|
+
};
|
|
47617
|
+
}
|
|
47618
|
+
getDescription() {
|
|
47619
|
+
// todo
|
|
47620
|
+
return undefined;
|
|
47621
|
+
}
|
|
47622
|
+
}
|
|
47623
|
+
exports.QueryUserGroup = QueryUserGroup;
|
|
47624
|
+
//# sourceMappingURL=query_user_group.js.map
|
|
47625
|
+
|
|
47626
|
+
/***/ }),
|
|
47627
|
+
|
|
47477
47628
|
/***/ "./node_modules/@abaplint/core/build/src/objects/rename/rename_data_element.js":
|
|
47478
47629
|
/*!*************************************************************************************!*\
|
|
47479
47630
|
!*** ./node_modules/@abaplint/core/build/src/objects/rename/rename_data_element.js ***!
|
|
@@ -50735,7 +50886,7 @@ class Registry {
|
|
|
50735
50886
|
}
|
|
50736
50887
|
static abaplintVersion() {
|
|
50737
50888
|
// magic, see build script "version.sh"
|
|
50738
|
-
return "2.103.
|
|
50889
|
+
return "2.103.4";
|
|
50739
50890
|
}
|
|
50740
50891
|
getDDICReferences() {
|
|
50741
50892
|
return this.ddicReferences;
|
|
@@ -53966,11 +54117,14 @@ class CloudTypes {
|
|
|
53966
54117
|
|| obj instanceof Objects.BusinessCatalogAppAssignment
|
|
53967
54118
|
|| obj instanceof Objects.CDSMetadataExtension
|
|
53968
54119
|
|| obj instanceof Objects.Class
|
|
54120
|
+
|| obj instanceof Objects.ApplicationLogObject
|
|
53969
54121
|
|| obj instanceof Objects.CommunicationScenario
|
|
53970
54122
|
|| obj instanceof Objects.DataControl
|
|
53971
54123
|
|| obj instanceof Objects.DataDefinition
|
|
53972
54124
|
|| obj instanceof Objects.DataElement
|
|
53973
54125
|
|| obj instanceof Objects.Domain
|
|
54126
|
+
|| obj instanceof Objects.EventBinding
|
|
54127
|
+
|| obj instanceof Objects.EventConsumer
|
|
53974
54128
|
|| obj instanceof Objects.FunctionGroup
|
|
53975
54129
|
|| obj instanceof Objects.HttpService
|
|
53976
54130
|
|| obj instanceof Objects.IAMApp
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.103.
|
|
3
|
+
"version": "2.103.4",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.103.
|
|
41
|
+
"@abaplint/core": "^2.103.4",
|
|
42
42
|
"@types/chai": "^4.3.9",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|