@mcp-abap-adt/adt-clients 0.2.2 → 0.2.4
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/README.md +1 -1
- package/dist/clients/AdtClient.d.ts +18 -0
- package/dist/clients/AdtClient.d.ts.map +1 -1
- package/dist/clients/AdtClient.js +22 -0
- package/dist/clients/AdtRuntimeClient.d.ts +555 -0
- package/dist/clients/AdtRuntimeClient.d.ts.map +1 -0
- package/dist/clients/AdtRuntimeClient.js +738 -0
- package/dist/core/behaviorDefinition/AdtBehaviorDefinition.d.ts +9 -0
- package/dist/core/behaviorDefinition/AdtBehaviorDefinition.d.ts.map +1 -1
- package/dist/core/behaviorDefinition/AdtBehaviorDefinition.js +48 -115
- package/dist/core/behaviorImplementation/AdtBehaviorImplementation.d.ts +11 -0
- package/dist/core/behaviorImplementation/AdtBehaviorImplementation.d.ts.map +1 -1
- package/dist/core/behaviorImplementation/AdtBehaviorImplementation.js +94 -143
- package/dist/core/class/AdtClass.d.ts +5 -2
- package/dist/core/class/AdtClass.d.ts.map +1 -1
- package/dist/core/class/AdtClass.js +44 -113
- package/dist/core/class/AdtLocalDefinitions.d.ts +1 -0
- package/dist/core/class/AdtLocalDefinitions.d.ts.map +1 -1
- package/dist/core/class/AdtLocalDefinitions.js +20 -5
- package/dist/core/class/AdtLocalMacros.d.ts +5 -0
- package/dist/core/class/AdtLocalMacros.d.ts.map +1 -1
- package/dist/core/class/AdtLocalMacros.js +24 -5
- package/dist/core/class/AdtLocalTestClass.d.ts +1 -0
- package/dist/core/class/AdtLocalTestClass.d.ts.map +1 -1
- package/dist/core/class/AdtLocalTestClass.js +40 -59
- package/dist/core/class/AdtLocalTypes.d.ts +1 -0
- package/dist/core/class/AdtLocalTypes.d.ts.map +1 -1
- package/dist/core/class/AdtLocalTypes.js +20 -5
- package/dist/core/dataElement/AdtDataElement.d.ts +9 -0
- package/dist/core/dataElement/AdtDataElement.d.ts.map +1 -1
- package/dist/core/dataElement/AdtDataElement.js +63 -130
- package/dist/core/domain/AdtDomain.d.ts +8 -0
- package/dist/core/domain/AdtDomain.d.ts.map +1 -1
- package/dist/core/domain/AdtDomain.js +55 -124
- package/dist/core/enhancement/AdtEnhancement.d.ts +90 -0
- package/dist/core/enhancement/AdtEnhancement.d.ts.map +1 -0
- package/dist/core/enhancement/AdtEnhancement.js +497 -0
- package/dist/core/enhancement/activation.d.ts +19 -0
- package/dist/core/enhancement/activation.d.ts.map +1 -0
- package/dist/core/enhancement/activation.js +25 -0
- package/dist/core/enhancement/check.d.ts +26 -0
- package/dist/core/enhancement/check.d.ts.map +1 -0
- package/dist/core/enhancement/check.js +85 -0
- package/dist/core/enhancement/create.d.ts +18 -0
- package/dist/core/enhancement/create.d.ts.map +1 -0
- package/dist/core/enhancement/create.js +107 -0
- package/dist/core/enhancement/delete.d.ts +23 -0
- package/dist/core/enhancement/delete.d.ts.map +1 -0
- package/dist/core/enhancement/delete.js +99 -0
- package/dist/core/enhancement/index.d.ts +23 -0
- package/dist/core/enhancement/index.d.ts.map +1 -0
- package/dist/core/enhancement/index.js +49 -0
- package/dist/core/enhancement/lock.d.ts +35 -0
- package/dist/core/enhancement/lock.d.ts.map +1 -0
- package/dist/core/enhancement/lock.js +78 -0
- package/dist/core/enhancement/read.d.ts +45 -0
- package/dist/core/enhancement/read.d.ts.map +1 -0
- package/dist/core/enhancement/read.js +89 -0
- package/dist/core/enhancement/types.d.ts +113 -0
- package/dist/core/enhancement/types.d.ts.map +1 -0
- package/dist/core/enhancement/types.js +58 -0
- package/dist/core/enhancement/unlock.d.ts +21 -0
- package/dist/core/enhancement/unlock.d.ts.map +1 -0
- package/dist/core/enhancement/unlock.js +32 -0
- package/dist/core/enhancement/update.d.ts +30 -0
- package/dist/core/enhancement/update.d.ts.map +1 -0
- package/dist/core/enhancement/update.js +100 -0
- package/dist/core/enhancement/validation.d.ts +29 -0
- package/dist/core/enhancement/validation.d.ts.map +1 -0
- package/dist/core/enhancement/validation.js +70 -0
- package/dist/core/functionGroup/AdtFunctionGroup.d.ts +9 -0
- package/dist/core/functionGroup/AdtFunctionGroup.d.ts.map +1 -1
- package/dist/core/functionGroup/AdtFunctionGroup.js +41 -1
- package/dist/core/functionModule/AdtFunctionModule.d.ts +9 -0
- package/dist/core/functionModule/AdtFunctionModule.d.ts.map +1 -1
- package/dist/core/functionModule/AdtFunctionModule.js +53 -112
- package/dist/core/functionModule/update.d.ts.map +1 -1
- package/dist/core/functionModule/update.js +2 -16
- package/dist/core/interface/AdtInterface.d.ts +9 -0
- package/dist/core/interface/AdtInterface.d.ts.map +1 -1
- package/dist/core/interface/AdtInterface.js +43 -111
- package/dist/core/interface/update.d.ts +2 -2
- package/dist/core/interface/update.js +4 -4
- package/dist/core/metadataExtension/AdtMetadataExtension.d.ts +9 -0
- package/dist/core/metadataExtension/AdtMetadataExtension.d.ts.map +1 -1
- package/dist/core/metadataExtension/AdtMetadataExtension.js +42 -122
- package/dist/core/package/AdtPackage.d.ts +9 -0
- package/dist/core/package/AdtPackage.d.ts.map +1 -1
- package/dist/core/package/AdtPackage.js +45 -1
- package/dist/core/package/read.d.ts +16 -0
- package/dist/core/package/read.d.ts.map +1 -1
- package/dist/core/package/read.js +33 -0
- package/dist/core/program/AdtProgram.d.ts +9 -0
- package/dist/core/program/AdtProgram.d.ts.map +1 -1
- package/dist/core/program/AdtProgram.js +46 -105
- package/dist/core/serviceDefinition/AdtServiceDefinition.d.ts +9 -0
- package/dist/core/serviceDefinition/AdtServiceDefinition.d.ts.map +1 -1
- package/dist/core/serviceDefinition/AdtServiceDefinition.js +46 -125
- package/dist/core/shared/AdtUtils.d.ts +292 -3
- package/dist/core/shared/AdtUtils.d.ts.map +1 -1
- package/dist/core/shared/AdtUtils.js +326 -2
- package/dist/core/shared/allTypes.d.ts +26 -0
- package/dist/core/shared/allTypes.d.ts.map +1 -0
- package/dist/core/shared/allTypes.js +42 -0
- package/dist/core/shared/enhancementImpl.d.ts +30 -0
- package/dist/core/shared/enhancementImpl.d.ts.map +1 -0
- package/dist/core/shared/enhancementImpl.js +50 -0
- package/dist/core/shared/enhancements.d.ts +35 -0
- package/dist/core/shared/enhancements.d.ts.map +1 -0
- package/dist/core/shared/enhancements.js +68 -0
- package/dist/core/shared/groupActivation.d.ts.map +1 -1
- package/dist/core/shared/groupActivation.js +3 -46
- package/dist/core/shared/include.d.ts +24 -0
- package/dist/core/shared/include.d.ts.map +1 -0
- package/dist/core/shared/include.js +40 -0
- package/dist/core/shared/includesList.d.ts +25 -0
- package/dist/core/shared/includesList.d.ts.map +1 -0
- package/dist/core/shared/includesList.js +139 -0
- package/dist/core/shared/index.d.ts +2 -1
- package/dist/core/shared/index.d.ts.map +1 -1
- package/dist/core/shared/index.js +3 -1
- package/dist/core/shared/nodeStructure.d.ts +28 -0
- package/dist/core/shared/nodeStructure.d.ts.map +1 -0
- package/dist/core/shared/nodeStructure.js +48 -0
- package/dist/core/shared/objectStructure.d.ts +25 -0
- package/dist/core/shared/objectStructure.d.ts.map +1 -0
- package/dist/core/shared/objectStructure.js +45 -0
- package/dist/core/shared/readMetadata.d.ts.map +1 -1
- package/dist/core/shared/readMetadata.js +6 -0
- package/dist/core/shared/readSource.d.ts.map +1 -1
- package/dist/core/shared/readSource.js +5 -1
- package/dist/core/shared/transaction.d.ts +31 -0
- package/dist/core/shared/transaction.d.ts.map +1 -0
- package/dist/core/shared/transaction.js +51 -0
- package/dist/core/shared/typeInfo.d.ts +28 -0
- package/dist/core/shared/typeInfo.d.ts.map +1 -0
- package/dist/core/shared/typeInfo.js +100 -0
- package/dist/core/shared/types.d.ts +13 -2
- package/dist/core/shared/types.d.ts.map +1 -1
- package/dist/core/shared/whereUsed.d.ts +71 -2
- package/dist/core/shared/whereUsed.d.ts.map +1 -1
- package/dist/core/shared/whereUsed.js +138 -5
- package/dist/core/structure/AdtStructure.d.ts +11 -1
- package/dist/core/structure/AdtStructure.d.ts.map +1 -1
- package/dist/core/structure/AdtStructure.js +51 -117
- package/dist/core/structure/create.js +1 -1
- package/dist/core/table/AdtTable.d.ts +9 -0
- package/dist/core/table/AdtTable.d.ts.map +1 -1
- package/dist/core/table/AdtTable.js +51 -106
- package/dist/core/tabletype/AdtDdicTableType.d.ts +82 -0
- package/dist/core/tabletype/AdtDdicTableType.d.ts.map +1 -0
- package/dist/core/tabletype/AdtDdicTableType.js +419 -0
- package/dist/core/tabletype/activation.d.ts +10 -0
- package/dist/core/tabletype/activation.d.ts.map +1 -0
- package/dist/core/tabletype/activation.js +15 -0
- package/dist/core/tabletype/check.d.ts +18 -0
- package/dist/core/tabletype/check.d.ts.map +1 -0
- package/dist/core/tabletype/check.js +56 -0
- package/dist/core/tabletype/create.d.ts +13 -0
- package/dist/core/tabletype/create.d.ts.map +1 -0
- package/dist/core/tabletype/create.js +61 -0
- package/dist/core/tabletype/delete.d.ts +15 -0
- package/dist/core/tabletype/delete.d.ts.map +1 -0
- package/dist/core/tabletype/delete.js +83 -0
- package/dist/core/tabletype/index.d.ts +9 -0
- package/dist/core/tabletype/index.d.ts.map +1 -0
- package/dist/core/tabletype/index.js +23 -0
- package/dist/core/tabletype/lock.d.ts +9 -0
- package/dist/core/tabletype/lock.d.ts.map +1 -0
- package/dist/core/tabletype/lock.js +35 -0
- package/dist/core/tabletype/read.d.ts +32 -0
- package/dist/core/tabletype/read.d.ts.map +1 -0
- package/dist/core/tabletype/read.js +96 -0
- package/dist/core/tabletype/types.d.ts +39 -0
- package/dist/core/tabletype/types.d.ts.map +1 -0
- package/dist/core/tabletype/types.js +5 -0
- package/dist/core/tabletype/unlock.d.ts +15 -0
- package/dist/core/tabletype/unlock.d.ts.map +1 -0
- package/dist/core/tabletype/unlock.js +36 -0
- package/dist/core/tabletype/update.d.ts +16 -0
- package/dist/core/tabletype/update.d.ts.map +1 -0
- package/dist/core/tabletype/update.js +216 -0
- package/dist/core/tabletype/validation.d.ts +18 -0
- package/dist/core/tabletype/validation.d.ts.map +1 -0
- package/dist/core/tabletype/validation.js +37 -0
- package/dist/core/transport/AdtRequest.d.ts +8 -0
- package/dist/core/transport/AdtRequest.d.ts.map +1 -1
- package/dist/core/transport/AdtRequest.js +12 -0
- package/dist/core/unitTest/AdtCdsUnitTest.d.ts.map +1 -1
- package/dist/core/unitTest/AdtCdsUnitTest.js +6 -0
- package/dist/core/unitTest/AdtUnitTest.d.ts +8 -0
- package/dist/core/unitTest/AdtUnitTest.d.ts.map +1 -1
- package/dist/core/unitTest/AdtUnitTest.js +42 -0
- package/dist/core/view/AdtView.d.ts +9 -0
- package/dist/core/view/AdtView.d.ts.map +1 -1
- package/dist/core/view/AdtView.js +47 -113
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/dist/runtime/applicationLog/index.d.ts +5 -0
- package/dist/runtime/applicationLog/index.d.ts.map +1 -0
- package/dist/runtime/applicationLog/index.js +10 -0
- package/dist/runtime/applicationLog/read.d.ts +55 -0
- package/dist/runtime/applicationLog/read.d.ts.map +1 -0
- package/dist/runtime/applicationLog/read.js +97 -0
- package/dist/runtime/atc/index.d.ts +5 -0
- package/dist/runtime/atc/index.d.ts.map +1 -0
- package/dist/runtime/atc/index.js +9 -0
- package/dist/runtime/atc/logs.d.ts +36 -0
- package/dist/runtime/atc/logs.d.ts.map +1 -0
- package/dist/runtime/atc/logs.js +62 -0
- package/dist/runtime/ddic/activationGraph.d.ts +25 -0
- package/dist/runtime/ddic/activationGraph.d.ts.map +1 -0
- package/dist/runtime/ddic/activationGraph.js +37 -0
- package/dist/runtime/ddic/index.d.ts +5 -0
- package/dist/runtime/ddic/index.d.ts.map +1 -0
- package/dist/runtime/ddic/index.js +20 -0
- package/dist/runtime/debugger/abap.d.ts +253 -0
- package/dist/runtime/debugger/abap.d.ts.map +1 -0
- package/dist/runtime/debugger/abap.js +542 -0
- package/dist/runtime/debugger/amdp.d.ts +128 -0
- package/dist/runtime/debugger/amdp.d.ts.map +1 -0
- package/dist/runtime/debugger/amdp.js +288 -0
- package/dist/runtime/debugger/amdpDataPreview.d.ts +55 -0
- package/dist/runtime/debugger/amdpDataPreview.d.ts.map +1 -0
- package/dist/runtime/debugger/amdpDataPreview.js +92 -0
- package/dist/runtime/debugger/index.d.ts +7 -0
- package/dist/runtime/debugger/index.d.ts.map +1 -0
- package/dist/runtime/debugger/index.js +44 -0
- package/dist/runtime/feeds/index.d.ts +5 -0
- package/dist/runtime/feeds/index.d.ts.map +1 -0
- package/dist/runtime/feeds/index.js +9 -0
- package/dist/runtime/feeds/read.d.ts +24 -0
- package/dist/runtime/feeds/read.d.ts.map +1 -0
- package/dist/runtime/feeds/read.js +46 -0
- package/dist/runtime/index.d.ts +15 -0
- package/dist/runtime/index.d.ts.map +1 -0
- package/dist/runtime/index.js +31 -0
- package/dist/runtime/memory/index.d.ts +6 -0
- package/dist/runtime/memory/index.d.ts.map +1 -0
- package/dist/runtime/memory/index.js +17 -0
- package/dist/runtime/memory/snapshots.d.ts +131 -0
- package/dist/runtime/memory/snapshots.d.ts.map +1 -0
- package/dist/runtime/memory/snapshots.js +318 -0
- package/dist/runtime/traces/crossTrace.d.ts +62 -0
- package/dist/runtime/traces/crossTrace.d.ts.map +1 -0
- package/dist/runtime/traces/crossTrace.js +121 -0
- package/dist/runtime/traces/index.d.ts +7 -0
- package/dist/runtime/traces/index.d.ts.map +1 -0
- package/dist/runtime/traces/index.js +24 -0
- package/dist/runtime/traces/profiler.d.ts +69 -0
- package/dist/runtime/traces/profiler.d.ts.map +1 -0
- package/dist/runtime/traces/profiler.js +162 -0
- package/dist/runtime/traces/st05.d.ts +24 -0
- package/dist/runtime/traces/st05.d.ts.map +1 -0
- package/dist/runtime/traces/st05.js +46 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -603,7 +603,7 @@ await client.getClass().read(
|
|
|
603
603
|
|
|
604
604
|
- **[Stateful Session Guide](docs/STATEFUL_SESSION_GUIDE.md)** – how Builders and clients manage `sessionId`, `lockHandle`, and the lock registry
|
|
605
605
|
- **[Operation Delays](docs/OPERATION_DELAYS.md)** – configurable delays for SAP operations in tests (sequential execution, timing issues)
|
|
606
|
-
- **[Architecture](docs/
|
|
606
|
+
- **[Architecture](docs/architecture/ARCHITECTURE.md)** – package structure and design decisions
|
|
607
607
|
- **[Builder Test Pattern](docs/BUILDER_TEST_PATTERN.md)** – test structure and patterns for contributors
|
|
608
608
|
- **[Test Configuration Schema](docs/TEST_CONFIG_SCHEMA.md)** – YAML test configuration reference
|
|
609
609
|
|
|
@@ -21,6 +21,7 @@ import { IDomainConfig, IDomainState } from '../core/domain';
|
|
|
21
21
|
import { IDataElementConfig, IDataElementState } from '../core/dataElement';
|
|
22
22
|
import { IStructureConfig, IStructureState } from '../core/structure';
|
|
23
23
|
import { ITableConfig, ITableState } from '../core/table';
|
|
24
|
+
import { ITableTypeConfig, ITableTypeState } from '../core/tabletype';
|
|
24
25
|
import { IViewConfig, IViewState } from '../core/view';
|
|
25
26
|
import { IFunctionGroupConfig, IFunctionGroupState } from '../core/functionGroup';
|
|
26
27
|
import { IFunctionModuleConfig, IFunctionModuleState } from '../core/functionModule';
|
|
@@ -29,6 +30,7 @@ import { IServiceDefinitionConfig, IServiceDefinitionState } from '../core/servi
|
|
|
29
30
|
import { IBehaviorDefinitionConfig, IBehaviorDefinitionState } from '../core/behaviorDefinition';
|
|
30
31
|
import { IBehaviorImplementationConfig, IBehaviorImplementationState } from '../core/behaviorImplementation';
|
|
31
32
|
import { IMetadataExtensionConfig, IMetadataExtensionState } from '../core/metadataExtension';
|
|
33
|
+
import { IEnhancementConfig, IEnhancementState } from '../core/enhancement';
|
|
32
34
|
import { IUnitTestConfig, IUnitTestState, ICdsUnitTestConfig, ICdsUnitTestState } from '../core/unitTest';
|
|
33
35
|
import { ITransportConfig, ITransportState } from '../core/transport/types';
|
|
34
36
|
import { AdtUtils } from '../core/shared/AdtUtils';
|
|
@@ -72,6 +74,11 @@ export declare class AdtClient {
|
|
|
72
74
|
* @returns IAdtObject instance for Table operations
|
|
73
75
|
*/
|
|
74
76
|
getTable(): IAdtObject<ITableConfig, ITableState>;
|
|
77
|
+
/**
|
|
78
|
+
* Get high-level operations for TableType (DDIC Table Type) objects
|
|
79
|
+
* @returns IAdtObject instance for TableType operations
|
|
80
|
+
*/
|
|
81
|
+
getTableType(): IAdtObject<ITableTypeConfig, ITableTypeState>;
|
|
75
82
|
/**
|
|
76
83
|
* Get high-level operations for View objects
|
|
77
84
|
* @returns IAdtObject instance for View operations
|
|
@@ -112,6 +119,17 @@ export declare class AdtClient {
|
|
|
112
119
|
* @returns IAdtObject instance for MetadataExtension operations
|
|
113
120
|
*/
|
|
114
121
|
getMetadataExtension(): IAdtObject<IMetadataExtensionConfig, IMetadataExtensionState>;
|
|
122
|
+
/**
|
|
123
|
+
* Get high-level operations for Enhancement objects
|
|
124
|
+
* Supports multiple enhancement types:
|
|
125
|
+
* - Enhancement Implementation (ENHO)
|
|
126
|
+
* - BAdI Implementation
|
|
127
|
+
* - Source Code Plugin (with source code)
|
|
128
|
+
* - Enhancement Spot (ENHS)
|
|
129
|
+
* - BAdI Enhancement Spot
|
|
130
|
+
* @returns IAdtObject instance for Enhancement operations
|
|
131
|
+
*/
|
|
132
|
+
getEnhancement(): IAdtObject<IEnhancementConfig, IEnhancementState>;
|
|
115
133
|
/**
|
|
116
134
|
* Get high-level operations for UnitTest objects
|
|
117
135
|
* @returns IAdtObject instance for UnitTest operations
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AdtClient.d.ts","sourceRoot":"","sources":["../../src/clients/AdtClient.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAEvE,OAAO,EACL,YAAY,EACZ,WAAW,EAMX,qBAAqB,EACrB,iBAAiB,EACjB,uBAAuB,EACvB,kBAAkB,EACnB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,cAAc,EAAE,aAAa,EAAc,MAAM,iBAAiB,CAAC;AAC5E,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAgB,MAAM,mBAAmB,CAAC;AACpF,OAAO,EAAE,aAAa,EAAE,YAAY,EAAa,MAAM,gBAAgB,CAAC;AACxE,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAkB,MAAM,qBAAqB,CAAC;AAC5F,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAgB,MAAM,mBAAmB,CAAC;AACpF,OAAO,EAAE,YAAY,EAAE,WAAW,EAAY,MAAM,eAAe,CAAC;AACpE,OAAO,EAAE,WAAW,EAAE,UAAU,EAAW,MAAM,cAAc,CAAC;AAChE,OAAO,EAAE,oBAAoB,EAAE,mBAAmB,EAAoB,MAAM,uBAAuB,CAAC;AACpG,OAAO,EAAE,qBAAqB,EAAE,oBAAoB,EAAqB,MAAM,wBAAwB,CAAC;AACxG,OAAO,EAAE,cAAc,EAAE,aAAa,EAAc,MAAM,iBAAiB,CAAC;AAC5E,OAAO,EAAE,wBAAwB,EAAE,uBAAuB,EAAwB,MAAM,2BAA2B,CAAC;AACpH,OAAO,EAAE,yBAAyB,EAAE,wBAAwB,EAAyB,MAAM,4BAA4B,CAAC;AACxH,OAAO,EAAE,6BAA6B,EAAE,4BAA4B,EAA6B,MAAM,gCAAgC,CAAC;AACxI,OAAO,EAAE,wBAAwB,EAAE,uBAAuB,EAAwB,MAAM,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"AdtClient.d.ts","sourceRoot":"","sources":["../../src/clients/AdtClient.ts"],"names":[],"mappings":"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"}
|
|
@@ -23,6 +23,7 @@ const domain_1 = require("../core/domain");
|
|
|
23
23
|
const dataElement_1 = require("../core/dataElement");
|
|
24
24
|
const structure_1 = require("../core/structure");
|
|
25
25
|
const table_1 = require("../core/table");
|
|
26
|
+
const tabletype_1 = require("../core/tabletype");
|
|
26
27
|
const view_1 = require("../core/view");
|
|
27
28
|
const functionGroup_1 = require("../core/functionGroup");
|
|
28
29
|
const functionModule_1 = require("../core/functionModule");
|
|
@@ -31,6 +32,7 @@ const serviceDefinition_1 = require("../core/serviceDefinition");
|
|
|
31
32
|
const behaviorDefinition_1 = require("../core/behaviorDefinition");
|
|
32
33
|
const behaviorImplementation_1 = require("../core/behaviorImplementation");
|
|
33
34
|
const metadataExtension_1 = require("../core/metadataExtension");
|
|
35
|
+
const enhancement_1 = require("../core/enhancement");
|
|
34
36
|
const transport_1 = require("../core/transport");
|
|
35
37
|
const unitTest_1 = require("../core/unitTest");
|
|
36
38
|
const AdtUtils_1 = require("../core/shared/AdtUtils");
|
|
@@ -95,6 +97,13 @@ class AdtClient {
|
|
|
95
97
|
getTable() {
|
|
96
98
|
return new table_1.AdtTable(this.connection, this.logger);
|
|
97
99
|
}
|
|
100
|
+
/**
|
|
101
|
+
* Get high-level operations for TableType (DDIC Table Type) objects
|
|
102
|
+
* @returns IAdtObject instance for TableType operations
|
|
103
|
+
*/
|
|
104
|
+
getTableType() {
|
|
105
|
+
return new tabletype_1.AdtDdicTableType(this.connection, this.logger);
|
|
106
|
+
}
|
|
98
107
|
/**
|
|
99
108
|
* Get high-level operations for View objects
|
|
100
109
|
* @returns IAdtObject instance for View operations
|
|
@@ -151,6 +160,19 @@ class AdtClient {
|
|
|
151
160
|
getMetadataExtension() {
|
|
152
161
|
return new metadataExtension_1.AdtMetadataExtension(this.connection, this.logger);
|
|
153
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* Get high-level operations for Enhancement objects
|
|
165
|
+
* Supports multiple enhancement types:
|
|
166
|
+
* - Enhancement Implementation (ENHO)
|
|
167
|
+
* - BAdI Implementation
|
|
168
|
+
* - Source Code Plugin (with source code)
|
|
169
|
+
* - Enhancement Spot (ENHS)
|
|
170
|
+
* - BAdI Enhancement Spot
|
|
171
|
+
* @returns IAdtObject instance for Enhancement operations
|
|
172
|
+
*/
|
|
173
|
+
getEnhancement() {
|
|
174
|
+
return new enhancement_1.AdtEnhancement(this.connection, this.logger);
|
|
175
|
+
}
|
|
154
176
|
/**
|
|
155
177
|
* Get high-level operations for UnitTest objects
|
|
156
178
|
* @returns IAdtObject instance for UnitTest operations
|
|
@@ -0,0 +1,555 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AdtRuntimeClient - Runtime Operations Client
|
|
3
|
+
*
|
|
4
|
+
* Provides access to runtime-related ADT operations:
|
|
5
|
+
* - Memory snapshots analysis
|
|
6
|
+
* - Profiler traces
|
|
7
|
+
* - Debugger operations
|
|
8
|
+
* - Logs analysis
|
|
9
|
+
* - Feed reader operations
|
|
10
|
+
*
|
|
11
|
+
* This is a standalone client for runtime operations, similar to ReadOnlyClient and CrudClient.
|
|
12
|
+
*
|
|
13
|
+
* Usage:
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import { AdtRuntimeClient } from '@mcp-abap-adt/adt-clients';
|
|
16
|
+
*
|
|
17
|
+
* const client = new AdtRuntimeClient(connection, logger);
|
|
18
|
+
*
|
|
19
|
+
* // Memory snapshots
|
|
20
|
+
* const snapshots = await client.listMemorySnapshots();
|
|
21
|
+
* const snapshot = await client.getMemorySnapshot('snapshot-id');
|
|
22
|
+
*
|
|
23
|
+
* // Profiler traces
|
|
24
|
+
* const traceFiles = await client.listProfilerTraceFiles();
|
|
25
|
+
* const traceParams = await client.getProfilerTraceParameters();
|
|
26
|
+
*
|
|
27
|
+
* // Debugging
|
|
28
|
+
* await client.launchDebugger({ debuggingMode: 'external' });
|
|
29
|
+
* const callStack = await client.getCallStack();
|
|
30
|
+
*
|
|
31
|
+
* // Logs
|
|
32
|
+
* const appLog = await client.getApplicationLogObject('Z_MY_LOG');
|
|
33
|
+
* const atcLogs = await client.getAtcCheckFailureLogs();
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
import type { IAbapConnection } from '@mcp-abap-adt/interfaces';
|
|
37
|
+
import type { ILogger } from '@mcp-abap-adt/interfaces';
|
|
38
|
+
import { AxiosResponse } from 'axios';
|
|
39
|
+
import { type ISnapshotRankingListOptions, type ISnapshotChildrenOptions, type ISnapshotReferencesOptions } from '../runtime/memory';
|
|
40
|
+
import { type IListCrossTracesOptions } from '../runtime/traces/crossTrace';
|
|
41
|
+
import { type ILaunchDebuggerOptions, type IStopDebuggerOptions, type IGetDebuggerOptions, type IGetSystemAreaOptions, type IGetVariableAsCsvOptions, type IGetVariableAsJsonOptions, type IGetVariableValueStatementOptions } from '../runtime/debugger/abap';
|
|
42
|
+
import { type IStartAmdpDebuggerOptions } from '../runtime/debugger/amdp';
|
|
43
|
+
import { type IGetAmdpDataPreviewOptions, type IGetAmdpCellSubstringOptions } from '../runtime/debugger/amdpDataPreview';
|
|
44
|
+
import { type IGetApplicationLogObjectOptions, type IGetApplicationLogSourceOptions } from '../runtime/applicationLog/read';
|
|
45
|
+
import { type IGetCheckFailureLogsOptions } from '../runtime/atc/logs';
|
|
46
|
+
import { type IGetActivationGraphOptions } from '../runtime/ddic/activationGraph';
|
|
47
|
+
export declare class AdtRuntimeClient {
|
|
48
|
+
private connection;
|
|
49
|
+
private logger;
|
|
50
|
+
constructor(connection: IAbapConnection, logger?: ILogger);
|
|
51
|
+
/**
|
|
52
|
+
* List memory snapshots
|
|
53
|
+
*
|
|
54
|
+
* @param user - Optional user filter
|
|
55
|
+
* @param originalUser - Optional original user filter
|
|
56
|
+
* @returns Axios response with list of snapshots
|
|
57
|
+
*/
|
|
58
|
+
listMemorySnapshots(user?: string, originalUser?: string): Promise<AxiosResponse>;
|
|
59
|
+
/**
|
|
60
|
+
* Get memory snapshot by ID
|
|
61
|
+
*
|
|
62
|
+
* @param snapshotId - Snapshot ID
|
|
63
|
+
* @returns Axios response with snapshot data
|
|
64
|
+
*/
|
|
65
|
+
getMemorySnapshot(snapshotId: string): Promise<AxiosResponse>;
|
|
66
|
+
/**
|
|
67
|
+
* Get memory snapshot ranking list
|
|
68
|
+
*
|
|
69
|
+
* @param snapshotId - Snapshot ID
|
|
70
|
+
* @param options - Optional ranking list options
|
|
71
|
+
* @returns Axios response with ranking list
|
|
72
|
+
*/
|
|
73
|
+
getMemorySnapshotRankingList(snapshotId: string, options?: ISnapshotRankingListOptions): Promise<AxiosResponse>;
|
|
74
|
+
/**
|
|
75
|
+
* Get delta ranking list between two memory snapshots
|
|
76
|
+
*
|
|
77
|
+
* @param uri1 - URI of first snapshot
|
|
78
|
+
* @param uri2 - URI of second snapshot
|
|
79
|
+
* @param options - Optional ranking list options
|
|
80
|
+
* @returns Axios response with delta ranking list
|
|
81
|
+
*/
|
|
82
|
+
getMemorySnapshotDeltaRankingList(uri1: string, uri2: string, options?: ISnapshotRankingListOptions): Promise<AxiosResponse>;
|
|
83
|
+
/**
|
|
84
|
+
* Get memory snapshot children
|
|
85
|
+
*
|
|
86
|
+
* @param snapshotId - Snapshot ID
|
|
87
|
+
* @param parentKey - Parent key
|
|
88
|
+
* @param options - Optional children options
|
|
89
|
+
* @returns Axios response with children data
|
|
90
|
+
*/
|
|
91
|
+
getMemorySnapshotChildren(snapshotId: string, parentKey: string, options?: ISnapshotChildrenOptions): Promise<AxiosResponse>;
|
|
92
|
+
/**
|
|
93
|
+
* Get delta children between two memory snapshots
|
|
94
|
+
*
|
|
95
|
+
* @param uri1 - URI of first snapshot
|
|
96
|
+
* @param uri2 - URI of second snapshot
|
|
97
|
+
* @param parentKey - Parent key
|
|
98
|
+
* @param options - Optional children options
|
|
99
|
+
* @returns Axios response with delta children
|
|
100
|
+
*/
|
|
101
|
+
getMemorySnapshotDeltaChildren(uri1: string, uri2: string, parentKey: string, options?: ISnapshotChildrenOptions): Promise<AxiosResponse>;
|
|
102
|
+
/**
|
|
103
|
+
* Get memory snapshot references
|
|
104
|
+
*
|
|
105
|
+
* @param snapshotId - Snapshot ID
|
|
106
|
+
* @param objectKey - Object key
|
|
107
|
+
* @param options - Optional references options
|
|
108
|
+
* @returns Axios response with references data
|
|
109
|
+
*/
|
|
110
|
+
getMemorySnapshotReferences(snapshotId: string, objectKey: string, options?: ISnapshotReferencesOptions): Promise<AxiosResponse>;
|
|
111
|
+
/**
|
|
112
|
+
* Get delta references between two memory snapshots
|
|
113
|
+
*
|
|
114
|
+
* @param uri1 - URI of first snapshot
|
|
115
|
+
* @param uri2 - URI of second snapshot
|
|
116
|
+
* @param objectKey - Object key
|
|
117
|
+
* @param options - Optional references options
|
|
118
|
+
* @returns Axios response with delta references
|
|
119
|
+
*/
|
|
120
|
+
getMemorySnapshotDeltaReferences(uri1: string, uri2: string, objectKey: string, options?: ISnapshotReferencesOptions): Promise<AxiosResponse>;
|
|
121
|
+
/**
|
|
122
|
+
* Get memory snapshot overview
|
|
123
|
+
*
|
|
124
|
+
* @param snapshotId - Snapshot ID
|
|
125
|
+
* @returns Axios response with snapshot overview
|
|
126
|
+
*/
|
|
127
|
+
getMemorySnapshotOverview(snapshotId: string): Promise<AxiosResponse>;
|
|
128
|
+
/**
|
|
129
|
+
* Get delta overview between two memory snapshots
|
|
130
|
+
*
|
|
131
|
+
* @param uri1 - URI of first snapshot
|
|
132
|
+
* @param uri2 - URI of second snapshot
|
|
133
|
+
* @returns Axios response with delta overview
|
|
134
|
+
*/
|
|
135
|
+
getMemorySnapshotDeltaOverview(uri1: string, uri2: string): Promise<AxiosResponse>;
|
|
136
|
+
/**
|
|
137
|
+
* List ABAP profiler trace files
|
|
138
|
+
*
|
|
139
|
+
* @returns Axios response with list of trace files
|
|
140
|
+
*/
|
|
141
|
+
listProfilerTraceFiles(): Promise<AxiosResponse>;
|
|
142
|
+
/**
|
|
143
|
+
* Get ABAP profiler trace parameters
|
|
144
|
+
*
|
|
145
|
+
* @returns Axios response with trace parameters
|
|
146
|
+
*/
|
|
147
|
+
getProfilerTraceParameters(): Promise<AxiosResponse>;
|
|
148
|
+
/**
|
|
149
|
+
* Get trace parameters for callstack aggregation
|
|
150
|
+
*
|
|
151
|
+
* @returns Axios response with callstack aggregation parameters
|
|
152
|
+
*/
|
|
153
|
+
getProfilerTraceParametersForCallstack(): Promise<AxiosResponse>;
|
|
154
|
+
/**
|
|
155
|
+
* Get trace parameters for AMDP trace
|
|
156
|
+
*
|
|
157
|
+
* @returns Axios response with AMDP trace parameters
|
|
158
|
+
*/
|
|
159
|
+
getProfilerTraceParametersForAmdp(): Promise<AxiosResponse>;
|
|
160
|
+
/**
|
|
161
|
+
* List ABAP profiler trace requests
|
|
162
|
+
*
|
|
163
|
+
* @returns Axios response with list of trace requests
|
|
164
|
+
*/
|
|
165
|
+
listProfilerTraceRequests(): Promise<AxiosResponse>;
|
|
166
|
+
/**
|
|
167
|
+
* Get trace requests filtered by URI
|
|
168
|
+
*
|
|
169
|
+
* @param uri - Object URI to filter by
|
|
170
|
+
* @returns Axios response with filtered trace requests
|
|
171
|
+
*/
|
|
172
|
+
getProfilerTraceRequestsByUri(uri: string): Promise<AxiosResponse>;
|
|
173
|
+
/**
|
|
174
|
+
* List available object types for tracing
|
|
175
|
+
*
|
|
176
|
+
* @returns Axios response with list of object types
|
|
177
|
+
*/
|
|
178
|
+
listProfilerObjectTypes(): Promise<AxiosResponse>;
|
|
179
|
+
/**
|
|
180
|
+
* List available process types for tracing
|
|
181
|
+
*
|
|
182
|
+
* @returns Axios response with list of process types
|
|
183
|
+
*/
|
|
184
|
+
listProfilerProcessTypes(): Promise<AxiosResponse>;
|
|
185
|
+
/**
|
|
186
|
+
* List cross traces
|
|
187
|
+
*
|
|
188
|
+
* @param options - Optional filters
|
|
189
|
+
* @returns Axios response with list of traces
|
|
190
|
+
*/
|
|
191
|
+
listCrossTraces(options?: IListCrossTracesOptions): Promise<AxiosResponse>;
|
|
192
|
+
/**
|
|
193
|
+
* Get cross trace details
|
|
194
|
+
*
|
|
195
|
+
* @param traceId - Trace ID
|
|
196
|
+
* @param includeSensitiveData - Whether to include sensitive data
|
|
197
|
+
* @returns Axios response with trace details
|
|
198
|
+
*/
|
|
199
|
+
getCrossTrace(traceId: string, includeSensitiveData?: boolean): Promise<AxiosResponse>;
|
|
200
|
+
/**
|
|
201
|
+
* Get cross trace records
|
|
202
|
+
*
|
|
203
|
+
* @param traceId - Trace ID
|
|
204
|
+
* @returns Axios response with trace records
|
|
205
|
+
*/
|
|
206
|
+
getCrossTraceRecords(traceId: string): Promise<AxiosResponse>;
|
|
207
|
+
/**
|
|
208
|
+
* Get cross trace record content
|
|
209
|
+
*
|
|
210
|
+
* @param traceId - Trace ID
|
|
211
|
+
* @param recordNumber - Record number
|
|
212
|
+
* @returns Axios response with record content
|
|
213
|
+
*/
|
|
214
|
+
getCrossTraceRecordContent(traceId: string, recordNumber: number): Promise<AxiosResponse>;
|
|
215
|
+
/**
|
|
216
|
+
* Get cross trace activations
|
|
217
|
+
*
|
|
218
|
+
* @returns Axios response with trace activations
|
|
219
|
+
*/
|
|
220
|
+
getCrossTraceActivations(): Promise<AxiosResponse>;
|
|
221
|
+
/**
|
|
222
|
+
* Launch debugger session
|
|
223
|
+
*
|
|
224
|
+
* @param options - Debugger launch options
|
|
225
|
+
* @returns Axios response with debugger session
|
|
226
|
+
*/
|
|
227
|
+
launchDebugger(options?: ILaunchDebuggerOptions): Promise<AxiosResponse>;
|
|
228
|
+
/**
|
|
229
|
+
* Stop debugger session
|
|
230
|
+
*
|
|
231
|
+
* @param options - Debugger stop options
|
|
232
|
+
* @returns Axios response
|
|
233
|
+
*/
|
|
234
|
+
stopDebugger(options?: IStopDebuggerOptions): Promise<AxiosResponse>;
|
|
235
|
+
/**
|
|
236
|
+
* Get debugger session
|
|
237
|
+
*
|
|
238
|
+
* @param options - Debugger get options
|
|
239
|
+
* @returns Axios response with debugger session
|
|
240
|
+
*/
|
|
241
|
+
getDebugger(options?: IGetDebuggerOptions): Promise<AxiosResponse>;
|
|
242
|
+
/**
|
|
243
|
+
* Get memory sizes
|
|
244
|
+
*
|
|
245
|
+
* @param includeAbap - Include ABAP memory (optional)
|
|
246
|
+
* @returns Axios response with memory sizes
|
|
247
|
+
*/
|
|
248
|
+
getDebuggerMemorySizes(includeAbap?: boolean): Promise<AxiosResponse>;
|
|
249
|
+
/**
|
|
250
|
+
* Get system area
|
|
251
|
+
*
|
|
252
|
+
* @param systemarea - System area name
|
|
253
|
+
* @param options - System area options
|
|
254
|
+
* @returns Axios response with system area data
|
|
255
|
+
*/
|
|
256
|
+
getDebuggerSystemArea(systemarea: string, options?: IGetSystemAreaOptions): Promise<AxiosResponse>;
|
|
257
|
+
/**
|
|
258
|
+
* Synchronize breakpoints
|
|
259
|
+
*
|
|
260
|
+
* @param checkConflict - Check for conflicts (optional)
|
|
261
|
+
* @returns Axios response with breakpoints
|
|
262
|
+
*/
|
|
263
|
+
synchronizeBreakpoints(checkConflict?: boolean): Promise<AxiosResponse>;
|
|
264
|
+
/**
|
|
265
|
+
* Get breakpoint statements
|
|
266
|
+
*
|
|
267
|
+
* @returns Axios response with breakpoint statements
|
|
268
|
+
*/
|
|
269
|
+
getBreakpointStatements(): Promise<AxiosResponse>;
|
|
270
|
+
/**
|
|
271
|
+
* Get breakpoint message types
|
|
272
|
+
*
|
|
273
|
+
* @returns Axios response with message types
|
|
274
|
+
*/
|
|
275
|
+
getBreakpointMessageTypes(): Promise<AxiosResponse>;
|
|
276
|
+
/**
|
|
277
|
+
* Get breakpoint conditions
|
|
278
|
+
*
|
|
279
|
+
* @returns Axios response with breakpoint conditions
|
|
280
|
+
*/
|
|
281
|
+
getBreakpointConditions(): Promise<AxiosResponse>;
|
|
282
|
+
/**
|
|
283
|
+
* Validate breakpoints
|
|
284
|
+
*
|
|
285
|
+
* @returns Axios response with validation results
|
|
286
|
+
*/
|
|
287
|
+
validateBreakpoints(): Promise<AxiosResponse>;
|
|
288
|
+
/**
|
|
289
|
+
* Get VIT breakpoints
|
|
290
|
+
*
|
|
291
|
+
* @returns Axios response with VIT breakpoints
|
|
292
|
+
*/
|
|
293
|
+
getVitBreakpoints(): Promise<AxiosResponse>;
|
|
294
|
+
/**
|
|
295
|
+
* Get variable max length
|
|
296
|
+
*
|
|
297
|
+
* @param variableName - Variable name
|
|
298
|
+
* @param part - Variable part
|
|
299
|
+
* @param maxLength - Max length (optional)
|
|
300
|
+
* @returns Axios response with max length
|
|
301
|
+
*/
|
|
302
|
+
getVariableMaxLength(variableName: string, part: string, maxLength?: number): Promise<AxiosResponse>;
|
|
303
|
+
/**
|
|
304
|
+
* Get variable subcomponents
|
|
305
|
+
*
|
|
306
|
+
* @param variableName - Variable name
|
|
307
|
+
* @param part - Variable part
|
|
308
|
+
* @param component - Component name (optional)
|
|
309
|
+
* @param line - Line number (optional)
|
|
310
|
+
* @returns Axios response with subcomponents
|
|
311
|
+
*/
|
|
312
|
+
getVariableSubcomponents(variableName: string, part: string, component?: string, line?: number): Promise<AxiosResponse>;
|
|
313
|
+
/**
|
|
314
|
+
* Get variable as CSV
|
|
315
|
+
*
|
|
316
|
+
* @param variableName - Variable name
|
|
317
|
+
* @param part - Variable part
|
|
318
|
+
* @param options - CSV options
|
|
319
|
+
* @returns Axios response with CSV data
|
|
320
|
+
*/
|
|
321
|
+
getVariableAsCsv(variableName: string, part: string, options?: IGetVariableAsCsvOptions): Promise<AxiosResponse>;
|
|
322
|
+
/**
|
|
323
|
+
* Get variable as JSON
|
|
324
|
+
*
|
|
325
|
+
* @param variableName - Variable name
|
|
326
|
+
* @param part - Variable part
|
|
327
|
+
* @param options - JSON options
|
|
328
|
+
* @returns Axios response with JSON data
|
|
329
|
+
*/
|
|
330
|
+
getVariableAsJson(variableName: string, part: string, options?: IGetVariableAsJsonOptions): Promise<AxiosResponse>;
|
|
331
|
+
/**
|
|
332
|
+
* Get variable value statement
|
|
333
|
+
*
|
|
334
|
+
* @param variableName - Variable name
|
|
335
|
+
* @param part - Variable part
|
|
336
|
+
* @param options - Value statement options
|
|
337
|
+
* @returns Axios response with value statement
|
|
338
|
+
*/
|
|
339
|
+
getVariableValueStatement(variableName: string, part: string, options?: IGetVariableValueStatementOptions): Promise<AxiosResponse>;
|
|
340
|
+
/**
|
|
341
|
+
* Execute debugger action
|
|
342
|
+
*
|
|
343
|
+
* @param action - Action name
|
|
344
|
+
* @param value - Action value (optional)
|
|
345
|
+
* @returns Axios response
|
|
346
|
+
*/
|
|
347
|
+
executeDebuggerAction(action: string, value?: string): Promise<AxiosResponse>;
|
|
348
|
+
/**
|
|
349
|
+
* Get call stack
|
|
350
|
+
*
|
|
351
|
+
* @returns Axios response with call stack
|
|
352
|
+
*/
|
|
353
|
+
getCallStack(): Promise<AxiosResponse>;
|
|
354
|
+
/**
|
|
355
|
+
* Insert watchpoint
|
|
356
|
+
*
|
|
357
|
+
* @param variableName - Variable name
|
|
358
|
+
* @param condition - Watchpoint condition (optional)
|
|
359
|
+
* @returns Axios response
|
|
360
|
+
*/
|
|
361
|
+
insertWatchpoint(variableName: string, condition?: string): Promise<AxiosResponse>;
|
|
362
|
+
/**
|
|
363
|
+
* Get watchpoints
|
|
364
|
+
*
|
|
365
|
+
* @returns Axios response with watchpoints
|
|
366
|
+
*/
|
|
367
|
+
getWatchpoints(): Promise<AxiosResponse>;
|
|
368
|
+
/**
|
|
369
|
+
* Execute batch request
|
|
370
|
+
*
|
|
371
|
+
* @param requests - Batch requests (XML body)
|
|
372
|
+
* @returns Axios response with batch results
|
|
373
|
+
*/
|
|
374
|
+
executeBatchRequest(requests: string): Promise<AxiosResponse>;
|
|
375
|
+
/**
|
|
376
|
+
* Start AMDP debugger session
|
|
377
|
+
*
|
|
378
|
+
* @param options - Debugger start options
|
|
379
|
+
* @returns Axios response with debugger session
|
|
380
|
+
*/
|
|
381
|
+
startAmdpDebugger(options?: IStartAmdpDebuggerOptions): Promise<AxiosResponse>;
|
|
382
|
+
/**
|
|
383
|
+
* Resume AMDP debugger session
|
|
384
|
+
*
|
|
385
|
+
* @param mainId - Main debugger session ID
|
|
386
|
+
* @returns Axios response with debugger session
|
|
387
|
+
*/
|
|
388
|
+
resumeAmdpDebugger(mainId: string): Promise<AxiosResponse>;
|
|
389
|
+
/**
|
|
390
|
+
* Terminate AMDP debugger session
|
|
391
|
+
*
|
|
392
|
+
* @param mainId - Main debugger session ID
|
|
393
|
+
* @param hardStop - Whether to perform hard stop
|
|
394
|
+
* @returns Axios response
|
|
395
|
+
*/
|
|
396
|
+
terminateAmdpDebugger(mainId: string, hardStop?: boolean): Promise<AxiosResponse>;
|
|
397
|
+
/**
|
|
398
|
+
* Get AMDP debuggee information
|
|
399
|
+
*
|
|
400
|
+
* @param mainId - Main debugger session ID
|
|
401
|
+
* @param debuggeeId - Debuggee ID
|
|
402
|
+
* @returns Axios response with debuggee information
|
|
403
|
+
*/
|
|
404
|
+
getAmdpDebuggee(mainId: string, debuggeeId: string): Promise<AxiosResponse>;
|
|
405
|
+
/**
|
|
406
|
+
* Get AMDP variable value
|
|
407
|
+
*
|
|
408
|
+
* @param mainId - Main debugger session ID
|
|
409
|
+
* @param debuggeeId - Debuggee ID
|
|
410
|
+
* @param varname - Variable name
|
|
411
|
+
* @param offset - Offset for variable value
|
|
412
|
+
* @param length - Length of variable value to retrieve
|
|
413
|
+
* @returns Axios response with variable value
|
|
414
|
+
*/
|
|
415
|
+
getAmdpVariable(mainId: string, debuggeeId: string, varname: string, offset?: number, length?: number): Promise<AxiosResponse>;
|
|
416
|
+
/**
|
|
417
|
+
* Set AMDP variable value
|
|
418
|
+
*
|
|
419
|
+
* @param mainId - Main debugger session ID
|
|
420
|
+
* @param debuggeeId - Debuggee ID
|
|
421
|
+
* @param varname - Variable name
|
|
422
|
+
* @param setNull - Whether to set variable to null
|
|
423
|
+
* @returns Axios response
|
|
424
|
+
*/
|
|
425
|
+
setAmdpVariable(mainId: string, debuggeeId: string, varname: string, setNull?: boolean): Promise<AxiosResponse>;
|
|
426
|
+
/**
|
|
427
|
+
* Lookup objects/variables in AMDP debugger
|
|
428
|
+
*
|
|
429
|
+
* @param mainId - Main debugger session ID
|
|
430
|
+
* @param debuggeeId - Debuggee ID
|
|
431
|
+
* @param name - Name to lookup
|
|
432
|
+
* @returns Axios response with lookup results
|
|
433
|
+
*/
|
|
434
|
+
lookupAmdp(mainId: string, debuggeeId: string, name?: string): Promise<AxiosResponse>;
|
|
435
|
+
/**
|
|
436
|
+
* Step over in AMDP debugger
|
|
437
|
+
*
|
|
438
|
+
* @param mainId - Main debugger session ID
|
|
439
|
+
* @param debuggeeId - Debuggee ID
|
|
440
|
+
* @returns Axios response
|
|
441
|
+
*/
|
|
442
|
+
stepOverAmdp(mainId: string, debuggeeId: string): Promise<AxiosResponse>;
|
|
443
|
+
/**
|
|
444
|
+
* Continue execution in AMDP debugger
|
|
445
|
+
*
|
|
446
|
+
* @param mainId - Main debugger session ID
|
|
447
|
+
* @param debuggeeId - Debuggee ID
|
|
448
|
+
* @returns Axios response
|
|
449
|
+
*/
|
|
450
|
+
stepContinueAmdp(mainId: string, debuggeeId: string): Promise<AxiosResponse>;
|
|
451
|
+
/**
|
|
452
|
+
* Get AMDP breakpoints
|
|
453
|
+
*
|
|
454
|
+
* @param mainId - Main debugger session ID
|
|
455
|
+
* @returns Axios response with breakpoints
|
|
456
|
+
*/
|
|
457
|
+
getAmdpBreakpoints(mainId: string): Promise<AxiosResponse>;
|
|
458
|
+
/**
|
|
459
|
+
* Get AMDP breakpoints for LLang
|
|
460
|
+
*
|
|
461
|
+
* @param mainId - Main debugger session ID
|
|
462
|
+
* @returns Axios response with LLang breakpoints
|
|
463
|
+
*/
|
|
464
|
+
getAmdpBreakpointsLlang(mainId: string): Promise<AxiosResponse>;
|
|
465
|
+
/**
|
|
466
|
+
* Get AMDP breakpoints for table functions
|
|
467
|
+
*
|
|
468
|
+
* @param mainId - Main debugger session ID
|
|
469
|
+
* @returns Axios response with table function breakpoints
|
|
470
|
+
*/
|
|
471
|
+
getAmdpBreakpointsTableFunctions(mainId: string): Promise<AxiosResponse>;
|
|
472
|
+
/**
|
|
473
|
+
* Get AMDP debugger data preview
|
|
474
|
+
*
|
|
475
|
+
* @param options - Data preview options
|
|
476
|
+
* @returns Axios response with data preview
|
|
477
|
+
*/
|
|
478
|
+
getAmdpDataPreview(options?: IGetAmdpDataPreviewOptions): Promise<AxiosResponse>;
|
|
479
|
+
/**
|
|
480
|
+
* Get cell substring from AMDP debugger data preview
|
|
481
|
+
*
|
|
482
|
+
* @param options - Cell substring options
|
|
483
|
+
* @returns Axios response with cell substring
|
|
484
|
+
*/
|
|
485
|
+
getAmdpCellSubstring(options?: IGetAmdpCellSubstringOptions): Promise<AxiosResponse>;
|
|
486
|
+
/**
|
|
487
|
+
* Get application log object properties
|
|
488
|
+
*
|
|
489
|
+
* @param objectName - Application log object name
|
|
490
|
+
* @param options - Optional parameters
|
|
491
|
+
* @returns Axios response with application log object properties
|
|
492
|
+
*/
|
|
493
|
+
getApplicationLogObject(objectName: string, options?: IGetApplicationLogObjectOptions): Promise<AxiosResponse>;
|
|
494
|
+
/**
|
|
495
|
+
* Get application log object source
|
|
496
|
+
*
|
|
497
|
+
* @param objectName - Application log object name
|
|
498
|
+
* @param options - Optional parameters
|
|
499
|
+
* @returns Axios response with application log object source
|
|
500
|
+
*/
|
|
501
|
+
getApplicationLogSource(objectName: string, options?: IGetApplicationLogSourceOptions): Promise<AxiosResponse>;
|
|
502
|
+
/**
|
|
503
|
+
* Validate application log object name
|
|
504
|
+
*
|
|
505
|
+
* @param objectName - Application log object name to validate
|
|
506
|
+
* @returns Axios response with validation result
|
|
507
|
+
*/
|
|
508
|
+
validateApplicationLogName(objectName: string): Promise<AxiosResponse>;
|
|
509
|
+
/**
|
|
510
|
+
* Get ATC check failure logs
|
|
511
|
+
*
|
|
512
|
+
* @param options - Optional filters
|
|
513
|
+
* @returns Axios response with check failure logs
|
|
514
|
+
*/
|
|
515
|
+
getAtcCheckFailureLogs(options?: IGetCheckFailureLogsOptions): Promise<AxiosResponse>;
|
|
516
|
+
/**
|
|
517
|
+
* Get ATC execution log
|
|
518
|
+
*
|
|
519
|
+
* @param executionId - Execution ID
|
|
520
|
+
* @returns Axios response with execution log
|
|
521
|
+
*/
|
|
522
|
+
getAtcExecutionLog(executionId: string): Promise<AxiosResponse>;
|
|
523
|
+
/**
|
|
524
|
+
* Get DDIC activation graph with logs
|
|
525
|
+
*
|
|
526
|
+
* @param options - Optional parameters
|
|
527
|
+
* @returns Axios response with activation graph
|
|
528
|
+
*/
|
|
529
|
+
getDdicActivationGraph(options?: IGetActivationGraphOptions): Promise<AxiosResponse>;
|
|
530
|
+
/**
|
|
531
|
+
* Get ST05 trace state
|
|
532
|
+
*
|
|
533
|
+
* @returns Axios response with trace state
|
|
534
|
+
*/
|
|
535
|
+
getSt05TraceState(): Promise<AxiosResponse>;
|
|
536
|
+
/**
|
|
537
|
+
* Get ST05 trace directory
|
|
538
|
+
*
|
|
539
|
+
* @returns Axios response with trace directory information
|
|
540
|
+
*/
|
|
541
|
+
getSt05TraceDirectory(): Promise<AxiosResponse>;
|
|
542
|
+
/**
|
|
543
|
+
* Get feeds
|
|
544
|
+
*
|
|
545
|
+
* @returns Axios response with feeds
|
|
546
|
+
*/
|
|
547
|
+
getFeeds(): Promise<AxiosResponse>;
|
|
548
|
+
/**
|
|
549
|
+
* Get feed variants
|
|
550
|
+
*
|
|
551
|
+
* @returns Axios response with feed variants
|
|
552
|
+
*/
|
|
553
|
+
getFeedVariants(): Promise<AxiosResponse>;
|
|
554
|
+
}
|
|
555
|
+
//# sourceMappingURL=AdtRuntimeClient.d.ts.map
|