@abaplint/cli 2.103.7 → 2.103.8
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 +33 -1
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -46686,6 +46686,7 @@ __exportStar(__webpack_require__(/*! ./messaging_channel */ "./node_modules/@aba
|
|
|
46686
46686
|
__exportStar(__webpack_require__(/*! ./mime_object */ "./node_modules/@abaplint/core/build/src/objects/mime_object.js"), exports);
|
|
46687
46687
|
__exportStar(__webpack_require__(/*! ./namespace */ "./node_modules/@abaplint/core/build/src/objects/namespace.js"), exports);
|
|
46688
46688
|
__exportStar(__webpack_require__(/*! ./number_range */ "./node_modules/@abaplint/core/build/src/objects/number_range.js"), exports);
|
|
46689
|
+
__exportStar(__webpack_require__(/*! ./oauth2_profile */ "./node_modules/@abaplint/core/build/src/objects/oauth2_profile.js"), exports);
|
|
46689
46690
|
__exportStar(__webpack_require__(/*! ./object_characteristic */ "./node_modules/@abaplint/core/build/src/objects/object_characteristic.js"), exports);
|
|
46690
46691
|
__exportStar(__webpack_require__(/*! ./outbound_service */ "./node_modules/@abaplint/core/build/src/objects/outbound_service.js"), exports);
|
|
46691
46692
|
__exportStar(__webpack_require__(/*! ./package_interface */ "./node_modules/@abaplint/core/build/src/objects/package_interface.js"), exports);
|
|
@@ -47332,6 +47333,37 @@ exports.NumberRange = NumberRange;
|
|
|
47332
47333
|
|
|
47333
47334
|
/***/ }),
|
|
47334
47335
|
|
|
47336
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/oauth2_profile.js":
|
|
47337
|
+
/*!*************************************************************************!*\
|
|
47338
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/oauth2_profile.js ***!
|
|
47339
|
+
\*************************************************************************/
|
|
47340
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
47341
|
+
|
|
47342
|
+
"use strict";
|
|
47343
|
+
|
|
47344
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
47345
|
+
exports.Oauth2Profile = void 0;
|
|
47346
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
47347
|
+
class Oauth2Profile extends _abstract_object_1.AbstractObject {
|
|
47348
|
+
getType() {
|
|
47349
|
+
return "OA2P";
|
|
47350
|
+
}
|
|
47351
|
+
getAllowedNaming() {
|
|
47352
|
+
return {
|
|
47353
|
+
maxLength: 30,
|
|
47354
|
+
allowNamespace: true,
|
|
47355
|
+
};
|
|
47356
|
+
}
|
|
47357
|
+
getDescription() {
|
|
47358
|
+
// todo
|
|
47359
|
+
return undefined;
|
|
47360
|
+
}
|
|
47361
|
+
}
|
|
47362
|
+
exports.Oauth2Profile = Oauth2Profile;
|
|
47363
|
+
//# sourceMappingURL=oauth2_profile.js.map
|
|
47364
|
+
|
|
47365
|
+
/***/ }),
|
|
47366
|
+
|
|
47335
47367
|
/***/ "./node_modules/@abaplint/core/build/src/objects/object_characteristic.js":
|
|
47336
47368
|
/*!********************************************************************************!*\
|
|
47337
47369
|
!*** ./node_modules/@abaplint/core/build/src/objects/object_characteristic.js ***!
|
|
@@ -50967,7 +50999,7 @@ class Registry {
|
|
|
50967
50999
|
}
|
|
50968
51000
|
static abaplintVersion() {
|
|
50969
51001
|
// magic, see build script "version.sh"
|
|
50970
|
-
return "2.103.
|
|
51002
|
+
return "2.103.8";
|
|
50971
51003
|
}
|
|
50972
51004
|
getDDICReferences() {
|
|
50973
51005
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.103.
|
|
3
|
+
"version": "2.103.8",
|
|
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.8",
|
|
42
42
|
"@types/chai": "^4.3.10",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|