@stack-spot/portal-network 0.140.1-beta.0 → 0.141.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/dist/api/agent-tools.d.ts +4 -178
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js +2 -98
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/codeShift.d.ts +154 -3
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +107 -2
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/notification.d.ts +2 -1
- package/dist/api/notification.d.ts.map +1 -1
- package/dist/api/notification.js +6 -4
- package/dist/api/notification.js.map +1 -1
- package/dist/client/account.d.ts +21 -0
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +28 -1
- package/dist/client/account.js.map +1 -1
- package/dist/client/agent-tools.d.ts +0 -77
- package/dist/client/agent-tools.d.ts.map +1 -1
- package/dist/client/agent-tools.js +1 -134
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/agent.d.ts +49 -2
- package/dist/client/agent.d.ts.map +1 -1
- package/dist/client/agent.js +63 -0
- package/dist/client/agent.js.map +1 -1
- package/dist/client/ai.d.ts +0 -7
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +1 -10
- package/dist/client/ai.js.map +1 -1
- package/dist/client/code-shift.d.ts +66 -0
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +64 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/content.d.ts +2 -2
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/content.js +14 -3
- package/dist/client/content.js.map +1 -1
- package/dist/client/notification.d.ts +1 -0
- package/dist/client/notification.d.ts.map +1 -1
- package/dist/client/types.d.ts +3 -5
- package/dist/client/types.d.ts.map +1 -1
- package/dist/client/workspace-manager.d.ts +4 -4
- package/dist/client/workspace-manager.d.ts.map +1 -1
- package/dist/client/workspace-manager.js +2 -2
- package/dist/client/workspace-manager.js.map +1 -1
- package/package.json +2 -2
- package/src/api/agent-tools.ts +4 -306
- package/src/api/codeShift.ts +274 -4
- package/src/api/notification.ts +7 -4
- package/src/client/account.ts +17 -1
- package/src/client/agent-tools.ts +1 -103
- package/src/client/agent.ts +67 -1
- package/src/client/ai.ts +0 -5
- package/src/client/code-shift.ts +43 -0
- package/src/client/content.ts +23 -8
- package/src/client/types.ts +4 -7
- package/src/client/workspace-manager.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.141.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.140.0...portal-network@v0.141.0) (2025-06-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* 2321 feature flag ([#1070](https://github.com/stack-spot/portal-commons/issues/1070)) ([7579759](https://github.com/stack-spot/portal-commons/commit/7579759b764440539d1471d7e5638b806bbf9ec2))
|
|
9
|
+
* 987 audience ([#1073](https://github.com/stack-spot/portal-commons/issues/1073)) ([87fc6e6](https://github.com/stack-spot/portal-commons/commit/87fc6e64fd4c20c8535442cbdc281f21f4ba7b24))
|
|
10
|
+
* program group support to network client ([#1068](https://github.com/stack-spot/portal-commons/issues/1068)) ([5faf994](https://github.com/stack-spot/portal-commons/commit/5faf994fa8a6b2e8fc06030f60a80386e19dd7bc))
|
|
11
|
+
|
|
3
12
|
## [0.140.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.139.0...portal-network@v0.140.0) (2025-06-11)
|
|
4
13
|
|
|
5
14
|
|
|
@@ -40,9 +40,7 @@ export type FunctionParameter = {
|
|
|
40
40
|
/** A list of possible values for the parameter (optional) */
|
|
41
41
|
"enum"?: string[] | null;
|
|
42
42
|
/** A dictionary of properties for the parameter (optional) */
|
|
43
|
-
properties?:
|
|
44
|
-
[key: string]: any;
|
|
45
|
-
} | null;
|
|
43
|
+
properties?: object | null;
|
|
46
44
|
/** A list of required parameters (optional) */
|
|
47
45
|
required?: string[] | null;
|
|
48
46
|
/** Allow arbitrary data of specific typed */
|
|
@@ -70,123 +68,14 @@ export type ExecuteAgentToolRequest = {
|
|
|
70
68
|
export type AgentToolExecutionResponse = {
|
|
71
69
|
result: string;
|
|
72
70
|
};
|
|
73
|
-
export type AgentVisibilityLevelEnum = "built_in";
|
|
74
|
-
export type VisibilityLevelEnum = "account" | "personal" | "shared" | "workspace" | "favorite";
|
|
75
|
-
export type ListAgentResponse = {
|
|
76
|
-
id: string;
|
|
77
|
-
name: string;
|
|
78
|
-
slug: string;
|
|
79
|
-
created_by: string | null;
|
|
80
|
-
visibility_level: string;
|
|
81
|
-
avatar: string | null;
|
|
82
|
-
conversation_starter: string[] | null;
|
|
83
|
-
};
|
|
84
|
-
export type AgentType = "CONVERSATIONAL" | "SINGLE_ANSWER";
|
|
85
|
-
export type SimilarityFunctionEnum = "cosine" | "euclidean" | "dot_product";
|
|
86
|
-
export type KnowledgeSourcesConfigRequest = {
|
|
87
|
-
similarity_function?: SimilarityFunctionEnum | null;
|
|
88
|
-
post_processing?: boolean | null;
|
|
89
|
-
max_number_of_kos?: number | null;
|
|
90
|
-
relevancy_threshold?: number | null;
|
|
91
|
-
knowledge_sources?: string[] | null;
|
|
92
|
-
sealed?: boolean | null;
|
|
93
|
-
};
|
|
94
|
-
export type NewAgentRequest = {
|
|
95
|
-
/** LLM model name */
|
|
96
|
-
model_name?: string | null;
|
|
97
|
-
/** LLM model id */
|
|
98
|
-
model_id?: string | null;
|
|
99
|
-
/** Agent name */
|
|
100
|
-
name: string;
|
|
101
|
-
/** Agent unique slug */
|
|
102
|
-
slug: string;
|
|
103
|
-
/** Agent description */
|
|
104
|
-
description?: string | null;
|
|
105
|
-
/** Agent avatar image */
|
|
106
|
-
avatar?: string | null;
|
|
107
|
-
/** Agent suggested prompt */
|
|
108
|
-
suggested_prompts?: string[];
|
|
109
|
-
/** System prompt */
|
|
110
|
-
system_prompt?: string | null;
|
|
111
|
-
/** Agent type */
|
|
112
|
-
"type": AgentType;
|
|
113
|
-
knowledge_sources_config?: KnowledgeSourcesConfigRequest | null;
|
|
114
|
-
builtin_tools_ids?: string[];
|
|
115
|
-
detail_mode?: boolean;
|
|
116
|
-
structured_output?: string | null;
|
|
117
|
-
llm_settings?: {
|
|
118
|
-
[key: string]: any;
|
|
119
|
-
} | null;
|
|
120
|
-
};
|
|
121
|
-
export type NewAgentResponse = {
|
|
122
|
-
id: string;
|
|
123
|
-
};
|
|
124
|
-
export type SearchAgentsRequest = {
|
|
125
|
-
/** Agent ids to filter for */
|
|
126
|
-
ids: string[];
|
|
127
|
-
};
|
|
128
|
-
export type KnowledgeSourceConfigModel = {
|
|
129
|
-
similarity_function: SimilarityFunctionEnum;
|
|
130
|
-
max_number_of_kos: number;
|
|
131
|
-
relevancy_threshold: number;
|
|
132
|
-
post_processing: boolean;
|
|
133
|
-
knowledge_sources: string[];
|
|
134
|
-
sealed: boolean;
|
|
135
|
-
created_by?: string | null;
|
|
136
|
-
created_at?: string | null;
|
|
137
|
-
updated_by?: string | null;
|
|
138
|
-
updated_at?: string | null;
|
|
139
|
-
};
|
|
140
|
-
export type AgentToolModel = {
|
|
141
|
-
agent_id: string;
|
|
142
|
-
builtin_tool_id: string;
|
|
143
|
-
builtin_toolkit_id?: string | null;
|
|
144
|
-
created_by?: string | null;
|
|
145
|
-
created_at?: string | null;
|
|
146
|
-
updated_by?: string | null;
|
|
147
|
-
updated_at?: string | null;
|
|
148
|
-
};
|
|
149
|
-
export type LlmSettingsModel = {
|
|
150
|
-
property_key?: string | null;
|
|
151
|
-
property_value?: string | null;
|
|
152
|
-
property_type?: string | null;
|
|
153
|
-
agent_id: string;
|
|
154
|
-
created_by?: string | null;
|
|
155
|
-
created_at?: string | null;
|
|
156
|
-
updated_by?: string | null;
|
|
157
|
-
updated_at?: string | null;
|
|
158
|
-
};
|
|
159
|
-
export type AgentModel = {
|
|
160
|
-
id: string;
|
|
161
|
-
name: string;
|
|
162
|
-
slug: string;
|
|
163
|
-
description?: string | null;
|
|
164
|
-
system_prompt: string;
|
|
165
|
-
visibility_level: string;
|
|
166
|
-
avatar?: string | null;
|
|
167
|
-
"type": string;
|
|
168
|
-
conversation_starter?: string[] | null;
|
|
169
|
-
use_only: boolean;
|
|
170
|
-
detail_mode: boolean;
|
|
171
|
-
structured_output?: string | null;
|
|
172
|
-
model_id?: string | null;
|
|
173
|
-
model_name?: string | null;
|
|
174
|
-
knowledge_source_config?: KnowledgeSourceConfigModel | null;
|
|
175
|
-
tools?: AgentToolModel[];
|
|
176
|
-
settings?: LlmSettingsModel[];
|
|
177
|
-
created_by?: string | null;
|
|
178
|
-
created_at?: string | null;
|
|
179
|
-
updated_by?: string | null;
|
|
180
|
-
updated_at?: string | null;
|
|
181
|
-
};
|
|
182
71
|
/**
|
|
183
72
|
* Health Check
|
|
184
73
|
*/
|
|
185
74
|
export declare function healthCheckHealthzGet(opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
186
75
|
/**
|
|
187
|
-
*
|
|
76
|
+
* Health Check
|
|
188
77
|
*/
|
|
189
|
-
export declare function
|
|
78
|
+
export declare function healthCheckReadyzGet(opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
190
79
|
/**
|
|
191
80
|
* Get Public Tool Kits
|
|
192
81
|
*/
|
|
@@ -228,9 +117,7 @@ export declare function listToolsByAgentForSchemaV1AgentsAgentIdToolsSchemaSchem
|
|
|
228
117
|
isPublic?: boolean;
|
|
229
118
|
xAccountId?: string | null;
|
|
230
119
|
authorization: string;
|
|
231
|
-
}, opts?: Oazapfts.RequestOpts): Promise<(
|
|
232
|
-
[key: string]: any;
|
|
233
|
-
})[]>;
|
|
120
|
+
}, opts?: Oazapfts.RequestOpts): Promise<(object | OpenAiTool)[]>;
|
|
234
121
|
/**
|
|
235
122
|
* Execute Tool
|
|
236
123
|
*/
|
|
@@ -241,65 +128,4 @@ export declare function executeToolV1AgentsToolsAgentToolIdExecutePost({ agentTo
|
|
|
241
128
|
authorization: string;
|
|
242
129
|
executeAgentToolRequest: ExecuteAgentToolRequest;
|
|
243
130
|
}, opts?: Oazapfts.RequestOpts): Promise<AgentToolExecutionResponse>;
|
|
244
|
-
/**
|
|
245
|
-
* List Agents
|
|
246
|
-
*/
|
|
247
|
-
export declare function listAgentsV1AgentsGet({ name, slug, visibility, size, page, xAccountId, authorization }: {
|
|
248
|
-
name?: string | null;
|
|
249
|
-
slug?: string | null;
|
|
250
|
-
visibility?: AgentVisibilityLevelEnum | VisibilityLevelEnum;
|
|
251
|
-
size?: number;
|
|
252
|
-
page?: number;
|
|
253
|
-
xAccountId?: string | null;
|
|
254
|
-
authorization: string;
|
|
255
|
-
}, opts?: Oazapfts.RequestOpts): Promise<ListAgentResponse[]>;
|
|
256
|
-
/**
|
|
257
|
-
* Create Agent
|
|
258
|
-
*/
|
|
259
|
-
export declare function createAgentV1AgentsPost({ isPublic, xAccountId, authorization, newAgentRequest }: {
|
|
260
|
-
isPublic?: boolean;
|
|
261
|
-
xAccountId?: string | null;
|
|
262
|
-
authorization: string;
|
|
263
|
-
newAgentRequest: NewAgentRequest;
|
|
264
|
-
}, opts?: Oazapfts.RequestOpts): Promise<NewAgentResponse>;
|
|
265
|
-
/**
|
|
266
|
-
* Search Agents
|
|
267
|
-
*/
|
|
268
|
-
export declare function searchAgentsV1AgentsSearchPost({ xAccountId, authorization, searchAgentsRequest }: {
|
|
269
|
-
xAccountId?: string | null;
|
|
270
|
-
authorization: string;
|
|
271
|
-
searchAgentsRequest: SearchAgentsRequest;
|
|
272
|
-
}, opts?: Oazapfts.RequestOpts): Promise<ListAgentResponse[]>;
|
|
273
|
-
/**
|
|
274
|
-
* Get Agent
|
|
275
|
-
*/
|
|
276
|
-
export declare function getAgentV1AgentsAgentIdGet({ agentId, xAccountId, authorization }: {
|
|
277
|
-
agentId: string;
|
|
278
|
-
xAccountId?: string | null;
|
|
279
|
-
authorization: string;
|
|
280
|
-
}, opts?: Oazapfts.RequestOpts): Promise<AgentModel>;
|
|
281
|
-
/**
|
|
282
|
-
* Update Agent
|
|
283
|
-
*/
|
|
284
|
-
export declare function updateAgentV1AgentsAgentIdPut({ agentId }: {
|
|
285
|
-
agentId: string;
|
|
286
|
-
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
287
|
-
/**
|
|
288
|
-
* Delete Agent
|
|
289
|
-
*/
|
|
290
|
-
export declare function deleteAgentV1AgentsAgentIdDelete({ agentId }: {
|
|
291
|
-
agentId: string;
|
|
292
|
-
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
293
|
-
/**
|
|
294
|
-
* Add Favorite
|
|
295
|
-
*/
|
|
296
|
-
export declare function addFavoriteV1AgentsAgentIdFavoritePost({ agentId }: {
|
|
297
|
-
agentId: string;
|
|
298
|
-
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
299
|
-
/**
|
|
300
|
-
* Publish Agent
|
|
301
|
-
*/
|
|
302
|
-
export declare function publishAgentV1AgentsAgentIdPublishPost({ agentId }: {
|
|
303
|
-
agentId: string;
|
|
304
|
-
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
305
131
|
//# sourceMappingURL=agent-tools.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-tools.d.ts","sourceRoot":"","sources":["../../src/api/agent-tools.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,KAAK,QAAQ,MAAM,mBAAmB,CAAC;AAE9C,eAAO,MAAM,QAAQ,EAAE,QAAQ,CAAC,QAAQ,CAAC,QAAQ,CAAC,aAAa,CAG9D,CAAC;AAEF,eAAO,MAAM,OAAO,IAAK,CAAC;AAC1B,MAAM,MAAM,mBAAmB,GAAG;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;CACvB,CAAC;AACF,MAAM,MAAM,sBAAsB,GAAG;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,mBAAmB,EAAE,CAAC;CAChC,CAAC;AACF,MAAM,MAAM,yBAAyB,GAAG;IACpC,gBAAgB,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;CAC9B,CAAC;AACF,MAAM,MAAM,eAAe,GAAG;IAC1B,GAAG,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAC;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;CAClB,CAAC;AACF,MAAM,MAAM,mBAAmB,GAAG;IAC9B,MAAM,CAAC,EAAE,eAAe,EAAE,CAAC;CAC9B,CAAC;AACF,MAAM,MAAM,UAAU,GAAG,QAAQ,CAAC;AAClC,MAAM,MAAM,iBAAiB,GAAG;IAC5B,gCAAgC;IAChC,MAAM,EAAE,MAAM,CAAC;IACf,gDAAgD;IAChD,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,6DAA6D;IAC7D,MAAM,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IACzB,8DAA8D;IAC9D,UAAU,CAAC,EAAE
|
|
1
|
+
{"version":3,"file":"agent-tools.d.ts","sourceRoot":"","sources":["../../src/api/agent-tools.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,KAAK,QAAQ,MAAM,mBAAmB,CAAC;AAE9C,eAAO,MAAM,QAAQ,EAAE,QAAQ,CAAC,QAAQ,CAAC,QAAQ,CAAC,aAAa,CAG9D,CAAC;AAEF,eAAO,MAAM,OAAO,IAAK,CAAC;AAC1B,MAAM,MAAM,mBAAmB,GAAG;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;CACvB,CAAC;AACF,MAAM,MAAM,sBAAsB,GAAG;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,mBAAmB,EAAE,CAAC;CAChC,CAAC;AACF,MAAM,MAAM,yBAAyB,GAAG;IACpC,gBAAgB,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;CAC9B,CAAC;AACF,MAAM,MAAM,eAAe,GAAG;IAC1B,GAAG,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAC;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;CAClB,CAAC;AACF,MAAM,MAAM,mBAAmB,GAAG;IAC9B,MAAM,CAAC,EAAE,eAAe,EAAE,CAAC;CAC9B,CAAC;AACF,MAAM,MAAM,UAAU,GAAG,QAAQ,CAAC;AAClC,MAAM,MAAM,iBAAiB,GAAG;IAC5B,gCAAgC;IAChC,MAAM,EAAE,MAAM,CAAC;IACf,gDAAgD;IAChD,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,6DAA6D;IAC7D,MAAM,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IACzB,8DAA8D;IAC9D,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,+CAA+C;IAC/C,QAAQ,CAAC,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IAC3B,6CAA6C;IAC7C,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAClC,CAAC;AACF,MAAM,MAAM,QAAQ,GAAG;IACnB,+BAA+B;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,8CAA8C;IAC9C,WAAW,EAAE,MAAM,CAAC;IACpB,8CAA8C;IAC9C,UAAU,EAAE,iBAAiB,CAAC;IAC9B,uFAAuF;IACvF,MAAM,EAAE,OAAO,CAAC;CACnB,CAAC;AACF,MAAM,MAAM,UAAU,GAAG;IACrB,+CAA+C;IAC/C,MAAM,EAAE,UAAU,CAAC;IACnB,6CAA6C;IAC7C,UAAU,EAAE,QAAQ,CAAC;CACxB,CAAC;AACF,MAAM,MAAM,uBAAuB,GAAG;IAClC,SAAS,EAAE,MAAM,CAAC;CACrB,CAAC;AACF,MAAM,MAAM,0BAA0B,GAAG;IACrC,MAAM,EAAE,MAAM,CAAC;CAClB,CAAC;AACF;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,WAAW,gBAShE;AACD;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,WAAW,gBAS/D;AACD;;GAEG;AACH,wBAAgB,oCAAoC,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,WAAW,qCAS/E;AACD;;GAEG;AACH,wBAAgB,mCAAmC,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,aAAa,EAAE,yBAAyB,EAAE,EAAE;IAC7H,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,aAAa,EAAE,MAAM,CAAC;IACtB,yBAAyB,EAAE,yBAAyB,CAAC;CACxD,EAAE,IAAI,CAAC,EAAE,QAAQ,CAAC,WAAW,oBAmB7B;AACD;;GAEG;AACH,wBAAgB,gCAAgC,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,aAAa,EAAE,EAAE;IAC/F,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,aAAa,EAAE,MAAM,CAAC;CACzB,EAAE,IAAI,CAAC,EAAE,QAAQ,CAAC,WAAW,gBAkB7B;AACD;;GAEG;AACH,wBAAgB,qCAAqC,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,aAAa,EAAE,EAAE;IACpG,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,aAAa,EAAE,MAAM,CAAC;CACzB,EAAE,IAAI,CAAC,EAAE,QAAQ,CAAC,WAAW,oBAkB7B;AACD;;GAEG;AACH,wBAAgB,4DAA4D,CAAC,EAAE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,UAAU,EAAE,aAAa,EAAE,EAAE;IACnI,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,UAAU,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,aAAa,EAAE,MAAM,CAAC;CACzB,EAAE,IAAI,CAAC,EAAE,QAAQ,CAAC,WAAW,oCAkB7B;AACD;;GAEG;AACH,wBAAgB,8CAA8C,CAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,UAAU,EAAE,aAAa,EAAE,uBAAuB,EAAE,EAAE;IAC1I,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,aAAa,EAAE,MAAM,CAAC;IACtB,uBAAuB,EAAE,uBAAuB,CAAC;CACpD,EAAE,IAAI,CAAC,EAAE,QAAQ,CAAC,WAAW,uCAoB7B"}
|
package/dist/api/agent-tools.js
CHANGED
|
@@ -21,9 +21,9 @@ export function healthCheckHealthzGet(opts) {
|
|
|
21
21
|
}));
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Health Check
|
|
25
25
|
*/
|
|
26
|
-
export function
|
|
26
|
+
export function healthCheckReadyzGet(opts) {
|
|
27
27
|
return oazapfts.ok(oazapfts.fetchJson("/readyz", {
|
|
28
28
|
...opts
|
|
29
29
|
}));
|
|
@@ -111,100 +111,4 @@ export function executeToolV1AgentsToolsAgentToolIdExecutePost({ agentToolId, is
|
|
|
111
111
|
})
|
|
112
112
|
})));
|
|
113
113
|
}
|
|
114
|
-
/**
|
|
115
|
-
* List Agents
|
|
116
|
-
*/
|
|
117
|
-
export function listAgentsV1AgentsGet({ name, slug, visibility, size, page, xAccountId, authorization }, opts) {
|
|
118
|
-
return oazapfts.ok(oazapfts.fetchJson(`/v1/agents${QS.query(QS.explode({
|
|
119
|
-
name,
|
|
120
|
-
slug,
|
|
121
|
-
visibility,
|
|
122
|
-
size,
|
|
123
|
-
page
|
|
124
|
-
}))}`, {
|
|
125
|
-
...opts,
|
|
126
|
-
headers: oazapfts.mergeHeaders(opts?.headers, {
|
|
127
|
-
"x-account-id": xAccountId,
|
|
128
|
-
authorization
|
|
129
|
-
})
|
|
130
|
-
}));
|
|
131
|
-
}
|
|
132
|
-
/**
|
|
133
|
-
* Create Agent
|
|
134
|
-
*/
|
|
135
|
-
export function createAgentV1AgentsPost({ isPublic, xAccountId, authorization, newAgentRequest }, opts) {
|
|
136
|
-
return oazapfts.ok(oazapfts.fetchJson(`/v1/agents${QS.query(QS.explode({
|
|
137
|
-
is_public: isPublic
|
|
138
|
-
}))}`, oazapfts.json({
|
|
139
|
-
...opts,
|
|
140
|
-
method: "POST",
|
|
141
|
-
body: newAgentRequest,
|
|
142
|
-
headers: oazapfts.mergeHeaders(opts?.headers, {
|
|
143
|
-
"x-account-id": xAccountId,
|
|
144
|
-
authorization
|
|
145
|
-
})
|
|
146
|
-
})));
|
|
147
|
-
}
|
|
148
|
-
/**
|
|
149
|
-
* Search Agents
|
|
150
|
-
*/
|
|
151
|
-
export function searchAgentsV1AgentsSearchPost({ xAccountId, authorization, searchAgentsRequest }, opts) {
|
|
152
|
-
return oazapfts.ok(oazapfts.fetchJson("/v1/agents/search", oazapfts.json({
|
|
153
|
-
...opts,
|
|
154
|
-
method: "POST",
|
|
155
|
-
body: searchAgentsRequest,
|
|
156
|
-
headers: oazapfts.mergeHeaders(opts?.headers, {
|
|
157
|
-
"x-account-id": xAccountId,
|
|
158
|
-
authorization
|
|
159
|
-
})
|
|
160
|
-
})));
|
|
161
|
-
}
|
|
162
|
-
/**
|
|
163
|
-
* Get Agent
|
|
164
|
-
*/
|
|
165
|
-
export function getAgentV1AgentsAgentIdGet({ agentId, xAccountId, authorization }, opts) {
|
|
166
|
-
return oazapfts.ok(oazapfts.fetchJson(`/v1/agents/${encodeURIComponent(agentId)}`, {
|
|
167
|
-
...opts,
|
|
168
|
-
headers: oazapfts.mergeHeaders(opts?.headers, {
|
|
169
|
-
"x-account-id": xAccountId,
|
|
170
|
-
authorization
|
|
171
|
-
})
|
|
172
|
-
}));
|
|
173
|
-
}
|
|
174
|
-
/**
|
|
175
|
-
* Update Agent
|
|
176
|
-
*/
|
|
177
|
-
export function updateAgentV1AgentsAgentIdPut({ agentId }, opts) {
|
|
178
|
-
return oazapfts.ok(oazapfts.fetchJson(`/v1/agents/${encodeURIComponent(agentId)}`, {
|
|
179
|
-
...opts,
|
|
180
|
-
method: "PUT"
|
|
181
|
-
}));
|
|
182
|
-
}
|
|
183
|
-
/**
|
|
184
|
-
* Delete Agent
|
|
185
|
-
*/
|
|
186
|
-
export function deleteAgentV1AgentsAgentIdDelete({ agentId }, opts) {
|
|
187
|
-
return oazapfts.ok(oazapfts.fetchJson(`/v1/agents/${encodeURIComponent(agentId)}`, {
|
|
188
|
-
...opts,
|
|
189
|
-
method: "DELETE"
|
|
190
|
-
}));
|
|
191
|
-
}
|
|
192
|
-
/**
|
|
193
|
-
* Add Favorite
|
|
194
|
-
*/
|
|
195
|
-
export function addFavoriteV1AgentsAgentIdFavoritePost({ agentId }, opts) {
|
|
196
|
-
return oazapfts.ok(oazapfts.fetchJson(`/v1/agents/${encodeURIComponent(agentId)}/favorite`, {
|
|
197
|
-
...opts,
|
|
198
|
-
method: "POST"
|
|
199
|
-
}));
|
|
200
|
-
}
|
|
201
|
-
/**
|
|
202
|
-
* Publish Agent
|
|
203
|
-
*/
|
|
204
|
-
export function publishAgentV1AgentsAgentIdPublishPost({ agentId }, opts) {
|
|
205
|
-
return oazapfts.ok(oazapfts.fetchJson(`/v1/agents/${encodeURIComponent(agentId)}/publish`, {
|
|
206
|
-
...opts,
|
|
207
|
-
method: "POST"
|
|
208
|
-
}));
|
|
209
|
-
}
|
|
210
114
|
//# sourceMappingURL=agent-tools.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-tools.js","sourceRoot":"","sources":["../../src/api/agent-tools.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,KAAK,QAAQ,MAAM,mBAAmB,CAAC;AAC9C,OAAO,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAC9C,MAAM,CAAC,MAAM,QAAQ,GAA8C;IAC/D,OAAO,EAAE,EAAE;IACX,OAAO,EAAE,GAAG;CACf,CAAC;AACF,MAAM,QAAQ,GAAG,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;AAC5C,MAAM,CAAC,MAAM,OAAO,GAAG,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"agent-tools.js","sourceRoot":"","sources":["../../src/api/agent-tools.ts"],"names":[],"mappings":"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"}
|
package/dist/api/codeShift.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
import * as Oazapfts from "@oazapfts/runtime";
|
|
8
8
|
export declare const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders>;
|
|
9
9
|
export declare const servers: {};
|
|
10
|
-
export type CodeShiftRole = "list-applications" | "create-application" | "list-repository" | "create-repository" | "delete-repository" | "dispatch-module" | "create-module" | "account-settings" | "list-integration" | "create-integration" | "delete-integration";
|
|
10
|
+
export type CodeShiftRole = "list-applications" | "create-application" | "list-repository" | "create-repository" | "delete-repository" | "dispatch-module" | "create-module" | "account-settings" | "list-integration" | "create-integration" | "delete-integration" | "list-program-group" | "create-program-group" | "delete-program-group";
|
|
11
11
|
export type RolesResponse = {
|
|
12
12
|
result: boolean;
|
|
13
13
|
};
|
|
@@ -214,7 +214,9 @@ export type ModuleDispatchRequest = {
|
|
|
214
214
|
/** Target branch */
|
|
215
215
|
targetBranch?: string | null;
|
|
216
216
|
/** Application ID */
|
|
217
|
-
applicationId
|
|
217
|
+
applicationId?: string | null;
|
|
218
|
+
/** Program Group ID */
|
|
219
|
+
programGroupId?: string | null;
|
|
218
220
|
/** Module ID */
|
|
219
221
|
moduleId: string;
|
|
220
222
|
inputs?: {
|
|
@@ -417,6 +419,89 @@ export type PutIntegrationRequest = {
|
|
|
417
419
|
[key: string]: any;
|
|
418
420
|
} | null;
|
|
419
421
|
};
|
|
422
|
+
export type BodyCreateProgramGroupServiceV1ProgramGroupsPost = {
|
|
423
|
+
file: Blob;
|
|
424
|
+
};
|
|
425
|
+
export type CreateProgramGroupResponse = {
|
|
426
|
+
id: string;
|
|
427
|
+
};
|
|
428
|
+
export type ReportResponse5 = {
|
|
429
|
+
id: string;
|
|
430
|
+
execution: ExecutionResponse | null;
|
|
431
|
+
mode: string;
|
|
432
|
+
moduleId: string;
|
|
433
|
+
sourceBranch: string;
|
|
434
|
+
targetBranch?: string | null;
|
|
435
|
+
createdBy: UserResponse;
|
|
436
|
+
createdAt: string;
|
|
437
|
+
updatedAt: string;
|
|
438
|
+
filesCount: number | null;
|
|
439
|
+
issuesCount: number | null;
|
|
440
|
+
pullRequestLink?: string | null;
|
|
441
|
+
errorLog?: string | null;
|
|
442
|
+
};
|
|
443
|
+
export type ProgramGroupResponse = {
|
|
444
|
+
id: string;
|
|
445
|
+
name: string;
|
|
446
|
+
integrationId: string | null;
|
|
447
|
+
tags: string[];
|
|
448
|
+
components: any[];
|
|
449
|
+
accountId: string;
|
|
450
|
+
createdBy: string;
|
|
451
|
+
createdAt: string;
|
|
452
|
+
updatedAt: string;
|
|
453
|
+
lastModuleReport: ReportResponse5 | null;
|
|
454
|
+
};
|
|
455
|
+
export type ListProgramGroupResponse = {
|
|
456
|
+
items: ProgramGroupResponse[];
|
|
457
|
+
itemsCount: number;
|
|
458
|
+
};
|
|
459
|
+
export type ProgramGroupResponse2 = {
|
|
460
|
+
id: string;
|
|
461
|
+
name: string;
|
|
462
|
+
integrationId: string | null;
|
|
463
|
+
tags: string[];
|
|
464
|
+
components: any[];
|
|
465
|
+
accountId: string;
|
|
466
|
+
createdBy: string;
|
|
467
|
+
createdAt: string;
|
|
468
|
+
updatedAt: string;
|
|
469
|
+
};
|
|
470
|
+
export type BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut = {
|
|
471
|
+
file?: Blob | null;
|
|
472
|
+
};
|
|
473
|
+
export type ModuleResponse5 = {
|
|
474
|
+
id: string;
|
|
475
|
+
name: string;
|
|
476
|
+
};
|
|
477
|
+
export type ReportResponse6 = {
|
|
478
|
+
id: string;
|
|
479
|
+
"module": ModuleResponse5;
|
|
480
|
+
execution: ExecutionResponse | null;
|
|
481
|
+
mode: string;
|
|
482
|
+
sourceBranch: string;
|
|
483
|
+
targetBranch?: string | null;
|
|
484
|
+
createdBy: UserResponse;
|
|
485
|
+
createdAt: string;
|
|
486
|
+
updatedAt: string;
|
|
487
|
+
filesCount: number | null;
|
|
488
|
+
issuesCount: number | null;
|
|
489
|
+
pullRequestLink?: string | null;
|
|
490
|
+
errorLog?: string | null;
|
|
491
|
+
};
|
|
492
|
+
export type ListProgramGroupReportResponse = {
|
|
493
|
+
/** List of reports */
|
|
494
|
+
items: ReportResponse6[];
|
|
495
|
+
/** Number of reports */
|
|
496
|
+
itemsCount: number;
|
|
497
|
+
};
|
|
498
|
+
export type TagResponse = {
|
|
499
|
+
name: string;
|
|
500
|
+
};
|
|
501
|
+
export type ListTagResponse = {
|
|
502
|
+
items: TagResponse[];
|
|
503
|
+
itemsCount: number;
|
|
504
|
+
};
|
|
420
505
|
/**
|
|
421
506
|
* Check Role Route
|
|
422
507
|
*/
|
|
@@ -648,9 +733,10 @@ export declare function createIntegrationServiceV1IntegrationsPost({ authorizati
|
|
|
648
733
|
/**
|
|
649
734
|
* List Integration Service
|
|
650
735
|
*/
|
|
651
|
-
export declare function listIntegrationServiceV1IntegrationsGet({ pageSize, page, authorization }: {
|
|
736
|
+
export declare function listIntegrationServiceV1IntegrationsGet({ pageSize, page, name, authorization }: {
|
|
652
737
|
pageSize?: number;
|
|
653
738
|
page?: number;
|
|
739
|
+
name?: string | null;
|
|
654
740
|
authorization: string;
|
|
655
741
|
}, opts?: Oazapfts.RequestOpts): Promise<ListIntegrationResponse>;
|
|
656
742
|
/**
|
|
@@ -675,4 +761,69 @@ export declare function deleteIntegrationServiceV1IntegrationsIntegrationIdDelet
|
|
|
675
761
|
integrationId: string;
|
|
676
762
|
authorization: string;
|
|
677
763
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
764
|
+
/**
|
|
765
|
+
* Create Program Group Service
|
|
766
|
+
*/
|
|
767
|
+
export declare function createProgramGroupServiceV1ProgramGroupsPost({ name, tags, integrationId, authorization, bodyCreateProgramGroupServiceV1ProgramGroupsPost }: {
|
|
768
|
+
name: string;
|
|
769
|
+
tags?: string[] | null;
|
|
770
|
+
integrationId: string;
|
|
771
|
+
authorization: string;
|
|
772
|
+
bodyCreateProgramGroupServiceV1ProgramGroupsPost: BodyCreateProgramGroupServiceV1ProgramGroupsPost;
|
|
773
|
+
}, opts?: Oazapfts.RequestOpts): Promise<CreateProgramGroupResponse>;
|
|
774
|
+
/**
|
|
775
|
+
* List Program Group Service
|
|
776
|
+
*/
|
|
777
|
+
export declare function listProgramGroupServiceV1ProgramGroupsGet({ moduleId, createdByEmail, reportByEmail, tags, name, pageSize, page, authorization }: {
|
|
778
|
+
moduleId?: string | null;
|
|
779
|
+
createdByEmail?: string | null;
|
|
780
|
+
reportByEmail?: string | null;
|
|
781
|
+
tags?: string[] | null;
|
|
782
|
+
name?: string | null;
|
|
783
|
+
pageSize?: number;
|
|
784
|
+
page?: number;
|
|
785
|
+
authorization: string;
|
|
786
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ListProgramGroupResponse>;
|
|
787
|
+
/**
|
|
788
|
+
* Get Program Group By Id Service
|
|
789
|
+
*/
|
|
790
|
+
export declare function getProgramGroupByIdServiceV1ProgramGroupsProgramGroupIdGet({ programGroupId, authorization }: {
|
|
791
|
+
programGroupId: string;
|
|
792
|
+
authorization: string;
|
|
793
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ProgramGroupResponse2>;
|
|
794
|
+
/**
|
|
795
|
+
* Update Program Group Service
|
|
796
|
+
*/
|
|
797
|
+
export declare function updateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut({ programGroupId, name, tags, integrationId, authorization, bodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut }: {
|
|
798
|
+
programGroupId: string;
|
|
799
|
+
name: string;
|
|
800
|
+
tags?: string[] | null;
|
|
801
|
+
integrationId: string;
|
|
802
|
+
authorization: string;
|
|
803
|
+
bodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut?: BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut;
|
|
804
|
+
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
805
|
+
/**
|
|
806
|
+
* Delete Program Group Service
|
|
807
|
+
*/
|
|
808
|
+
export declare function deleteProgramGroupServiceV1ProgramGroupsProgramGroupIdDelete({ programGroupId, authorization }: {
|
|
809
|
+
programGroupId: string;
|
|
810
|
+
authorization: string;
|
|
811
|
+
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
812
|
+
/**
|
|
813
|
+
* List Program Group Report Service
|
|
814
|
+
*/
|
|
815
|
+
export declare function listProgramGroupReportServiceV1ProgramGroupsProgramGroupIdReportsGet({ programGroupId, pageSize, page, lastEvaluatedKey, authorization }: {
|
|
816
|
+
programGroupId: string;
|
|
817
|
+
pageSize?: number;
|
|
818
|
+
page?: number;
|
|
819
|
+
lastEvaluatedKey?: string;
|
|
820
|
+
authorization: string;
|
|
821
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ListProgramGroupReportResponse>;
|
|
822
|
+
/**
|
|
823
|
+
* List Tags Service
|
|
824
|
+
*/
|
|
825
|
+
export declare function listTagsServiceV1TagsGet({ name, authorization }: {
|
|
826
|
+
name?: string | null;
|
|
827
|
+
authorization: string;
|
|
828
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ListTagResponse>;
|
|
678
829
|
//# sourceMappingURL=codeShift.d.ts.map
|