@abaplint/core 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/abaplint.d.ts +30 -0
- package/build/src/abap/5_syntax/_type_utils.js +14 -9
- 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
|
}
|
|
@@ -281,18 +281,23 @@ class TypeUtils {
|
|
|
281
281
|
}
|
|
282
282
|
return true;
|
|
283
283
|
}
|
|
284
|
-
else if (source instanceof basic_1.StructureType
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
}
|
|
290
|
-
for (let i = 0; i < sourceComponents.length; i++) {
|
|
291
|
-
if (this.isAssignableStrict(sourceComponents[i].type, targetComponents[i].type) === false) {
|
|
284
|
+
else if (source instanceof basic_1.StructureType) {
|
|
285
|
+
if (target instanceof basic_1.StructureType) {
|
|
286
|
+
const sourceComponents = source.getComponents();
|
|
287
|
+
const targetComponents = target.getComponents();
|
|
288
|
+
if (sourceComponents.length !== targetComponents.length) {
|
|
292
289
|
return false;
|
|
293
290
|
}
|
|
291
|
+
for (let i = 0; i < sourceComponents.length; i++) {
|
|
292
|
+
if (this.isAssignableStrict(sourceComponents[i].type, targetComponents[i].type) === false) {
|
|
293
|
+
return false;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
return true;
|
|
297
|
+
}
|
|
298
|
+
else if (target instanceof basic_1.CharacterType) {
|
|
299
|
+
return false;
|
|
294
300
|
}
|
|
295
|
-
return true;
|
|
296
301
|
}
|
|
297
302
|
else if (source instanceof basic_1.Integer8Type) {
|
|
298
303
|
if (target instanceof basic_1.IntegerType || target instanceof basic_1.StringType) {
|
|
@@ -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
|