@abaplint/cli 2.101.0 → 2.101.1
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 +100 -1
- package/package.json +3 -3
package/build/cli.js
CHANGED
|
@@ -41700,6 +41700,99 @@ exports.AssignmentServiceToAuthorizationGroup = AssignmentServiceToAuthorization
|
|
|
41700
41700
|
|
|
41701
41701
|
/***/ }),
|
|
41702
41702
|
|
|
41703
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/atc_check_category.js":
|
|
41704
|
+
/*!*****************************************************************************!*\
|
|
41705
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/atc_check_category.js ***!
|
|
41706
|
+
\*****************************************************************************/
|
|
41707
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
41708
|
+
|
|
41709
|
+
"use strict";
|
|
41710
|
+
|
|
41711
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41712
|
+
exports.ATCCheckCategory = void 0;
|
|
41713
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
41714
|
+
class ATCCheckCategory extends _abstract_object_1.AbstractObject {
|
|
41715
|
+
getType() {
|
|
41716
|
+
return "CHKC";
|
|
41717
|
+
}
|
|
41718
|
+
getAllowedNaming() {
|
|
41719
|
+
return {
|
|
41720
|
+
maxLength: 30,
|
|
41721
|
+
allowNamespace: true,
|
|
41722
|
+
};
|
|
41723
|
+
}
|
|
41724
|
+
getDescription() {
|
|
41725
|
+
// todo
|
|
41726
|
+
return undefined;
|
|
41727
|
+
}
|
|
41728
|
+
}
|
|
41729
|
+
exports.ATCCheckCategory = ATCCheckCategory;
|
|
41730
|
+
//# sourceMappingURL=atc_check_category.js.map
|
|
41731
|
+
|
|
41732
|
+
/***/ }),
|
|
41733
|
+
|
|
41734
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/atc_check_object.js":
|
|
41735
|
+
/*!***************************************************************************!*\
|
|
41736
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/atc_check_object.js ***!
|
|
41737
|
+
\***************************************************************************/
|
|
41738
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
41739
|
+
|
|
41740
|
+
"use strict";
|
|
41741
|
+
|
|
41742
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41743
|
+
exports.ATCCheckObject = void 0;
|
|
41744
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
41745
|
+
class ATCCheckObject extends _abstract_object_1.AbstractObject {
|
|
41746
|
+
getType() {
|
|
41747
|
+
return "CHKO";
|
|
41748
|
+
}
|
|
41749
|
+
getAllowedNaming() {
|
|
41750
|
+
return {
|
|
41751
|
+
maxLength: 30,
|
|
41752
|
+
allowNamespace: true,
|
|
41753
|
+
};
|
|
41754
|
+
}
|
|
41755
|
+
getDescription() {
|
|
41756
|
+
// todo
|
|
41757
|
+
return undefined;
|
|
41758
|
+
}
|
|
41759
|
+
}
|
|
41760
|
+
exports.ATCCheckObject = ATCCheckObject;
|
|
41761
|
+
//# sourceMappingURL=atc_check_object.js.map
|
|
41762
|
+
|
|
41763
|
+
/***/ }),
|
|
41764
|
+
|
|
41765
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/atc_check_variant.js":
|
|
41766
|
+
/*!****************************************************************************!*\
|
|
41767
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/atc_check_variant.js ***!
|
|
41768
|
+
\****************************************************************************/
|
|
41769
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
41770
|
+
|
|
41771
|
+
"use strict";
|
|
41772
|
+
|
|
41773
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
41774
|
+
exports.ATCCheckVariant = void 0;
|
|
41775
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
41776
|
+
class ATCCheckVariant extends _abstract_object_1.AbstractObject {
|
|
41777
|
+
getType() {
|
|
41778
|
+
return "CHKV";
|
|
41779
|
+
}
|
|
41780
|
+
getAllowedNaming() {
|
|
41781
|
+
return {
|
|
41782
|
+
maxLength: 30,
|
|
41783
|
+
allowNamespace: true,
|
|
41784
|
+
};
|
|
41785
|
+
}
|
|
41786
|
+
getDescription() {
|
|
41787
|
+
// todo
|
|
41788
|
+
return undefined;
|
|
41789
|
+
}
|
|
41790
|
+
}
|
|
41791
|
+
exports.ATCCheckVariant = ATCCheckVariant;
|
|
41792
|
+
//# sourceMappingURL=atc_check_variant.js.map
|
|
41793
|
+
|
|
41794
|
+
/***/ }),
|
|
41795
|
+
|
|
41703
41796
|
/***/ "./node_modules/@abaplint/core/build/src/objects/authorization_check_field.js":
|
|
41704
41797
|
/*!************************************************************************************!*\
|
|
41705
41798
|
!*** ./node_modules/@abaplint/core/build/src/objects/authorization_check_field.js ***!
|
|
@@ -44402,6 +44495,9 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
44402
44495
|
__exportStar(__webpack_require__(/*! ./activation_variant */ "./node_modules/@abaplint/core/build/src/objects/activation_variant.js"), exports);
|
|
44403
44496
|
__exportStar(__webpack_require__(/*! ./api_release_state */ "./node_modules/@abaplint/core/build/src/objects/api_release_state.js"), exports);
|
|
44404
44497
|
__exportStar(__webpack_require__(/*! ./assignment_service_to_authorization_group */ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js"), exports);
|
|
44498
|
+
__exportStar(__webpack_require__(/*! ./atc_check_category */ "./node_modules/@abaplint/core/build/src/objects/atc_check_category.js"), exports);
|
|
44499
|
+
__exportStar(__webpack_require__(/*! ./atc_check_object */ "./node_modules/@abaplint/core/build/src/objects/atc_check_object.js"), exports);
|
|
44500
|
+
__exportStar(__webpack_require__(/*! ./atc_check_variant */ "./node_modules/@abaplint/core/build/src/objects/atc_check_variant.js"), exports);
|
|
44405
44501
|
__exportStar(__webpack_require__(/*! ./authorization_check_field */ "./node_modules/@abaplint/core/build/src/objects/authorization_check_field.js"), exports);
|
|
44406
44502
|
__exportStar(__webpack_require__(/*! ./authorization_group */ "./node_modules/@abaplint/core/build/src/objects/authorization_group.js"), exports);
|
|
44407
44503
|
__exportStar(__webpack_require__(/*! ./authorization_object_class */ "./node_modules/@abaplint/core/build/src/objects/authorization_object_class.js"), exports);
|
|
@@ -47879,7 +47975,7 @@ class Registry {
|
|
|
47879
47975
|
}
|
|
47880
47976
|
static abaplintVersion() {
|
|
47881
47977
|
// magic, see build script "version.sh"
|
|
47882
|
-
return "2.101.
|
|
47978
|
+
return "2.101.1";
|
|
47883
47979
|
}
|
|
47884
47980
|
getDDICReferences() {
|
|
47885
47981
|
return this.ddicReferences;
|
|
@@ -51073,6 +51169,9 @@ class CloudTypes {
|
|
|
51073
51169
|
|| obj instanceof Objects.InboundService
|
|
51074
51170
|
|| obj instanceof Objects.Interface
|
|
51075
51171
|
|| obj instanceof Objects.LockObject
|
|
51172
|
+
|| obj instanceof Objects.ATCCheckCategory
|
|
51173
|
+
|| obj instanceof Objects.ATCCheckObject
|
|
51174
|
+
|| obj instanceof Objects.ATCCheckVariant
|
|
51076
51175
|
|| obj instanceof Objects.MessageClass
|
|
51077
51176
|
|| obj instanceof Objects.Package
|
|
51078
51177
|
|| obj instanceof Objects.RestrictionType
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.101.
|
|
3
|
+
"version": "2.101.1",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.101.
|
|
41
|
+
"@abaplint/core": "^2.101.1",
|
|
42
42
|
"@types/chai": "^4.3.5",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.2",
|
|
45
45
|
"@types/mocha": "^10.0.1",
|
|
46
|
-
"@types/node": "^20.2.
|
|
46
|
+
"@types/node": "^20.2.3",
|
|
47
47
|
"@types/progress": "^2.0.5",
|
|
48
48
|
"chai": "^4.3.7",
|
|
49
49
|
"chalk": "^5.2.0",
|