@stack-spot/portal-network 0.154.0 → 0.155.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.
@@ -859,11 +859,11 @@ class AccountClient extends ReactQueryNetworkClient {
859
859
  /**
860
860
  * Lists enterprise accounts
861
861
  */
862
- getEnterpriseAccounts= this.query(getAccounts1)
862
+ getEnterpriseAccounts = this.query(getAccounts1)
863
863
  /**
864
- * Get enterprise accounts
864
+ * Get an enterprise account
865
865
  */
866
- getEnterpriseAccountList = this.query(getAccount1)
866
+ getEnterpriseAccount = this.query(getAccount1)
867
867
  /**
868
868
  * Adds a new email domain to an existing account
869
869
  */
package/src/client/ai.ts CHANGED
@@ -3,6 +3,7 @@ import { findLast, last } from 'lodash'
3
3
  import {
4
4
  addFavoriteV1AiStacksStackIdFavoritePost,
5
5
  addFavoriteV1QuickCommandsSlugFavoritePost,
6
+ calculateNextStepV1QuickCommandsSlugStepsStepSlugCalculateNextStepPost,
6
7
  conversationHistoryV1ConversationsConversationIdGet,
7
8
  currentV1TokensUsageCurrentGet,
8
9
  currentV1TokensUsageTotalGet,
@@ -189,6 +190,10 @@ class AIClient extends ReactQueryNetworkClient {
189
190
  * Runs a step of type "llm" of a quick command.
190
191
  */
191
192
  llmStepOfQuickCommand = this.mutation(removeAuthorizationParam(quickCommandsRunV2V2QuickCommandsSlugStepsStepSlugRunPost))
193
+ /**
194
+ * Calculates QC router next step.
195
+ */
196
+ calculateNextStep = this.mutation(removeAuthorizationParam(calculateNextStepV1QuickCommandsSlugStepsStepSlugCalculateNextStepPost))
192
197
  /**
193
198
  * Runs a stream of a step of type "llm" of a quick command.
194
199
  */