@abaplint/cli 2.102.37 → 2.102.39
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 +114 -5
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -19385,8 +19385,14 @@ class BuiltIn {
|
|
|
19385
19385
|
}
|
|
19386
19386
|
getTypes() {
|
|
19387
19387
|
const ret = this.buildSY();
|
|
19388
|
-
|
|
19389
|
-
|
|
19388
|
+
{
|
|
19389
|
+
const id = new tokens_1.Identifier(new position_1.Position(1, 1), "abap_bool");
|
|
19390
|
+
ret.push(new _typed_identifier_1.TypedIdentifier(id, BuiltIn.filename, new basic_1.CharacterType(1, { qualifiedName: "ABAP_BOOL", ddicName: "ABAP_BOOL" })));
|
|
19391
|
+
}
|
|
19392
|
+
{
|
|
19393
|
+
const id = new tokens_1.Identifier(new position_1.Position(1, 1), "cursor");
|
|
19394
|
+
ret.push(new _typed_identifier_1.TypedIdentifier(id, BuiltIn.filename, basic_1.IntegerType.get({ qualifiedName: "CURSOR", ddicName: "CURSOR" })));
|
|
19395
|
+
}
|
|
19390
19396
|
return ret;
|
|
19391
19397
|
}
|
|
19392
19398
|
get(extras) {
|
|
@@ -39682,8 +39688,12 @@ class AbstractFile {
|
|
|
39682
39688
|
// handle additional escaping
|
|
39683
39689
|
split[0] = split[0].replace(/%3e/g, ">");
|
|
39684
39690
|
split[0] = split[0].replace(/%3c/g, "<");
|
|
39685
|
-
// handle namespace
|
|
39686
|
-
|
|
39691
|
+
// handle abapGit namespace
|
|
39692
|
+
split[0] = split[0].toUpperCase().replace(/#/g, "/");
|
|
39693
|
+
// handle AFF namespace
|
|
39694
|
+
split[0] = split[0].replace("(", "/");
|
|
39695
|
+
split[0] = split[0].replace(")", "/");
|
|
39696
|
+
return split[0];
|
|
39687
39697
|
}
|
|
39688
39698
|
}
|
|
39689
39699
|
exports.AbstractFile = AbstractFile;
|
|
@@ -42437,6 +42447,68 @@ exports.APIReleaseState = APIReleaseState;
|
|
|
42437
42447
|
|
|
42438
42448
|
/***/ }),
|
|
42439
42449
|
|
|
42450
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/application_job_catalog_entry.js":
|
|
42451
|
+
/*!****************************************************************************************!*\
|
|
42452
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/application_job_catalog_entry.js ***!
|
|
42453
|
+
\****************************************************************************************/
|
|
42454
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
42455
|
+
|
|
42456
|
+
"use strict";
|
|
42457
|
+
|
|
42458
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
42459
|
+
exports.ApplicationJobCatalogEntry = void 0;
|
|
42460
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
42461
|
+
class ApplicationJobCatalogEntry extends _abstract_object_1.AbstractObject {
|
|
42462
|
+
getType() {
|
|
42463
|
+
return "SAJC";
|
|
42464
|
+
}
|
|
42465
|
+
getAllowedNaming() {
|
|
42466
|
+
return {
|
|
42467
|
+
maxLength: 30,
|
|
42468
|
+
allowNamespace: true,
|
|
42469
|
+
};
|
|
42470
|
+
}
|
|
42471
|
+
getDescription() {
|
|
42472
|
+
// todo
|
|
42473
|
+
return undefined;
|
|
42474
|
+
}
|
|
42475
|
+
}
|
|
42476
|
+
exports.ApplicationJobCatalogEntry = ApplicationJobCatalogEntry;
|
|
42477
|
+
//# sourceMappingURL=application_job_catalog_entry.js.map
|
|
42478
|
+
|
|
42479
|
+
/***/ }),
|
|
42480
|
+
|
|
42481
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/application_job_template.js":
|
|
42482
|
+
/*!***********************************************************************************!*\
|
|
42483
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/application_job_template.js ***!
|
|
42484
|
+
\***********************************************************************************/
|
|
42485
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
42486
|
+
|
|
42487
|
+
"use strict";
|
|
42488
|
+
|
|
42489
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
42490
|
+
exports.ApplicationJobTemplate = void 0;
|
|
42491
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
42492
|
+
class ApplicationJobTemplate extends _abstract_object_1.AbstractObject {
|
|
42493
|
+
getType() {
|
|
42494
|
+
return "SAJT";
|
|
42495
|
+
}
|
|
42496
|
+
getAllowedNaming() {
|
|
42497
|
+
return {
|
|
42498
|
+
maxLength: 30,
|
|
42499
|
+
allowNamespace: true,
|
|
42500
|
+
};
|
|
42501
|
+
}
|
|
42502
|
+
getDescription() {
|
|
42503
|
+
// todo
|
|
42504
|
+
return undefined;
|
|
42505
|
+
}
|
|
42506
|
+
}
|
|
42507
|
+
exports.ApplicationJobTemplate = ApplicationJobTemplate;
|
|
42508
|
+
//# sourceMappingURL=application_job_template.js.map
|
|
42509
|
+
|
|
42510
|
+
/***/ }),
|
|
42511
|
+
|
|
42440
42512
|
/***/ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js":
|
|
42441
42513
|
/*!****************************************************************************************************!*\
|
|
42442
42514
|
!*** ./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js ***!
|
|
@@ -45269,6 +45341,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
45269
45341
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
45270
45342
|
__exportStar(__webpack_require__(/*! ./activation_variant */ "./node_modules/@abaplint/core/build/src/objects/activation_variant.js"), exports);
|
|
45271
45343
|
__exportStar(__webpack_require__(/*! ./api_release_state */ "./node_modules/@abaplint/core/build/src/objects/api_release_state.js"), exports);
|
|
45344
|
+
__exportStar(__webpack_require__(/*! ./application_job_catalog_entry */ "./node_modules/@abaplint/core/build/src/objects/application_job_catalog_entry.js"), exports);
|
|
45345
|
+
__exportStar(__webpack_require__(/*! ./application_job_template */ "./node_modules/@abaplint/core/build/src/objects/application_job_template.js"), exports);
|
|
45272
45346
|
__exportStar(__webpack_require__(/*! ./assignment_service_to_authorization_group */ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js"), exports);
|
|
45273
45347
|
__exportStar(__webpack_require__(/*! ./atc_check_category */ "./node_modules/@abaplint/core/build/src/objects/atc_check_category.js"), exports);
|
|
45274
45348
|
__exportStar(__webpack_require__(/*! ./atc_check_object */ "./node_modules/@abaplint/core/build/src/objects/atc_check_object.js"), exports);
|
|
@@ -45348,6 +45422,7 @@ __exportStar(__webpack_require__(/*! ./mime_object */ "./node_modules/@abaplint/
|
|
|
45348
45422
|
__exportStar(__webpack_require__(/*! ./namespace */ "./node_modules/@abaplint/core/build/src/objects/namespace.js"), exports);
|
|
45349
45423
|
__exportStar(__webpack_require__(/*! ./number_range */ "./node_modules/@abaplint/core/build/src/objects/number_range.js"), exports);
|
|
45350
45424
|
__exportStar(__webpack_require__(/*! ./object_characteristic */ "./node_modules/@abaplint/core/build/src/objects/object_characteristic.js"), exports);
|
|
45425
|
+
__exportStar(__webpack_require__(/*! ./outbound_service */ "./node_modules/@abaplint/core/build/src/objects/outbound_service.js"), exports);
|
|
45351
45426
|
__exportStar(__webpack_require__(/*! ./package_interface */ "./node_modules/@abaplint/core/build/src/objects/package_interface.js"), exports);
|
|
45352
45427
|
__exportStar(__webpack_require__(/*! ./package */ "./node_modules/@abaplint/core/build/src/objects/package.js"), exports);
|
|
45353
45428
|
__exportStar(__webpack_require__(/*! ./parameter */ "./node_modules/@abaplint/core/build/src/objects/parameter.js"), exports);
|
|
@@ -46000,6 +46075,37 @@ exports.ObjectCharacteristic = ObjectCharacteristic;
|
|
|
46000
46075
|
|
|
46001
46076
|
/***/ }),
|
|
46002
46077
|
|
|
46078
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/outbound_service.js":
|
|
46079
|
+
/*!***************************************************************************!*\
|
|
46080
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/outbound_service.js ***!
|
|
46081
|
+
\***************************************************************************/
|
|
46082
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
46083
|
+
|
|
46084
|
+
"use strict";
|
|
46085
|
+
|
|
46086
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
46087
|
+
exports.OutboundService = void 0;
|
|
46088
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
46089
|
+
class OutboundService extends _abstract_object_1.AbstractObject {
|
|
46090
|
+
getType() {
|
|
46091
|
+
return "SCO3";
|
|
46092
|
+
}
|
|
46093
|
+
getAllowedNaming() {
|
|
46094
|
+
return {
|
|
46095
|
+
maxLength: 200,
|
|
46096
|
+
allowNamespace: true,
|
|
46097
|
+
};
|
|
46098
|
+
}
|
|
46099
|
+
getDescription() {
|
|
46100
|
+
// todo
|
|
46101
|
+
return undefined;
|
|
46102
|
+
}
|
|
46103
|
+
}
|
|
46104
|
+
exports.OutboundService = OutboundService;
|
|
46105
|
+
//# sourceMappingURL=outbound_service.js.map
|
|
46106
|
+
|
|
46107
|
+
/***/ }),
|
|
46108
|
+
|
|
46003
46109
|
/***/ "./node_modules/@abaplint/core/build/src/objects/package.js":
|
|
46004
46110
|
/*!******************************************************************!*\
|
|
46005
46111
|
!*** ./node_modules/@abaplint/core/build/src/objects/package.js ***!
|
|
@@ -48787,7 +48893,7 @@ class Registry {
|
|
|
48787
48893
|
}
|
|
48788
48894
|
static abaplintVersion() {
|
|
48789
48895
|
// magic, see build script "version.sh"
|
|
48790
|
-
return "2.102.
|
|
48896
|
+
return "2.102.39";
|
|
48791
48897
|
}
|
|
48792
48898
|
getDDICReferences() {
|
|
48793
48899
|
return this.ddicReferences;
|
|
@@ -51999,6 +52105,9 @@ class CloudTypes {
|
|
|
51999
52105
|
|| obj instanceof Objects.CDSMetadataExtension
|
|
52000
52106
|
|| obj instanceof Objects.RestrictionField
|
|
52001
52107
|
|| obj instanceof Objects.Class
|
|
52108
|
+
|| obj instanceof Objects.OutboundService
|
|
52109
|
+
|| obj instanceof Objects.ApplicationJobCatalogEntry
|
|
52110
|
+
|| obj instanceof Objects.ApplicationJobTemplate
|
|
52002
52111
|
|| obj instanceof Objects.CommunicationScenario
|
|
52003
52112
|
|| obj instanceof Objects.DataControl
|
|
52004
52113
|
|| obj instanceof Objects.DataDefinition
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.102.
|
|
3
|
+
"version": "2.102.39",
|
|
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.102.
|
|
41
|
+
"@abaplint/core": "^2.102.39",
|
|
42
42
|
"@types/chai": "^4.3.6",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.2",
|