namirasoft-expert 1.4.38 → 1.4.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/NamirasoftExpertServer.js +1 -1
- package/dist/NamirasoftExpertServerDescription.d.ts +2 -30
- package/dist/NamirasoftExpertServerDescription.js.map +1 -1
- package/dist/NamirasoftExpertServerRole.d.ts +2 -5
- package/dist/NamirasoftExpertServerRole.js.map +1 -1
- package/dist/NamirasoftExpertServerRoleAssignment.d.ts +2 -5
- package/dist/NamirasoftExpertServerRoleAssignment.js.map +1 -1
- package/dist/index.d.ts +10 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/row/DescriptionTrackInputRow.d.ts +9 -0
- package/dist/row/DescriptionTrackInputRow.js +3 -0
- package/dist/row/DescriptionTrackInputRow.js.map +1 -0
- package/dist/row/DescriptionTrackOutputRow.d.ts +7 -0
- package/dist/row/DescriptionTrackOutputRow.js +3 -0
- package/dist/row/DescriptionTrackOutputRow.js.map +1 -0
- package/dist/row/DescriptionTrackStateRow.d.ts +16 -0
- package/dist/row/DescriptionTrackStateRow.js +3 -0
- package/dist/row/DescriptionTrackStateRow.js.map +1 -0
- package/dist/row/RoleAssignmentTrackInputRow.d.ts +9 -0
- package/dist/row/RoleAssignmentTrackInputRow.js +3 -0
- package/dist/row/RoleAssignmentTrackInputRow.js.map +1 -0
- package/dist/row/RoleAssignmentTrackOutputRow.d.ts +7 -0
- package/dist/row/RoleAssignmentTrackOutputRow.js +3 -0
- package/dist/row/RoleAssignmentTrackOutputRow.js.map +1 -0
- package/dist/row/RoleAssignmentTrackStateRow.d.ts +25 -0
- package/dist/row/RoleAssignmentTrackStateRow.js +3 -0
- package/dist/row/RoleAssignmentTrackStateRow.js.map +1 -0
- package/dist/row/RoleTrackInputRow.d.ts +9 -0
- package/dist/row/RoleTrackInputRow.js +3 -0
- package/dist/row/RoleTrackInputRow.js.map +1 -0
- package/dist/row/RoleTrackOutputRow.d.ts +7 -0
- package/dist/row/RoleTrackOutputRow.js +3 -0
- package/dist/row/RoleTrackOutputRow.js.map +1 -0
- package/dist/row/RoleTrackStateRow.d.ts +16 -0
- package/dist/row/RoleTrackStateRow.js +3 -0
- package/dist/row/RoleTrackStateRow.js.map +1 -0
- package/dist/row/TrackErrorRow.d.ts +4 -0
- package/dist/row/TrackErrorRow.js +3 -0
- package/dist/row/TrackErrorRow.js.map +1 -0
- package/package.json +1 -1
- package/src/NamirasoftExpertServer.ts +1 -1
- package/src/NamirasoftExpertServerDescription.ts +3 -5
- package/src/NamirasoftExpertServerRole.ts +3 -2
- package/src/NamirasoftExpertServerRoleAssignment.ts +3 -2
- package/src/index.ts +11 -1
- package/src/row/DescriptionTrackInputRow.ts +31 -0
- package/src/row/DescriptionTrackOutputRow.ts +29 -0
- package/src/row/DescriptionTrackStateRow.ts +38 -0
- package/src/row/RoleAssignmentTrackInputRow.ts +31 -0
- package/src/row/RoleAssignmentTrackOutputRow.ts +29 -0
- package/src/row/RoleAssignmentTrackStateRow.ts +47 -0
- package/src/row/RoleTrackInputRow.ts +31 -0
- package/src/row/RoleTrackOutputRow.ts +29 -0
- package/src/row/RoleTrackStateRow.ts +38 -0
- package/src/row/TrackErrorRow.ts +25 -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.39`, 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,11 @@
|
|
|
1
|
-
import { AgentRow } from "./row/AgentRow";
|
|
2
1
|
import { BaseServerConfig } from "namirasoft-core";
|
|
3
|
-
import { ChatRow } from "./row/ChatRow";
|
|
4
2
|
import { DescriptionInputRow } from "./row/DescriptionInputRow";
|
|
5
3
|
import { DescriptionRow } from "./row/DescriptionRow";
|
|
4
|
+
import { DescriptionTrackOutputRow } from "./row/DescriptionTrackOutputRow";
|
|
6
5
|
import { EntityType } from "./enum/EntityType";
|
|
7
6
|
import { FilterItem } from "namirasoft-core";
|
|
8
7
|
import { NamirasoftExpertServer } from "./NamirasoftExpertServer";
|
|
9
8
|
import { NamirasoftExpertServerBase } from "./NamirasoftExpertServerBase";
|
|
10
|
-
import { RunRow } from "./row/RunRow";
|
|
11
9
|
import { SortItem } from "namirasoft-core";
|
|
12
10
|
export declare class NamirasoftExpertServerDescription extends NamirasoftExpertServerBase {
|
|
13
11
|
constructor(server: NamirasoftExpertServer);
|
|
@@ -22,31 +20,5 @@ export declare class NamirasoftExpertServerDescription extends NamirasoftExpertS
|
|
|
22
20
|
}, config?: BaseServerConfig<any>): Promise<{
|
|
23
21
|
id: string;
|
|
24
22
|
}>;
|
|
25
|
-
Track(run_id: string, config?: BaseServerConfig<any>): Promise<
|
|
26
|
-
successful: (boolean | null);
|
|
27
|
-
percent: number;
|
|
28
|
-
message: string;
|
|
29
|
-
state: ({
|
|
30
|
-
input: {
|
|
31
|
-
owner_id: string;
|
|
32
|
-
agent: AgentRow;
|
|
33
|
-
chat: ChatRow;
|
|
34
|
-
run: RunRow;
|
|
35
|
-
};
|
|
36
|
-
data_clouds: any[];
|
|
37
|
-
data_servers: any[];
|
|
38
|
-
data_kubernetes: any[];
|
|
39
|
-
data_containers: any[];
|
|
40
|
-
data_databases: any[];
|
|
41
|
-
data_caches: any[];
|
|
42
|
-
data_messagings: any[];
|
|
43
|
-
data_streamings: any[];
|
|
44
|
-
data_metrics: any[];
|
|
45
|
-
generated: any;
|
|
46
|
-
error: ({
|
|
47
|
-
node: string;
|
|
48
|
-
message: string;
|
|
49
|
-
} | null);
|
|
50
|
-
} | null);
|
|
51
|
-
}>;
|
|
23
|
+
Track(run_id: string, config?: BaseServerConfig<any>): Promise<DescriptionTrackOutputRow>;
|
|
52
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NamirasoftExpertServerDescription.js","sourceRoot":"","sources":["../src/NamirasoftExpertServerDescription.ts"],"names":[],"mappings":";;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"NamirasoftExpertServerDescription.js","sourceRoot":"","sources":["../src/NamirasoftExpertServerDescription.ts"],"names":[],"mappings":";;;;;;;;;;;;AAyBA,qDAA6C;AAE7C,6EAA0E;AAC1E,qDAA2C;AAE3C,MAAa,iCAAkC,SAAQ,uDAA0B;IAE7E,YAAY,MAA8B;QAEtC,KAAK,CAAC,MAAM,CAAC,CAAC;QACd,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACjC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACrC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACrC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvC,CAAC;IACK,IAAI,CAAC,QAAgB,EAAE,WAAuB,EAAE,OAA4B,EAAE,IAAqB,EAAE,IAAqB,EAAE,KAAiB,EAAE,MAA8B;;YAE/K,IAAI,oBAAoB,GAAW,4BAAU,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;YACjE,IAAI,kBAAkB,GAAW,0BAAQ,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;YAC3D,IAAI,IAAI,GAAG,UAAU,QAAQ,uBAAuB,WAAW,OAAO,CAAC;YACvE,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAA4C,IAAI,EAAE,EAAE,OAAO,EAAE,oBAAoB,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,kBAAkB,EAAE,EAAE,MAAM,CAAC,CAAC;YACzK,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,MAAM,CAAC,QAAgB,EAAE,EAAU,EAAE,IAAyB,EAAE,MAA8B;;YAEhG,IAAI,IAAI,GAAG,UAAU,QAAQ,uBAAuB,EAAE,EAAE,CAAC;YACzD,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAiB,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;YAC9E,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,MAAM,CAAC,QAAgB,EAAE,EAAU,EAAE,MAA8B;;YAErE,IAAI,IAAI,GAAG,UAAU,QAAQ,uBAAuB,EAAE,EAAE,CAAC;YACzD,MAAM,IAAI,CAAC,MAAM,CAAC,OAAO,CAAO,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;QACtD,CAAC;KAAA;IACK,QAAQ,CAAC,QAAgB,EAAE,WAAuB,EAAE,IAAuC,EAAE,MAA8B;;YAE7H,IAAI,IAAI,GAAG,UAAU,QAAQ,uBAAuB,WAAW,WAAW,CAAC;YAC3E,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAAiB,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;YAC/E,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,KAAK,CAAC,MAAc,EAAE,MAA8B;;YAEtD,IAAI,IAAI,GAAG,uCAAuC,MAAM,EAAE,CAAC;YAC3D,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAA4B,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;YACnF,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;CACJ;AA1CD,8EA0CC;AAAA,CAAC"}
|
|
@@ -5,6 +5,7 @@ import { NamirasoftExpertServer } from "./NamirasoftExpertServer";
|
|
|
5
5
|
import { NamirasoftExpertServerBase } from "./NamirasoftExpertServerBase";
|
|
6
6
|
import { RoleInputRow } from "./row/RoleInputRow";
|
|
7
7
|
import { RoleRow } from "./row/RoleRow";
|
|
8
|
+
import { RoleTrackOutputRow } from "./row/RoleTrackOutputRow";
|
|
8
9
|
import { SortItem } from "namirasoft-core";
|
|
9
10
|
export declare class NamirasoftExpertServerRole extends NamirasoftExpertServerBase {
|
|
10
11
|
constructor(server: NamirasoftExpertServer);
|
|
@@ -18,11 +19,7 @@ export declare class NamirasoftExpertServerRole extends NamirasoftExpertServerBa
|
|
|
18
19
|
}, config?: BaseServerConfig<any>): Promise<{
|
|
19
20
|
id: string;
|
|
20
21
|
}>;
|
|
21
|
-
Track(run_id: string, config?: BaseServerConfig<any>): Promise<
|
|
22
|
-
successful: (boolean | null);
|
|
23
|
-
percent: number;
|
|
24
|
-
message: string;
|
|
25
|
-
}>;
|
|
22
|
+
Track(run_id: string, config?: BaseServerConfig<any>): Promise<RoleTrackOutputRow>;
|
|
26
23
|
Update(agent_id: string, id: string, body: RoleInputRow, config?: BaseServerConfig<any>): Promise<RoleRow>;
|
|
27
24
|
Delete(agent_id: string, id: string, config?: BaseServerConfig<any>): Promise<void>;
|
|
28
25
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NamirasoftExpertServerRole.js","sourceRoot":"","sources":["../src/NamirasoftExpertServerRole.ts"],"names":[],"mappings":";;;;;;;;;;;;AAsBA,qDAA6C;AAE7C,6EAA0E;
|
|
1
|
+
{"version":3,"file":"NamirasoftExpertServerRole.js","sourceRoot":"","sources":["../src/NamirasoftExpertServerRole.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,6 +5,7 @@ import { NamirasoftExpertServer } from "./NamirasoftExpertServer";
|
|
|
5
5
|
import { NamirasoftExpertServerBase } from "./NamirasoftExpertServerBase";
|
|
6
6
|
import { RoleAssignmentInputRow } from "./row/RoleAssignmentInputRow";
|
|
7
7
|
import { RoleAssignmentRow } from "./row/RoleAssignmentRow";
|
|
8
|
+
import { RoleAssignmentTrackOutputRow } from "./row/RoleAssignmentTrackOutputRow";
|
|
8
9
|
import { SortItem } from "namirasoft-core";
|
|
9
10
|
export declare class NamirasoftExpertServerRoleAssignment extends NamirasoftExpertServerBase {
|
|
10
11
|
constructor(server: NamirasoftExpertServer);
|
|
@@ -19,9 +20,5 @@ export declare class NamirasoftExpertServerRoleAssignment extends NamirasoftExpe
|
|
|
19
20
|
}, config?: BaseServerConfig<any>): Promise<{
|
|
20
21
|
id: string;
|
|
21
22
|
}>;
|
|
22
|
-
Track(run_id: string, config?: BaseServerConfig<any>): Promise<
|
|
23
|
-
successful: (boolean | null);
|
|
24
|
-
percent: number;
|
|
25
|
-
message: string;
|
|
26
|
-
}>;
|
|
23
|
+
Track(run_id: string, config?: BaseServerConfig<any>): Promise<RoleAssignmentTrackOutputRow>;
|
|
27
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NamirasoftExpertServerRoleAssignment.js","sourceRoot":"","sources":["../src/NamirasoftExpertServerRoleAssignment.ts"],"names":[],"mappings":";;;;;;;;;;;;AAsBA,qDAA6C;AAE7C,6EAA0E;
|
|
1
|
+
{"version":3,"file":"NamirasoftExpertServerRoleAssignment.js","sourceRoot":"","sources":["../src/NamirasoftExpertServerRoleAssignment.ts"],"names":[],"mappings":";;;;;;;;;;;;AAsBA,qDAA6C;AAE7C,6EAA0E;AAI1E,qDAA2C;AAE3C,MAAa,oCAAqC,SAAQ,uDAA0B;IAEhF,YAAY,MAA8B;QAEtC,KAAK,CAAC,MAAM,CAAC,CAAC;QACd,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACjC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACrC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACrC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACvC,CAAC;IACK,IAAI,CAAC,QAAgB,EAAE,WAAuB,EAAE,OAA4B,EAAE,IAAqB,EAAE,IAAqB,EAAE,KAAiB,EAAE,MAA8B;;YAE/K,IAAI,oBAAoB,GAAW,4BAAU,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;YACjE,IAAI,kBAAkB,GAAW,0BAAQ,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;YAC3D,IAAI,IAAI,GAAG,UAAU,QAAQ,2BAA2B,WAAW,OAAO,CAAC;YAC3E,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAA+C,IAAI,EAAE,EAAE,OAAO,EAAE,oBAAoB,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,kBAAkB,EAAE,EAAE,MAAM,CAAC,CAAC;YAC5K,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,MAAM,CAAC,QAAgB,EAAE,WAAuB,EAAE,IAA4B,EAAE,MAA8B;;YAEhH,IAAI,IAAI,GAAG,UAAU,QAAQ,2BAA2B,WAAW,EAAE,CAAC;YACtE,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAAoB,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;YAClF,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,MAAM,CAAC,QAAgB,EAAE,EAAU,EAAE,MAA8B;;YAErE,IAAI,IAAI,GAAG,UAAU,QAAQ,2BAA2B,EAAE,EAAE,CAAC;YAC7D,MAAM,IAAI,CAAC,MAAM,CAAC,OAAO,CAAO,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;QACtD,CAAC;KAAA;IACK,QAAQ,CAAC,QAAgB,EAAE,WAAuB,EAAE,IAAuC,EAAE,MAA8B;;YAE7H,IAAI,IAAI,GAAG,UAAU,QAAQ,2BAA2B,WAAW,WAAW,CAAC;YAC/E,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,KAAK,CAAiB,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;YAC/E,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;IACK,KAAK,CAAC,MAAc,EAAE,MAA8B;;YAEtD,IAAI,IAAI,GAAG,2CAA2C,MAAM,EAAE,CAAC;YAC/D,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAA+B,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;YACtF,OAAO,IAAI,CAAC;QAChB,CAAC;KAAA;CACJ;AA1CD,oFA0CC;AAAA,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -99,11 +99,21 @@ export * from "./row/ChatRow";
|
|
|
99
99
|
export * from "./row/ChatUpdateRow";
|
|
100
100
|
export * from "./row/DescriptionInputRow";
|
|
101
101
|
export * from "./row/DescriptionRow";
|
|
102
|
+
export * from "./row/DescriptionTrackInputRow";
|
|
103
|
+
export * from "./row/DescriptionTrackOutputRow";
|
|
104
|
+
export * from "./row/DescriptionTrackStateRow";
|
|
102
105
|
export * from "./row/EntityCategoryInputRow";
|
|
103
106
|
export * from "./row/EntityFieldInputRow";
|
|
104
107
|
export * from "./row/EntityTagInputRow";
|
|
105
108
|
export * from "./row/RoleAssignmentInputRow";
|
|
106
109
|
export * from "./row/RoleAssignmentRow";
|
|
110
|
+
export * from "./row/RoleAssignmentTrackInputRow";
|
|
111
|
+
export * from "./row/RoleAssignmentTrackOutputRow";
|
|
112
|
+
export * from "./row/RoleAssignmentTrackStateRow";
|
|
107
113
|
export * from "./row/RoleInputRow";
|
|
108
114
|
export * from "./row/RoleRow";
|
|
115
|
+
export * from "./row/RoleTrackInputRow";
|
|
116
|
+
export * from "./row/RoleTrackOutputRow";
|
|
117
|
+
export * from "./row/RoleTrackStateRow";
|
|
109
118
|
export * from "./row/RunRow";
|
|
119
|
+
export * from "./row/TrackErrorRow";
|
package/dist/index.js
CHANGED
|
@@ -115,12 +115,22 @@ __exportStar(require("./row/ChatRow"), exports);
|
|
|
115
115
|
__exportStar(require("./row/ChatUpdateRow"), exports);
|
|
116
116
|
__exportStar(require("./row/DescriptionInputRow"), exports);
|
|
117
117
|
__exportStar(require("./row/DescriptionRow"), exports);
|
|
118
|
+
__exportStar(require("./row/DescriptionTrackInputRow"), exports);
|
|
119
|
+
__exportStar(require("./row/DescriptionTrackOutputRow"), exports);
|
|
120
|
+
__exportStar(require("./row/DescriptionTrackStateRow"), exports);
|
|
118
121
|
__exportStar(require("./row/EntityCategoryInputRow"), exports);
|
|
119
122
|
__exportStar(require("./row/EntityFieldInputRow"), exports);
|
|
120
123
|
__exportStar(require("./row/EntityTagInputRow"), exports);
|
|
121
124
|
__exportStar(require("./row/RoleAssignmentInputRow"), exports);
|
|
122
125
|
__exportStar(require("./row/RoleAssignmentRow"), exports);
|
|
126
|
+
__exportStar(require("./row/RoleAssignmentTrackInputRow"), exports);
|
|
127
|
+
__exportStar(require("./row/RoleAssignmentTrackOutputRow"), exports);
|
|
128
|
+
__exportStar(require("./row/RoleAssignmentTrackStateRow"), exports);
|
|
123
129
|
__exportStar(require("./row/RoleInputRow"), exports);
|
|
124
130
|
__exportStar(require("./row/RoleRow"), exports);
|
|
131
|
+
__exportStar(require("./row/RoleTrackInputRow"), exports);
|
|
132
|
+
__exportStar(require("./row/RoleTrackOutputRow"), exports);
|
|
133
|
+
__exportStar(require("./row/RoleTrackStateRow"), exports);
|
|
125
134
|
__exportStar(require("./row/RunRow"), exports);
|
|
135
|
+
__exportStar(require("./row/TrackErrorRow"), exports);
|
|
126
136
|
//# sourceMappingURL=index.js.map
|
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,+DAA6C;AAC7C,4DAA0C;AAC1C,0DAAwC;AACxC,+DAA6C;AAC7C,0DAAwC;AACxC,qDAAmC;AACnC,gDAA8B;AAC9B,+CAA6B"}
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescriptionTrackInputRow.js","sourceRoot":"","sources":["../../src/row/DescriptionTrackInputRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescriptionTrackOutputRow.js","sourceRoot":"","sources":["../../src/row/DescriptionTrackOutputRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DescriptionTrackInputRow } from "./DescriptionTrackInputRow";
|
|
2
|
+
import { TrackErrorRow } from "./TrackErrorRow";
|
|
3
|
+
export type DescriptionTrackStateRow = {
|
|
4
|
+
input: DescriptionTrackInputRow;
|
|
5
|
+
data_clouds: any[];
|
|
6
|
+
data_servers: any[];
|
|
7
|
+
data_kubernetes: any[];
|
|
8
|
+
data_containers: any[];
|
|
9
|
+
data_databases: any[];
|
|
10
|
+
data_caches: any[];
|
|
11
|
+
data_messagings: any[];
|
|
12
|
+
data_streamings: any[];
|
|
13
|
+
data_metrics: any[];
|
|
14
|
+
generated: any;
|
|
15
|
+
error: (TrackErrorRow | null);
|
|
16
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescriptionTrackStateRow.js","sourceRoot":"","sources":["../../src/row/DescriptionTrackStateRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoleAssignmentTrackInputRow.js","sourceRoot":"","sources":["../../src/row/RoleAssignmentTrackInputRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoleAssignmentTrackOutputRow.js","sourceRoot":"","sources":["../../src/row/RoleAssignmentTrackOutputRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { RoleAssignmentTrackInputRow } from "./RoleAssignmentTrackInputRow";
|
|
2
|
+
import { TrackErrorRow } from "./TrackErrorRow";
|
|
3
|
+
export type RoleAssignmentTrackStateRow = {
|
|
4
|
+
input: RoleAssignmentTrackInputRow;
|
|
5
|
+
data_roles_clouds: any[];
|
|
6
|
+
data_roles_servers: any[];
|
|
7
|
+
data_roles_kubernetes: any[];
|
|
8
|
+
data_roles_containers: any[];
|
|
9
|
+
data_roles_databases: any[];
|
|
10
|
+
data_roles_caches: any[];
|
|
11
|
+
data_roles_messagings: any[];
|
|
12
|
+
data_roles_streamings: any[];
|
|
13
|
+
data_roles_metrics: any[];
|
|
14
|
+
data_clouds: any[];
|
|
15
|
+
data_servers: any[];
|
|
16
|
+
data_kubernetes: any[];
|
|
17
|
+
data_containers: any[];
|
|
18
|
+
data_databases: any[];
|
|
19
|
+
data_caches: any[];
|
|
20
|
+
data_messagings: any[];
|
|
21
|
+
data_streamings: any[];
|
|
22
|
+
data_metrics: any[];
|
|
23
|
+
assigned: any;
|
|
24
|
+
error: (TrackErrorRow | null);
|
|
25
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoleAssignmentTrackStateRow.js","sourceRoot":"","sources":["../../src/row/RoleAssignmentTrackStateRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoleTrackInputRow.js","sourceRoot":"","sources":["../../src/row/RoleTrackInputRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoleTrackOutputRow.js","sourceRoot":"","sources":["../../src/row/RoleTrackOutputRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { RoleTrackInputRow } from "./RoleTrackInputRow";
|
|
2
|
+
import { TrackErrorRow } from "./TrackErrorRow";
|
|
3
|
+
export type RoleTrackStateRow = {
|
|
4
|
+
input: RoleTrackInputRow;
|
|
5
|
+
data_clouds: any[];
|
|
6
|
+
data_servers: any[];
|
|
7
|
+
data_kubernetes: any[];
|
|
8
|
+
data_containers: any[];
|
|
9
|
+
data_databases: any[];
|
|
10
|
+
data_caches: any[];
|
|
11
|
+
data_messagings: any[];
|
|
12
|
+
data_streamings: any[];
|
|
13
|
+
data_metrics: any[];
|
|
14
|
+
generated: any;
|
|
15
|
+
error: (TrackErrorRow | null);
|
|
16
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoleTrackStateRow.js","sourceRoot":"","sources":["../../src/row/RoleTrackStateRow.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TrackErrorRow.js","sourceRoot":"","sources":["../../src/row/TrackErrorRow.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.39`, token_manager, onError);
|
|
55
55
|
this.healthz = new NamirasoftExpertServerHealthz(this);
|
|
56
56
|
this.health = new NamirasoftExpertServerHealth(this);
|
|
57
57
|
this.metrics = new NamirasoftExpertServerMetrics(this);
|
|
@@ -18,16 +18,14 @@
|
|
|
18
18
|
/* */
|
|
19
19
|
/****************************************************************/
|
|
20
20
|
|
|
21
|
-
import { AgentRow } from "./row/AgentRow";
|
|
22
21
|
import { BaseServerConfig } from "namirasoft-core";
|
|
23
|
-
import { ChatRow } from "./row/ChatRow";
|
|
24
22
|
import { DescriptionInputRow } from "./row/DescriptionInputRow";
|
|
25
23
|
import { DescriptionRow } from "./row/DescriptionRow";
|
|
24
|
+
import { DescriptionTrackOutputRow } from "./row/DescriptionTrackOutputRow";
|
|
26
25
|
import { EntityType } from "./enum/EntityType";
|
|
27
26
|
import { FilterItem } from "namirasoft-core";
|
|
28
27
|
import { NamirasoftExpertServer } from "./NamirasoftExpertServer";
|
|
29
28
|
import { NamirasoftExpertServerBase } from "./NamirasoftExpertServerBase";
|
|
30
|
-
import { RunRow } from "./row/RunRow";
|
|
31
29
|
import { SortItem } from "namirasoft-core";
|
|
32
30
|
|
|
33
31
|
export class NamirasoftExpertServerDescription extends NamirasoftExpertServerBase
|
|
@@ -66,10 +64,10 @@ export class NamirasoftExpertServerDescription extends NamirasoftExpertServerBas
|
|
|
66
64
|
let { data } = await this.server._post<{ id: string }>(path, {}, body, config);
|
|
67
65
|
return data;
|
|
68
66
|
}
|
|
69
|
-
async Track(run_id: string, config?: BaseServerConfig<any>): Promise<
|
|
67
|
+
async Track(run_id: string, config?: BaseServerConfig<any>): Promise<DescriptionTrackOutputRow>
|
|
70
68
|
{
|
|
71
69
|
let path = `/agent/config/description/track/run/${run_id}`;
|
|
72
|
-
let { data } = await this.server._get<
|
|
70
|
+
let { data } = await this.server._get<DescriptionTrackOutputRow>(path, {}, config);
|
|
73
71
|
return data;
|
|
74
72
|
}
|
|
75
73
|
};
|
|
@@ -25,6 +25,7 @@ import { NamirasoftExpertServer } from "./NamirasoftExpertServer";
|
|
|
25
25
|
import { NamirasoftExpertServerBase } from "./NamirasoftExpertServerBase";
|
|
26
26
|
import { RoleInputRow } from "./row/RoleInputRow";
|
|
27
27
|
import { RoleRow } from "./row/RoleRow";
|
|
28
|
+
import { RoleTrackOutputRow } from "./row/RoleTrackOutputRow";
|
|
28
29
|
import { SortItem } from "namirasoft-core";
|
|
29
30
|
|
|
30
31
|
export class NamirasoftExpertServerRole extends NamirasoftExpertServerBase
|
|
@@ -59,10 +60,10 @@ export class NamirasoftExpertServerRole extends NamirasoftExpertServerBase
|
|
|
59
60
|
let { data } = await this.server._post<{ id: string }>(path, {}, body, config);
|
|
60
61
|
return data;
|
|
61
62
|
}
|
|
62
|
-
async Track(run_id: string, config?: BaseServerConfig<any>): Promise<
|
|
63
|
+
async Track(run_id: string, config?: BaseServerConfig<any>): Promise<RoleTrackOutputRow>
|
|
63
64
|
{
|
|
64
65
|
let path = `/agent/config/role/track/run/${run_id}`;
|
|
65
|
-
let { data } = await this.server._get<
|
|
66
|
+
let { data } = await this.server._get<RoleTrackOutputRow>(path, {}, config);
|
|
66
67
|
return data;
|
|
67
68
|
}
|
|
68
69
|
async Update(agent_id: string, id: string, body: RoleInputRow, config?: BaseServerConfig<any>): Promise<RoleRow>
|
|
@@ -25,6 +25,7 @@ import { NamirasoftExpertServer } from "./NamirasoftExpertServer";
|
|
|
25
25
|
import { NamirasoftExpertServerBase } from "./NamirasoftExpertServerBase";
|
|
26
26
|
import { RoleAssignmentInputRow } from "./row/RoleAssignmentInputRow";
|
|
27
27
|
import { RoleAssignmentRow } from "./row/RoleAssignmentRow";
|
|
28
|
+
import { RoleAssignmentTrackOutputRow } from "./row/RoleAssignmentTrackOutputRow";
|
|
28
29
|
import { SortItem } from "namirasoft-core";
|
|
29
30
|
|
|
30
31
|
export class NamirasoftExpertServerRoleAssignment extends NamirasoftExpertServerBase
|
|
@@ -63,10 +64,10 @@ export class NamirasoftExpertServerRoleAssignment extends NamirasoftExpertServer
|
|
|
63
64
|
let { data } = await this.server._post<{ id: string }>(path, {}, body, config);
|
|
64
65
|
return data;
|
|
65
66
|
}
|
|
66
|
-
async Track(run_id: string, config?: BaseServerConfig<any>): Promise<
|
|
67
|
+
async Track(run_id: string, config?: BaseServerConfig<any>): Promise<RoleAssignmentTrackOutputRow>
|
|
67
68
|
{
|
|
68
69
|
let path = `/agent/config/role/assignment/track/run/${run_id}`;
|
|
69
|
-
let { data } = await this.server._get<
|
|
70
|
+
let { data } = await this.server._get<RoleAssignmentTrackOutputRow>(path, {}, config);
|
|
70
71
|
return data;
|
|
71
72
|
}
|
|
72
73
|
};
|
package/src/index.ts
CHANGED
|
@@ -119,11 +119,21 @@ export * from "./row/ChatRow";
|
|
|
119
119
|
export * from "./row/ChatUpdateRow";
|
|
120
120
|
export * from "./row/DescriptionInputRow";
|
|
121
121
|
export * from "./row/DescriptionRow";
|
|
122
|
+
export * from "./row/DescriptionTrackInputRow";
|
|
123
|
+
export * from "./row/DescriptionTrackOutputRow";
|
|
124
|
+
export * from "./row/DescriptionTrackStateRow";
|
|
122
125
|
export * from "./row/EntityCategoryInputRow";
|
|
123
126
|
export * from "./row/EntityFieldInputRow";
|
|
124
127
|
export * from "./row/EntityTagInputRow";
|
|
125
128
|
export * from "./row/RoleAssignmentInputRow";
|
|
126
129
|
export * from "./row/RoleAssignmentRow";
|
|
130
|
+
export * from "./row/RoleAssignmentTrackInputRow";
|
|
131
|
+
export * from "./row/RoleAssignmentTrackOutputRow";
|
|
132
|
+
export * from "./row/RoleAssignmentTrackStateRow";
|
|
127
133
|
export * from "./row/RoleInputRow";
|
|
128
134
|
export * from "./row/RoleRow";
|
|
129
|
-
export * from "./row/
|
|
135
|
+
export * from "./row/RoleTrackInputRow";
|
|
136
|
+
export * from "./row/RoleTrackOutputRow";
|
|
137
|
+
export * from "./row/RoleTrackStateRow";
|
|
138
|
+
export * from "./row/RunRow";
|
|
139
|
+
export * from "./row/TrackErrorRow";
|
|
@@ -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
|
+
import { AgentRow } from "./AgentRow";
|
|
22
|
+
import { ChatRow } from "./ChatRow";
|
|
23
|
+
import { RunRow } from "./RunRow";
|
|
24
|
+
|
|
25
|
+
export type DescriptionTrackInputRow =
|
|
26
|
+
{
|
|
27
|
+
owner_id: string;
|
|
28
|
+
agent: AgentRow;
|
|
29
|
+
chat: ChatRow;
|
|
30
|
+
run: RunRow;
|
|
31
|
+
}
|
|
@@ -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
|
+
import { DescriptionTrackStateRow } from "./DescriptionTrackStateRow";
|
|
22
|
+
|
|
23
|
+
export type DescriptionTrackOutputRow =
|
|
24
|
+
{
|
|
25
|
+
successful: (boolean | null);
|
|
26
|
+
percent: number;
|
|
27
|
+
message: string;
|
|
28
|
+
state: (DescriptionTrackStateRow | null);
|
|
29
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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 { DescriptionTrackInputRow } from "./DescriptionTrackInputRow";
|
|
22
|
+
import { TrackErrorRow } from "./TrackErrorRow";
|
|
23
|
+
|
|
24
|
+
export type DescriptionTrackStateRow =
|
|
25
|
+
{
|
|
26
|
+
input: DescriptionTrackInputRow;
|
|
27
|
+
data_clouds: any[];
|
|
28
|
+
data_servers: any[];
|
|
29
|
+
data_kubernetes: any[];
|
|
30
|
+
data_containers: any[];
|
|
31
|
+
data_databases: any[];
|
|
32
|
+
data_caches: any[];
|
|
33
|
+
data_messagings: any[];
|
|
34
|
+
data_streamings: any[];
|
|
35
|
+
data_metrics: any[];
|
|
36
|
+
generated: any;
|
|
37
|
+
error: (TrackErrorRow | null);
|
|
38
|
+
}
|
|
@@ -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
|
+
import { AgentRow } from "./AgentRow";
|
|
22
|
+
import { ChatRow } from "./ChatRow";
|
|
23
|
+
import { RunRow } from "./RunRow";
|
|
24
|
+
|
|
25
|
+
export type RoleAssignmentTrackInputRow =
|
|
26
|
+
{
|
|
27
|
+
owner_id: string;
|
|
28
|
+
agent: AgentRow;
|
|
29
|
+
chat: ChatRow;
|
|
30
|
+
run: RunRow;
|
|
31
|
+
}
|
|
@@ -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
|
+
import { RoleAssignmentTrackStateRow } from "./RoleAssignmentTrackStateRow";
|
|
22
|
+
|
|
23
|
+
export type RoleAssignmentTrackOutputRow =
|
|
24
|
+
{
|
|
25
|
+
successful: (boolean | null);
|
|
26
|
+
percent: number;
|
|
27
|
+
message: string;
|
|
28
|
+
state: (RoleAssignmentTrackStateRow | null);
|
|
29
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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 { RoleAssignmentTrackInputRow } from "./RoleAssignmentTrackInputRow";
|
|
22
|
+
import { TrackErrorRow } from "./TrackErrorRow";
|
|
23
|
+
|
|
24
|
+
export type RoleAssignmentTrackStateRow =
|
|
25
|
+
{
|
|
26
|
+
input: RoleAssignmentTrackInputRow;
|
|
27
|
+
data_roles_clouds: any[];
|
|
28
|
+
data_roles_servers: any[];
|
|
29
|
+
data_roles_kubernetes: any[];
|
|
30
|
+
data_roles_containers: any[];
|
|
31
|
+
data_roles_databases: any[];
|
|
32
|
+
data_roles_caches: any[];
|
|
33
|
+
data_roles_messagings: any[];
|
|
34
|
+
data_roles_streamings: any[];
|
|
35
|
+
data_roles_metrics: any[];
|
|
36
|
+
data_clouds: any[];
|
|
37
|
+
data_servers: any[];
|
|
38
|
+
data_kubernetes: any[];
|
|
39
|
+
data_containers: any[];
|
|
40
|
+
data_databases: any[];
|
|
41
|
+
data_caches: any[];
|
|
42
|
+
data_messagings: any[];
|
|
43
|
+
data_streamings: any[];
|
|
44
|
+
data_metrics: any[];
|
|
45
|
+
assigned: any;
|
|
46
|
+
error: (TrackErrorRow | null);
|
|
47
|
+
}
|
|
@@ -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
|
+
import { AgentRow } from "./AgentRow";
|
|
22
|
+
import { ChatRow } from "./ChatRow";
|
|
23
|
+
import { RunRow } from "./RunRow";
|
|
24
|
+
|
|
25
|
+
export type RoleTrackInputRow =
|
|
26
|
+
{
|
|
27
|
+
owner_id: string;
|
|
28
|
+
agent: AgentRow;
|
|
29
|
+
chat: ChatRow;
|
|
30
|
+
run: RunRow;
|
|
31
|
+
}
|
|
@@ -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
|
+
import { RoleTrackStateRow } from "./RoleTrackStateRow";
|
|
22
|
+
|
|
23
|
+
export type RoleTrackOutputRow =
|
|
24
|
+
{
|
|
25
|
+
successful: (boolean | null);
|
|
26
|
+
percent: number;
|
|
27
|
+
message: string;
|
|
28
|
+
state: (RoleTrackStateRow | null);
|
|
29
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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 { RoleTrackInputRow } from "./RoleTrackInputRow";
|
|
22
|
+
import { TrackErrorRow } from "./TrackErrorRow";
|
|
23
|
+
|
|
24
|
+
export type RoleTrackStateRow =
|
|
25
|
+
{
|
|
26
|
+
input: RoleTrackInputRow;
|
|
27
|
+
data_clouds: any[];
|
|
28
|
+
data_servers: any[];
|
|
29
|
+
data_kubernetes: any[];
|
|
30
|
+
data_containers: any[];
|
|
31
|
+
data_databases: any[];
|
|
32
|
+
data_caches: any[];
|
|
33
|
+
data_messagings: any[];
|
|
34
|
+
data_streamings: any[];
|
|
35
|
+
data_metrics: any[];
|
|
36
|
+
generated: any;
|
|
37
|
+
error: (TrackErrorRow | null);
|
|
38
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
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 TrackErrorRow =
|
|
22
|
+
{
|
|
23
|
+
node: string;
|
|
24
|
+
message: string;
|
|
25
|
+
}
|