@abaplint/cli 2.113.113 → 2.113.115

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.
Files changed (2) hide show
  1. package/build/cli.js +198 -8
  2. package/package.json +6 -6
package/build/cli.js CHANGED
@@ -4155,7 +4155,7 @@ const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/co
4155
4155
  const tokens_1 = __webpack_require__(/*! ../../1_lexer/tokens */ "./node_modules/@abaplint/core/build/src/abap/1_lexer/tokens/index.js");
4156
4156
  class BlockName extends combi_1.Expression {
4157
4157
  getRunnable() {
4158
- const ret = (0, combi_1.seq)((0, combi_1.regex)(/^[\w%\$\*]+$/), (0, combi_1.starPrio)((0, combi_1.seq)((0, combi_1.tok)(tokens_1.Dash), (0, combi_1.regex)(/^[\w%\$\*]+$/))));
4158
+ const ret = (0, combi_1.seq)((0, combi_1.optPrio)((0, combi_1.tok)(tokens_1.WDash)), (0, combi_1.regex)(/^[\w%\$\*]+$/), (0, combi_1.starPrio)((0, combi_1.seq)((0, combi_1.tok)(tokens_1.Dash), (0, combi_1.regex)(/^[\w%\$\*]+$/))));
4159
4159
  return ret;
4160
4160
  }
4161
4161
  }
@@ -4601,7 +4601,7 @@ exports.ComponentName = void 0;
4601
4601
  const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
4602
4602
  class ComponentName extends combi_1.Expression {
4603
4603
  getRunnable() {
4604
- return (0, combi_1.regex)(/^\w*(\/\w+\/)*[\w\d_%$\*\~]+$/);
4604
+ return (0, combi_1.regex)(/^[\/\w\d_%$\*\~]+$/);
4605
4605
  }
4606
4606
  }
4607
4607
  exports.ComponentName = ComponentName;
@@ -12115,7 +12115,7 @@ class Describe {
12115
12115
  const lineSize = (0, combi_1.seq)("LINE-SIZE", expressions_1.Target);
12116
12116
  const lineCount = (0, combi_1.seq)("LINE-COUNT", expressions_1.Target);
12117
12117
  const first = (0, combi_1.seq)("FIRST-LINE", expressions_1.Target);
12118
- const list = (0, combi_1.seq)("LIST", (0, combi_1.per)(lines, pages, index, line, page, top, first, lineSize, lineCount));
12118
+ const list = (0, combi_1.seq)("LIST", (0, combi_1.per)(lines, pages, index, line, page, top, first, tlines, lineSize, lineCount));
12119
12119
  const ret = (0, combi_1.seq)("DESCRIBE", (0, combi_1.altPrio)(table, field, distance, list));
12120
12120
  return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
12121
12121
  }
@@ -12195,6 +12195,28 @@ exports.Do = Do;
12195
12195
 
12196
12196
  /***/ }),
12197
12197
 
12198
+ /***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/dynpro_loop.js":
12199
+ /*!*******************************************************************************************!*\
12200
+ !*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/dynpro_loop.js ***!
12201
+ \*******************************************************************************************/
12202
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
12203
+
12204
+ "use strict";
12205
+
12206
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
12207
+ exports.DynproLoop = void 0;
12208
+ const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
12209
+ const simple_source2_1 = __webpack_require__(/*! ../expressions/simple_source2 */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/simple_source2.js");
12210
+ class DynproLoop {
12211
+ getMatcher() {
12212
+ return (0, combi_1.seq)("LOOP AT", simple_source2_1.SimpleSource2, "WITH CONTROL", simple_source2_1.SimpleSource2, "CURSOR", simple_source2_1.SimpleSource2);
12213
+ }
12214
+ }
12215
+ exports.DynproLoop = DynproLoop;
12216
+ //# sourceMappingURL=dynpro_loop.js.map
12217
+
12218
+ /***/ }),
12219
+
12198
12220
  /***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/editor_call.js":
12199
12221
  /*!*******************************************************************************************!*\
12200
12222
  !*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/editor_call.js ***!
@@ -13120,7 +13142,7 @@ const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@a
13120
13142
  const tokens_1 = __webpack_require__(/*! ../../1_lexer/tokens */ "./node_modules/@abaplint/core/build/src/abap/1_lexer/tokens/index.js");
