@mcp-abap-adt/interfaces 5.0.0 → 6.0.0
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/CHANGELOG.md +162 -0
- package/README.md +29 -0
- package/dist/feeds/IFeedRepository.d.ts +16 -0
- package/dist/feeds/IFeedRepository.d.ts.map +1 -0
- package/dist/feeds/IFeedRepository.js +8 -0
- package/dist/feeds/types.d.ts +96 -0
- package/dist/feeds/types.d.ts.map +1 -0
- package/dist/feeds/types.js +7 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/runtime/IApplicationLog.d.ts +20 -0
- package/dist/runtime/IApplicationLog.d.ts.map +1 -0
- package/dist/runtime/IApplicationLog.js +2 -0
- package/dist/runtime/IAtcLog.d.ts +14 -0
- package/dist/runtime/IAtcLog.d.ts.map +1 -0
- package/dist/runtime/IAtcLog.js +2 -0
- package/dist/runtime/ICrossTrace.d.ts +14 -0
- package/dist/runtime/ICrossTrace.d.ts.map +1 -0
- package/dist/runtime/ICrossTrace.js +2 -0
- package/dist/runtime/IDdicActivation.d.ts +11 -0
- package/dist/runtime/IDdicActivation.d.ts.map +1 -0
- package/dist/runtime/IDdicActivation.js +2 -0
- package/dist/runtime/IDebugger.d.ts +142 -0
- package/dist/runtime/IDebugger.d.ts.map +1 -0
- package/dist/runtime/IDebugger.js +2 -0
- package/dist/runtime/IGatewayErrorLog.d.ts +7 -0
- package/dist/runtime/IGatewayErrorLog.d.ts.map +1 -0
- package/dist/runtime/IGatewayErrorLog.js +2 -0
- package/dist/runtime/IMemorySnapshots.d.ts +33 -0
- package/dist/runtime/IMemorySnapshots.d.ts.map +1 -0
- package/dist/runtime/IMemorySnapshots.js +2 -0
- package/dist/runtime/IProfiler.d.ts +47 -0
- package/dist/runtime/IProfiler.d.ts.map +1 -0
- package/dist/runtime/IProfiler.js +2 -0
- package/dist/runtime/IRuntimeDumps.d.ts +20 -0
- package/dist/runtime/IRuntimeDumps.d.ts.map +1 -0
- package/dist/runtime/IRuntimeDumps.js +2 -0
- package/dist/runtime/ISt05Trace.d.ts +7 -0
- package/dist/runtime/ISt05Trace.d.ts.map +1 -0
- package/dist/runtime/ISt05Trace.js +2 -0
- package/dist/runtime/ISystemMessages.d.ts +7 -0
- package/dist/runtime/ISystemMessages.d.ts.map +1 -0
- package/dist/runtime/ISystemMessages.js +2 -0
- package/dist/runtime/types.d.ts +27 -0
- package/dist/runtime/types.d.ts.map +1 -0
- package/dist/runtime/types.js +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,168 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [6.0.0] - 2026-04-11
|
|
11
|
+
|
|
12
|
+
### Breaking Changes
|
|
13
|
+
|
|
14
|
+
- **`IRuntimeAnalysisObject`** is now generic: `IRuntimeAnalysisObject<TKind extends string = string>`
|
|
15
|
+
- The `kind` field type changes from `string` to `TKind`, enabling literal type narrowing
|
|
16
|
+
- Default generic (`= string`) preserves backwards compatibility for unparameterized usage
|
|
17
|
+
- Consumers who extend `IRuntimeAnalysisObject` without a type parameter are unaffected
|
|
18
|
+
- Consumers who inspect `kind` at the type level may see narrower types
|
|
19
|
+
- **`IListableRuntimeObject`** now extends `IRuntimeAnalysisObject` and accepts a third generic parameter:
|
|
20
|
+
`IListableRuntimeObject<TResult, TOptions, TKind extends string = string>`
|
|
21
|
+
- Previously `IListableRuntimeObject` was independent; now all listable runtime objects expose a `kind` discriminator
|
|
22
|
+
- Existing `IListableRuntimeObject<TResult, TOptions>` usage compiles unchanged (default `TKind = string`)
|
|
23
|
+
|
|
24
|
+
### Added — from issue #6
|
|
25
|
+
|
|
26
|
+
The following interfaces were requested in #6 to support `@mcp-abap-adt/adt-clients` refactoring (branch `feature/feed-reader-extensions`), so factory methods return interfaces instead of concrete classes:
|
|
27
|
+
|
|
28
|
+
- **Debugger domain** (`runtime/IDebugger.ts`):
|
|
29
|
+
- `IDebugger` — composite interface exposing `getAbap()`, `getAmdp()`, `getMemorySnapshots()`
|
|
30
|
+
- `IAbapDebugger` — ABAP debugger with session management, breakpoints, variables, watchpoints, and batch operations (23 methods)
|
|
31
|
+
- `IAmdpDebugger` — AMDP debugger with start/resume/terminate, variable inspection, breakpoints, data preview (14 methods)
|
|
32
|
+
- Option types: `ILaunchDebuggerOptions`, `IStopDebuggerOptions`, `IGetDebuggerOptions`, `IGetSystemAreaOptions`, `IGetVariableAsCsvOptions`, `IGetVariableAsJsonOptions`, `IGetVariableValueStatementOptions`, `IStartAmdpDebuggerOptions`, `IGetAmdpDataPreviewOptions`, `IGetAmdpCellSubstringOptions`
|
|
33
|
+
- Type alias: `IAbapDebuggerStepMethod` (`'stepInto' | 'stepOut' | 'stepContinue'`)
|
|
34
|
+
- **Memory snapshots** (`runtime/IMemorySnapshots.ts`):
|
|
35
|
+
- `IMemorySnapshots` — list, getById, overview, ranking lists, children, references, and delta analysis (9 methods)
|
|
36
|
+
- Option types: `IMemorySnapshotsListOptions`, `ISnapshotRankingListOptions`, `ISnapshotChildrenOptions`, `ISnapshotReferencesOptions`
|
|
37
|
+
- **Profiler** (`runtime/IProfiler.ts`):
|
|
38
|
+
- `IProfiler` — trace parameter management, hit lists, statements, DB accesses, requests, object/process types (11 methods)
|
|
39
|
+
- Option types: `IProfilerListOptions`, `IProfilerTraceParameters`, `IProfilerTraceHitListOptions`, `IProfilerTraceStatementsOptions`, `IProfilerTraceDbAccessesOptions`
|
|
40
|
+
- **Traces** (`runtime/ICrossTrace.ts`, `runtime/ISt05Trace.ts`):
|
|
41
|
+
- `ICrossTrace` — cross-trace listing, records, activations (4 methods)
|
|
42
|
+
- `ISt05Trace` — SQL trace state and directory (2 methods)
|
|
43
|
+
- Option type: `IListCrossTracesOptions`
|
|
44
|
+
- **Logs** (`runtime/IApplicationLog.ts`, `runtime/IAtcLog.ts`):
|
|
45
|
+
- `IApplicationLog` — application log object/source access and name validation (3 methods)
|
|
46
|
+
- `IAtcLog` — ATC check failure logs and execution logs (2 methods)
|
|
47
|
+
- Option types: `IGetApplicationLogObjectOptions`, `IGetApplicationLogSourceOptions`, `IGetCheckFailureLogsOptions`
|
|
48
|
+
- **DDIC** (`runtime/IDdicActivation.ts`):
|
|
49
|
+
- `IDdicActivation` — activation graph access (1 method)
|
|
50
|
+
- Option type: `IGetActivationGraphOptions`
|
|
51
|
+
- **Dumps** (`runtime/IRuntimeDumps.ts`):
|
|
52
|
+
- `IRuntimeDumps` — dump listing by user, getById with view options (2 methods + inherited `list()`)
|
|
53
|
+
- Option types: `IRuntimeDumpsListOptions`, `IRuntimeDumpReadOptions`
|
|
54
|
+
- Type alias: `IRuntimeDumpReadView` (`'default' | 'summary' | 'formatted'`)
|
|
55
|
+
- **Feeds-based** (`runtime/ISystemMessages.ts`, `runtime/IGatewayErrorLog.ts`):
|
|
56
|
+
- `ISystemMessages` — system message listing and getById (reuses `IFeedQueryOptions`)
|
|
57
|
+
- `IGatewayErrorLog` — gateway error listing and getById by type+id (reuses `IFeedQueryOptions`)
|
|
58
|
+
|
|
59
|
+
### Added — design decisions beyond issue #6
|
|
60
|
+
|
|
61
|
+
The following were not in the original issue but emerged during design review:
|
|
62
|
+
|
|
63
|
+
- **Typed discriminator** (`IRuntimeAnalysisObject<TKind>`) — enables literal `kind` values per interface (e.g., `'profiler'`, `'debugger'`), supporting `switch`/`if` narrowing in consumer code. Discriminator values are contractual (changing them is a breaking change).
|
|
64
|
+
- **`IListableRuntimeObject` extends `IRuntimeAnalysisObject`** — all listable objects now expose `kind` consistently, eliminating the need for each interface to extend both base types separately.
|
|
65
|
+
- **`TKind` propagation** — `IListableRuntimeObject` passes `TKind` to `IRuntimeAnalysisObject`, so consumers get literal `kind` types from listable objects too.
|
|
66
|
+
- **Implementation helpers excluded** — methods like `buildBatchPayload()`, `buildParametersXml()`, `extractIdFromResponse()`, `getDefaultParameters()`, `buildIdPrefix()`, `buildUserQuery()` were in the issue but excluded from the public interface contract. These are implementation details that stay in `@mcp-abap-adt/adt-clients`.
|
|
67
|
+
|
|
68
|
+
### Discriminator values (public contract)
|
|
69
|
+
|
|
70
|
+
| Interface | `kind` value |
|
|
71
|
+
|-----------|-------------|
|
|
72
|
+
| `IDebugger` | `'debugger'` |
|
|
73
|
+
| `IAbapDebugger` | `'abapDebugger'` |
|
|
74
|
+
| `IAmdpDebugger` | `'amdpDebugger'` |
|
|
75
|
+
| `IMemorySnapshots` | `'memorySnapshots'` |
|
|
76
|
+
| `IProfiler` | `'profiler'` |
|
|
77
|
+
| `ICrossTrace` | `'crossTrace'` |
|
|
78
|
+
| `ISt05Trace` | `'st05Trace'` |
|
|
79
|
+
| `IApplicationLog` | `'applicationLog'` |
|
|
80
|
+
| `IAtcLog` | `'atcLog'` |
|
|
81
|
+
| `IDdicActivation` | `'ddicActivation'` |
|
|
82
|
+
| `IRuntimeDumps` | `'runtimeDumps'` |
|
|
83
|
+
| `ISystemMessages` | `'systemMessages'` |
|
|
84
|
+
| `IGatewayErrorLog` | `'gatewayErrorLog'` |
|
|
85
|
+
|
|
86
|
+
### Consumer usage
|
|
87
|
+
|
|
88
|
+
**Importing runtime interfaces:**
|
|
89
|
+
|
|
90
|
+
```typescript
|
|
91
|
+
import type {
|
|
92
|
+
IDebugger,
|
|
93
|
+
IAbapDebugger,
|
|
94
|
+
IProfiler,
|
|
95
|
+
IRuntimeDumps,
|
|
96
|
+
IProfilerTraceParameters,
|
|
97
|
+
} from '@mcp-abap-adt/interfaces';
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
**Using typed discriminators for narrowing:**
|
|
101
|
+
|
|
102
|
+
```typescript
|
|
103
|
+
import type { IRuntimeAnalysisObject } from '@mcp-abap-adt/interfaces';
|
|
104
|
+
|
|
105
|
+
function handleRuntimeObject(obj: IRuntimeAnalysisObject) {
|
|
106
|
+
switch (obj.kind) {
|
|
107
|
+
case 'profiler':
|
|
108
|
+
// TypeScript knows obj has kind: 'profiler'
|
|
109
|
+
break;
|
|
110
|
+
case 'debugger':
|
|
111
|
+
break;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
**Factory methods in `adt-clients` will return these interfaces:**
|
|
117
|
+
|
|
118
|
+
```typescript
|
|
119
|
+
// Before (adt-clients returns concrete class):
|
|
120
|
+
const profiler = client.getProfiler(); // returns ProfilerDomain
|
|
121
|
+
|
|
122
|
+
// After (adt-clients returns interface from this package):
|
|
123
|
+
const profiler: IProfiler = client.getProfiler(); // returns IProfiler
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
### Migration guide (5.1.0 → 6.0.0)
|
|
127
|
+
|
|
128
|
+
**Most consumers: no changes needed.** The default generic parameters (`= string`) ensure backwards compatibility.
|
|
129
|
+
|
|
130
|
+
**If you extend `IRuntimeAnalysisObject`:**
|
|
131
|
+
|
|
132
|
+
```typescript
|
|
133
|
+
// Before (5.1.0):
|
|
134
|
+
interface MyObject extends IRuntimeAnalysisObject { ... }
|
|
135
|
+
|
|
136
|
+
// After (6.0.0) — still works as-is, but you can now add a literal kind:
|
|
137
|
+
interface MyObject extends IRuntimeAnalysisObject<'myObject'> { ... }
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
**If you extend `IListableRuntimeObject`:**
|
|
141
|
+
|
|
142
|
+
```typescript
|
|
143
|
+
// Before (5.1.0):
|
|
144
|
+
interface MyList extends IListableRuntimeObject<IAdtResponse, MyOptions> { ... }
|
|
145
|
+
|
|
146
|
+
// After (6.0.0) — still works, but now MyList also has `kind: string`.
|
|
147
|
+
// To add a literal kind:
|
|
148
|
+
interface MyList extends IListableRuntimeObject<IAdtResponse, MyOptions, 'myList'> { ... }
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
**If you check `kind` at the type level:**
|
|
152
|
+
The `kind` field is now `readonly`. If you were assigning to it, you'll get a compile error. Use the constructor or factory to set it.
|
|
153
|
+
|
|
154
|
+
## [5.1.0] - 2026-04-10
|
|
155
|
+
|
|
156
|
+
### Added
|
|
157
|
+
- **Runtime Analysis Domain** (`runtime/`):
|
|
158
|
+
- `IRuntimeAnalysisObject` — base interface with `readonly kind: string` discriminator for runtime analysis domain objects (not CRUD)
|
|
159
|
+
- `IListableRuntimeObject<TResult, TOptions>` — generic listable runtime object with `list()` method
|
|
160
|
+
- **Feeds Domain** (`feeds/`):
|
|
161
|
+
- `IAbapTimestamp` — type alias for ABAP timestamp strings (`YYYYMMDDHHMMSS`)
|
|
162
|
+
- `IFeedQueryOptions` — query parameters for feed methods (`user`, `maxResults`, `from`, `to`)
|
|
163
|
+
- `IFeedEntry` — generic feed entry
|
|
164
|
+
- `IFeedDescriptor` — feed metadata
|
|
165
|
+
- `IFeedVariant` — feed variant metadata
|
|
166
|
+
- `ISystemMessageEntry` — system message with severity and validity period
|
|
167
|
+
- `IGatewayErrorEntry` — basic gateway error log entry
|
|
168
|
+
- `IGatewayErrorDetail` — extended error with service info, error context, source code, and call stack
|
|
169
|
+
- `IGatewayException`, `ICallStackEntry`, `ISourceCodeLine` — supporting types for error details
|
|
170
|
+
- `IFeedRepository` — domain-facing interface for feed access with typed methods: `list()`, `variants()`, `dumps()`, `systemMessages()`, `gatewayErrors()`, `gatewayErrorDetail()`
|
|
171
|
+
|
|
10
172
|
## [2.7.0] - 2026-03-06
|
|
11
173
|
|
|
12
174
|
### Added
|
package/README.md
CHANGED
|
@@ -23,6 +23,8 @@ This package contains all interfaces organized by domain:
|
|
|
23
23
|
- **`serviceKey/`** - Service key storage interface
|
|
24
24
|
- **`connection/`** - Connection and realtime transport interfaces (AbapConnection, request options, WebSocket transport contracts)
|
|
25
25
|
- **`execution/`** - Execution contracts for runnable entities (`IExecutor`)
|
|
26
|
+
- **`feeds/`** - Feed access interfaces (IFeedRepository, feed entries, system messages, gateway errors)
|
|
27
|
+
- **`runtime/`** - Runtime analysis domain interfaces (debugger, profiler, traces, dumps, logs, memory snapshots, etc.)
|
|
26
28
|
- **`sap/`** - SAP-specific configuration (SapConfig, SapAuthType)
|
|
27
29
|
- **`service/`** - Business service lifecycle contracts (`IAdtService`, service binding params)
|
|
28
30
|
- **`storage/`** - Storage interfaces (session storage, state)
|
|
@@ -202,6 +204,20 @@ This package is responsible for:
|
|
|
202
204
|
- Will be removed in next major version
|
|
203
205
|
- `IAbapRequestOptions` - Request options for ADT operations
|
|
204
206
|
|
|
207
|
+
### Feeds Domain (`feeds/`)
|
|
208
|
+
- `IAbapTimestamp` - ABAP timestamp string type alias (format `YYYYMMDDHHMMSS`)
|
|
209
|
+
- `IFeedRepository` - Domain-facing interface for feed access
|
|
210
|
+
- Methods: `list()`, `variants()`, `dumps()`, `systemMessages()`, `gatewayErrors()`, `gatewayErrorDetail()`
|
|
211
|
+
- All methods return domain types (no raw transport responses)
|
|
212
|
+
- `IFeedQueryOptions` - Query parameters for feed methods (`user`, `maxResults`, `from`, `to`)
|
|
213
|
+
- `IFeedEntry` - Generic feed entry (`id`, `title`, `updated`, `link`, `content`)
|
|
214
|
+
- `IFeedDescriptor` - Feed metadata (`id`, `title`, `url`, `category`)
|
|
215
|
+
- `IFeedVariant` - Feed variant metadata (`id`, `title`, `url`)
|
|
216
|
+
- `ISystemMessageEntry` - System message with severity and validity period
|
|
217
|
+
- `IGatewayErrorEntry` - Basic gateway error log entry
|
|
218
|
+
- `IGatewayErrorDetail` - Extended error with service info, error context, source code, and call stack
|
|
219
|
+
- `IGatewayException`, `ICallStackEntry`, `ISourceCodeLine` - Supporting types for error details
|
|
220
|
+
|
|
205
221
|
### Execution Domain (`execution/`)
|
|
206
222
|
- `IExecutor<TTarget, TResult, TRunWithProfilerOptions, TRunWithProfilingOptions, TRunWithProfilingResult>`
|
|
207
223
|
- Generic contract for entities that support:
|
|
@@ -209,6 +225,19 @@ This package is responsible for:
|
|
|
209
225
|
- `runWithProfiler(target, options)`
|
|
210
226
|
- `runWithProfiling(target, options?)`
|
|
211
227
|
|
|
228
|
+
### Runtime Domain (`runtime/`)
|
|
229
|
+
- `IRuntimeAnalysisObject<TKind>` — Base interface with typed `readonly kind: TKind` discriminator for type narrowing
|
|
230
|
+
- `IListableRuntimeObject<TResult, TOptions, TKind>` — Extends `IRuntimeAnalysisObject<TKind>` with `list()` method
|
|
231
|
+
- **Debugger**: `IDebugger` (composite), `IAbapDebugger` (session, breakpoints, variables, watchpoints, batch), `IAmdpDebugger` (AMDP-specific debug)
|
|
232
|
+
- **Memory**: `IMemorySnapshots` (snapshots with delta analysis)
|
|
233
|
+
- **Profiler**: `IProfiler` (traces, hit lists, statements, DB accesses)
|
|
234
|
+
- **Traces**: `ICrossTrace` (cross-layer traces), `ISt05Trace` (SQL trace)
|
|
235
|
+
- **Logs**: `IApplicationLog`, `IAtcLog` (ATC check logs)
|
|
236
|
+
- **DDIC**: `IDdicActivation` (activation graphs)
|
|
237
|
+
- **Dumps**: `IRuntimeDumps` (runtime dumps with views)
|
|
238
|
+
- **Feeds**: `ISystemMessages`, `IGatewayErrorLog` (reuse `IFeedQueryOptions`)
|
|
239
|
+
- All runtime interfaces use literal `kind` discriminators (e.g., `'profiler'`, `'debugger'`) for type-safe narrowing
|
|
240
|
+
|
|
212
241
|
### SAP Domain (`sap/`)
|
|
213
242
|
- `ISapConfig` - SAP connection configuration
|
|
214
243
|
- `SapAuthType` - Authentication type: `"basic" | "jwt"`
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Feed Repository Interface
|
|
3
|
+
*
|
|
4
|
+
* Domain-facing interface for feed access.
|
|
5
|
+
* All methods return domain types (no raw IAdtResponse).
|
|
6
|
+
*/
|
|
7
|
+
import type { IFeedDescriptor, IFeedEntry, IFeedQueryOptions, IFeedVariant, IGatewayErrorDetail, IGatewayErrorEntry, ISystemMessageEntry } from './types';
|
|
8
|
+
export interface IFeedRepository {
|
|
9
|
+
list(): Promise<IFeedDescriptor[]>;
|
|
10
|
+
variants(): Promise<IFeedVariant[]>;
|
|
11
|
+
dumps(options?: IFeedQueryOptions): Promise<IFeedEntry[]>;
|
|
12
|
+
systemMessages(options?: IFeedQueryOptions): Promise<ISystemMessageEntry[]>;
|
|
13
|
+
gatewayErrors(options?: IFeedQueryOptions): Promise<IGatewayErrorEntry[]>;
|
|
14
|
+
gatewayErrorDetail(feedUrl: string): Promise<IGatewayErrorDetail>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=IFeedRepository.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IFeedRepository.d.ts","sourceRoot":"","sources":["../../src/feeds/IFeedRepository.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EACV,eAAe,EACf,UAAU,EACV,iBAAiB,EACjB,YAAY,EACZ,mBAAmB,EACnB,kBAAkB,EAClB,mBAAmB,EACpB,MAAM,SAAS,CAAC;AAEjB,MAAM,WAAW,eAAe;IAC9B,IAAI,IAAI,OAAO,CAAC,eAAe,EAAE,CAAC,CAAC;IACnC,QAAQ,IAAI,OAAO,CAAC,YAAY,EAAE,CAAC,CAAC;IACpC,KAAK,CAAC,OAAO,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC,CAAC;IAC1D,cAAc,CAAC,OAAO,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,mBAAmB,EAAE,CAAC,CAAC;IAC5E,aAAa,CAAC,OAAO,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,CAAC,CAAC;IAC1E,kBAAkB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAC;CACnE"}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Feeds Domain Data Types
|
|
3
|
+
*
|
|
4
|
+
* Types for feed queries, entries, system messages, and gateway errors.
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* ABAP timestamp string in format YYYYMMDDHHMMSS.
|
|
8
|
+
* Represents an ABAP timestamp in feed query/results payloads.
|
|
9
|
+
* Omitted query values are excluded from serialization.
|
|
10
|
+
*/
|
|
11
|
+
export type IAbapTimestamp = string;
|
|
12
|
+
export interface IFeedQueryOptions {
|
|
13
|
+
user?: string;
|
|
14
|
+
maxResults?: number;
|
|
15
|
+
from?: IAbapTimestamp;
|
|
16
|
+
to?: IAbapTimestamp;
|
|
17
|
+
}
|
|
18
|
+
export interface IFeedEntry {
|
|
19
|
+
id: string;
|
|
20
|
+
title: string;
|
|
21
|
+
updated: IAbapTimestamp;
|
|
22
|
+
link: string;
|
|
23
|
+
content: string;
|
|
24
|
+
author?: string;
|
|
25
|
+
category?: string;
|
|
26
|
+
}
|
|
27
|
+
export interface IFeedDescriptor {
|
|
28
|
+
id: string;
|
|
29
|
+
title: string;
|
|
30
|
+
url: string;
|
|
31
|
+
category?: string;
|
|
32
|
+
}
|
|
33
|
+
export interface IFeedVariant {
|
|
34
|
+
id: string;
|
|
35
|
+
title: string;
|
|
36
|
+
url: string;
|
|
37
|
+
}
|
|
38
|
+
export interface ISystemMessageEntry {
|
|
39
|
+
id: string;
|
|
40
|
+
title: string;
|
|
41
|
+
text: string;
|
|
42
|
+
severity: string;
|
|
43
|
+
validFrom: IAbapTimestamp;
|
|
44
|
+
validTo: IAbapTimestamp;
|
|
45
|
+
createdBy: string;
|
|
46
|
+
}
|
|
47
|
+
export interface IGatewayErrorEntry {
|
|
48
|
+
type: string;
|
|
49
|
+
shortText: string;
|
|
50
|
+
transactionId: string;
|
|
51
|
+
package: string;
|
|
52
|
+
applicationComponent: string;
|
|
53
|
+
dateTime: IAbapTimestamp;
|
|
54
|
+
username: string;
|
|
55
|
+
client: string;
|
|
56
|
+
requestKind: string;
|
|
57
|
+
}
|
|
58
|
+
export interface IGatewayErrorDetail extends IGatewayErrorEntry {
|
|
59
|
+
serviceInfo: {
|
|
60
|
+
namespace: string;
|
|
61
|
+
serviceName: string;
|
|
62
|
+
serviceVersion: string;
|
|
63
|
+
groupId: string;
|
|
64
|
+
serviceRepository: string;
|
|
65
|
+
destination: string;
|
|
66
|
+
};
|
|
67
|
+
errorContext: {
|
|
68
|
+
errorInfo: string;
|
|
69
|
+
resolution: Record<string, string>;
|
|
70
|
+
exceptions: IGatewayException[];
|
|
71
|
+
};
|
|
72
|
+
sourceCode: {
|
|
73
|
+
lines: ISourceCodeLine[];
|
|
74
|
+
errorLine: number;
|
|
75
|
+
};
|
|
76
|
+
callStack: ICallStackEntry[];
|
|
77
|
+
}
|
|
78
|
+
export interface IGatewayException {
|
|
79
|
+
type: string;
|
|
80
|
+
text: string;
|
|
81
|
+
raiseLocation: string;
|
|
82
|
+
attributes?: Record<string, string>;
|
|
83
|
+
}
|
|
84
|
+
export interface ICallStackEntry {
|
|
85
|
+
number: number;
|
|
86
|
+
event: string;
|
|
87
|
+
program: string;
|
|
88
|
+
name: string;
|
|
89
|
+
line: number;
|
|
90
|
+
}
|
|
91
|
+
export interface ISourceCodeLine {
|
|
92
|
+
number: number;
|
|
93
|
+
content: string;
|
|
94
|
+
isError: boolean;
|
|
95
|
+
}
|
|
96
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/feeds/types.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -40,9 +40,23 @@ export type { IWebSocketCloseInfo, IWebSocketConnectOptions, IWebSocketMessageEn
|
|
|
40
40
|
export type { NetworkErrorCode } from './connection/NetworkErrors';
|
|
41
41
|
export { isNetworkError, NETWORK_ERROR_CODES, } from './connection/NetworkErrors';
|
|
42
42
|
export type { IExecutor } from './execution/IExecutor';
|
|
43
|
+
export type { IFeedRepository } from './feeds/IFeedRepository';
|
|
44
|
+
export type { IAbapTimestamp, ICallStackEntry, IFeedDescriptor, IFeedEntry, IFeedQueryOptions, IFeedVariant, IGatewayErrorDetail, IGatewayErrorEntry, IGatewayException, ISourceCodeLine, ISystemMessageEntry, } from './feeds/types';
|
|
43
45
|
export * from './Headers';
|
|
44
46
|
export type { ILogger } from './logging/ILogger';
|
|
45
47
|
export { LogLevel } from './logging/LogLevel';
|
|
48
|
+
export type { IApplicationLog, IGetApplicationLogObjectOptions, IGetApplicationLogSourceOptions, } from './runtime/IApplicationLog';
|
|
49
|
+
export type { IAtcLog, IGetCheckFailureLogsOptions, } from './runtime/IAtcLog';
|
|
50
|
+
export type { ICrossTrace, IListCrossTracesOptions, } from './runtime/ICrossTrace';
|
|
51
|
+
export type { IDdicActivation, IGetActivationGraphOptions, } from './runtime/IDdicActivation';
|
|
52
|
+
export type { IAbapDebugger, IAbapDebuggerStepMethod, IAmdpDebugger, IDebugger, IGetAmdpCellSubstringOptions, IGetAmdpDataPreviewOptions, IGetDebuggerOptions, IGetSystemAreaOptions, IGetVariableAsCsvOptions, IGetVariableAsJsonOptions, IGetVariableValueStatementOptions, ILaunchDebuggerOptions, IStartAmdpDebuggerOptions, IStopDebuggerOptions, } from './runtime/IDebugger';
|
|
53
|
+
export type { IGatewayErrorLog } from './runtime/IGatewayErrorLog';
|
|
54
|
+
export type { IMemorySnapshots, IMemorySnapshotsListOptions, ISnapshotChildrenOptions, ISnapshotRankingListOptions, ISnapshotReferencesOptions, } from './runtime/IMemorySnapshots';
|
|
55
|
+
export type { IProfiler, IProfilerListOptions, IProfilerTraceDbAccessesOptions, IProfilerTraceHitListOptions, IProfilerTraceParameters, IProfilerTraceStatementsOptions, } from './runtime/IProfiler';
|
|
56
|
+
export type { IRuntimeDumpReadOptions, IRuntimeDumpReadView, IRuntimeDumps, IRuntimeDumpsListOptions, } from './runtime/IRuntimeDumps';
|
|
57
|
+
export type { ISt05Trace } from './runtime/ISt05Trace';
|
|
58
|
+
export type { ISystemMessages } from './runtime/ISystemMessages';
|
|
59
|
+
export type { IListableRuntimeObject, IRuntimeAnalysisObject, } from './runtime/types';
|
|
46
60
|
export type { ISapConfig } from './sap/ISapConfig';
|
|
47
61
|
export type { SapAuthType, SapConnectionType } from './sap/SapAuthType';
|
|
48
62
|
export type { IActivateServiceBindingParams, IAdtService, ICheckServiceBindingParams, IClassifyServiceBindingParams, ICreateAndGenerateServiceBindingParams, IGenerateServiceBindingParams, IGetServiceBindingODataParams, IPublishODataV2Params, ITransportCheckServiceBindingParams, IUnpublishODataV2Params, IValidateServiceBindingParams, } from './service/IAdtService';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IRuntimeAnalysisObject } from './types';
|
|
3
|
+
export interface IGetApplicationLogObjectOptions {
|
|
4
|
+
corrNr?: string;
|
|
5
|
+
lockHandle?: string;
|
|
6
|
+
version?: string;
|
|
7
|
+
accessMode?: string;
|
|
8
|
+
action?: string;
|
|
9
|
+
}
|
|
10
|
+
export interface IGetApplicationLogSourceOptions {
|
|
11
|
+
corrNr?: string;
|
|
12
|
+
lockHandle?: string;
|
|
13
|
+
version?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface IApplicationLog extends IRuntimeAnalysisObject<'applicationLog'> {
|
|
16
|
+
getObject(objectName: string, options?: IGetApplicationLogObjectOptions): Promise<IAdtResponse>;
|
|
17
|
+
getSource(objectName: string, options?: IGetApplicationLogSourceOptions): Promise<IAdtResponse>;
|
|
18
|
+
validateName(objectName: string): Promise<IAdtResponse>;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=IApplicationLog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IApplicationLog.d.ts","sourceRoot":"","sources":["../../src/runtime/IApplicationLog.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,MAAM,WAAW,+BAA+B;IAC9C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,+BAA+B;IAC9C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,eACf,SAAQ,sBAAsB,CAAC,gBAAgB,CAAC;IAChD,SAAS,CACP,UAAU,EAAE,MAAM,EAClB,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,SAAS,CACP,UAAU,EAAE,MAAM,EAClB,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,YAAY,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;CACzD"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IRuntimeAnalysisObject } from './types';
|
|
3
|
+
export interface IGetCheckFailureLogsOptions {
|
|
4
|
+
displayId?: string;
|
|
5
|
+
objName?: string;
|
|
6
|
+
objType?: string;
|
|
7
|
+
moduleId?: string;
|
|
8
|
+
phaseKey?: string;
|
|
9
|
+
}
|
|
10
|
+
export interface IAtcLog extends IRuntimeAnalysisObject<'atcLog'> {
|
|
11
|
+
getCheckFailureLogs(options?: IGetCheckFailureLogsOptions): Promise<IAdtResponse>;
|
|
12
|
+
getExecutionLog(executionId: string): Promise<IAdtResponse>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=IAtcLog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IAtcLog.d.ts","sourceRoot":"","sources":["../../src/runtime/IAtcLog.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,MAAM,WAAW,2BAA2B;IAC1C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,OAAQ,SAAQ,sBAAsB,CAAC,QAAQ,CAAC;IAC/D,mBAAmB,CACjB,OAAO,CAAC,EAAE,2BAA2B,GACpC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,eAAe,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;CAC7D"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IListableRuntimeObject } from './types';
|
|
3
|
+
export interface IListCrossTracesOptions {
|
|
4
|
+
traceUser?: string;
|
|
5
|
+
actCreateUser?: string;
|
|
6
|
+
actChangeUser?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface ICrossTrace extends IListableRuntimeObject<IAdtResponse, IListCrossTracesOptions, 'crossTrace'> {
|
|
9
|
+
getById(traceId: string, includeSensitiveData?: boolean): Promise<IAdtResponse>;
|
|
10
|
+
getRecords(traceId: string): Promise<IAdtResponse>;
|
|
11
|
+
getRecordContent(traceId: string, recordNumber: number): Promise<IAdtResponse>;
|
|
12
|
+
getActivations(): Promise<IAdtResponse>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=ICrossTrace.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ICrossTrace.d.ts","sourceRoot":"","sources":["../../src/runtime/ICrossTrace.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,MAAM,WAAW,uBAAuB;IACtC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,WACf,SAAQ,sBAAsB,CAC5B,YAAY,EACZ,uBAAuB,EACvB,YAAY,CACb;IACD,OAAO,CACL,OAAO,EAAE,MAAM,EACf,oBAAoB,CAAC,EAAE,OAAO,GAC7B,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACnD,gBAAgB,CACd,OAAO,EAAE,MAAM,EACf,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,cAAc,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC;CACzC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IRuntimeAnalysisObject } from './types';
|
|
3
|
+
export interface IGetActivationGraphOptions {
|
|
4
|
+
objectName?: string;
|
|
5
|
+
objectType?: string;
|
|
6
|
+
logName?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface IDdicActivation extends IRuntimeAnalysisObject<'ddicActivation'> {
|
|
9
|
+
getGraph(options?: IGetActivationGraphOptions): Promise<IAdtResponse>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=IDdicActivation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDdicActivation.d.ts","sourceRoot":"","sources":["../../src/runtime/IDdicActivation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,MAAM,WAAW,0BAA0B;IACzC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,eACf,SAAQ,sBAAsB,CAAC,gBAAgB,CAAC;IAChD,QAAQ,CAAC,OAAO,CAAC,EAAE,0BAA0B,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;CACvE"}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IMemorySnapshots } from './IMemorySnapshots';
|
|
3
|
+
import type { IRuntimeAnalysisObject } from './types';
|
|
4
|
+
export interface ILaunchDebuggerOptions {
|
|
5
|
+
debuggingMode?: string;
|
|
6
|
+
requestUser?: string;
|
|
7
|
+
terminalId?: string;
|
|
8
|
+
ideId?: string;
|
|
9
|
+
timeout?: number;
|
|
10
|
+
checkConflict?: boolean;
|
|
11
|
+
isNotifiedOnConflict?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export interface IStopDebuggerOptions {
|
|
14
|
+
debuggingMode?: string;
|
|
15
|
+
requestUser?: string;
|
|
16
|
+
terminalId?: string;
|
|
17
|
+
ideId?: string;
|
|
18
|
+
checkConflict?: boolean;
|
|
19
|
+
notifyConflict?: boolean;
|
|
20
|
+
}
|
|
21
|
+
export interface IGetDebuggerOptions {
|
|
22
|
+
debuggingMode?: string;
|
|
23
|
+
requestUser?: string;
|
|
24
|
+
terminalId?: string;
|
|
25
|
+
ideId?: string;
|
|
26
|
+
checkConflict?: boolean;
|
|
27
|
+
}
|
|
28
|
+
export interface IGetSystemAreaOptions {
|
|
29
|
+
offset?: number;
|
|
30
|
+
length?: number;
|
|
31
|
+
element?: string;
|
|
32
|
+
isSelection?: boolean;
|
|
33
|
+
selectedLine?: number;
|
|
34
|
+
selectedColumn?: number;
|
|
35
|
+
programContext?: string;
|
|
36
|
+
filter?: string;
|
|
37
|
+
}
|
|
38
|
+
export interface IGetVariableAsCsvOptions {
|
|
39
|
+
offset?: number;
|
|
40
|
+
length?: number;
|
|
41
|
+
filter?: string;
|
|
42
|
+
sortComponent?: string;
|
|
43
|
+
sortDirection?: string;
|
|
44
|
+
whereClause?: string;
|
|
45
|
+
c?: string;
|
|
46
|
+
}
|
|
47
|
+
export interface IGetVariableAsJsonOptions {
|
|
48
|
+
offset?: number;
|
|
49
|
+
length?: number;
|
|
50
|
+
filter?: string;
|
|
51
|
+
sortComponent?: string;
|
|
52
|
+
sortDirection?: string;
|
|
53
|
+
whereClause?: string;
|
|
54
|
+
c?: string;
|
|
55
|
+
}
|
|
56
|
+
export interface IGetVariableValueStatementOptions {
|
|
57
|
+
rows?: number;
|
|
58
|
+
maxStringLength?: number;
|
|
59
|
+
maxNestingLevel?: number;
|
|
60
|
+
maxTotalSize?: number;
|
|
61
|
+
ignoreInitialValues?: boolean;
|
|
62
|
+
c?: string;
|
|
63
|
+
lineBreakThreshold?: number;
|
|
64
|
+
}
|
|
65
|
+
export type IAbapDebuggerStepMethod = 'stepInto' | 'stepOut' | 'stepContinue';
|
|
66
|
+
export interface IStartAmdpDebuggerOptions {
|
|
67
|
+
stopExisting?: boolean;
|
|
68
|
+
requestUser?: string;
|
|
69
|
+
cascadeMode?: string;
|
|
70
|
+
}
|
|
71
|
+
export interface IGetAmdpDataPreviewOptions {
|
|
72
|
+
rowNumber?: number;
|
|
73
|
+
colNumber?: number;
|
|
74
|
+
sessionId?: string;
|
|
75
|
+
debuggerId?: string;
|
|
76
|
+
debuggeeId?: string;
|
|
77
|
+
variableName?: string;
|
|
78
|
+
schema?: string;
|
|
79
|
+
provideRowId?: boolean;
|
|
80
|
+
action?: string;
|
|
81
|
+
}
|
|
82
|
+
export interface IGetAmdpCellSubstringOptions {
|
|
83
|
+
rowNumber?: number;
|
|
84
|
+
columnName?: string;
|
|
85
|
+
sessionId?: string;
|
|
86
|
+
debuggerId?: string;
|
|
87
|
+
debuggeeId?: string;
|
|
88
|
+
variableName?: string;
|
|
89
|
+
valueOffset?: number;
|
|
90
|
+
valueLength?: number;
|
|
91
|
+
schema?: string;
|
|
92
|
+
action?: string;
|
|
93
|
+
}
|
|
94
|
+
export interface IDebugger extends IRuntimeAnalysisObject<'debugger'> {
|
|
95
|
+
getAbap(): IAbapDebugger;
|
|
96
|
+
getAmdp(): IAmdpDebugger;
|
|
97
|
+
getMemorySnapshots(): IMemorySnapshots;
|
|
98
|
+
}
|
|
99
|
+
export interface IAbapDebugger extends IRuntimeAnalysisObject<'abapDebugger'> {
|
|
100
|
+
launch(options?: ILaunchDebuggerOptions): Promise<IAdtResponse>;
|
|
101
|
+
stop(options?: IStopDebuggerOptions): Promise<IAdtResponse>;
|
|
102
|
+
get(options?: IGetDebuggerOptions): Promise<IAdtResponse>;
|
|
103
|
+
getMemorySizes(includeAbap?: boolean): Promise<IAdtResponse>;
|
|
104
|
+
getSystemArea(systemarea: string, options?: IGetSystemAreaOptions): Promise<IAdtResponse>;
|
|
105
|
+
synchronizeBreakpoints(checkConflict?: boolean): Promise<IAdtResponse>;
|
|
106
|
+
getBreakpointStatements(): Promise<IAdtResponse>;
|
|
107
|
+
getBreakpointMessageTypes(): Promise<IAdtResponse>;
|
|
108
|
+
getBreakpointConditions(): Promise<IAdtResponse>;
|
|
109
|
+
validateBreakpoints(): Promise<IAdtResponse>;
|
|
110
|
+
getVitBreakpoints(): Promise<IAdtResponse>;
|
|
111
|
+
getVariableMaxLength(variableName: string, part: string, maxLength?: number): Promise<IAdtResponse>;
|
|
112
|
+
getVariableSubcomponents(variableName: string, part: string, component?: string, line?: number): Promise<IAdtResponse>;
|
|
113
|
+
getVariableAsCsv(variableName: string, part: string, options?: IGetVariableAsCsvOptions): Promise<IAdtResponse>;
|
|
114
|
+
getVariableAsJson(variableName: string, part: string, options?: IGetVariableAsJsonOptions): Promise<IAdtResponse>;
|
|
115
|
+
getVariableValueStatement(variableName: string, part: string, options?: IGetVariableValueStatementOptions): Promise<IAdtResponse>;
|
|
116
|
+
executeAction(action: string, value?: string): Promise<IAdtResponse>;
|
|
117
|
+
getCallStack(): Promise<IAdtResponse>;
|
|
118
|
+
insertWatchpoint(variableName: string, condition?: string): Promise<IAdtResponse>;
|
|
119
|
+
getWatchpoints(): Promise<IAdtResponse>;
|
|
120
|
+
executeBatchRequest(requests: string): Promise<IAdtResponse>;
|
|
121
|
+
executeStepBatch(stepMethod: IAbapDebuggerStepMethod): Promise<IAdtResponse>;
|
|
122
|
+
stepIntoBatch(): Promise<IAdtResponse>;
|
|
123
|
+
stepOutBatch(): Promise<IAdtResponse>;
|
|
124
|
+
stepContinueBatch(): Promise<IAdtResponse>;
|
|
125
|
+
}
|
|
126
|
+
export interface IAmdpDebugger extends IRuntimeAnalysisObject<'amdpDebugger'> {
|
|
127
|
+
start(options?: IStartAmdpDebuggerOptions): Promise<IAdtResponse>;
|
|
128
|
+
resume(mainId: string): Promise<IAdtResponse>;
|
|
129
|
+
terminate(mainId: string, hardStop?: boolean): Promise<IAdtResponse>;
|
|
130
|
+
getDebuggee(mainId: string, debuggeeId: string): Promise<IAdtResponse>;
|
|
131
|
+
getVariable(mainId: string, debuggeeId: string, varname: string, offset?: number, length?: number): Promise<IAdtResponse>;
|
|
132
|
+
setVariable(mainId: string, debuggeeId: string, varname: string, setNull?: boolean): Promise<IAdtResponse>;
|
|
133
|
+
lookup(mainId: string, debuggeeId: string, name?: string): Promise<IAdtResponse>;
|
|
134
|
+
stepOver(mainId: string, debuggeeId: string): Promise<IAdtResponse>;
|
|
135
|
+
stepContinue(mainId: string, debuggeeId: string): Promise<IAdtResponse>;
|
|
136
|
+
getBreakpoints(mainId: string): Promise<IAdtResponse>;
|
|
137
|
+
getBreakpointsLlang(mainId: string): Promise<IAdtResponse>;
|
|
138
|
+
getBreakpointsTableFunctions(mainId: string): Promise<IAdtResponse>;
|
|
139
|
+
getDataPreview(options?: IGetAmdpDataPreviewOptions): Promise<IAdtResponse>;
|
|
140
|
+
getCellSubstring(options?: IGetAmdpCellSubstringOptions): Promise<IAdtResponse>;
|
|
141
|
+
}
|
|
142
|
+
//# sourceMappingURL=IDebugger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IDebugger.d.ts","sourceRoot":"","sources":["../../src/runtime/IDebugger.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IFeedQueryOptions } from '../feeds/types';
|
|
3
|
+
import type { IListableRuntimeObject } from './types';
|
|
4
|
+
export interface IGatewayErrorLog extends IListableRuntimeObject<IAdtResponse, IFeedQueryOptions, 'gatewayErrorLog'> {
|
|
5
|
+
getById(errorType: string, errorId: string): Promise<IAdtResponse>;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=IGatewayErrorLog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IGatewayErrorLog.d.ts","sourceRoot":"","sources":["../../src/runtime/IGatewayErrorLog.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,MAAM,WAAW,gBACf,SAAQ,sBAAsB,CAC5B,YAAY,EACZ,iBAAiB,EACjB,iBAAiB,CAClB;IACD,OAAO,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;CACpE"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IListableRuntimeObject } from './types';
|
|
3
|
+
export interface IMemorySnapshotsListOptions {
|
|
4
|
+
user?: string;
|
|
5
|
+
originalUser?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface ISnapshotRankingListOptions {
|
|
8
|
+
maxNumberOfObjects?: number;
|
|
9
|
+
excludeAbapType?: string[];
|
|
10
|
+
sortAscending?: boolean;
|
|
11
|
+
sortByColumnName?: string;
|
|
12
|
+
groupByParentType?: boolean;
|
|
13
|
+
}
|
|
14
|
+
export interface ISnapshotChildrenOptions {
|
|
15
|
+
maxNumberOfObjects?: number;
|
|
16
|
+
sortAscending?: boolean;
|
|
17
|
+
sortByColumnName?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface ISnapshotReferencesOptions {
|
|
20
|
+
maxNumberOfReferences?: number;
|
|
21
|
+
}
|
|
22
|
+
export interface IMemorySnapshots extends IListableRuntimeObject<IAdtResponse, IMemorySnapshotsListOptions, 'memorySnapshots'> {
|
|
23
|
+
getById(snapshotId: string): Promise<IAdtResponse>;
|
|
24
|
+
getOverview(snapshotId: string): Promise<IAdtResponse>;
|
|
25
|
+
getRankingList(snapshotId: string, options?: ISnapshotRankingListOptions): Promise<IAdtResponse>;
|
|
26
|
+
getChildren(snapshotId: string, parentKey: string, options?: ISnapshotChildrenOptions): Promise<IAdtResponse>;
|
|
27
|
+
getReferences(snapshotId: string, objectKey: string, options?: ISnapshotReferencesOptions): Promise<IAdtResponse>;
|
|
28
|
+
getDeltaOverview(uri1: string, uri2: string): Promise<IAdtResponse>;
|
|
29
|
+
getDeltaRankingList(uri1: string, uri2: string, options?: ISnapshotRankingListOptions): Promise<IAdtResponse>;
|
|
30
|
+
getDeltaChildren(uri1: string, uri2: string, parentKey: string, options?: ISnapshotChildrenOptions): Promise<IAdtResponse>;
|
|
31
|
+
getDeltaReferences(uri1: string, uri2: string, objectKey: string, options?: ISnapshotReferencesOptions): Promise<IAdtResponse>;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=IMemorySnapshots.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IMemorySnapshots.d.ts","sourceRoot":"","sources":["../../src/runtime/IMemorySnapshots.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,MAAM,WAAW,2BAA2B;IAC1C,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,2BAA2B;IAC1C,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC7B;AAED,MAAM,WAAW,wBAAwB;IACvC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,0BAA0B;IACzC,qBAAqB,CAAC,EAAE,MAAM,CAAC;CAChC;AAED,MAAM,WAAW,gBACf,SAAQ,sBAAsB,CAC5B,YAAY,EACZ,2BAA2B,EAC3B,iBAAiB,CAClB;IACD,OAAO,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACnD,WAAW,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACvD,cAAc,CACZ,UAAU,EAAE,MAAM,EAClB,OAAO,CAAC,EAAE,2BAA2B,GACpC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,WAAW,CACT,UAAU,EAAE,MAAM,EAClB,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,wBAAwB,GACjC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,aAAa,CACX,UAAU,EAAE,MAAM,EAClB,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,0BAA0B,GACnC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACpE,mBAAmB,CACjB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,OAAO,CAAC,EAAE,2BAA2B,GACpC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,gBAAgB,CACd,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,wBAAwB,GACjC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,kBAAkB,CAChB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,0BAA0B,GACnC,OAAO,CAAC,YAAY,CAAC,CAAC;CAC1B"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IListableRuntimeObject } from './types';
|
|
3
|
+
export interface IProfilerListOptions {
|
|
4
|
+
user?: string;
|
|
5
|
+
}
|
|
6
|
+
export interface IProfilerTraceParameters {
|
|
7
|
+
allMiscAbapStatements?: boolean;
|
|
8
|
+
allProceduralUnits?: boolean;
|
|
9
|
+
allInternalTableEvents?: boolean;
|
|
10
|
+
allDynproEvents?: boolean;
|
|
11
|
+
description?: string;
|
|
12
|
+
aggregate?: boolean;
|
|
13
|
+
explicitOnOff?: boolean;
|
|
14
|
+
withRfcTracing?: boolean;
|
|
15
|
+
allSystemKernelEvents?: boolean;
|
|
16
|
+
sqlTrace?: boolean;
|
|
17
|
+
allDbEvents?: boolean;
|
|
18
|
+
maxSizeForTraceFile?: number;
|
|
19
|
+
amdpTrace?: boolean;
|
|
20
|
+
maxTimeForTracing?: number;
|
|
21
|
+
}
|
|
22
|
+
export interface IProfilerTraceHitListOptions {
|
|
23
|
+
withSystemEvents?: boolean;
|
|
24
|
+
}
|
|
25
|
+
export interface IProfilerTraceStatementsOptions {
|
|
26
|
+
id?: number;
|
|
27
|
+
withDetails?: boolean;
|
|
28
|
+
autoDrillDownThreshold?: number;
|
|
29
|
+
withSystemEvents?: boolean;
|
|
30
|
+
}
|
|
31
|
+
export interface IProfilerTraceDbAccessesOptions {
|
|
32
|
+
withSystemEvents?: boolean;
|
|
33
|
+
}
|
|
34
|
+
export interface IProfiler extends IListableRuntimeObject<IAdtResponse, IProfilerListOptions, 'profiler'> {
|
|
35
|
+
getParameters(): Promise<IAdtResponse>;
|
|
36
|
+
getParametersForCallstack(): Promise<IAdtResponse>;
|
|
37
|
+
getParametersForAmdp(): Promise<IAdtResponse>;
|
|
38
|
+
createParameters(options?: IProfilerTraceParameters): Promise<IAdtResponse>;
|
|
39
|
+
getHitList(traceIdOrUri: string, options?: IProfilerTraceHitListOptions): Promise<IAdtResponse>;
|
|
40
|
+
getStatements(traceIdOrUri: string, options?: IProfilerTraceStatementsOptions): Promise<IAdtResponse>;
|
|
41
|
+
getDbAccesses(traceIdOrUri: string, options?: IProfilerTraceDbAccessesOptions): Promise<IAdtResponse>;
|
|
42
|
+
listRequests(): Promise<IAdtResponse>;
|
|
43
|
+
getRequestsByUri(uri: string): Promise<IAdtResponse>;
|
|
44
|
+
listObjectTypes(): Promise<IAdtResponse>;
|
|
45
|
+
listProcessTypes(): Promise<IAdtResponse>;
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=IProfiler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IProfiler.d.ts","sourceRoot":"","sources":["../../src/runtime/IProfiler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,MAAM,WAAW,oBAAoB;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,wBAAwB;IACvC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,4BAA4B;IAC3C,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED,MAAM,WAAW,+BAA+B;IAC9C,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED,MAAM,WAAW,+BAA+B;IAC9C,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B;AAED,MAAM,WAAW,SACf,SAAQ,sBAAsB,CAC5B,YAAY,EACZ,oBAAoB,EACpB,UAAU,CACX;IACD,aAAa,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC;IACvC,yBAAyB,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC;IACnD,oBAAoB,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC;IAC9C,gBAAgB,CAAC,OAAO,CAAC,EAAE,wBAAwB,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IAC5E,UAAU,CACR,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,4BAA4B,GACrC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,aAAa,CACX,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,aAAa,CACX,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,YAAY,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC;IACtC,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;IACrD,eAAe,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC;IACzC,gBAAgB,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC;CAC3C"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IListableRuntimeObject } from './types';
|
|
3
|
+
export type IRuntimeDumpReadView = 'default' | 'summary' | 'formatted';
|
|
4
|
+
export interface IRuntimeDumpsListOptions {
|
|
5
|
+
query?: string;
|
|
6
|
+
inlinecount?: 'allpages' | 'none';
|
|
7
|
+
top?: number;
|
|
8
|
+
skip?: number;
|
|
9
|
+
orderby?: string;
|
|
10
|
+
from?: string;
|
|
11
|
+
to?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface IRuntimeDumpReadOptions {
|
|
14
|
+
view?: IRuntimeDumpReadView;
|
|
15
|
+
}
|
|
16
|
+
export interface IRuntimeDumps extends IListableRuntimeObject<IAdtResponse, IRuntimeDumpsListOptions, 'runtimeDumps'> {
|
|
17
|
+
listByUser(user?: string, options?: Omit<IRuntimeDumpsListOptions, 'query'>): Promise<IAdtResponse>;
|
|
18
|
+
getById(dumpId: string, options?: IRuntimeDumpReadOptions): Promise<IAdtResponse>;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=IRuntimeDumps.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IRuntimeDumps.d.ts","sourceRoot":"","sources":["../../src/runtime/IRuntimeDumps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,MAAM,MAAM,oBAAoB,GAAG,SAAS,GAAG,SAAS,GAAG,WAAW,CAAC;AAEvE,MAAM,WAAW,wBAAwB;IACvC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,UAAU,GAAG,MAAM,CAAC;IAClC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,oBAAoB,CAAC;CAC7B;AAED,MAAM,WAAW,aACf,SAAQ,sBAAsB,CAC5B,YAAY,EACZ,wBAAwB,EACxB,cAAc,CACf;IACD,UAAU,CACR,IAAI,CAAC,EAAE,MAAM,EACb,OAAO,CAAC,EAAE,IAAI,CAAC,wBAAwB,EAAE,OAAO,CAAC,GAChD,OAAO,CAAC,YAAY,CAAC,CAAC;IACzB,OAAO,CACL,MAAM,EAAE,MAAM,EACd,OAAO,CAAC,EAAE,uBAAuB,GAChC,OAAO,CAAC,YAAY,CAAC,CAAC;CAC1B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IRuntimeAnalysisObject } from './types';
|
|
3
|
+
export interface ISt05Trace extends IRuntimeAnalysisObject<'st05Trace'> {
|
|
4
|
+
getState(): Promise<IAdtResponse>;
|
|
5
|
+
getDirectory(): Promise<IAdtResponse>;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=ISt05Trace.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ISt05Trace.d.ts","sourceRoot":"","sources":["../../src/runtime/ISt05Trace.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,MAAM,WAAW,UAAW,SAAQ,sBAAsB,CAAC,WAAW,CAAC;IACrE,QAAQ,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC;IAClC,YAAY,IAAI,OAAO,CAAC,YAAY,CAAC,CAAC;CACvC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IAdtResponse } from '../connection/IAbapConnection';
|
|
2
|
+
import type { IFeedQueryOptions } from '../feeds/types';
|
|
3
|
+
import type { IListableRuntimeObject } from './types';
|
|
4
|
+
export interface ISystemMessages extends IListableRuntimeObject<IAdtResponse, IFeedQueryOptions, 'systemMessages'> {
|
|
5
|
+
getById(messageId: string): Promise<IAdtResponse>;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=ISystemMessages.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ISystemMessages.d.ts","sourceRoot":"","sources":["../../src/runtime/ISystemMessages.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAClE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,MAAM,WAAW,eACf,SAAQ,sBAAsB,CAC5B,YAAY,EACZ,iBAAiB,EACjB,gBAAgB,CACjB;IACD,OAAO,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAAC;CACnD"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Runtime Analysis Domain Types
|
|
3
|
+
*
|
|
4
|
+
* Base interfaces for all runtime analysis/monitoring capabilities.
|
|
5
|
+
* Uses typed discriminators for type narrowing.
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* Base interface for all runtime analysis domain objects.
|
|
9
|
+
* Uses a generic discriminator field for type narrowing.
|
|
10
|
+
*
|
|
11
|
+
* @template TKind - Literal string type for discriminator (default: string)
|
|
12
|
+
*/
|
|
13
|
+
export interface IRuntimeAnalysisObject<TKind extends string = string> {
|
|
14
|
+
readonly kind: TKind;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Generic listable runtime object.
|
|
18
|
+
* Each domain supplies its own result, options, and kind types.
|
|
19
|
+
*
|
|
20
|
+
* @template TResult - The type returned by list()
|
|
21
|
+
* @template TOptions - Query options type (default: undefined = no options)
|
|
22
|
+
* @template TKind - Literal string type for discriminator (default: string)
|
|
23
|
+
*/
|
|
24
|
+
export interface IListableRuntimeObject<TResult, TOptions = undefined, TKind extends string = string> extends IRuntimeAnalysisObject<TKind> {
|
|
25
|
+
list(options?: TOptions): Promise<TResult>;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/runtime/types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH;;;;;GAKG;AACH,MAAM,WAAW,sBAAsB,CAAC,KAAK,SAAS,MAAM,GAAG,MAAM;IACnE,QAAQ,CAAC,IAAI,EAAE,KAAK,CAAC;CACtB;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,sBAAsB,CACrC,OAAO,EACP,QAAQ,GAAG,SAAS,EACpB,KAAK,SAAS,MAAM,GAAG,MAAM,CAC7B,SAAQ,sBAAsB,CAAC,KAAK,CAAC;IACrC,IAAI,CAAC,OAAO,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CAC5C"}
|