Expose Session Coach agent summary
All checks were successful
Tests / Tests (pull_request) Successful in 14s
All checks were successful
Tests / Tests (pull_request) Successful in 14s
This commit is contained in:
@@ -3613,6 +3613,7 @@ export type SessionCoachDecisionGql = {
|
|||||||
practiceAttemptCount?: Maybe<Scalars["Int"]["output"]>;
|
practiceAttemptCount?: Maybe<Scalars["Int"]["output"]>;
|
||||||
practiceTarget?: Maybe<Scalars["String"]["output"]>;
|
practiceTarget?: Maybe<Scalars["String"]["output"]>;
|
||||||
selectedCandidateId?: Maybe<Scalars["ID"]["output"]>;
|
selectedCandidateId?: Maybe<Scalars["ID"]["output"]>;
|
||||||
|
sessionSummary?: Maybe<Scalars["String"]["output"]>;
|
||||||
suggestedAction?: Maybe<Scalars["String"]["output"]>;
|
suggestedAction?: Maybe<Scalars["String"]["output"]>;
|
||||||
title?: Maybe<Scalars["String"]["output"]>;
|
title?: Maybe<Scalars["String"]["output"]>;
|
||||||
};
|
};
|
||||||
@@ -6976,6 +6977,7 @@ export type GetSessionCoachQuery = {
|
|||||||
decision?: {
|
decision?: {
|
||||||
__typename?: "SessionCoachDecisionGQL";
|
__typename?: "SessionCoachDecisionGQL";
|
||||||
selectedCandidateId?: string | null;
|
selectedCandidateId?: string | null;
|
||||||
|
sessionSummary?: string | null;
|
||||||
title?: string | null;
|
title?: string | null;
|
||||||
body?: string | null;
|
body?: string | null;
|
||||||
suggestedAction?: string | null;
|
suggestedAction?: string | null;
|
||||||
@@ -7026,6 +7028,7 @@ export type RequestSessionCoachGenerationMutation = {
|
|||||||
decision?: {
|
decision?: {
|
||||||
__typename?: "SessionCoachDecisionGQL";
|
__typename?: "SessionCoachDecisionGQL";
|
||||||
selectedCandidateId?: string | null;
|
selectedCandidateId?: string | null;
|
||||||
|
sessionSummary?: string | null;
|
||||||
title?: string | null;
|
title?: string | null;
|
||||||
body?: string | null;
|
body?: string | null;
|
||||||
suggestedAction?: string | null;
|
suggestedAction?: string | null;
|
||||||
@@ -7096,6 +7099,7 @@ export type SessionCoachGenerationFieldsFragment = {
|
|||||||
decision?: {
|
decision?: {
|
||||||
__typename?: "SessionCoachDecisionGQL";
|
__typename?: "SessionCoachDecisionGQL";
|
||||||
selectedCandidateId?: string | null;
|
selectedCandidateId?: string | null;
|
||||||
|
sessionSummary?: string | null;
|
||||||
title?: string | null;
|
title?: string | null;
|
||||||
body?: string | null;
|
body?: string | null;
|
||||||
suggestedAction?: string | null;
|
suggestedAction?: string | null;
|
||||||
@@ -9608,6 +9612,7 @@ export const SessionCoachGenerationFieldsFragmentDoc = gql`
|
|||||||
completedAt
|
completedAt
|
||||||
decision {
|
decision {
|
||||||
selectedCandidateId
|
selectedCandidateId
|
||||||
|
sessionSummary
|
||||||
title
|
title
|
||||||
body
|
body
|
||||||
suggestedAction
|
suggestedAction
|
||||||
|
|||||||
@@ -69,6 +69,7 @@ fragment SessionCoachGenerationFields on SessionCoachGenerationGQL {
|
|||||||
completedAt
|
completedAt
|
||||||
decision {
|
decision {
|
||||||
selectedCandidateId
|
selectedCandidateId
|
||||||
|
sessionSummary
|
||||||
title
|
title
|
||||||
body
|
body
|
||||||
suggestedAction
|
suggestedAction
|
||||||
|
|||||||
@@ -1323,6 +1323,7 @@ enum SessionCoachCandidateKindEnum {
|
|||||||
|
|
||||||
type SessionCoachDecisionGQL {
|
type SessionCoachDecisionGQL {
|
||||||
selectedCandidateId: ID
|
selectedCandidateId: ID
|
||||||
|
sessionSummary: String
|
||||||
title: String
|
title: String
|
||||||
body: String
|
body: String
|
||||||
suggestedAction: String
|
suggestedAction: String
|
||||||
|
|||||||
Reference in New Issue
Block a user