@abaplint/core 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/abaplint.d.ts +30 -0
- package/build/src/objects/atc_check_category.js +21 -0
- package/build/src/objects/atc_check_object.js +21 -0
- package/build/src/objects/atc_check_variant.js +21 -0
- package/build/src/objects/index.js +3 -0
- package/build/src/registry.js +1 -1
- package/build/src/rules/cloud_types.js +3 -0
- package/package.json +4 -4
package/build/abaplint.d.ts
CHANGED
|
@@ -250,6 +250,33 @@ declare class At_3 extends Token {
|
|
|
250
250
|
static railroad(): string;
|
|
251
251
|
}
|
|
252
252
|
|
|
253
|
+
declare class ATCCheckCategory extends AbstractObject {
|
|
254
|
+
getType(): string;
|
|
255
|
+
getAllowedNaming(): {
|
|
256
|
+
maxLength: number;
|
|
257
|
+
allowNamespace: boolean;
|
|
258
|
+
};
|
|
259
|
+
getDescription(): string | undefined;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
declare class ATCCheckObject extends AbstractObject {
|
|
263
|
+
getType(): string;
|
|
264
|
+
getAllowedNaming(): {
|
|
265
|
+
maxLength: number;
|
|
266
|
+
allowNamespace: boolean;
|
|
267
|
+
};
|
|
268
|
+
getDescription(): string | undefined;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
declare class ATCCheckVariant extends AbstractObject {
|
|
272
|
+
getType(): string;
|
|
273
|
+
getAllowedNaming(): {
|
|
274
|
+
maxLength: number;
|
|
275
|
+
allowNamespace: boolean;
|
|
276
|
+
};
|
|
277
|
+
getDescription(): string | undefined;
|
|
278
|
+
}
|
|
279
|
+
|
|
253
280
|
declare class AtFirst implements IStructure {
|
|
254
281
|
getMatcher(): IStructureRunnable;
|
|
255
282
|
}
|
|
@@ -4232,6 +4259,9 @@ declare namespace Objects {
|
|
|
4232
4259
|
ActivationVariant,
|
|
4233
4260
|
APIReleaseState,
|
|
4234
4261
|
AssignmentServiceToAuthorizationGroup,
|
|
4262
|
+
ATCCheckCategory,
|
|
4263
|
+
ATCCheckObject,
|
|
4264
|
+
ATCCheckVariant,
|
|
4235
4265
|
AuthorizationCheckField,
|
|
4236
4266
|
AuthorizationGroup,
|
|
4237
4267
|
AuthorizationObjectClass,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ATCCheckCategory = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ATCCheckCategory extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "CHKC";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ATCCheckCategory = ATCCheckCategory;
|
|
21
|
+
//# sourceMappingURL=atc_check_category.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ATCCheckObject = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ATCCheckObject extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "CHKO";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ATCCheckObject = ATCCheckObject;
|
|
21
|
+
//# sourceMappingURL=atc_check_object.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ATCCheckVariant = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ATCCheckVariant extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "CHKV";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ATCCheckVariant = ATCCheckVariant;
|
|
21
|
+
//# sourceMappingURL=atc_check_variant.js.map
|
|
@@ -17,6 +17,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./activation_variant"), exports);
|
|
18
18
|
__exportStar(require("./api_release_state"), exports);
|
|
19
19
|
__exportStar(require("./assignment_service_to_authorization_group"), exports);
|
|
20
|
+
__exportStar(require("./atc_check_category"), exports);
|
|
21
|
+
__exportStar(require("./atc_check_object"), exports);
|
|
22
|
+
__exportStar(require("./atc_check_variant"), exports);
|
|
20
23
|
__exportStar(require("./authorization_check_field"), exports);
|
|
21
24
|
__exportStar(require("./authorization_group"), exports);
|
|
22
25
|
__exportStar(require("./authorization_object_class"), exports);
|
package/build/src/registry.js
CHANGED
|
@@ -58,6 +58,9 @@ class CloudTypes {
|
|
|
58
58
|
|| obj instanceof Objects.InboundService
|
|
59
59
|
|| obj instanceof Objects.Interface
|
|
60
60
|
|| obj instanceof Objects.LockObject
|
|
61
|
+
|| obj instanceof Objects.ATCCheckCategory
|
|
62
|
+
|| obj instanceof Objects.ATCCheckObject
|
|
63
|
+
|| obj instanceof Objects.ATCCheckVariant
|
|
61
64
|
|| obj instanceof Objects.MessageClass
|
|
62
65
|
|| obj instanceof Objects.Package
|
|
63
66
|
|| obj instanceof Objects.RestrictionType
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.101.
|
|
3
|
+
"version": "2.101.1",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
},
|
|
49
49
|
"homepage": "https://abaplint.org",
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@microsoft/api-extractor": "^7.
|
|
51
|
+
"@microsoft/api-extractor": "^7.35.0",
|
|
52
52
|
"@types/chai": "^4.3.5",
|
|
53
53
|
"@types/mocha": "^10.0.1",
|
|
54
|
-
"@types/node": "^20.2.
|
|
54
|
+
"@types/node": "^20.2.3",
|
|
55
55
|
"chai": "^4.3.7",
|
|
56
|
-
"eslint": "^8.
|
|
56
|
+
"eslint": "^8.41.0",
|
|
57
57
|
"mocha": "^10.2.0",
|
|
58
58
|
"c8": "^7.13.0",
|
|
59
59
|
"source-map-support": "^0.5.21",
|