@abaplint/cli 2.102.37 → 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.
Files changed (2) hide show
  1. package/build/cli.js +100 -1
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -42437,6 +42437,68 @@ exports.APIReleaseState = APIReleaseState;
42437
42437
 
42438
42438
  /***/ }),
42439
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
+
42440
42502
  /***/ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js":
42441
42503
  /*!****************************************************************************************************!*\
42442
42504
  !*** ./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js ***!
@@ -45269,6 +45331,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
45269
45331
  Object.defineProperty(exports, "__esModule", ({ value: true }));
45270
45332
  __exportStar(__webpack_require__(/*! ./activation_variant */ "./node_modules/@abaplint/core/build/src/objects/activation_variant.js"), exports);
45271
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);
45272
45336
  __exportStar(__webpack_require__(/*! ./assignment_service_to_authorization_group */ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js"), exports);
45273
45337
  __exportStar(__webpack_require__(/*! ./atc_check_category */ "./node_modules/@abaplint/core/build/src/objects/atc_check_category.js"), exports);
45274
45338
  __exportStar(__webpack_require__(/*! ./atc_check_object */ "./node_modules/@abaplint/core/build/src/objects/atc_check_object.js"), exports);
@@ -45348,6 +45412,7 @@ __exportStar(__webpack_require__(/*! ./mime_object */ "./node_modules/@abaplint/
45348
45412
  __exportStar(__webpack_require__(/*! ./namespace */ "./node_modules/@abaplint/core/build/src/objects/namespace.js"), exports);
45349
45413
  __exportStar(__webpack_require__(/*! ./number_range */ "./node_modules/@abaplint/core/build/src/objects/number_range.js"), exports);
45350
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);
45351
45416
  __exportStar(__webpack_require__(/*! ./package_interface */ "./node_modules/@abaplint/core/build/src/objects/package_interface.js"), exports);
45352
45417
  __exportStar(__webpack_require__(/*! ./package */ "./node_modules/@abaplint/core/build/src/objects/package.js"), exports);
45353
45418
  __exportStar(__webpack_require__(/*! ./parameter */ "./node_modules/@abaplint/core/build/src/objects/parameter.js"), exports);
@@ -46000,6 +46065,37 @@ exports.ObjectCharacteristic = ObjectCharacteristic;
46000
46065
 
46001
46066
  /***/ }),
46002
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
+
46003
46099
  /***/ "./node_modules/@abaplint/core/build/src/objects/package.js":
46004
46100
  /*!******************************************************************!*\
46005
46101
  !*** ./node_modules/@abaplint/core/build/src/objects/package.js ***!
@@ -48787,7 +48883,7 @@ class Registry {
48787
48883
  }
48788
48884
  static abaplintVersion() {
48789
48885
  // magic, see build script "version.sh"
48790
- return "2.102.37";
48886
+ return "2.102.38";
48791
48887
  }
48792
48888
  getDDICReferences() {
48793
48889
  return this.ddicReferences;
@@ -51999,6 +52095,9 @@ class CloudTypes {
51999
52095
  || obj instanceof Objects.CDSMetadataExtension
52000
52096
  || obj instanceof Objects.RestrictionField
52001
52097
  || obj instanceof Objects.Class
52098
+ || obj instanceof Objects.OutboundService
52099
+ || obj instanceof Objects.ApplicationJobCatalogEntry
52100
+ || obj instanceof Objects.ApplicationJobTemplate
52002
52101
  || obj instanceof Objects.CommunicationScenario
52003
52102
  || obj instanceof Objects.DataControl
52004
52103
  || obj instanceof Objects.DataDefinition
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.102.37",
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.37",
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",