@stack-spot/portal-network 0.195.1 → 0.196.0-beta.1
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 +79 -0
- package/dist/api/agent-tools.d.ts +135 -148
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js +41 -4
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/agent.d.ts +55 -55
- package/dist/api/agent.d.ts.map +1 -1
- package/dist/api/ai.d.ts +196 -25
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +153 -22
- package/dist/api/ai.js.map +1 -1
- package/dist/api/cloudPlatformHorizon.d.ts +178 -9
- package/dist/api/cloudPlatformHorizon.d.ts.map +1 -1
- package/dist/api/cloudPlatformHorizon.js +69 -1
- package/dist/api/cloudPlatformHorizon.js.map +1 -1
- package/dist/api/codeShift.d.ts +315 -62
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +153 -12
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/discover.d.ts +23 -12
- package/dist/api/discover.d.ts.map +1 -1
- package/dist/api/discover.js +10 -0
- package/dist/api/discover.js.map +1 -1
- package/dist/api-addresses.d.ts.map +1 -1
- package/dist/client/account.d.ts +233 -233
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/agent-tools.d.ts +152 -126
- package/dist/client/agent-tools.d.ts.map +1 -1
- package/dist/client/agent-tools.js +29 -2
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/agent.d.ts +46 -46
- package/dist/client/agent.d.ts.map +1 -1
- package/dist/client/ai.d.ts +120 -110
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +29 -2
- package/dist/client/ai.js.map +1 -1
- package/dist/client/api-management.d.ts +2 -2
- package/dist/client/cloud-account.d.ts +13 -13
- package/dist/client/cloud-platform-horizon.d.ts +38 -19
- package/dist/client/cloud-platform-horizon.d.ts.map +1 -1
- package/dist/client/cloud-platform-horizon.js +19 -1
- package/dist/client/cloud-platform-horizon.js.map +1 -1
- package/dist/client/cloud-platform.d.ts +50 -50
- package/dist/client/cloud-runtimes.d.ts +4 -4
- package/dist/client/cloud-services.d.ts +17 -17
- package/dist/client/cloud-services.d.ts.map +1 -1
- package/dist/client/code-shift.d.ts +349 -258
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +82 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/content.d.ts +127 -132
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/data-integration.d.ts +55 -55
- package/dist/client/data-integration.d.ts.map +1 -1
- package/dist/client/discover.d.ts +15 -9
- package/dist/client/discover.d.ts.map +1 -1
- package/dist/client/discover.js +208 -0
- package/dist/client/discover.js.map +1 -1
- package/dist/client/event-bus.d.ts.map +1 -1
- package/dist/client/gen-ai-inference.d.ts +20 -20
- package/dist/client/insights.d.ts +7 -7
- package/dist/client/notification.d.ts +10 -10
- package/dist/client/runtime-manager.d.ts +8 -8
- package/dist/client/types.d.ts +14 -0
- package/dist/client/types.d.ts.map +1 -1
- package/dist/client/workflow.d.ts +10 -10
- package/dist/client/workspace-ai.d.ts +53 -53
- package/dist/client/workspace-manager.d.ts +77 -77
- package/dist/client/workspace-search.d.ts +2 -2
- package/dist/client/workspace.d.ts +58 -105
- package/dist/client/workspace.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.d.ts +6 -0
- package/dist/error/dictionary/cloud-platform.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.js +6 -0
- package/dist/error/dictionary/cloud-platform.js.map +1 -1
- package/dist/utils/StreamedJson.d.ts.map +1 -1
- package/dist/utils/StreamedJson.js +9 -1
- package/dist/utils/StreamedJson.js.map +1 -1
- package/package.json +2 -2
- package/src/api/agent-tools.ts +182 -150
- package/src/api/ai.ts +381 -40
- package/src/api/cloudPlatformHorizon.ts +412 -9
- package/src/api/codeShift.ts +607 -69
- package/src/api/discover.ts +35 -12
- package/src/client/agent-tools.ts +20 -2
- package/src/client/ai.ts +25 -10
- package/src/client/cloud-platform-horizon.ts +12 -4
- package/src/client/code-shift.ts +50 -1
- package/src/client/discover.ts +220 -3
- package/src/client/types.ts +17 -2
- package/src/error/dictionary/cloud-platform.ts +6 -0
- package/src/utils/StreamedJson.tsx +9 -2
package/dist/client/agent.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpError } from '@oazapfts/runtime';
|
|
2
2
|
import { StackspotAPIError } from '../error/StackspotAPIError.js';
|
|
3
3
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
4
|
-
export declare const isAgentDefault: (agentSlug?: string) =>
|
|
4
|
+
export declare const isAgentDefault: (agentSlug?: string) => agentSlug is "stk_code_buddy";
|
|
5
5
|
declare class AgentClient extends ReactQueryNetworkClient {
|
|
6
6
|
constructor();
|
|
7
7
|
protected buildStackSpotError(error: HttpError): StackspotAPIError;
|
|
@@ -15,36 +15,36 @@ declare class AgentClient extends ReactQueryNetworkClient {
|
|
|
15
15
|
id: string;
|
|
16
16
|
name: string;
|
|
17
17
|
slug: string;
|
|
18
|
-
description?: string
|
|
19
|
-
avatar?: string
|
|
18
|
+
description?: string;
|
|
19
|
+
avatar?: string;
|
|
20
20
|
system_prompt: string;
|
|
21
21
|
type: string;
|
|
22
|
-
llm_config?: import("../api/agent.js").LlmConfigResponse
|
|
23
|
-
suggested_prompts?: string[]
|
|
24
|
-
knowledge_sources_config?: import("../api/agent.js").KnowledgeSourceResponse
|
|
22
|
+
llm_config?: import("../api/agent.js").LlmConfigResponse;
|
|
23
|
+
suggested_prompts?: string[];
|
|
24
|
+
knowledge_sources_config?: import("../api/agent.js").KnowledgeSourceResponse;
|
|
25
25
|
visibility_level: import("../api/agent.js").VisibilityLevel;
|
|
26
26
|
use_only: boolean;
|
|
27
27
|
creator_name: string;
|
|
28
28
|
created_by: string;
|
|
29
|
-
created_at:
|
|
30
|
-
updated_by?: string
|
|
31
|
-
updated_at?:
|
|
32
|
-
toolkits?: import("../api/agent.js").ToolkitsInAgentResponse
|
|
33
|
-
detail_mode?: boolean
|
|
34
|
-
model_id?: string
|
|
35
|
-
model_name?: string
|
|
29
|
+
created_at: import("../api/agent.js").ZonedDateTime;
|
|
30
|
+
updated_by?: string;
|
|
31
|
+
updated_at?: import("../api/agent.js").ZonedDateTime;
|
|
32
|
+
toolkits?: import("../api/agent.js").ToolkitsInAgentResponse;
|
|
33
|
+
detail_mode?: boolean;
|
|
34
|
+
model_id?: string;
|
|
35
|
+
model_name?: string;
|
|
36
36
|
structured_output?: {
|
|
37
37
|
[key: string]: any;
|
|
38
|
-
} | null
|
|
38
|
+
} | null;
|
|
39
39
|
llm_settings?: {
|
|
40
40
|
[key: string]: any;
|
|
41
|
-
} | null
|
|
41
|
+
} | null;
|
|
42
42
|
}>, "isAllowed" | "useAllowed" | "getPermissionKey">;
|
|
43
43
|
/**
|
|
44
44
|
* List commons agents
|
|
45
45
|
*/
|
|
46
46
|
agents: import("../network/types.js").QueryObject<{
|
|
47
|
-
visibility?: import("../api/agent.js").VisibilityLevel
|
|
47
|
+
visibility?: import("../api/agent.js").VisibilityLevel;
|
|
48
48
|
}, import("../api/agent.js").AgentResponse[]>;
|
|
49
49
|
/**
|
|
50
50
|
* Gets a common agent by id
|
|
@@ -55,36 +55,36 @@ declare class AgentClient extends ReactQueryNetworkClient {
|
|
|
55
55
|
id: string;
|
|
56
56
|
name: string;
|
|
57
57
|
slug: string;
|
|
58
|
-
description?: string
|
|
59
|
-
avatar?: string
|
|
58
|
+
description?: string;
|
|
59
|
+
avatar?: string;
|
|
60
60
|
system_prompt: string;
|
|
61
61
|
type: string;
|
|
62
|
-
llm_config?: import("../api/agent.js").LlmConfigResponse
|
|
63
|
-
suggested_prompts?: string[]
|
|
64
|
-
knowledge_sources_config?: import("../api/agent.js").KnowledgeSourceResponse
|
|
62
|
+
llm_config?: import("../api/agent.js").LlmConfigResponse;
|
|
63
|
+
suggested_prompts?: string[];
|
|
64
|
+
knowledge_sources_config?: import("../api/agent.js").KnowledgeSourceResponse;
|
|
65
65
|
visibility_level: import("../api/agent.js").VisibilityLevel;
|
|
66
66
|
use_only: boolean;
|
|
67
67
|
creator_name: string;
|
|
68
68
|
created_by: string;
|
|
69
|
-
created_at:
|
|
70
|
-
updated_by?: string
|
|
71
|
-
updated_at?:
|
|
72
|
-
toolkits?: import("../api/agent.js").ToolkitsInAgentResponse
|
|
73
|
-
detail_mode?: boolean
|
|
74
|
-
model_id?: string
|
|
75
|
-
model_name?: string
|
|
69
|
+
created_at: import("../api/agent.js").ZonedDateTime;
|
|
70
|
+
updated_by?: string;
|
|
71
|
+
updated_at?: import("../api/agent.js").ZonedDateTime;
|
|
72
|
+
toolkits?: import("../api/agent.js").ToolkitsInAgentResponse;
|
|
73
|
+
detail_mode?: boolean;
|
|
74
|
+
model_id?: string;
|
|
75
|
+
model_name?: string;
|
|
76
76
|
structured_output?: {
|
|
77
77
|
[key: string]: any;
|
|
78
|
-
} | null
|
|
78
|
+
} | null;
|
|
79
79
|
llm_settings?: {
|
|
80
80
|
[key: string]: any;
|
|
81
|
-
} | null
|
|
81
|
+
} | null;
|
|
82
82
|
}>;
|
|
83
83
|
/**
|
|
84
84
|
* List all public agents (built-in)
|
|
85
85
|
*/
|
|
86
86
|
publicAgents: import("../network/types.js").QueryObject<{
|
|
87
|
-
visibility?: import("../api/agent.js").VisibilityLevel
|
|
87
|
+
visibility?: import("../api/agent.js").VisibilityLevel;
|
|
88
88
|
}, import("../api/agent.js").AgentResponse[]>;
|
|
89
89
|
/**
|
|
90
90
|
* Gets a public agent by id (built-in)
|
|
@@ -95,30 +95,30 @@ declare class AgentClient extends ReactQueryNetworkClient {
|
|
|
95
95
|
id: string;
|
|
96
96
|
name: string;
|
|
97
97
|
slug: string;
|
|
98
|
-
description?: string
|
|
99
|
-
avatar?: string
|
|
98
|
+
description?: string;
|
|
99
|
+
avatar?: string;
|
|
100
100
|
system_prompt: string;
|
|
101
101
|
type: string;
|
|
102
|
-
llm_config?: import("../api/agent.js").LlmConfigResponse
|
|
103
|
-
suggested_prompts?: string[]
|
|
104
|
-
knowledge_sources_config?: import("../api/agent.js").KnowledgeSourceResponse
|
|
102
|
+
llm_config?: import("../api/agent.js").LlmConfigResponse;
|
|
103
|
+
suggested_prompts?: string[];
|
|
104
|
+
knowledge_sources_config?: import("../api/agent.js").KnowledgeSourceResponse;
|
|
105
105
|
visibility_level: import("../api/agent.js").VisibilityLevel;
|
|
106
106
|
use_only: boolean;
|
|
107
107
|
creator_name: string;
|
|
108
108
|
created_by: string;
|
|
109
|
-
created_at:
|
|
110
|
-
updated_by?: string
|
|
111
|
-
updated_at?:
|
|
112
|
-
toolkits?: import("../api/agent.js").ToolkitsInAgentResponse
|
|
113
|
-
detail_mode?: boolean
|
|
114
|
-
model_id?: string
|
|
115
|
-
model_name?: string
|
|
109
|
+
created_at: import("../api/agent.js").ZonedDateTime;
|
|
110
|
+
updated_by?: string;
|
|
111
|
+
updated_at?: import("../api/agent.js").ZonedDateTime;
|
|
112
|
+
toolkits?: import("../api/agent.js").ToolkitsInAgentResponse;
|
|
113
|
+
detail_mode?: boolean;
|
|
114
|
+
model_id?: string;
|
|
115
|
+
model_name?: string;
|
|
116
116
|
structured_output?: {
|
|
117
117
|
[key: string]: any;
|
|
118
|
-
} | null
|
|
118
|
+
} | null;
|
|
119
119
|
llm_settings?: {
|
|
120
120
|
[key: string]: any;
|
|
121
|
-
} | null
|
|
121
|
+
} | null;
|
|
122
122
|
}>;
|
|
123
123
|
/**
|
|
124
124
|
* Adds the resource of type Agent to the list of favorites.
|
|
@@ -137,7 +137,7 @@ declare class AgentClient extends ReactQueryNetworkClient {
|
|
|
137
137
|
*/
|
|
138
138
|
updateAgent: import("../network/types.js").MutationObject<{
|
|
139
139
|
agentId: string;
|
|
140
|
-
modifiedAgentRequest?: import("../api/agent.js").ModifiedAgentRequest
|
|
140
|
+
modifiedAgentRequest?: import("../api/agent.js").ModifiedAgentRequest;
|
|
141
141
|
}, unknown>;
|
|
142
142
|
}
|
|
143
143
|
export declare const agentClient: AgentClient;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../src/client/agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAK7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAG5E,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../src/client/agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAK7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAG5E,eAAO,MAAM,cAAc,GAAI,YAAY,MAAM,kCAAmC,CAAA;AAQpF,cAAM,WAAY,SAAQ,uBAAuB;;IAK/C,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAalE;;OAEG;IACH,SAAS;iBAEiC,MAAM;iBAAW,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yDAGhE;IAEF;;OAEG;IACH,MAAM;;+CAA0B;IAEhC;;OAEG;IACH,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAkC;IAEvC;;OAEG;IACH,YAAY;;+CAAgC;IAE5C;;OAEG;IACH,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAwC;IAEnD;;OAEG;IACH,gBAAgB;;aAA8C;IAE9D;;OAEG;IACH,mBAAmB;;aAAgD;IACnE;;OAEG;IACH,WAAW;;;gBAAqC;CACjD;AAED,eAAO,MAAM,WAAW,aAAoB,CAAA"}
|
package/dist/client/ai.d.ts
CHANGED
|
@@ -12,9 +12,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
12
12
|
*/
|
|
13
13
|
runQuickAction: import("../network/types.js").MutationObject<Omit<{
|
|
14
14
|
authorization: string;
|
|
15
|
-
xAccountId?: string | null
|
|
16
|
-
xMemberId?: string | null
|
|
17
|
-
xUsername?: string | null
|
|
15
|
+
xAccountId?: string | null;
|
|
16
|
+
xMemberId?: string | null;
|
|
17
|
+
xUsername?: string | null;
|
|
18
18
|
quickActionsRequest: import("../api/ai.js").QuickActionsRequest;
|
|
19
19
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").SimpleResponse>;
|
|
20
20
|
/**
|
|
@@ -30,7 +30,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
30
30
|
*/
|
|
31
31
|
deleteKnowledgeObjectsByStandalone: import("../network/types.js").MutationObject<Omit<{
|
|
32
32
|
slug: string;
|
|
33
|
-
standalone?: boolean | null
|
|
33
|
+
standalone?: boolean | null;
|
|
34
34
|
authorization: string;
|
|
35
35
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
36
36
|
/**
|
|
@@ -46,40 +46,40 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
46
46
|
vectorizeCustomKS: import("../network/types.js").MutationObject<Omit<{
|
|
47
47
|
slug: string;
|
|
48
48
|
authorization: string;
|
|
49
|
-
xAccountId?: string | null
|
|
50
|
-
xMemberId?: string | null
|
|
51
|
-
xUsername?: string | null
|
|
49
|
+
xAccountId?: string | null;
|
|
50
|
+
xMemberId?: string | null;
|
|
51
|
+
xUsername?: string | null;
|
|
52
52
|
customKnowledgeSourceRequest: import("../api/ai.js").CustomKnowledgeSourceRequest;
|
|
53
53
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
54
54
|
/**
|
|
55
55
|
* Lists the AI Stacks according to their visibilities.
|
|
56
56
|
*/
|
|
57
57
|
aiStacks: import("../network/types.js").QueryObject<Omit<{
|
|
58
|
-
visibility?: import("../api/ai.js").VisibilityLevelEnum
|
|
58
|
+
visibility?: import("../api/ai.js").VisibilityLevelEnum;
|
|
59
59
|
authorization: string;
|
|
60
|
-
xAccountId?: string | null
|
|
61
|
-
xMemberId?: string | null
|
|
62
|
-
xUsername?: string | null
|
|
60
|
+
xAccountId?: string | null;
|
|
61
|
+
xMemberId?: string | null;
|
|
62
|
+
xUsername?: string | null;
|
|
63
63
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").GetAiStackResponse[]>;
|
|
64
64
|
/**
|
|
65
65
|
* Gets total tokens usage
|
|
66
66
|
*/
|
|
67
67
|
totalTokensUsage: import("../network/types.js").QueryObject<Omit<{
|
|
68
68
|
authorization: string;
|
|
69
|
-
xAccountId?: string | null
|
|
70
|
-
xMemberId?: string | null
|
|
71
|
-
xUsername?: string | null
|
|
69
|
+
xAccountId?: string | null;
|
|
70
|
+
xMemberId?: string | null;
|
|
71
|
+
xUsername?: string | null;
|
|
72
72
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").TokensCurrentUsageResponse>;
|
|
73
73
|
/**
|
|
74
74
|
* Gets current tokens usage
|
|
75
75
|
*/
|
|
76
76
|
currentTokensUsage: import("../network/types.js").QueryObject<Omit<{
|
|
77
|
-
year
|
|
78
|
-
month
|
|
77
|
+
year?: number | null;
|
|
78
|
+
month?: number | null;
|
|
79
79
|
authorization: string;
|
|
80
|
-
xAccountId?: string | null
|
|
81
|
-
xMemberId?: string | null
|
|
82
|
-
xUsername?: string | null
|
|
80
|
+
xAccountId?: string | null;
|
|
81
|
+
xMemberId?: string | null;
|
|
82
|
+
xUsername?: string | null;
|
|
83
83
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").TokensCurrentUsageResponse>;
|
|
84
84
|
/**
|
|
85
85
|
* Gets a workspace by its id.
|
|
@@ -87,80 +87,72 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
87
87
|
workspace: import("../network/types.js").QueryObject<Omit<{
|
|
88
88
|
workspaceId: string;
|
|
89
89
|
authorization: string;
|
|
90
|
-
xAccountId?: string | null
|
|
91
|
-
xMemberId?: string | null
|
|
92
|
-
xUsername?: string | null
|
|
90
|
+
xAccountId?: string | null;
|
|
91
|
+
xMemberId?: string | null;
|
|
92
|
+
xUsername?: string | null;
|
|
93
93
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").KnowledgeSourceResponse[]>;
|
|
94
94
|
/**
|
|
95
95
|
* @deprecated
|
|
96
96
|
* Lists the quick commands according to filters passed as parameter (QC with secrets will not be returned).
|
|
97
97
|
*/
|
|
98
98
|
quickCommands: import("../network/types.js").QueryObject<Omit<{
|
|
99
|
-
visibility?: import("../api/ai.js").VisibilityLevelEnum | null
|
|
100
|
-
order?: import("../api/ai.js").OrderEnum
|
|
101
|
-
types?: import("../api/ai.js").QuickCommandTypeRequest[] | null
|
|
99
|
+
visibility?: import("../api/ai.js").VisibilityLevelEnum | null;
|
|
100
|
+
order?: import("../api/ai.js").OrderEnum;
|
|
101
|
+
types?: import("../api/ai.js").QuickCommandTypeRequest[] | null;
|
|
102
102
|
authorization: string;
|
|
103
|
-
xAccountId?: string | null
|
|
104
|
-
xMemberId?: string | null
|
|
105
|
-
xUsername?: string | null
|
|
103
|
+
xAccountId?: string | null;
|
|
104
|
+
xMemberId?: string | null;
|
|
105
|
+
xUsername?: string | null;
|
|
106
106
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandListResponse[]>;
|
|
107
107
|
/**
|
|
108
108
|
* Lists all the quick commands according to filters passed as parameter (including QC with secrets).
|
|
109
109
|
*/
|
|
110
110
|
allQuickCommands: import("../network/types.js").QueryObject<Omit<{
|
|
111
|
-
visibility?: import("../api/ai.js").VisibilityLevelEnum | null
|
|
112
|
-
order?: import("../api/ai.js").OrderEnum
|
|
113
|
-
types?: import("../api/ai.js").QuickCommandTypeRequest[] | null
|
|
111
|
+
visibility?: import("../api/ai.js").VisibilityLevelEnum | null;
|
|
112
|
+
order?: import("../api/ai.js").OrderEnum;
|
|
113
|
+
types?: import("../api/ai.js").QuickCommandTypeRequest[] | null;
|
|
114
114
|
authorization: string;
|
|
115
|
-
xAccountId?: string | null
|
|
116
|
-
xMemberId?: string | null
|
|
117
|
-
xUsername?: string | null
|
|
115
|
+
xAccountId?: string | null;
|
|
116
|
+
xMemberId?: string | null;
|
|
117
|
+
xUsername?: string | null;
|
|
118
118
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandListResponse[]>;
|
|
119
119
|
/**
|
|
120
120
|
* Gets a quick command by its slug.
|
|
121
121
|
*/
|
|
122
122
|
quickCommand: import("../network/types.js").QueryObject<Omit<{
|
|
123
123
|
slug: string;
|
|
124
|
-
findAgents?: boolean
|
|
124
|
+
findAgents?: boolean;
|
|
125
125
|
authorization: string;
|
|
126
|
-
xAccountId?: string | null
|
|
127
|
-
xMemberId?: string | null
|
|
128
|
-
xUsername?: string | null
|
|
126
|
+
xAccountId?: string | null;
|
|
127
|
+
xMemberId?: string | null;
|
|
128
|
+
xUsername?: string | null;
|
|
129
129
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandResponse>;
|
|
130
130
|
/**
|
|
131
131
|
* Creates a new execution for a quick command by its slug.
|
|
132
132
|
*/
|
|
133
133
|
quickCommandCreateExecution: import("../network/types.js").MutationObject<Omit<{
|
|
134
134
|
slug: string;
|
|
135
|
-
conversationId?: string | null
|
|
136
|
-
|
|
137
|
-
xAccountId?: string | null | undefined;
|
|
138
|
-
xMemberId?: string | null | undefined;
|
|
139
|
-
xUsername?: string | null | undefined;
|
|
140
|
-
quickCommandCreateRequest?: import("../api/ai.js").QuickCommandCreateRequest | undefined;
|
|
135
|
+
conversationId?: string | null;
|
|
136
|
+
quickCommandCreateRequest?: import("../api/ai.js").QuickCommandCreateRequest;
|
|
141
137
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
142
138
|
/**
|
|
143
139
|
* Gets the execution status and result of a quick command by its execution ID.
|
|
144
140
|
*/
|
|
145
141
|
quickCommandCallbackExecutionId: import("../network/types.js").QueryObject<Omit<{
|
|
146
142
|
executionId: string;
|
|
147
|
-
authorization: string;
|
|
148
|
-
xAccountId?: string | null | undefined;
|
|
149
|
-
xMemberId?: string | null | undefined;
|
|
150
|
-
xUsername?: string | null | undefined;
|
|
151
143
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandExecutionResponse>;
|
|
152
144
|
/**
|
|
153
145
|
* Lists the knowledge sources according to filters passed as parameter.
|
|
154
146
|
*/
|
|
155
147
|
knowledgeSources: import("../network/types.js").QueryObject<Omit<{
|
|
156
|
-
visibility?: import("../api/ai.js").VisibilityLevelEnum
|
|
157
|
-
order?: import("../api/ai.js").OrderEnum
|
|
158
|
-
$default?: boolean | null
|
|
159
|
-
types?: import("../api/ai.js").KnowledgeSourceTypeEnum[] | null
|
|
160
|
-
authorization: string;
|
|
161
|
-
xAccountId?: string | null
|
|
162
|
-
xMemberId?: string | null
|
|
163
|
-
xUsername?: string | null
|
|
148
|
+
visibility?: import("../api/ai.js").VisibilityLevelEnum;
|
|
149
|
+
order?: import("../api/ai.js").OrderEnum;
|
|
150
|
+
$default?: boolean | null;
|
|
151
|
+
types?: import("../api/ai.js").KnowledgeSourceTypeEnum[] | null;
|
|
152
|
+
authorization: string;
|
|
153
|
+
xAccountId?: string | null;
|
|
154
|
+
xMemberId?: string | null;
|
|
155
|
+
xUsername?: string | null;
|
|
164
156
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").KnowledgeSourceItemResponse[]>;
|
|
165
157
|
/**
|
|
166
158
|
* Gets a knowledge source by its slug.
|
|
@@ -188,12 +180,12 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
188
180
|
* Gets the chat history. This is a paginated resource.
|
|
189
181
|
*/
|
|
190
182
|
chats: import("../network/types.js").InfiniteQueryObject<Omit<{
|
|
191
|
-
size?: number
|
|
192
|
-
page?: number
|
|
183
|
+
size?: number;
|
|
184
|
+
page?: number;
|
|
193
185
|
authorization: string;
|
|
194
|
-
xAccountId?: string | null
|
|
195
|
-
xMemberId?: string | null
|
|
196
|
-
xUsername?: string | null
|
|
186
|
+
xAccountId?: string | null;
|
|
187
|
+
xMemberId?: string | null;
|
|
188
|
+
xUsername?: string | null;
|
|
197
189
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").ConversationResponse[], "">;
|
|
198
190
|
/**
|
|
199
191
|
* Gets a specific chat from the history according to its id.
|
|
@@ -201,9 +193,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
201
193
|
chat: import("../network/types.js").QueryObject<Omit<{
|
|
202
194
|
conversationId: string;
|
|
203
195
|
authorization: string;
|
|
204
|
-
xAccountId?: string | null
|
|
205
|
-
xMemberId?: string | null
|
|
206
|
-
xUsername?: string | null
|
|
196
|
+
xAccountId?: string | null;
|
|
197
|
+
xMemberId?: string | null;
|
|
198
|
+
xUsername?: string | null;
|
|
207
199
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, FixedConversationResponse>;
|
|
208
200
|
/**
|
|
209
201
|
* Deletes a chat from the chat history.
|
|
@@ -211,9 +203,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
211
203
|
deleteChat: import("../network/types.js").MutationObject<Omit<{
|
|
212
204
|
conversationId: string;
|
|
213
205
|
authorization: string;
|
|
214
|
-
xAccountId?: string | null
|
|
215
|
-
xMemberId?: string | null
|
|
216
|
-
xUsername?: string | null
|
|
206
|
+
xAccountId?: string | null;
|
|
207
|
+
xMemberId?: string | null;
|
|
208
|
+
xUsername?: string | null;
|
|
217
209
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
218
210
|
/**
|
|
219
211
|
* Gets a plain text version of the chat with id passed as parameter.
|
|
@@ -221,9 +213,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
221
213
|
downloadChat: import("../network/types.js").MutationObject<Omit<{
|
|
222
214
|
conversationId: string;
|
|
223
215
|
authorization: string;
|
|
224
|
-
xAccountId?: string | null
|
|
225
|
-
xMemberId?: string | null
|
|
226
|
-
xUsername?: string | null
|
|
216
|
+
xAccountId?: string | null;
|
|
217
|
+
xMemberId?: string | null;
|
|
218
|
+
xUsername?: string | null;
|
|
227
219
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
228
220
|
/**
|
|
229
221
|
* Renames a chat.
|
|
@@ -231,9 +223,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
231
223
|
renameChat: import("../network/types.js").MutationObject<Omit<{
|
|
232
224
|
conversationId: string;
|
|
233
225
|
authorization: string;
|
|
234
|
-
xAccountId?: string | null
|
|
235
|
-
xMemberId?: string | null
|
|
236
|
-
xUsername?: string | null
|
|
226
|
+
xAccountId?: string | null;
|
|
227
|
+
xMemberId?: string | null;
|
|
228
|
+
xUsername?: string | null;
|
|
237
229
|
conversationUpdateTitleRequest: import("../api/ai.js").ConversationUpdateTitleRequest;
|
|
238
230
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").ConversationResponse>;
|
|
239
231
|
/**
|
|
@@ -241,9 +233,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
241
233
|
*/
|
|
242
234
|
createEvent: import("../network/types.js").MutationObject<Omit<{
|
|
243
235
|
authorization: string;
|
|
244
|
-
xAccountId?: string | null
|
|
245
|
-
xMemberId?: string | null
|
|
246
|
-
xUsername?: string | null
|
|
236
|
+
xAccountId?: string | null;
|
|
237
|
+
xMemberId?: string | null;
|
|
238
|
+
xUsername?: string | null;
|
|
247
239
|
body: import("../api/ai.js").GenericEventRequest[];
|
|
248
240
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
249
241
|
/**
|
|
@@ -253,9 +245,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
253
245
|
slug: string;
|
|
254
246
|
stepSlug: string;
|
|
255
247
|
authorization: string;
|
|
256
|
-
xAccountId?: string | null
|
|
257
|
-
xMemberId?: string | null
|
|
258
|
-
xUsername?: string | null
|
|
248
|
+
xAccountId?: string | null;
|
|
249
|
+
xMemberId?: string | null;
|
|
250
|
+
xUsername?: string | null;
|
|
259
251
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
260
252
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandStepFetchResponse>;
|
|
261
253
|
/**
|
|
@@ -265,12 +257,12 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
265
257
|
slug: string;
|
|
266
258
|
stepSlug: string;
|
|
267
259
|
authorization: string;
|
|
268
|
-
xAccountId?: string | null
|
|
269
|
-
xMemberId?: string | null
|
|
270
|
-
xUsername?: string | null
|
|
260
|
+
xAccountId?: string | null;
|
|
261
|
+
xMemberId?: string | null;
|
|
262
|
+
xUsername?: string | null;
|
|
271
263
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
272
264
|
}, "authorization"> & {
|
|
273
|
-
headers?: Record<string, any
|
|
265
|
+
headers?: Record<string, any>;
|
|
274
266
|
}, import("../api/ai.js").QuickCommandStepFetchResponse>;
|
|
275
267
|
/**
|
|
276
268
|
* @deprecated This method does not use stream, only json. The json support has been removed
|
|
@@ -281,9 +273,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
281
273
|
slug: string;
|
|
282
274
|
stepSlug: string;
|
|
283
275
|
authorization: string;
|
|
284
|
-
xAccountId?: string | null
|
|
285
|
-
xMemberId?: string | null
|
|
286
|
-
xUsername?: string | null
|
|
276
|
+
xAccountId?: string | null;
|
|
277
|
+
xMemberId?: string | null;
|
|
278
|
+
xUsername?: string | null;
|
|
287
279
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
288
280
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, string | QuickCommandPromptResponse2>;
|
|
289
281
|
/**
|
|
@@ -293,9 +285,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
293
285
|
slug: string;
|
|
294
286
|
stepSlug: string;
|
|
295
287
|
authorization: string;
|
|
296
|
-
xAccountId?: string | null
|
|
297
|
-
xMemberId?: string | null
|
|
298
|
-
xUsername?: string | null
|
|
288
|
+
xAccountId?: string | null;
|
|
289
|
+
xMemberId?: string | null;
|
|
290
|
+
xUsername?: string | null;
|
|
299
291
|
quickCommandEvaluateStepRouterRequest: import("../api/ai.js").QuickCommandEvaluateStepRouterRequest;
|
|
300
292
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandEvaluateStepRouterResponse>;
|
|
301
293
|
/**
|
|
@@ -308,9 +300,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
308
300
|
formatResultOfQuickCommand: import("../network/types.js").MutationObject<Omit<{
|
|
309
301
|
slug: string;
|
|
310
302
|
authorization: string;
|
|
311
|
-
xAccountId?: string | null
|
|
312
|
-
xMemberId?: string | null
|
|
313
|
-
xUsername?: string | null
|
|
303
|
+
xAccountId?: string | null;
|
|
304
|
+
xMemberId?: string | null;
|
|
305
|
+
xUsername?: string | null;
|
|
314
306
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
315
307
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandFinalResultResponse>;
|
|
316
308
|
/**
|
|
@@ -319,9 +311,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
319
311
|
addFavoriteStackAi: import("../network/types.js").MutationObject<Omit<{
|
|
320
312
|
stackId: string;
|
|
321
313
|
authorization: string;
|
|
322
|
-
xAccountId?: string | null
|
|
323
|
-
xMemberId?: string | null
|
|
324
|
-
xUsername?: string | null
|
|
314
|
+
xAccountId?: string | null;
|
|
315
|
+
xMemberId?: string | null;
|
|
316
|
+
xUsername?: string | null;
|
|
325
317
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
326
318
|
/**
|
|
327
319
|
* Removes the resource of type Stack AI from the list of favorites.
|
|
@@ -329,9 +321,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
329
321
|
removeFavoriteStackAi: import("../network/types.js").MutationObject<Omit<{
|
|
330
322
|
stackId: string;
|
|
331
323
|
authorization: string;
|
|
332
|
-
xAccountId?: string | null
|
|
333
|
-
xMemberId?: string | null
|
|
334
|
-
xUsername?: string | null
|
|
324
|
+
xAccountId?: string | null;
|
|
325
|
+
xMemberId?: string | null;
|
|
326
|
+
xUsername?: string | null;
|
|
335
327
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
336
328
|
/**
|
|
337
329
|
* Updates a Quick Command
|
|
@@ -339,9 +331,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
339
331
|
updateQuickCommand: import("../network/types.js").MutationObject<Omit<{
|
|
340
332
|
slug: string;
|
|
341
333
|
authorization: string;
|
|
342
|
-
xAccountId?: string | null
|
|
343
|
-
xMemberId?: string | null
|
|
344
|
-
xUsername?: string | null
|
|
334
|
+
xAccountId?: string | null;
|
|
335
|
+
xMemberId?: string | null;
|
|
336
|
+
xUsername?: string | null;
|
|
345
337
|
quickCommandsUpdateRequest: import("../api/ai.js").QuickCommandsUpdateRequest;
|
|
346
338
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
347
339
|
/**
|
|
@@ -350,9 +342,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
350
342
|
addFavoriteQuickCommand: import("../network/types.js").MutationObject<Omit<{
|
|
351
343
|
slug: string;
|
|
352
344
|
authorization: string;
|
|
353
|
-
xAccountId?: string | null
|
|
354
|
-
xMemberId?: string | null
|
|
355
|
-
xUsername?: string | null
|
|
345
|
+
xAccountId?: string | null;
|
|
346
|
+
xMemberId?: string | null;
|
|
347
|
+
xUsername?: string | null;
|
|
356
348
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
357
349
|
/**
|
|
358
350
|
* Removes the resource of type Quick Command from the list of favorites.
|
|
@@ -360,19 +352,37 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
360
352
|
removeFavoriteQuickCommand: import("../network/types.js").MutationObject<Omit<{
|
|
361
353
|
slug: string;
|
|
362
354
|
authorization: string;
|
|
363
|
-
xAccountId?: string | null
|
|
364
|
-
xMemberId?: string | null
|
|
365
|
-
xUsername?: string | null
|
|
355
|
+
xAccountId?: string | null;
|
|
356
|
+
xMemberId?: string | null;
|
|
357
|
+
xUsername?: string | null;
|
|
366
358
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
359
|
+
/**
|
|
360
|
+
* Lists all the feature flags for this user.
|
|
361
|
+
*/
|
|
362
|
+
flags: import("../network/types.js").QueryObject<void, import("../api/ai.js").FeatureFlagResponse[]>;
|
|
363
|
+
/**
|
|
364
|
+
* Starts the execution of a script step
|
|
365
|
+
*/
|
|
366
|
+
startScriptStep: import("../network/types.js").MutationObject<Omit<{
|
|
367
|
+
slug: string;
|
|
368
|
+
stepSlug: string;
|
|
369
|
+
quickCommandStartScriptRequest: import("../api/ai.js").QuickCommandStartScriptRequest;
|
|
370
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandStartScriptResponse>;
|
|
371
|
+
/**
|
|
372
|
+
* Gets the status of the execution of a script step
|
|
373
|
+
*/
|
|
374
|
+
getStatusScriptStep: import("../network/types.js").QueryObject<Omit<{
|
|
375
|
+
scriptExecutionId: string;
|
|
376
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandScriptExecutionResponse>;
|
|
367
377
|
private static toolsOfAgent;
|
|
368
378
|
sendChatMessage(request: FixedChatRequest, minChangeIntervalMS?: number): StreamedJson<ChatResponseWithSteps>;
|
|
369
379
|
contentDependencies: import("../network/types.js").QueryObject<Omit<{
|
|
370
380
|
contentType: import("../api/ai.js").ContentDependencyType;
|
|
371
381
|
contentId: string;
|
|
372
382
|
authorization: string;
|
|
373
|
-
xAccountId?: string | null
|
|
374
|
-
xMemberId?: string | null
|
|
375
|
-
xUsername?: string | null
|
|
383
|
+
xAccountId?: string | null;
|
|
384
|
+
xMemberId?: string | null;
|
|
385
|
+
xUsername?: string | null;
|
|
376
386
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, FixedDependencyResponse>;
|
|
377
387
|
}
|
|
378
388
|
export declare const aiClient: AIClient;
|
package/dist/client/ai.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai.d.ts","sourceRoot":"","sources":["../../src/client/ai.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAG7C,OAAO,
|
|
1
|
+
{"version":3,"file":"ai.d.ts","sourceRoot":"","sources":["../../src/client/ai.ts"],"names":[],"mappings":"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"}
|