@forge/cli-shared 6.10.1-next.0-experimental-5098be7 → 6.10.1-next.1-experimental-07de784
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,11 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 6.10.1-next.
|
|
3
|
+
## 6.10.1-next.1-experimental-07de784
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- Updated dependencies [8bd52d6]
|
|
7
8
|
- Updated dependencies [743bbdc]
|
|
8
|
-
- @forge/manifest@9.
|
|
9
|
+
- @forge/manifest@9.3.0-next.1-experimental-07de784
|
|
10
|
+
|
|
11
|
+
## 6.10.1-next.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [8bd52d6]
|
|
16
|
+
- @forge/manifest@9.3.0-next.1
|
|
9
17
|
|
|
10
18
|
## 6.10.1-next.0
|
|
11
19
|
|
|
@@ -804,11 +804,21 @@ export declare type AgentStudioAgent = {
|
|
|
804
804
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
805
805
|
name?: Maybe<Scalars['String']['output']>;
|
|
806
806
|
};
|
|
807
|
+
export declare type AgentStudioAgentEdge = {
|
|
808
|
+
__typename?: 'AgentStudioAgentEdge';
|
|
809
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
810
|
+
node?: Maybe<AgentStudioAssistant>;
|
|
811
|
+
};
|
|
807
812
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
|
|
808
813
|
export declare enum AgentStudioAgentType {
|
|
809
814
|
Assistant = "ASSISTANT",
|
|
810
815
|
ServiceAgent = "SERVICE_AGENT"
|
|
811
816
|
}
|
|
817
|
+
export declare type AgentStudioAgentsConnection = {
|
|
818
|
+
__typename?: 'AgentStudioAgentsConnection';
|
|
819
|
+
edges: Array<AgentStudioAgentEdge>;
|
|
820
|
+
pageInfo: PageInfo;
|
|
821
|
+
};
|
|
812
822
|
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
813
823
|
__typename?: 'AgentStudioAssistant';
|
|
814
824
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
@@ -1796,6 +1806,7 @@ export declare type AppLogsWithMetaData = {
|
|
|
1796
1806
|
moduleType?: Maybe<Scalars['String']['output']>;
|
|
1797
1807
|
other?: Maybe<Scalars['String']['output']>;
|
|
1798
1808
|
p?: Maybe<Scalars['String']['output']>;
|
|
1809
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
1799
1810
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
1800
1811
|
ts: Scalars['String']['output'];
|
|
1801
1812
|
};
|
|
@@ -75503,6 +75514,7 @@ export declare type LogDetails = {
|
|
|
75503
75514
|
export declare type LogQueryInput = {
|
|
75504
75515
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
75505
75516
|
appVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
75517
|
+
contexts?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
75506
75518
|
dates?: InputMaybe<DateSearchInput>;
|
|
75507
75519
|
editions?: InputMaybe<Array<InputMaybe<EditionValue>>>;
|
|
75508
75520
|
functionKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -85830,6 +85842,7 @@ export declare type Query = {
|
|
|
85830
85842
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
85831
85843
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
85832
85844
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
85845
|
+
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85833
85846
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
85834
85847
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
85835
85848
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -86577,6 +86590,11 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
86577
86590
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
86578
86591
|
id: Scalars['ID']['input'];
|
|
86579
86592
|
};
|
|
86593
|
+
export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
86594
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86595
|
+
cloudId: Scalars['String']['input'];
|
|
86596
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86597
|
+
};
|
|
86580
86598
|
export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
86581
86599
|
cloudId: Scalars['String']['input'];
|
|
86582
86600
|
input: AgentStudioSuggestConversationStartersInput;
|