@forge/cli-shared 7.1.0-next.4 → 7.1.0-next.5

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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 7.1.0-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 75b7732: Remove feature flag for single wrapper packaging
8
+ - 64befbb: Refactor runtime version manifest check into a linter
9
+ - Updated dependencies [64befbb]
10
+ - @forge/manifest@9.5.0-next.4
11
+
3
12
  ## 7.1.0-next.4
4
13
 
5
14
  ### Patch Changes
@@ -88160,6 +88160,7 @@ export declare type Query = {
88160
88160
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
88161
88161
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
88162
88162
  agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
88163
+ agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
88163
88164
  agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
88164
88165
  agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenarioListResult>;
88165
88166
  agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
@@ -88913,6 +88914,10 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
88913
88914
  first?: InputMaybe<Scalars['Int']['input']>;
88914
88915
  input?: InputMaybe<AgentStudioAgentQueryInput>;
88915
88916
  };
88917
+ export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
88918
+ cloudId: Scalars['String']['input'];
88919
+ externalReference: Scalars['String']['input'];
88920
+ };
88916
88921
  export declare type QueryAgentStudio_ScenarioByIdArgs = {
88917
88922
  id: Scalars['ID']['input'];
88918
88923
  };