namirasoft-expert 1.4.41 → 1.4.43
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/dist/NamirasoftExpertServer.js +1 -1
- package/dist/NamirasoftExpertServerAgent.d.ts +11 -122
- package/dist/NamirasoftExpertServerAgent.js.map +1 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/row/AgentTrackAnalysisRow.d.ts +12 -0
- package/dist/row/AgentTrackAnalysisRow.js +3 -0
- package/dist/row/AgentTrackAnalysisRow.js.map +1 -0
- package/dist/row/AgentTrackClassificationRow.d.ts +8 -0
- package/dist/row/AgentTrackClassificationRow.js +3 -0
- package/dist/row/AgentTrackClassificationRow.js.map +1 -0
- package/dist/row/AgentTrackCommandGroupRow.d.ts +10 -0
- package/dist/row/AgentTrackCommandGroupRow.js +3 -0
- package/dist/row/AgentTrackCommandGroupRow.js.map +1 -0
- package/dist/row/AgentTrackCommandRow.d.ts +12 -0
- package/dist/row/AgentTrackCommandRow.js +3 -0
- package/dist/row/AgentTrackCommandRow.js.map +1 -0
- package/dist/row/AgentTrackEntityRoleRow.d.ts +8 -0
- package/dist/row/AgentTrackEntityRoleRow.js +3 -0
- package/dist/row/AgentTrackEntityRoleRow.js.map +1 -0
- package/dist/row/AgentTrackEntityRow.d.ts +9 -0
- package/dist/row/AgentTrackEntityRow.js +3 -0
- package/dist/row/AgentTrackEntityRow.js.map +1 -0
- package/dist/row/AgentTrackExpertRow.d.ts +7 -0
- package/dist/row/AgentTrackExpertRow.js +3 -0
- package/dist/row/AgentTrackExpertRow.js.map +1 -0
- package/dist/row/AgentTrackOutputRow.d.ts +53 -0
- package/dist/row/AgentTrackOutputRow.js +3 -0
- package/dist/row/AgentTrackOutputRow.js.map +1 -0
- package/dist/row/AgentTrackSignalRow.d.ts +8 -0
- package/dist/row/AgentTrackSignalRow.js +3 -0
- package/dist/row/AgentTrackSignalRow.js.map +1 -0
- package/package.json +1 -1
- package/src/NamirasoftExpertServer.ts +1 -1
- package/src/NamirasoftExpertServerAgent.ts +4 -5
- package/src/index.ts +9 -0
- package/src/row/AgentTrackAnalysisRow.ts +30 -0
- package/src/row/AgentTrackClassificationRow.ts +30 -0
- package/src/row/AgentTrackCommandGroupRow.ts +31 -0
- package/src/row/AgentTrackCommandRow.ts +33 -0
- package/src/row/AgentTrackEntityRoleRow.ts +29 -0
- package/src/row/AgentTrackEntityRow.ts +30 -0
- package/src/row/AgentTrackExpertRow.ts +28 -0
- package/src/row/AgentTrackOutputRow.ts +75 -0
- package/src/row/AgentTrackSignalRow.ts +29 -0
|
@@ -17,7 +17,7 @@ const NamirasoftExpertServerRun_1 = require("./NamirasoftExpertServerRun");
|
|
|
17
17
|
const NamirasoftExpertServerValue_1 = require("./NamirasoftExpertServerValue");
|
|
18
18
|
class NamirasoftExpertServer extends namirasoft_account_1.NSABaseServer {
|
|
19
19
|
constructor(base_url, token_manager, onError) {
|
|
20
|
-
super(base_url, `1.4.
|
|
20
|
+
super(base_url, `1.4.43`, token_manager, onError);
|
|
21
21
|
this.healthz = new NamirasoftExpertServerHealthz_1.NamirasoftExpertServerHealthz(this);
|
|
22
22
|
this.health = new NamirasoftExpertServerHealth_1.NamirasoftExpertServerHealth(this);
|
|
23
23
|
this.metrics = new NamirasoftExpertServerMetrics_1.NamirasoftExpertServerMetrics(this);
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { AgentInputRow } from "./row/AgentInputRow";
|
|
2
2
|
import { AgentRow } from "./row/AgentRow";
|
|
3
|
+
import { AgentTrackOutputRow } from "./row/AgentTrackOutputRow";
|
|
3
4
|
import { BaseServerConfig } from "namirasoft-core";
|
|
4
5
|
import { FilterItem } from "namirasoft-core";
|
|
5
6
|
import { NamirasoftExpertServer } from "./NamirasoftExpertServer";
|
|
6
7
|
import { NamirasoftExpertServerBase } from "./NamirasoftExpertServerBase";
|
|
7
8
|
import { RunRow } from "./row/RunRow";
|
|
8
9
|
import { SortItem } from "namirasoft-core";
|
|
9
|
-
import { intent } from "./enum/intent";
|
|
10
|
-
import { priority } from "./enum/priority";
|
|
11
10
|
export declare class NamirasoftExpertServerAgent extends NamirasoftExpertServerBase {
|
|
12
11
|
constructor(server: NamirasoftExpertServer);
|
|
13
12
|
List(filters: FilterItem[] | null, page: (number | null), size: (number | null), sorts: SortItem[], config?: BaseServerConfig<any>): Promise<{
|
|
@@ -30,15 +29,15 @@ export declare class NamirasoftExpertServerAgent extends NamirasoftExpertServerB
|
|
|
30
29
|
use_entity_messaging: boolean;
|
|
31
30
|
use_entity_streaming: boolean;
|
|
32
31
|
use_entity_metric: boolean;
|
|
33
|
-
use_ids_cloud: string[];
|
|
34
|
-
use_ids_server: string[];
|
|
35
|
-
use_ids_kubernetes: string[];
|
|
36
|
-
use_ids_container: string[];
|
|
37
|
-
use_ids_database: string[];
|
|
38
|
-
use_ids_cache: string[];
|
|
39
|
-
use_ids_messaging: string[];
|
|
40
|
-
use_ids_streaming: string[];
|
|
41
|
-
use_ids_metric: string[];
|
|
32
|
+
use_ids_cloud: (string | null)[];
|
|
33
|
+
use_ids_server: (string | null)[];
|
|
34
|
+
use_ids_kubernetes: (string | null)[];
|
|
35
|
+
use_ids_container: (string | null)[];
|
|
36
|
+
use_ids_database: (string | null)[];
|
|
37
|
+
use_ids_cache: (string | null)[];
|
|
38
|
+
use_ids_messaging: (string | null)[];
|
|
39
|
+
use_ids_streaming: (string | null)[];
|
|
40
|
+
use_ids_metric: (string | null)[];
|
|
42
41
|
message_user: string;
|
|
43
42
|
}, config?: BaseServerConfig<any>): Promise<RunRow>;
|
|
44
43
|
Continue(body: {
|
|
@@ -63,115 +62,5 @@ export declare class NamirasoftExpertServerAgent extends NamirasoftExpertServerB
|
|
|
63
62
|
use_ids_metric: ((string | null)[] | null);
|
|
64
63
|
message_user: string;
|
|
65
64
|
}, config?: BaseServerConfig<any>): Promise<RunRow>;
|
|
66
|
-
Track(track_id: string, config?: BaseServerConfig<any>): Promise<
|
|
67
|
-
finished: boolean;
|
|
68
|
-
error: ({
|
|
69
|
-
node: string;
|
|
70
|
-
message: string;
|
|
71
|
-
} | null);
|
|
72
|
-
owner_id: string;
|
|
73
|
-
agent_id: string;
|
|
74
|
-
chat_id: string;
|
|
75
|
-
need_chat_name: boolean;
|
|
76
|
-
run_id: string;
|
|
77
|
-
message_user: string;
|
|
78
|
-
use_entity_cloud: boolean;
|
|
79
|
-
use_entity_server: boolean;
|
|
80
|
-
use_entity_kubernetes: boolean;
|
|
81
|
-
use_entity_container: boolean;
|
|
82
|
-
use_entity_database: boolean;
|
|
83
|
-
use_entity_cache: boolean;
|
|
84
|
-
use_entity_messaging: boolean;
|
|
85
|
-
use_entity_streaming: boolean;
|
|
86
|
-
use_entity_metric: boolean;
|
|
87
|
-
use_ids_cloud: string[];
|
|
88
|
-
use_ids_server: string[];
|
|
89
|
-
use_ids_kubernetes: string[];
|
|
90
|
-
use_ids_container: string[];
|
|
91
|
-
use_ids_database: string[];
|
|
92
|
-
use_ids_cache: string[];
|
|
93
|
-
use_ids_messaging: string[];
|
|
94
|
-
use_ids_streaming: string[];
|
|
95
|
-
use_ids_metric: string[];
|
|
96
|
-
iteration: number;
|
|
97
|
-
classification: {
|
|
98
|
-
category: string;
|
|
99
|
-
priority: priority;
|
|
100
|
-
intent: intent;
|
|
101
|
-
confidence: number;
|
|
102
|
-
};
|
|
103
|
-
experts: {
|
|
104
|
-
rid: string;
|
|
105
|
-
iteration: number;
|
|
106
|
-
name: string;
|
|
107
|
-
reason: string;
|
|
108
|
-
focus: string;
|
|
109
|
-
}[];
|
|
110
|
-
expert_results: any;
|
|
111
|
-
signals: {
|
|
112
|
-
rid: string;
|
|
113
|
-
iteration: number;
|
|
114
|
-
expert_rid: string;
|
|
115
|
-
name: string;
|
|
116
|
-
reason: string;
|
|
117
|
-
focus: string;
|
|
118
|
-
}[];
|
|
119
|
-
signal_results: any;
|
|
120
|
-
entity_roles: {
|
|
121
|
-
rid: string;
|
|
122
|
-
iteration: number;
|
|
123
|
-
expert_rid: string;
|
|
124
|
-
signal_rid: string;
|
|
125
|
-
name: string;
|
|
126
|
-
reason: string;
|
|
127
|
-
}[];
|
|
128
|
-
entity_role_results: any;
|
|
129
|
-
entites: {
|
|
130
|
-
rid: string;
|
|
131
|
-
iteration: number;
|
|
132
|
-
expert_rid: string;
|
|
133
|
-
signal_rid: string;
|
|
134
|
-
entity_role_rid: string;
|
|
135
|
-
entity_ids: string[];
|
|
136
|
-
reason: string;
|
|
137
|
-
}[];
|
|
138
|
-
entity_results: any;
|
|
139
|
-
commandgroups: {
|
|
140
|
-
rid: string;
|
|
141
|
-
iteration: number;
|
|
142
|
-
expert_rid: string;
|
|
143
|
-
signal_rid: string;
|
|
144
|
-
entity_role_rid: string;
|
|
145
|
-
entity_rid: string;
|
|
146
|
-
name: string;
|
|
147
|
-
reason: string;
|
|
148
|
-
}[];
|
|
149
|
-
commandgroup_results: any;
|
|
150
|
-
commands: {
|
|
151
|
-
rid: string;
|
|
152
|
-
iteration: number;
|
|
153
|
-
expert_rid: string;
|
|
154
|
-
signal_rid: string;
|
|
155
|
-
entity_role_rid: string;
|
|
156
|
-
entity_rid: string;
|
|
157
|
-
commandgroup_rid: string;
|
|
158
|
-
name: string;
|
|
159
|
-
arguments: string[];
|
|
160
|
-
reason: string;
|
|
161
|
-
}[];
|
|
162
|
-
command_results: any;
|
|
163
|
-
analysis: {
|
|
164
|
-
root_cause: (string | null);
|
|
165
|
-
impact_assessment: (string | null);
|
|
166
|
-
timeline: ({
|
|
167
|
-
timestamp: number;
|
|
168
|
-
event: string;
|
|
169
|
-
}[] | null);
|
|
170
|
-
affected_systems: (string[] | null);
|
|
171
|
-
severity: (string | null);
|
|
172
|
-
more_experts: (string[] | null);
|
|
173
|
-
more_signals: (string[] | null);
|
|
174
|
-
};
|
|
175
|
-
report: (string | null);
|
|
176
|
-
}>;
|
|
65
|
+
Track(track_id: string, config?: BaseServerConfig<any>): Promise<AgentTrackOutputRow>;
|
|
177
66
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NamirasoftExpertServerAgent.js","sourceRoot":"","sources":["../src/NamirasoftExpertServerAgent.ts"],"names":[],"mappings":";;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"NamirasoftExpertServerAgent.js","sourceRoot":"","sources":["../src/NamirasoftExpertServerAgent.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -95,6 +95,15 @@ export * from "./row/AgentFieldRow";
|
|
|
95
95
|
export * from "./row/AgentInputRow";
|
|
96
96
|
export * from "./row/AgentRow";
|
|
97
97
|
export * from "./row/AgentTagRow";
|
|
98
|
+
export * from "./row/AgentTrackAnalysisRow";
|
|
99
|
+
export * from "./row/AgentTrackClassificationRow";
|
|
100
|
+
export * from "./row/AgentTrackCommandGroupRow";
|
|
101
|
+
export * from "./row/AgentTrackCommandRow";
|
|
102
|
+
export * from "./row/AgentTrackEntityRoleRow";
|
|
103
|
+
export * from "./row/AgentTrackEntityRow";
|
|
104
|
+
export * from "./row/AgentTrackExpertRow";
|
|
105
|
+
export * from "./row/AgentTrackOutputRow";
|
|
106
|
+
export * from "./row/AgentTrackSignalRow";
|
|
98
107
|
export * from "./row/ChatRow";
|
|
99
108
|
export * from "./row/ChatUpdateRow";
|
|
100
109
|
export * from "./row/DescriptionInputRow";
|
package/dist/index.js
CHANGED
|
@@ -111,6 +111,15 @@ __exportStar(require("./row/AgentFieldRow"), exports);
|
|
|
111
111
|
__exportStar(require("./row/AgentInputRow"), exports);
|
|
112
112
|
__exportStar(require("./row/AgentRow"), exports);
|
|
113
113
|
__exportStar(require("./row/AgentTagRow"), exports);
|
|
114
|
+
__exportStar(require("./row/AgentTrackAnalysisRow"), exports);
|
|
115
|
+
__exportStar(require("./row/AgentTrackClassificationRow"), exports);
|
|
116
|
+
__exportStar(require("./row/AgentTrackCommandGroupRow"), exports);
|
|
117
|
+
__exportStar(require("./row/AgentTrackCommandRow"), exports);
|
|
118
|
+
__exportStar(require("./row/AgentTrackEntityRoleRow"), exports);
|
|
119
|
+
__exportStar(require("./row/AgentTrackEntityRow"), exports);
|
|
120
|
+
__exportStar(require("./row/AgentTrackExpertRow"), exports);
|
|
121
|
+
__exportStar(require("./row/AgentTrackOutputRow"), exports);
|
|
122
|
+
__exportStar(require("./row/AgentTrackSignalRow"), exports);
|
|
114
123
|
__exportStar(require("./row/ChatRow"), exports);
|
|
115
124
|
__exportStar(require("./row/ChatUpdateRow"), exports);
|
|
116
125
|
__exportStar(require("./row/DescriptionInputRow"), exports);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAoBA,2DAAyC;AACzC,gEAA8C;AAC9C,wEAAsD;AACtD,qEAAmD;AACnD,mEAAiD;AACjD,+DAA6C;AAC7C,+DAA6C;AAC7C,sEAAoD;AACpD,iEAA+C;AAC/C,kEAAgD;AAChD,kEAAgD;AAChD,+DAA6C;AAC7C,yEAAuD;AACvD,8DAA4C;AAC5C,gEAA8C;AAC9C,iEAA+C;AAC/C,uEAAqD;AACrD,uEAAqD;AACrD,oEAAkD;AAClD,qEAAmD;AACnD,yDAAuC;AACvC,iEAA+C;AAC/C,+DAA6C;AAC7C,+DAA6C;AAC7C,8DAA4C;AAC5C,oEAAkD;AAClD,oEAAkD;AAClD,iEAA+C;AAC/C,kEAAgD;AAChD,oEAAkD;AAClD,4DAA0C;AAC1C,6DAA2C;AAC3C,8DAA4C;AAC5C,4DAA0C;AAC1C,kEAAgD;AAChD,kEAAgD;AAChD,+DAA6C;AAC7C,gEAA8C;AAC9C,kEAAgD;AAChD,8DAA4C;AAC5C,+DAA6C;AAC7C,wDAAsC;AACtC,4DAA0C;AAC1C,8DAA4C;AAC5C,+DAA6C;AAC7C,qEAAmD;AACnD,uEAAqD;AACrD,mEAAiD;AACjD,oEAAkD;AAClD,qEAAmD;AACnD,0DAAwC;AACxC,kEAAgD;AAChD,mEAAiD;AACjD,2DAAyC;AACzC,8DAA4C;AAC5C,2DAAyC;AACzC,8DAA4C;AAC5C,kEAAgD;AAChD,wEAAsD;AACtD,wEAAsD;AACtD,0EAAwD;AACxD,sEAAoD;AACpD,uEAAqD;AACrD,wDAAsC;AACtC,8DAA4C;AAC5C,8DAA4C;AAC5C,gEAA8C;AAC9C,4DAA0C;AAC1C,6DAA2C;AAC3C,8DAA4C;AAC5C,uDAAqC;AACrC,0DAAwC;AACxC,2DAAyC;AACzC,yDAAuC;AACvC,6DAA2C;AAC3C,kDAAgC;AAChC,+DAA6C;AAC7C,oDAAkC;AAClC,kEAAgD;AAChD,wDAAsC;AACtC,mDAAiC;AACjC,gDAA8B;AAC9B,kDAAgC;AAChC,gEAA8C;AAC9C,6DAA2C;AAC3C,wDAAsC;AACtC,2DAAyC;AACzC,uDAAqC;AACrC,8DAA4C;AAC5C,sEAAoD;AACpD,iEAA+C;AAC/C,uDAAqC;AACrC,yDAAuC;AACvC,sDAAoC;AACpC,sDAAoC;AACpC,iDAA+B;AAC/B,oDAAkC;AAClC,gDAA8B;AAC9B,sDAAoC;AACpC,4DAA0C;AAC1C,uDAAqC;AACrC,iEAA+C;AAC/C,kEAAgD;AAChD,iEAA+C;AAC/C,+DAA6C;AAC7C,4DAA0C;AAC1C,0DAAwC;AACxC,+DAA6C;AAC7C,0DAAwC;AACxC,oEAAkD;AAClD,qEAAmD;AACnD,oEAAkD;AAClD,qDAAmC;AACnC,gDAA8B;AAC9B,0DAAwC;AACxC,2DAAyC;AACzC,0DAAwC;AACxC,+CAA6B;AAC7B,sDAAoC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAoBA,2DAAyC;AACzC,gEAA8C;AAC9C,wEAAsD;AACtD,qEAAmD;AACnD,mEAAiD;AACjD,+DAA6C;AAC7C,+DAA6C;AAC7C,sEAAoD;AACpD,iEAA+C;AAC/C,kEAAgD;AAChD,kEAAgD;AAChD,+DAA6C;AAC7C,yEAAuD;AACvD,8DAA4C;AAC5C,gEAA8C;AAC9C,iEAA+C;AAC/C,uEAAqD;AACrD,uEAAqD;AACrD,oEAAkD;AAClD,qEAAmD;AACnD,yDAAuC;AACvC,iEAA+C;AAC/C,+DAA6C;AAC7C,+DAA6C;AAC7C,8DAA4C;AAC5C,oEAAkD;AAClD,oEAAkD;AAClD,iEAA+C;AAC/C,kEAAgD;AAChD,oEAAkD;AAClD,4DAA0C;AAC1C,6DAA2C;AAC3C,8DAA4C;AAC5C,4DAA0C;AAC1C,kEAAgD;AAChD,kEAAgD;AAChD,+DAA6C;AAC7C,gEAA8C;AAC9C,kEAAgD;AAChD,8DAA4C;AAC5C,+DAA6C;AAC7C,wDAAsC;AACtC,4DAA0C;AAC1C,8DAA4C;AAC5C,+DAA6C;AAC7C,qEAAmD;AACnD,uEAAqD;AACrD,mEAAiD;AACjD,oEAAkD;AAClD,qEAAmD;AACnD,0DAAwC;AACxC,kEAAgD;AAChD,mEAAiD;AACjD,2DAAyC;AACzC,8DAA4C;AAC5C,2DAAyC;AACzC,8DAA4C;AAC5C,kEAAgD;AAChD,wEAAsD;AACtD,wEAAsD;AACtD,0EAAwD;AACxD,sEAAoD;AACpD,uEAAqD;AACrD,wDAAsC;AACtC,8DAA4C;AAC5C,8DAA4C;AAC5C,gEAA8C;AAC9C,4DAA0C;AAC1C,6DAA2C;AAC3C,8DAA4C;AAC5C,uDAAqC;AACrC,0DAAwC;AACxC,2DAAyC;AACzC,yDAAuC;AACvC,6DAA2C;AAC3C,kDAAgC;AAChC,+DAA6C;AAC7C,oDAAkC;AAClC,kEAAgD;AAChD,wDAAsC;AACtC,mDAAiC;AACjC,gDAA8B;AAC9B,kDAAgC;AAChC,gEAA8C;AAC9C,6DAA2C;AAC3C,wDAAsC;AACtC,2DAAyC;AACzC,uDAAqC;AACrC,8DAA4C;AAC5C,sEAAoD;AACpD,iEAA+C;AAC/C,uDAAqC;AACrC,yDAAuC;AACvC,sDAAoC;AACpC,sDAAoC;AACpC,iDAA+B;AAC/B,oDAAkC;AAClC,8DAA4C;AAC5C,oEAAkD;AAClD,kEAAgD;AAChD,6DAA2C;AAC3C,gEAA8C;AAC9C,4DAA0C;AAC1C,4DAA0C;AAC1C,4DAA0C;AAC1C,4DAA0C;AAC1C,gDAA8B;AAC9B,sDAAoC;AACpC,4DAA0C;AAC1C,uDAAqC;AACrC,iEAA+C;AAC/C,kEAAgD;AAChD,iEAA+C;AAC/C,+DAA6C;AAC7C,4DAA0C;AAC1C,0DAAwC;AACxC,+DAA6C;AAC7C,0DAAwC;AACxC,oEAAkD;AAClD,qEAAmD;AACnD,oEAAkD;AAClD,qDAAmC;AACnC,gDAA8B;AAC9B,0DAAwC;AACxC,2DAAyC;AACzC,0DAAwC;AACxC,+CAA6B;AAC7B,sDAAoC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type AgentTrackAnalysisRow = {
|
|
2
|
+
root_cause: (string | null);
|
|
3
|
+
impact_assessment: (string | null);
|
|
4
|
+
timeline: ({
|
|
5
|
+
timestamp: number;
|
|
6
|
+
event: string;
|
|
7
|
+
}[] | null);
|
|
8
|
+
affected_systems: (string[] | null);
|
|
9
|
+
severity: (string | null);
|
|
10
|
+
more_experts: (string[] | null);
|
|
11
|
+
more_signals: (string[] | null);
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgentTrackAnalysisRow.js","sourceRoot":"","sources":["../../src/row/AgentTrackAnalysisRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgentTrackClassificationRow.js","sourceRoot":"","sources":["../../src/row/AgentTrackClassificationRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgentTrackCommandGroupRow.js","sourceRoot":"","sources":["../../src/row/AgentTrackCommandGroupRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type AgentTrackCommandRow = {
|
|
2
|
+
rid: string;
|
|
3
|
+
iteration: number;
|
|
4
|
+
expert_rid: string;
|
|
5
|
+
signal_rid: string;
|
|
6
|
+
entity_role_rid: string;
|
|
7
|
+
entity_rid: string;
|
|
8
|
+
commandgroup_rid: string;
|
|
9
|
+
name: string;
|
|
10
|
+
arguments: string[];
|
|
11
|
+
reason: string;
|
|
12
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgentTrackCommandRow.js","sourceRoot":"","sources":["../../src/row/AgentTrackCommandRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgentTrackEntityRoleRow.js","sourceRoot":"","sources":["../../src/row/AgentTrackEntityRoleRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgentTrackEntityRow.js","sourceRoot":"","sources":["../../src/row/AgentTrackEntityRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgentTrackExpertRow.js","sourceRoot":"","sources":["../../src/row/AgentTrackExpertRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { AgentTrackAnalysisRow } from "./AgentTrackAnalysisRow";
|
|
2
|
+
import { AgentTrackClassificationRow } from "./AgentTrackClassificationRow";
|
|
3
|
+
import { AgentTrackCommandGroupRow } from "./AgentTrackCommandGroupRow";
|
|
4
|
+
import { AgentTrackCommandRow } from "./AgentTrackCommandRow";
|
|
5
|
+
import { AgentTrackEntityRoleRow } from "./AgentTrackEntityRoleRow";
|
|
6
|
+
import { AgentTrackEntityRow } from "./AgentTrackEntityRow";
|
|
7
|
+
import { AgentTrackExpertRow } from "./AgentTrackExpertRow";
|
|
8
|
+
import { AgentTrackSignalRow } from "./AgentTrackSignalRow";
|
|
9
|
+
import { TrackErrorRow } from "./TrackErrorRow";
|
|
10
|
+
export type AgentTrackOutputRow = {
|
|
11
|
+
finished: boolean;
|
|
12
|
+
error: (TrackErrorRow | null);
|
|
13
|
+
owner_id: string;
|
|
14
|
+
agent_id: string;
|
|
15
|
+
chat_id: string;
|
|
16
|
+
need_chat_name: boolean;
|
|
17
|
+
run_id: string;
|
|
18
|
+
message_user: string;
|
|
19
|
+
use_entity_cloud: boolean;
|
|
20
|
+
use_entity_server: boolean;
|
|
21
|
+
use_entity_kubernetes: boolean;
|
|
22
|
+
use_entity_container: boolean;
|
|
23
|
+
use_entity_database: boolean;
|
|
24
|
+
use_entity_cache: boolean;
|
|
25
|
+
use_entity_messaging: boolean;
|
|
26
|
+
use_entity_streaming: boolean;
|
|
27
|
+
use_entity_metric: boolean;
|
|
28
|
+
use_ids_cloud: string[];
|
|
29
|
+
use_ids_server: string[];
|
|
30
|
+
use_ids_kubernetes: string[];
|
|
31
|
+
use_ids_container: string[];
|
|
32
|
+
use_ids_database: string[];
|
|
33
|
+
use_ids_cache: string[];
|
|
34
|
+
use_ids_messaging: string[];
|
|
35
|
+
use_ids_streaming: string[];
|
|
36
|
+
use_ids_metric: string[];
|
|
37
|
+
iteration: number;
|
|
38
|
+
classification: AgentTrackClassificationRow;
|
|
39
|
+
experts: AgentTrackExpertRow[];
|
|
40
|
+
expert_results: any;
|
|
41
|
+
signals: AgentTrackSignalRow[];
|
|
42
|
+
signal_results: any;
|
|
43
|
+
entity_roles: AgentTrackEntityRoleRow[];
|
|
44
|
+
entity_role_results: any;
|
|
45
|
+
entites: AgentTrackEntityRow[];
|
|
46
|
+
entity_results: any;
|
|
47
|
+
commandgroups: AgentTrackCommandGroupRow[];
|
|
48
|
+
commandgroup_results: any;
|
|
49
|
+
commands: AgentTrackCommandRow[];
|
|
50
|
+
command_results: any;
|
|
51
|
+
analysis: AgentTrackAnalysisRow;
|
|
52
|
+
report: (string | null);
|
|
53
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgentTrackOutputRow.js","sourceRoot":"","sources":["../../src/row/AgentTrackOutputRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgentTrackSignalRow.js","sourceRoot":"","sources":["../../src/row/AgentTrackSignalRow.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -51,7 +51,7 @@ export class NamirasoftExpertServer extends NSABaseServer
|
|
|
51
51
|
run: NamirasoftExpertServerRun;
|
|
52
52
|
constructor(base_url: string, token_manager: TokenManager, onError: (error: Error) => void)
|
|
53
53
|
{
|
|
54
|
-
super(base_url, `1.4.
|
|
54
|
+
super(base_url, `1.4.43`, token_manager, onError);
|
|
55
55
|
this.healthz = new NamirasoftExpertServerHealthz(this);
|
|
56
56
|
this.health = new NamirasoftExpertServerHealth(this);
|
|
57
57
|
this.metrics = new NamirasoftExpertServerMetrics(this);
|
|
@@ -20,14 +20,13 @@
|
|
|
20
20
|
|
|
21
21
|
import { AgentInputRow } from "./row/AgentInputRow";
|
|
22
22
|
import { AgentRow } from "./row/AgentRow";
|
|
23
|
+
import { AgentTrackOutputRow } from "./row/AgentTrackOutputRow";
|
|
23
24
|
import { BaseServerConfig } from "namirasoft-core";
|
|
24
25
|
import { FilterItem } from "namirasoft-core";
|
|
25
26
|
import { NamirasoftExpertServer } from "./NamirasoftExpertServer";
|
|
26
27
|
import { NamirasoftExpertServerBase } from "./NamirasoftExpertServerBase";
|
|
27
28
|
import { RunRow } from "./row/RunRow";
|
|
28
29
|
import { SortItem } from "namirasoft-core";
|
|
29
|
-
import { intent } from "./enum/intent";
|
|
30
|
-
import { priority } from "./enum/priority";
|
|
31
30
|
|
|
32
31
|
export class NamirasoftExpertServerAgent extends NamirasoftExpertServerBase
|
|
33
32
|
{
|
|
@@ -74,7 +73,7 @@ export class NamirasoftExpertServerAgent extends NamirasoftExpertServerBase
|
|
|
74
73
|
let path = `/agent/${id}`;
|
|
75
74
|
await this.server._delete<void>(path, {}, config);
|
|
76
75
|
}
|
|
77
|
-
async Start(body: { agent_id: string, incident_id: (string | null), use_entity_cloud: boolean, use_entity_server: boolean, use_entity_kubernetes: boolean, use_entity_container: boolean, use_entity_database: boolean, use_entity_cache: boolean, use_entity_messaging: boolean, use_entity_streaming: boolean, use_entity_metric: boolean, use_ids_cloud: string[], use_ids_server: string[], use_ids_kubernetes: string[], use_ids_container: string[], use_ids_database: string[], use_ids_cache: string[], use_ids_messaging: string[], use_ids_streaming: string[], use_ids_metric: string[], message_user: string }, config?: BaseServerConfig<any>): Promise<RunRow>
|
|
76
|
+
async Start(body: { agent_id: string, incident_id: (string | null), use_entity_cloud: boolean, use_entity_server: boolean, use_entity_kubernetes: boolean, use_entity_container: boolean, use_entity_database: boolean, use_entity_cache: boolean, use_entity_messaging: boolean, use_entity_streaming: boolean, use_entity_metric: boolean, use_ids_cloud: (string | null)[], use_ids_server: (string | null)[], use_ids_kubernetes: (string | null)[], use_ids_container: (string | null)[], use_ids_database: (string | null)[], use_ids_cache: (string | null)[], use_ids_messaging: (string | null)[], use_ids_streaming: (string | null)[], use_ids_metric: (string | null)[], message_user: string }, config?: BaseServerConfig<any>): Promise<RunRow>
|
|
78
77
|
{
|
|
79
78
|
let path = `/agent/start`;
|
|
80
79
|
let { data } = await this.server._post<RunRow>(path, {}, body, config);
|
|
@@ -86,10 +85,10 @@ export class NamirasoftExpertServerAgent extends NamirasoftExpertServerBase
|
|
|
86
85
|
let { data } = await this.server._post<RunRow>(path, {}, body, config);
|
|
87
86
|
return data;
|
|
88
87
|
}
|
|
89
|
-
async Track(track_id: string, config?: BaseServerConfig<any>): Promise<
|
|
88
|
+
async Track(track_id: string, config?: BaseServerConfig<any>): Promise<AgentTrackOutputRow>
|
|
90
89
|
{
|
|
91
90
|
let path = `/agent/track/run/${track_id}`;
|
|
92
|
-
let { data } = await this.server._get<
|
|
91
|
+
let { data } = await this.server._get<AgentTrackOutputRow>(path, {}, config);
|
|
93
92
|
return data;
|
|
94
93
|
}
|
|
95
94
|
};
|
package/src/index.ts
CHANGED
|
@@ -115,6 +115,15 @@ export * from "./row/AgentFieldRow";
|
|
|
115
115
|
export * from "./row/AgentInputRow";
|
|
116
116
|
export * from "./row/AgentRow";
|
|
117
117
|
export * from "./row/AgentTagRow";
|
|
118
|
+
export * from "./row/AgentTrackAnalysisRow";
|
|
119
|
+
export * from "./row/AgentTrackClassificationRow";
|
|
120
|
+
export * from "./row/AgentTrackCommandGroupRow";
|
|
121
|
+
export * from "./row/AgentTrackCommandRow";
|
|
122
|
+
export * from "./row/AgentTrackEntityRoleRow";
|
|
123
|
+
export * from "./row/AgentTrackEntityRow";
|
|
124
|
+
export * from "./row/AgentTrackExpertRow";
|
|
125
|
+
export * from "./row/AgentTrackOutputRow";
|
|
126
|
+
export * from "./row/AgentTrackSignalRow";
|
|
118
127
|
export * from "./row/ChatRow";
|
|
119
128
|
export * from "./row/ChatUpdateRow";
|
|
120
129
|
export * from "./row/DescriptionInputRow";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any change is required, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
export type AgentTrackAnalysisRow =
|
|
22
|
+
{
|
|
23
|
+
root_cause: (string | null);
|
|
24
|
+
impact_assessment: (string | null);
|
|
25
|
+
timeline: ({ timestamp: number, event: string }[] | null);
|
|
26
|
+
affected_systems: (string[] | null);
|
|
27
|
+
severity: (string | null);
|
|
28
|
+
more_experts: (string[] | null);
|
|
29
|
+
more_signals: (string[] | null);
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any change is required, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
import { intent } from "../enum/intent";
|
|
22
|
+
import { priority } from "../enum/priority";
|
|
23
|
+
|
|
24
|
+
export type AgentTrackClassificationRow =
|
|
25
|
+
{
|
|
26
|
+
category: string;
|
|
27
|
+
priority: priority;
|
|
28
|
+
intent: intent;
|
|
29
|
+
confidence: number;
|
|
30
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any change is required, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
export type AgentTrackCommandGroupRow =
|
|
22
|
+
{
|
|
23
|
+
rid: string;
|
|
24
|
+
iteration: number;
|
|
25
|
+
expert_rid: string;
|
|
26
|
+
signal_rid: string;
|
|
27
|
+
entity_role_rid: string;
|
|
28
|
+
entity_rid: string;
|
|
29
|
+
name: string;
|
|
30
|
+
reason: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any change is required, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
export type AgentTrackCommandRow =
|
|
22
|
+
{
|
|
23
|
+
rid: string;
|
|
24
|
+
iteration: number;
|
|
25
|
+
expert_rid: string;
|
|
26
|
+
signal_rid: string;
|
|
27
|
+
entity_role_rid: string;
|
|
28
|
+
entity_rid: string;
|
|
29
|
+
commandgroup_rid: string;
|
|
30
|
+
name: string;
|
|
31
|
+
arguments: string[];
|
|
32
|
+
reason: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any change is required, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
export type AgentTrackEntityRoleRow =
|
|
22
|
+
{
|
|
23
|
+
rid: string;
|
|
24
|
+
iteration: number;
|
|
25
|
+
expert_rid: string;
|
|
26
|
+
signal_rid: string;
|
|
27
|
+
name: string;
|
|
28
|
+
reason: string;
|
|
29
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any change is required, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
export type AgentTrackEntityRow =
|
|
22
|
+
{
|
|
23
|
+
rid: string;
|
|
24
|
+
iteration: number;
|
|
25
|
+
expert_rid: string;
|
|
26
|
+
signal_rid: string;
|
|
27
|
+
entity_role_rid: string;
|
|
28
|
+
entity_ids: string[];
|
|
29
|
+
reason: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any change is required, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
export type AgentTrackExpertRow =
|
|
22
|
+
{
|
|
23
|
+
rid: string;
|
|
24
|
+
iteration: number;
|
|
25
|
+
name: string;
|
|
26
|
+
reason: string;
|
|
27
|
+
focus: string;
|
|
28
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any change is required, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
import { AgentTrackAnalysisRow } from "./AgentTrackAnalysisRow";
|
|
22
|
+
import { AgentTrackClassificationRow } from "./AgentTrackClassificationRow";
|
|
23
|
+
import { AgentTrackCommandGroupRow } from "./AgentTrackCommandGroupRow";
|
|
24
|
+
import { AgentTrackCommandRow } from "./AgentTrackCommandRow";
|
|
25
|
+
import { AgentTrackEntityRoleRow } from "./AgentTrackEntityRoleRow";
|
|
26
|
+
import { AgentTrackEntityRow } from "./AgentTrackEntityRow";
|
|
27
|
+
import { AgentTrackExpertRow } from "./AgentTrackExpertRow";
|
|
28
|
+
import { AgentTrackSignalRow } from "./AgentTrackSignalRow";
|
|
29
|
+
import { TrackErrorRow } from "./TrackErrorRow";
|
|
30
|
+
|
|
31
|
+
export type AgentTrackOutputRow =
|
|
32
|
+
{
|
|
33
|
+
finished: boolean;
|
|
34
|
+
error: (TrackErrorRow | null);
|
|
35
|
+
owner_id: string;
|
|
36
|
+
agent_id: string;
|
|
37
|
+
chat_id: string;
|
|
38
|
+
need_chat_name: boolean;
|
|
39
|
+
run_id: string;
|
|
40
|
+
message_user: string;
|
|
41
|
+
use_entity_cloud: boolean;
|
|
42
|
+
use_entity_server: boolean;
|
|
43
|
+
use_entity_kubernetes: boolean;
|
|
44
|
+
use_entity_container: boolean;
|
|
45
|
+
use_entity_database: boolean;
|
|
46
|
+
use_entity_cache: boolean;
|
|
47
|
+
use_entity_messaging: boolean;
|
|
48
|
+
use_entity_streaming: boolean;
|
|
49
|
+
use_entity_metric: boolean;
|
|
50
|
+
use_ids_cloud: string[];
|
|
51
|
+
use_ids_server: string[];
|
|
52
|
+
use_ids_kubernetes: string[];
|
|
53
|
+
use_ids_container: string[];
|
|
54
|
+
use_ids_database: string[];
|
|
55
|
+
use_ids_cache: string[];
|
|
56
|
+
use_ids_messaging: string[];
|
|
57
|
+
use_ids_streaming: string[];
|
|
58
|
+
use_ids_metric: string[];
|
|
59
|
+
iteration: number;
|
|
60
|
+
classification: AgentTrackClassificationRow;
|
|
61
|
+
experts: AgentTrackExpertRow[];
|
|
62
|
+
expert_results: any;
|
|
63
|
+
signals: AgentTrackSignalRow[];
|
|
64
|
+
signal_results: any;
|
|
65
|
+
entity_roles: AgentTrackEntityRoleRow[];
|
|
66
|
+
entity_role_results: any;
|
|
67
|
+
entites: AgentTrackEntityRow[];
|
|
68
|
+
entity_results: any;
|
|
69
|
+
commandgroups: AgentTrackCommandGroupRow[];
|
|
70
|
+
commandgroup_results: any;
|
|
71
|
+
commands: AgentTrackCommandRow[];
|
|
72
|
+
command_results: any;
|
|
73
|
+
analysis: AgentTrackAnalysisRow;
|
|
74
|
+
report: (string | null);
|
|
75
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/****************************************************************/
|
|
2
|
+
/* */
|
|
3
|
+
/* This is an Auto-Generated File */
|
|
4
|
+
/* Made By */
|
|
5
|
+
/* Namirasoft SDK Generator NPM Package */
|
|
6
|
+
/* */
|
|
7
|
+
/****************************************************************/
|
|
8
|
+
/****************************************************************/
|
|
9
|
+
/* */
|
|
10
|
+
/* Please do not make any change to this file */
|
|
11
|
+
/* If any change is required, ns-sdkg command must be used */
|
|
12
|
+
/* */
|
|
13
|
+
/****************************************************************/
|
|
14
|
+
/****************************************************************/
|
|
15
|
+
/* */
|
|
16
|
+
/* Namira Software Corporation */
|
|
17
|
+
/* https://namirasoft.com */
|
|
18
|
+
/* */
|
|
19
|
+
/****************************************************************/
|
|
20
|
+
|
|
21
|
+
export type AgentTrackSignalRow =
|
|
22
|
+
{
|
|
23
|
+
rid: string;
|
|
24
|
+
iteration: number;
|
|
25
|
+
expert_rid: string;
|
|
26
|
+
name: string;
|
|
27
|
+
reason: string;
|
|
28
|
+
focus: string;
|
|
29
|
+
}
|