@abaplint/cli 2.102.36 → 2.102.38
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 -10
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -21762,18 +21762,23 @@ class TypeUtils {
|
|
|
21762
21762
|
}
|
|
21763
21763
|
return true;
|
|
21764
21764
|
}
|
|
21765
|
-
else if (source instanceof basic_1.StructureType
|
|
21766
|
-
|
|
21767
|
-
|
|
21768
|
-
|
|
21769
|
-
|
|
21770
|
-
}
|
|
21771
|
-
for (let i = 0; i < sourceComponents.length; i++) {
|
|
21772
|
-
if (this.isAssignableStrict(sourceComponents[i].type, targetComponents[i].type) === false) {
|
|
21765
|
+
else if (source instanceof basic_1.StructureType) {
|
|
21766
|
+
if (target instanceof basic_1.StructureType) {
|
|
21767
|
+
const sourceComponents = source.getComponents();
|
|
21768
|
+
const targetComponents = target.getComponents();
|
|
21769
|
+
if (sourceComponents.length !== targetComponents.length) {
|
|
21773
21770
|
return false;
|
|
21774
21771
|
}
|
|
21772
|
+
for (let i = 0; i < sourceComponents.length; i++) {
|
|
21773
|
+
if (this.isAssignableStrict(sourceComponents[i].type, targetComponents[i].type) === false) {
|
|
21774
|
+
return false;
|
|
21775
|
+
}
|
|
21776
|
+
}
|
|
21777
|
+
return true;
|
|
21778
|
+
}
|
|
21779
|
+
else if (target instanceof basic_1.CharacterType) {
|
|
21780
|
+
return false;
|
|
21775
21781
|
}
|
|
21776
|
-
return true;
|
|
21777
21782
|
}
|
|
21778
21783
|
else if (source instanceof basic_1.Integer8Type) {
|
|
21779
21784
|
if (target instanceof basic_1.IntegerType || target instanceof basic_1.StringType) {
|
|
@@ -42432,6 +42437,68 @@ exports.APIReleaseState = APIReleaseState;
|
|
|
42432
42437
|
|
|
42433
42438
|
/***/ }),
|
|
42434
42439
|
|
|
42440
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/application_job_catalog_entry.js":
|
|
42441
|
+
/*!****************************************************************************************!*\
|
|
42442
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/application_job_catalog_entry.js ***!
|
|
42443
|
+
\****************************************************************************************/
|
|
42444
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
42445
|
+
|
|
42446
|
+
"use strict";
|
|
42447
|
+
|
|
42448
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
42449
|
+
exports.ApplicationJobCatalogEntry = void 0;
|
|
42450
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
42451
|
+
class ApplicationJobCatalogEntry extends _abstract_object_1.AbstractObject {
|
|
42452
|
+
getType() {
|
|
42453
|
+
return "SAJC";
|
|
42454
|
+
}
|
|
42455
|
+
getAllowedNaming() {
|
|
42456
|
+
return {
|
|
42457
|
+
maxLength: 30,
|
|
42458
|
+
allowNamespace: true,
|
|
42459
|
+
};
|
|
42460
|
+
}
|
|
42461
|
+
getDescription() {
|
|
42462
|
+
// todo
|
|
42463
|
+
return undefined;
|
|
42464
|
+
}
|
|
42465
|
+
}
|
|
42466
|
+
exports.ApplicationJobCatalogEntry = ApplicationJobCatalogEntry;
|
|
42467
|
+
//# sourceMappingURL=application_job_catalog_entry.js.map
|
|
42468
|
+
|
|
42469
|
+
/***/ }),
|
|
42470
|
+
|
|
42471
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/application_job_template.js":
|
|
42472
|
+
/*!***********************************************************************************!*\
|
|
42473
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/application_job_template.js ***!
|
|
42474
|
+
\***********************************************************************************/
|
|
42475
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
42476
|
+
|
|
42477
|
+
"use strict";
|
|
42478
|
+
|
|
42479
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
42480
|
+
exports.ApplicationJobTemplate = void 0;
|
|
42481
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
42482
|
+
class ApplicationJobTemplate extends _abstract_object_1.AbstractObject {
|
|
42483
|
+
getType() {
|
|
42484
|
+
return "SAJT";
|
|
42485
|
+
}
|
|
42486
|
+
getAllowedNaming() {
|
|
42487
|
+
return {
|
|
42488
|
+
maxLength: 30,
|
|
42489
|
+
allowNamespace: true,
|
|
42490
|
+
};
|
|
42491
|
+
}
|
|
42492
|
+
getDescription() {
|
|
42493
|
+
// todo
|
|
42494
|
+
return undefined;
|
|
42495
|
+
}
|
|
42496
|
+
}
|
|
42497
|
+
exports.ApplicationJobTemplate = ApplicationJobTemplate;
|
|
42498
|
+
//# sourceMappingURL=application_job_template.js.map
|
|
42499
|
+
|
|
42500
|
+
/***/ }),
|
|
42501
|
+
|
|
42435
42502
|
/***/ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js":
|
|
42436
42503
|
/*!****************************************************************************************************!*\
|
|
42437
42504
|
!*** ./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js ***!
|
|
@@ -45264,6 +45331,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
45264
45331
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
45265
45332
|
__exportStar(__webpack_require__(/*! ./activation_variant */ "./node_modules/@abaplint/core/build/src/objects/activation_variant.js"), exports);
|
|
45266
45333
|
__exportStar(__webpack_require__(/*! ./api_release_state */ "./node_modules/@abaplint/core/build/src/objects/api_release_state.js"), exports);
|
|
45334
|
+
__exportStar(__webpack_require__(/*! ./application_job_catalog_entry */ "./node_modules/@abaplint/core/build/src/objects/application_job_catalog_entry.js"), exports);
|
|
45335
|
+
__exportStar(__webpack_require__(/*! ./application_job_template */ "./node_modules/@abaplint/core/build/src/objects/application_job_template.js"), exports);
|
|
45267
45336
|
__exportStar(__webpack_require__(/*! ./assignment_service_to_authorization_group */ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js"), exports);
|
|
45268
45337
|
__exportStar(__webpack_require__(/*! ./atc_check_category */ "./node_modules/@abaplint/core/build/src/objects/atc_check_category.js"), exports);
|
|
45269
45338
|
__exportStar(__webpack_require__(/*! ./atc_check_object */ "./node_modules/@abaplint/core/build/src/objects/atc_check_object.js"), exports);
|
|
@@ -45343,6 +45412,7 @@ __exportStar(__webpack_require__(/*! ./mime_object */ "./node_modules/@abaplint/
|
|
|
45343
45412
|
__exportStar(__webpack_require__(/*! ./namespace */ "./node_modules/@abaplint/core/build/src/objects/namespace.js"), exports);
|
|
45344
45413
|
__exportStar(__webpack_require__(/*! ./number_range */ "./node_modules/@abaplint/core/build/src/objects/number_range.js"), exports);
|
|
45345
45414
|
__exportStar(__webpack_require__(/*! ./object_characteristic */ "./node_modules/@abaplint/core/build/src/objects/object_characteristic.js"), exports);
|
|
45415
|
+
__exportStar(__webpack_require__(/*! ./outbound_service */ "./node_modules/@abaplint/core/build/src/objects/outbound_service.js"), exports);
|
|
45346
45416
|
__exportStar(__webpack_require__(/*! ./package_interface */ "./node_modules/@abaplint/core/build/src/objects/package_interface.js"), exports);
|
|
45347
45417
|
__exportStar(__webpack_require__(/*! ./package */ "./node_modules/@abaplint/core/build/src/objects/package.js"), exports);
|
|
45348
45418
|
__exportStar(__webpack_require__(/*! ./parameter */ "./node_modules/@abaplint/core/build/src/objects/parameter.js"), exports);
|
|
@@ -45995,6 +46065,37 @@ exports.ObjectCharacteristic = ObjectCharacteristic;
|
|
|
45995
46065
|
|
|
45996
46066
|
/***/ }),
|
|
45997
46067
|
|
|
46068
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/outbound_service.js":
|
|
46069
|
+
/*!***************************************************************************!*\
|
|
46070
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/outbound_service.js ***!
|
|
46071
|
+
\***************************************************************************/
|
|
46072
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
46073
|
+
|
|
46074
|
+
"use strict";
|
|
46075
|
+
|
|
46076
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
46077
|
+
exports.OutboundService = void 0;
|
|
46078
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
46079
|
+
class OutboundService extends _abstract_object_1.AbstractObject {
|
|
46080
|
+
getType() {
|
|
46081
|
+
return "SCO3";
|
|
46082
|
+
}
|
|
46083
|
+
getAllowedNaming() {
|
|
46084
|
+
return {
|
|
46085
|
+
maxLength: 200,
|
|
46086
|
+
allowNamespace: true,
|
|
46087
|
+
};
|
|
46088
|
+
}
|
|
46089
|
+
getDescription() {
|
|
46090
|
+
// todo
|
|
46091
|
+
return undefined;
|
|
46092
|
+
}
|
|
46093
|
+
}
|
|
46094
|
+
exports.OutboundService = OutboundService;
|
|
46095
|
+
//# sourceMappingURL=outbound_service.js.map
|
|
46096
|
+
|
|
46097
|
+
/***/ }),
|
|
46098
|
+
|
|
45998
46099
|
/***/ "./node_modules/@abaplint/core/build/src/objects/package.js":
|
|
45999
46100
|
/*!******************************************************************!*\
|
|
46000
46101
|
!*** ./node_modules/@abaplint/core/build/src/objects/package.js ***!
|
|
@@ -48782,7 +48883,7 @@ class Registry {
|
|
|
48782
48883
|
}
|
|
48783
48884
|
static abaplintVersion() {
|
|
48784
48885
|
// magic, see build script "version.sh"
|
|
48785
|
-
return "2.102.
|
|
48886
|
+
return "2.102.38";
|
|
48786
48887
|
}
|
|
48787
48888
|
getDDICReferences() {
|
|
48788
48889
|
return this.ddicReferences;
|
|
@@ -51994,6 +52095,9 @@ class CloudTypes {
|
|
|
51994
52095
|
|| obj instanceof Objects.CDSMetadataExtension
|
|
51995
52096
|
|| obj instanceof Objects.RestrictionField
|
|
51996
52097
|
|| obj instanceof Objects.Class
|
|
52098
|
+
|| obj instanceof Objects.OutboundService
|
|
52099
|
+
|| obj instanceof Objects.ApplicationJobCatalogEntry
|
|
52100
|
+
|| obj instanceof Objects.ApplicationJobTemplate
|
|
51997
52101
|
|| obj instanceof Objects.CommunicationScenario
|
|
51998
52102
|
|| obj instanceof Objects.DataControl
|
|
51999
52103
|
|| 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.38",
|
|
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.38",
|
|
42
42
|
"@types/chai": "^4.3.6",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.2",
|