@abaplint/core 2.102.37 → 2.102.39
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/abap/5_syntax/_builtin.js +8 -2
- package/build/src/files/_abstract_file.js +6 -2
- package/build/src/objects/application_job_catalog_entry.js +21 -0
- package/build/src/objects/application_job_template.js +21 -0
- package/build/src/objects/index.js +3 -0
- package/build/src/objects/outbound_service.js +21 -0
- package/build/src/registry.js +1 -1
- package/build/src/rules/cloud_types.js +3 -0
- package/package.json +1 -1
package/build/abaplint.d.ts
CHANGED
|
@@ -175,6 +175,24 @@ declare class Append implements IStatement {
|
|
|
175
175
|
getMatcher(): IStatementRunnable;
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
+
declare class ApplicationJobCatalogEntry extends AbstractObject {
|
|
179
|
+
getType(): string;
|
|
180
|
+
getAllowedNaming(): {
|
|
181
|
+
maxLength: number;
|
|
182
|
+
allowNamespace: boolean;
|
|
183
|
+
};
|
|
184
|
+
getDescription(): string | undefined;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
declare class ApplicationJobTemplate extends AbstractObject {
|
|
188
|
+
getType(): string;
|
|
189
|
+
getAllowedNaming(): {
|
|
190
|
+
maxLength: number;
|
|
191
|
+
allowNamespace: boolean;
|
|
192
|
+
};
|
|
193
|
+
getDescription(): string | undefined;
|
|
194
|
+
}
|
|
195
|
+
|
|
178
196
|
/** returns list of filenames which were changed */
|
|
179
197
|
export declare function applyEditList(reg: IRegistry, edits: IEdit[]): string[];
|
|
180
198
|
|
|
@@ -4302,6 +4320,8 @@ declare namespace Objects {
|
|
|
4302
4320
|
export {
|
|
4303
4321
|
ActivationVariant,
|
|
4304
4322
|
APIReleaseState,
|
|
4323
|
+
ApplicationJobCatalogEntry,
|
|
4324
|
+
ApplicationJobTemplate,
|
|
4305
4325
|
AssignmentServiceToAuthorizationGroup,
|
|
4306
4326
|
ATCCheckCategory,
|
|
4307
4327
|
ATCCheckObject,
|
|
@@ -4386,6 +4406,7 @@ declare namespace Objects {
|
|
|
4386
4406
|
Namespace,
|
|
4387
4407
|
NumberRange,
|
|
4388
4408
|
ObjectCharacteristic,
|
|
4409
|
+
OutboundService,
|
|
4389
4410
|
PackageInterface,
|
|
4390
4411
|
Package,
|
|
4391
4412
|
Parameter,
|
|
@@ -4452,6 +4473,15 @@ declare class Or extends Expression {
|
|
|
4452
4473
|
getRunnable(): IStatementRunnable;
|
|
4453
4474
|
}
|
|
4454
4475
|
|
|
4476
|
+
declare class OutboundService extends AbstractObject {
|
|
4477
|
+
getType(): string;
|
|
4478
|
+
getAllowedNaming(): {
|
|
4479
|
+
maxLength: number;
|
|
4480
|
+
allowNamespace: boolean;
|
|
4481
|
+
};
|
|
4482
|
+
getDescription(): string | undefined;
|
|
4483
|
+
}
|
|
4484
|
+
|
|
4455
4485
|
declare class Overlay implements IStatement {
|
|
4456
4486
|
getMatcher(): IStatementRunnable;
|
|
4457
4487
|
}
|
|
@@ -122,8 +122,14 @@ class BuiltIn {
|
|
|
122
122
|
}
|
|
123
123
|
getTypes() {
|
|
124
124
|
const ret = this.buildSY();
|
|
125
|
-
|
|
126
|
-
|
|
125
|
+
{
|
|
126
|
+
const id = new tokens_1.Identifier(new position_1.Position(1, 1), "abap_bool");
|
|
127
|
+
ret.push(new _typed_identifier_1.TypedIdentifier(id, BuiltIn.filename, new basic_1.CharacterType(1, { qualifiedName: "ABAP_BOOL", ddicName: "ABAP_BOOL" })));
|
|
128
|
+
}
|
|
129
|
+
{
|
|
130
|
+
const id = new tokens_1.Identifier(new position_1.Position(1, 1), "cursor");
|
|
131
|
+
ret.push(new _typed_identifier_1.TypedIdentifier(id, BuiltIn.filename, basic_1.IntegerType.get({ qualifiedName: "CURSOR", ddicName: "CURSOR" })));
|
|
132
|
+
}
|
|
127
133
|
return ret;
|
|
128
134
|
}
|
|
129
135
|
get(extras) {
|
|
@@ -26,8 +26,12 @@ class AbstractFile {
|
|
|
26
26
|
// handle additional escaping
|
|
27
27
|
split[0] = split[0].replace(/%3e/g, ">");
|
|
28
28
|
split[0] = split[0].replace(/%3c/g, "<");
|
|
29
|
-
// handle namespace
|
|
30
|
-
|
|
29
|
+
// handle abapGit namespace
|
|
30
|
+
split[0] = split[0].toUpperCase().replace(/#/g, "/");
|
|
31
|
+
// handle AFF namespace
|
|
32
|
+
split[0] = split[0].replace("(", "/");
|
|
33
|
+
split[0] = split[0].replace(")", "/");
|
|
34
|
+
return split[0];
|
|
31
35
|
}
|
|
32
36
|
}
|
|
33
37
|
exports.AbstractFile = AbstractFile;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ApplicationJobCatalogEntry = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ApplicationJobCatalogEntry extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "SAJC";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ApplicationJobCatalogEntry = ApplicationJobCatalogEntry;
|
|
21
|
+
//# sourceMappingURL=application_job_catalog_entry.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ApplicationJobTemplate = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class ApplicationJobTemplate extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "SAJT";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 30,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ApplicationJobTemplate = ApplicationJobTemplate;
|
|
21
|
+
//# sourceMappingURL=application_job_template.js.map
|
|
@@ -16,6 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./activation_variant"), exports);
|
|
18
18
|
__exportStar(require("./api_release_state"), exports);
|
|
19
|
+
__exportStar(require("./application_job_catalog_entry"), exports);
|
|
20
|
+
__exportStar(require("./application_job_template"), exports);
|
|
19
21
|
__exportStar(require("./assignment_service_to_authorization_group"), exports);
|
|
20
22
|
__exportStar(require("./atc_check_category"), exports);
|
|
21
23
|
__exportStar(require("./atc_check_object"), exports);
|
|
@@ -95,6 +97,7 @@ __exportStar(require("./mime_object"), exports);
|
|
|
95
97
|
__exportStar(require("./namespace"), exports);
|
|
96
98
|
__exportStar(require("./number_range"), exports);
|
|
97
99
|
__exportStar(require("./object_characteristic"), exports);
|
|
100
|
+
__exportStar(require("./outbound_service"), exports);
|
|
98
101
|
__exportStar(require("./package_interface"), exports);
|
|
99
102
|
__exportStar(require("./package"), exports);
|
|
100
103
|
__exportStar(require("./parameter"), exports);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OutboundService = void 0;
|
|
4
|
+
const _abstract_object_1 = require("./_abstract_object");
|
|
5
|
+
class OutboundService extends _abstract_object_1.AbstractObject {
|
|
6
|
+
getType() {
|
|
7
|
+
return "SCO3";
|
|
8
|
+
}
|
|
9
|
+
getAllowedNaming() {
|
|
10
|
+
return {
|
|
11
|
+
maxLength: 200,
|
|
12
|
+
allowNamespace: true,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
getDescription() {
|
|
16
|
+
// todo
|
|
17
|
+
return undefined;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.OutboundService = OutboundService;
|
|
21
|
+
//# sourceMappingURL=outbound_service.js.map
|
package/build/src/registry.js
CHANGED
|
@@ -47,6 +47,9 @@ class CloudTypes {
|
|
|
47
47
|
|| obj instanceof Objects.CDSMetadataExtension
|
|
48
48
|
|| obj instanceof Objects.RestrictionField
|
|
49
49
|
|| obj instanceof Objects.Class
|
|
50
|
+
|| obj instanceof Objects.OutboundService
|
|
51
|
+
|| obj instanceof Objects.ApplicationJobCatalogEntry
|
|
52
|
+
|| obj instanceof Objects.ApplicationJobTemplate
|
|
50
53
|
|| obj instanceof Objects.CommunicationScenario
|
|
51
54
|
|| obj instanceof Objects.DataControl
|
|
52
55
|
|| obj instanceof Objects.DataDefinition
|