@stack-spot/portal-network 0.162.3 → 0.164.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 +14 -0
- package/dist/api/content.d.ts +140 -308
- package/dist/api/content.d.ts.map +1 -1
- package/dist/api/content.js +79 -217
- package/dist/api/content.js.map +1 -1
- package/dist/client/agent-tools.js +1 -1
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/content.d.ts +10 -4
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/content.js +10 -1
- package/dist/client/content.js.map +1 -1
- package/package.json +1 -1
- package/src/api/content.ts +343 -795
- package/src/client/agent-tools.ts +1 -1
- package/src/client/content.ts +5 -0
|
@@ -9,7 +9,7 @@ import { StreamedArray } from '../utils/StreamedArray'
|
|
|
9
9
|
import { AgentResponseWithBuiltIn, AgentToolsOpenAPIPreview, AgentVisibilityLevel } from './types'
|
|
10
10
|
import { workspaceAiClient } from './workspace-ai'
|
|
11
11
|
|
|
12
|
-
const AGENT_DEFAULT_SLUG = '
|
|
12
|
+
const AGENT_DEFAULT_SLUG = 'stk_flex'
|
|
13
13
|
|
|
14
14
|
class AgentToolsClient extends ReactQueryNetworkClient {
|
|
15
15
|
constructor() {
|
package/src/client/content.ts
CHANGED
|
@@ -33,6 +33,7 @@ import {
|
|
|
33
33
|
getDependentWorkflowVersions,
|
|
34
34
|
getGetPluginView,
|
|
35
35
|
getInfrastructureEnvironmentsUsesPlugin,
|
|
36
|
+
getInputs1,
|
|
36
37
|
getListOfInputs,
|
|
37
38
|
getPlugin,
|
|
38
39
|
getPluginInfrastructureView,
|
|
@@ -528,6 +529,10 @@ class ContentClient extends ReactQueryNetworkClient {
|
|
|
528
529
|
* Get usage summary of workflow version
|
|
529
530
|
*/
|
|
530
531
|
workflowVersionUsageSummary = this.query(getWorkflowVersionUsageSummary)
|
|
532
|
+
/**
|
|
533
|
+
* Get list of inputs of a workflow
|
|
534
|
+
*/
|
|
535
|
+
workflowInputs = this.query(getInputs1)
|
|
531
536
|
}
|
|
532
537
|
|
|
533
538
|
export const contentClient = new ContentClient()
|