@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.
@@ -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 = 'stk_code_buddy'
12
+ const AGENT_DEFAULT_SLUG = 'stk_flex'
13
13
 
14
14
  class AgentToolsClient extends ReactQueryNetworkClient {
15
15
  constructor() {
@@ -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()