13121
13143
  class Field {
13122
13144
  getMatcher() {
13123
- const module = (0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("ON INPUT", "ON REQUEST")));
13145
+ const module = (0, combi_1.seq)("MODULE", expressions_1.FormName, (0, combi_1.opt)((0, combi_1.alt)("ON INPUT", "ON REQUEST", "ON CHAIN-REQUEST")));
13124
13146
  const values = (0, combi_1.seq)("VALUES", (0, combi_1.tok)(tokens_1.WParenLeft), "BETWEEN", expressions_1.Constant, "AND", expressions_1.Constant, (0, combi_1.tok)(tokens_1.ParenRightW));
13125
13147
  const ret = (0, combi_1.seq)("FIELD", expressions_1.FieldChain, (0, combi_1.opt)((0, combi_1.alt)(module, values)));
13126
13148
  return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
@@ -14273,6 +14295,7 @@ __exportStar(__webpack_require__(/*! ./raise_entity_event */ "./node_modules/@ab
14273
14295
  __exportStar(__webpack_require__(/*! ./refresh_control */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/refresh_control.js"), exports);
14274
14296
  __exportStar(__webpack_require__(/*! ./delete_dynpro */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/delete_dynpro.js"), exports);
14275
14297
  __exportStar(__webpack_require__(/*! ./generate_dynpro */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/generate_dynpro.js"), exports);
14298
+ __exportStar(__webpack_require__(/*! ./process_on_help_request */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/process_on_help_request.js"), exports);
14276
14299
  __exportStar(__webpack_require__(/*! ./detail */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/detail.js"), exports);
14277
14300
  __exportStar(__webpack_require__(/*! ./editor_call */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/editor_call.js"), exports);
14278
14301
  __exportStar(__webpack_require__(/*! ./break */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/break.js"), exports);
@@ -14311,6 +14334,7 @@ __exportStar(__webpack_require__(/*! ./get_parameter */ "./node_modules/@abaplin
14311
14334
  __exportStar(__webpack_require__(/*! ./create_data */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/create_data.js"), exports);
14312
14335
  __exportStar(__webpack_require__(/*! ./set_country */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/set_country.js"), exports);
14313
14336
  __exportStar(__webpack_require__(/*! ./function_module */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/function_module.js"), exports);
14337
+ __exportStar(__webpack_require__(/*! ./dynpro_loop */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/dynpro_loop.js"), exports);
14314
14338
  __exportStar(__webpack_require__(/*! ./type_pools */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/type_pools.js"), exports);
14315
14339
  __exportStar(__webpack_require__(/*! ./type_pool */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/type_pool.js"), exports);
14316
14340
  __exportStar(__webpack_require__(/*! ./wait */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/wait.js"), exports);
@@ -15366,7 +15390,7 @@ class OpenDataset {
15366
15390
  const linetype = (0, combi_1.altPrio)("SMART", "NATIVE", "UNIX");
15367
15391
  const feed = (0, combi_1.seq)("WITH", linetype, "LINEFEED");
15368
15392
  const windows = (0, combi_1.str)("WITH WINDOWS LINEFEED");
15369
- const ret = (0, combi_1.seq)("OPEN DATASET", expressions_1.Source, (0, combi_1.per)(direction, type, mode, wbom, replacement, filter, encoding, pos, message, ignoring, bom, code, feed, windows));
15393
+ const ret = (0, combi_1.seq)("OPEN DATASET", expressions_1.Source, (0, combi_1.opt)((0, combi_1.per)(direction, type, mode, wbom, replacement, filter, encoding, pos, message, ignoring, bom, code, feed, windows)));
15370
15394
  return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
15371
15395
  }
15372
15396
  }
@@ -15614,6 +15638,28 @@ exports.ProcessBeforeOutput = ProcessBeforeOutput;
15614
15638
 
15615
15639
  /***/ }),
15616
15640
 
15641
+ /***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/process_on_help_request.js":
15642
+ /*!*******************************************************************************************************!*\
15643
+ !*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/process_on_help_request.js ***!
15644
+ \*******************************************************************************************************/
15645
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
15646
+
15647
+ "use strict";
15648
+
15649
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
15650
+ exports.ProcessOnHelpRequest = void 0;
15651
+ const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
15652
+ const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@abaplint/core/build/src/version.js");
15653
+ class ProcessOnHelpRequest {
15654
+ getMatcher() {
15655
+ return (0, combi_1.verNot)(version_1.Version.Cloud, "PROCESS ON HELP-REQUEST");
15656
+ }
15657
+ }
15658
+ exports.ProcessOnHelpRequest = ProcessOnHelpRequest;
15659
+ //# sourceMappingURL=process_on_help_request.js.map
15660
+
15661
+ /***/ }),
15662
+
15617
15663
  /***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/process_on_value_request.js":
15618
15664
  /*!********************************************************************************************************!*\
15619
15665
  !*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/process_on_value_request.js ***!
@@ -19252,7 +19298,7 @@ const Structures = __webpack_require__(/*! ./ */ "./node_modules/@abaplint/core/
19252
19298
  const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
19253
19299
  class DynproLogic {
19254
19300
  getMatcher() {
19255
- return (0, _combi_1.seq)((0, _combi_1.sub)(Structures.ProcessBeforeOutput), (0, _combi_1.sub)(Structures.ProcessAfterInput), (0, _combi_1.opt)((0, _combi_1.sub)(Structures.ProcessOnValueRequest)));
19301
+ return (0, _combi_1.seq)((0, _combi_1.sub)(Structures.ProcessBeforeOutput), (0, _combi_1.sub)(Structures.ProcessAfterInput), (0, _combi_1.opt)((0, _combi_1.sub)(Structures.ProcessOnValueRequest)), (0, _combi_1.opt)((0, _combi_1.sub)(Structures.ProcessOnHelpRequest)));
19256
19302
  }
19257
19303
  }
19258
19304
  exports.DynproLogic = DynproLogic;
@@ -19260,6 +19306,28 @@ exports.DynproLogic = DynproLogic;
19260
19306
 
19261
19307
  /***/ }),
19262
19308
 
19309
+ /***/ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/dynpro_loop.js":
19310
+ /*!*******************************************************************************************!*\
19311
+ !*** ./node_modules/@abaplint/core/build/src/abap/3_structures/structures/dynpro_loop.js ***!
19312
+ \*******************************************************************************************/
19313
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
19314
+
19315
+ "use strict";
19316
+
19317
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
19318
+ exports.DynproLoop = void 0;
19319
+ const Statements = __webpack_require__(/*! ../../2_statements/statements */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/index.js");
19320
+ const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
19321
+ class DynproLoop {
19322
+ getMatcher() {
19323
+ return (0, _combi_1.beginEnd)((0, _combi_1.sta)(Statements.DynproLoop), (0, _combi_1.star)((0, _combi_1.sta)(Statements.Module)), (0, _combi_1.sta)(Statements.EndLoop));
19324
+ }
19325
+ }
19326
+ exports.DynproLoop = DynproLoop;
19327
+ //# sourceMappingURL=dynpro_loop.js.map
19328
+
19329
+ /***/ }),
19330
+
19263
19331
  /***/ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/else.js":
19264
19332
  /*!************************************************************************************!*\
19265
19333
  !*** ./node_modules/@abaplint/core/build/src/abap/3_structures/structures/else.js ***!
@@ -19519,6 +19587,8 @@ __exportStar(__webpack_require__(/*! ./provide */ "./node_modules/@abaplint/core
19519
19587
  __exportStar(__webpack_require__(/*! ./public_section */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/public_section.js"), exports);
19520
19588
  __exportStar(__webpack_require__(/*! ./section_contents */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/section_contents.js"), exports);
19521
19589
  __exportStar(__webpack_require__(/*! ./select */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/select.js"), exports);
19590
+ __exportStar(__webpack_require__(/*! ./process_on_help_request */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/process_on_help_request.js"), exports);
19591
+ __exportStar(__webpack_require__(/*! ./dynpro_loop */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/dynpro_loop.js"), exports);
19522
19592
  __exportStar(__webpack_require__(/*! ./statics */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/statics.js"), exports);
19523
19593
  __exportStar(__webpack_require__(/*! ./test_injection */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/test_injection.js"), exports);
19524
19594
  __exportStar(__webpack_require__(/*! ./test_seam */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/test_seam.js"), exports);
@@ -19782,9 +19852,10 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
19782
19852
  exports.ProcessBeforeOutput = void 0;
19783
19853
  const Statements = __webpack_require__(/*! ../../2_statements/statements */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/index.js");
19784
19854
  const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
19855
+ const dynpro_loop_1 = __webpack_require__(/*! ./dynpro_loop */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/dynpro_loop.js");
19785
19856
  class ProcessBeforeOutput {
19786
19857
  getMatcher() {
19787
- const pbo = (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Module), (0, _combi_1.sta)(Statements.Field), (0, _combi_1.sta)(Statements.CallSubscreen)));
19858
+ const pbo = (0, _combi_1.star)((0, _combi_1.alt)((0, _combi_1.sta)(Statements.Module), (0, _combi_1.sta)(Statements.Field), (0, _combi_1.sta)(Statements.CallSubscreen), (0, _combi_1.sub)(dynpro_loop_1.DynproLoop)));
19788
19859
  return (0, _combi_1.seq)((0, _combi_1.sta)(Statements.ProcessBeforeOutput), pbo);
19789
19860
  }
19790
19861
  }
@@ -19793,6 +19864,29 @@ exports.ProcessBeforeOutput = ProcessBeforeOutput;
19793
19864
 
19794
19865
  /***/ }),
19795
19866
 
19867
+ /***/ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/process_on_help_request.js":
19868
+ /*!*******************************************************************************************************!*\
19869
+ !*** ./node_modules/@abaplint/core/build/src/abap/3_structures/structures/process_on_help_request.js ***!
19870
+ \*******************************************************************************************************/
19871
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
19872
+
19873
+ "use strict";
19874
+
19875
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
19876
+ exports.ProcessOnHelpRequest = void 0;
19877
+ const Statements = __webpack_require__(/*! ../../2_statements/statements */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/index.js");
19878
+ const _combi_1 = __webpack_require__(/*! ./_combi */ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/_combi.js");
19879
+ class ProcessOnHelpRequest {
19880
+ getMatcher() {
19881
+ const pov = (0, _combi_1.star)((0, _combi_1.sta)(Statements.Field));
19882
+ return (0, _combi_1.seq)((0, _combi_1.sta)(Statements.ProcessOnHelpRequest), pov);
19883
+ }
19884
+ }
19885
+ exports.ProcessOnHelpRequest = ProcessOnHelpRequest;
19886
+ //# sourceMappingURL=process_on_help_request.js.map
19887
+
19888
+ /***/ }),
19889
+
19796
19890
  /***/ "./node_modules/@abaplint/core/build/src/abap/3_structures/structures/process_on_value_request.js":
19797
19891
  /*!********************************************************************************************************!*\
19798
19892
  !*** ./node_modules/@abaplint/core/build/src/abap/3_structures/structures/process_on_value_request.js ***!
@@ -46579,6 +46673,37 @@ exports.AuthorizationObjectExtension = AuthorizationObjectExtension;
46579
46673
 
46580
46674
  /***/ }),
46581
46675
 
46676
+ /***/ "./node_modules/@abaplint/core/build/src/objects/badi_definition.js":
46677
+ /*!**************************************************************************!*\
46678
+ !*** ./node_modules/@abaplint/core/build/src/objects/badi_definition.js ***!
46679
+ \**************************************************************************/
46680
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
46681
+
46682
+ "use strict";
46683
+
46684
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
46685
+ exports.BADIDefinition = void 0;
46686
+ const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
46687
+ class BADIDefinition extends _abstract_object_1.AbstractObject {
46688
+ getType() {
46689
+ return "SXSD";
46690
+ }
46691
+ getAllowedNaming() {
46692
+ return {
46693
+ maxLength: 30,
46694
+ allowNamespace: true,
46695
+ };
46696
+ }
46697
+ getDescription() {
46698
+ // todo
46699
+ return undefined;
46700
+ }
46701
+ }
46702
+ exports.BADIDefinition = BADIDefinition;
46703
+ //# sourceMappingURL=badi_definition.js.map
46704
+
46705
+ /***/ }),
46706
+
46582
46707
  /***/ "./node_modules/@abaplint/core/build/src/objects/behavior_definition.js":
46583
46708
  /*!******************************************************************************!*\
46584
46709
  !*** ./node_modules/@abaplint/core/build/src/objects/behavior_definition.js ***!
@@ -48246,6 +48371,37 @@ exports.EnhancementSpot = EnhancementSpot;
48246
48371
 
48247
48372
  /***/ }),
48248
48373
 
48374
+ /***/ "./node_modules/@abaplint/core/build/src/objects/entity_type.js":
48375
+ /*!**********************************************************************!*\
48376
+ !*** ./node_modules/@abaplint/core/build/src/objects/entity_type.js ***!
48377
+ \**********************************************************************/
48378
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
48379
+
48380
+ "use strict";
48381
+
48382
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
48383
+ exports.EntityType = void 0;
48384
+ const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
48385
+ class EntityType extends _abstract_object_1.AbstractObject {
48386
+ getType() {
48387
+ return "UENO";
48388
+ }
48389
+ getAllowedNaming() {
48390
+ return {
48391
+ maxLength: 200,
48392
+ allowNamespace: true,
48393
+ };
48394
+ }
48395
+ getDescription() {
48396
+ // todo
48397
+ return undefined;
48398
+ }
48399
+ }
48400
+ exports.EntityType = EntityType;
48401
+ //# sourceMappingURL=entity_type.js.map
48402
+
48403
+ /***/ }),
48404
+
48249
48405
  /***/ "./node_modules/@abaplint/core/build/src/objects/event_binding.js":
48250
48406
  /*!************************************************************************!*\
48251
48407
  !*** ./node_modules/@abaplint/core/build/src/objects/event_binding.js ***!
@@ -49362,6 +49518,8 @@ __exportStar(__webpack_require__(/*! ./business_function_set_assignment */ "./no
49362
49518
  __exportStar(__webpack_require__(/*! ./business_object_model */ "./node_modules/@abaplint/core/build/src/objects/business_object_model.js"), exports);
49363
49519
  __exportStar(__webpack_require__(/*! ./business_object_type */ "./node_modules/@abaplint/core/build/src/objects/business_object_type.js"), exports);
49364
49520
  __exportStar(__webpack_require__(/*! ./cds_metadata_extension */ "./node_modules/@abaplint/core/build/src/objects/cds_metadata_extension.js"), exports);
49521
+ __exportStar(__webpack_require__(/*! ./badi_definition */ "./node_modules/@abaplint/core/build/src/objects/badi_definition.js"), exports);
49522
+ __exportStar(__webpack_require__(/*! ./entity_type */ "./node_modules/@abaplint/core/build/src/objects/entity_type.js"), exports);
49365
49523
  __exportStar(__webpack_require__(/*! ./cds_type */ "./node_modules/@abaplint/core/build/src/objects/cds_type.js"), exports);
49366
49524
  __exportStar(__webpack_require__(/*! ./change_document */ "./node_modules/@abaplint/core/build/src/objects/change_document.js"), exports);
49367
49525
  __exportStar(__webpack_require__(/*! ./chapter_of_book_structure */ "./node_modules/@abaplint/core/build/src/objects/chapter_of_book_structure.js"), exports);
@@ -49400,6 +49558,7 @@ __exportStar(__webpack_require__(/*! ./gateway_model_metadata */ "./node_modules
49400
49558
  __exportStar(__webpack_require__(/*! ./gateway_model */ "./node_modules/@abaplint/core/build/src/objects/gateway_model.js"), exports);
49401
49559
  __exportStar(__webpack_require__(/*! ./gateway_project */ "./node_modules/@abaplint/core/build/src/objects/gateway_project.js"), exports);
49402
49560
  __exportStar(__webpack_require__(/*! ./gateway_service_groups_metadata */ "./node_modules/@abaplint/core/build/src/objects/gateway_service_groups_metadata.js"), exports);
49561
+ __exportStar(__webpack_require__(/*! ./web_reporting_template */ "./node_modules/@abaplint/core/build/src/objects/web_reporting_template.js"), exports);
49403
49562
  __exportStar(__webpack_require__(/*! ./gateway_service */ "./node_modules/@abaplint/core/build/src/objects/gateway_service.js"), exports);
49404
49563
  __exportStar(__webpack_require__(/*! ./gateway_vocabulary_annotation */ "./node_modules/@abaplint/core/build/src/objects/gateway_vocabulary_annotation.js"), exports);
49405
49564
  __exportStar(__webpack_require__(/*! ./general_hierarchy_storage_extrension_name */ "./node_modules/@abaplint/core/build/src/objects/general_hierarchy_storage_extrension_name.js"), exports);
@@ -53441,6 +53600,37 @@ exports.WebMIME = WebMIME;
53441
53600
 
53442
53601
  /***/ }),
53443
53602
 
53603
+ /***/ "./node_modules/@abaplint/core/build/src/objects/web_reporting_template.js":
53604
+ /*!*********************************************************************************!*\
53605
+ !*** ./node_modules/@abaplint/core/build/src/objects/web_reporting_template.js ***!
53606
+ \*********************************************************************************/
53607
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
53608
+
53609
+ "use strict";
53610
+
53611
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
53612
+ exports.WebReportingTemplate = void 0;
53613
+ const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
53614
+ class WebReportingTemplate extends _abstract_object_1.AbstractObject {
53615
+ getType() {
53616
+ return "UENO";
53617
+ }
53618
+ getAllowedNaming() {
53619
+ return {
53620
+ maxLength: 30,
53621
+ allowNamespace: true,
53622
+ };
53623
+ }
53624
+ getDescription() {
53625
+ // todo
53626
+ return undefined;
53627
+ }
53628
+ }
53629
+ exports.WebReportingTemplate = WebReportingTemplate;
53630
+ //# sourceMappingURL=web_reporting_template.js.map
53631
+
53632
+ /***/ }),
53633
+
53444
53634
  /***/ "./node_modules/@abaplint/core/build/src/position.js":
53445
53635
  /*!***********************************************************!*\
53446
53636
  !*** ./node_modules/@abaplint/core/build/src/position.js ***!
@@ -53925,7 +54115,7 @@ class Registry {
53925
54115
  }
53926
54116
  static abaplintVersion() {
53927
54117
  // magic, see build script "version.sh"
53928
- return "2.113.113";
54118
+ return "2.113.115";
53929
54119
  }
53930
54120
  getDDICReferences() {
53931
54121
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.113.113",
3
+ "version": "2.113.115",
4
4
  "description": "abaplint - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -38,21 +38,21 @@
38
38
  },
39
39
  "homepage": "https://abaplint.org",
40
40
  "devDependencies": {
41
- "@abaplint/core": "^2.113.113",
41
+ "@abaplint/core": "^2.113.115",
42
42
  "@types/chai": "^4.3.20",
43
43
  "@types/glob": "^8.1.0",
44
44
  "@types/minimist": "^1.2.5",
45
45
  "@types/mocha": "^10.0.10",
46
- "@types/node": "^22.15.17",
46
+ "@types/node": "^22.15.18",
47
47
  "@types/progress": "^2.0.7",
48
48
  "chai": "^4.5.0",
49
49
  "chalk": "^5.4.1",
50
- "eslint": "^9.26.0",
50
+ "eslint": "^9.27.0",
51
51
  "glob": "^7.2.3",
52
52
  "json5": "^2.2.3",
53
- "memfs": "^4.17.1",
53
+ "memfs": "^4.17.2",
54
54
  "minimist": "^1.2.8",
55
- "mocha": "^11.2.2",
55
+ "mocha": "^11.3.0",
56
56
  "progress": "^2.0.3",
57
57
  "typescript": "^5.8.3",
58
58
  "webpack": "^5.99.8",