@forge/cli-shared
8.25.0-next.48.25.0-next.5
out/graphql/graphql-types.d.ts~
out/graphql/graphql-types.d.tsModified+86
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -7647,8 +7647,12 @@
__typename?: 'AgentWorkspaceCancelRoutingTableGenerationPayload';
generationId: Scalars['ID']['output'];
status: AgentWorkspaceRoutingTableGenerationStatus;
};
+export declare type AgentWorkspaceCancelSmartRoutingDryRunInput = {
+ cloudId: Scalars['ID']['input'];
+ projectKey: Scalars['String']['input'];
+};
export declare type AgentWorkspaceCapacityConnection = {
__typename?: 'AgentWorkspaceCapacityConnection';
edges: Array<AgentWorkspaceAgentCapacityEdge>;
pageInfo: AgentWorkspaceCapacityPageInfo;
@@ -7697,8 +7701,16 @@
totalCapacity: Scalars['Int']['output'];
totalUnassignedWorkItems: Scalars['Int']['output'];
totalUtilizationPercent: Scalars['Float']['output'];
};
+export declare type AgentWorkspaceConfusionMatrix = {
+ __typename?: 'AgentWorkspaceConfusionMatrix';
+ falseNegatives: Scalars['Int']['output'];
+ falsePositives: Scalars['Int']['output'];
+ total: Scalars['Int']['output'];
+ trueNegatives: Scalars['Int']['output'];
+ truePositives: Scalars['Int']['output'];
+};
export declare type AgentWorkspaceCoverShiftEditBoundsInput = {
agentId: Scalars['ID']['input'];
coveringShiftId: Scalars['ID']['input'];
occurrenceStartTime: Scalars['DateTime']['input'];
@@ -8576,12 +8588,59 @@
export declare type AgentWorkspaceSmartRoutingConfig = {
__typename?: 'AgentWorkspaceSmartRoutingConfig';
enabled: Scalars['Boolean']['output'];
serviceFieldId?: Maybe<Scalars['String']['output']>;
+ serviceFieldName?: Maybe<Scalars['String']['output']>;
serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
setupVersion: Scalars['Int']['output'];
warning?: Maybe<Scalars['String']['output']>;
};
+export declare type AgentWorkspaceSmartRoutingDryRun = {
+ __typename?: 'AgentWorkspaceSmartRoutingDryRun';
+ actualSampleSize: Scalars['Int']['output'];
+ endedAt?: Maybe<Scalars['DateTime']['output']>;
+ errorCode?: Maybe<Scalars['String']['output']>;
+ errorCount: Scalars['Int']['output'];
+ processedCount: Scalars['Int']['output'];
+ progressPct: Scalars['Int']['output'];
+ requestedSampleSize: Scalars['Int']['output'];
+ result?: Maybe<AgentWorkspaceSmartRoutingDryRunResult>;
+ runId: Scalars['ID']['output'];
+ startedAt: Scalars['DateTime']['output'];
+ status: AgentWorkspaceSmartRoutingDryRunStatus;
+ totalCount: Scalars['Int']['output'];
+};
+export declare type AgentWorkspaceSmartRoutingDryRunResult = {
+ __typename?: 'AgentWorkspaceSmartRoutingDryRunResult';
+ accuracy?: Maybe<Scalars['Float']['output']>;
+ configCoverage?: Maybe<Scalars['Float']['output']>;
+ excludedCount: Scalars['Int']['output'];
+ matrix: AgentWorkspaceConfusionMatrix;
+ perService: Array<AgentWorkspaceSmartRoutingPerServiceStat>;
+ precision?: Maybe<Scalars['Float']['output']>;
+ recall?: Maybe<Scalars['Float']['output']>;
+ sampleSize: Scalars['Int']['output'];
+ volumeCoverage?: Maybe<Scalars['Float']['output']>;
+};
+export declare enum AgentWorkspaceSmartRoutingDryRunStatus {
+ Cancelled = "CANCELLED",
+ Cancelling = "CANCELLING",
+ Completed = "COMPLETED",
+ Failed = "FAILED",
+ Pending = "PENDING",
+ Running = "RUNNING",
+ Timeout = "TIMEOUT"
+}
+export declare type AgentWorkspaceSmartRoutingPerServiceStat = {
+ __typename?: 'AgentWorkspaceSmartRoutingPerServiceStat';
+ covered: Scalars['Boolean']['output'];
+ falseNegatives: Scalars['Int']['output'];
+ falsePositives: Scalars['Int']['output'];
+ observed: Scalars['Int']['output'];
+ serviceId: Scalars['ID']['output'];
+ trueNegatives: Scalars['Int']['output'];
+ truePositives: Scalars['Int']['output'];
+};
export declare enum AgentWorkspaceSmartRoutingServiceFieldType {
AffectedServices = "AFFECTED_SERVICES",
Asset = "ASSET",
Select = "SELECT",
@@ -8626,15 +8685,26 @@
draftId?: Maybe<Scalars['ID']['output']>;
generationId: Scalars['ID']['output'];
status: AgentWorkspaceRoutingTableGenerationStatus;
};
+export declare type AgentWorkspaceStartSmartRoutingDryRunInput = {
+ cloudId: Scalars['ID']['input'];
+ projectKey: Scalars['String']['input'];
+ sampleSize?: InputMaybe<Scalars['Int']['input']>;
+};
+export declare type AgentWorkspaceStartSmartRoutingDryRunPayload = {
+ __typename?: 'AgentWorkspaceStartSmartRoutingDryRunPayload';
+ runId: Scalars['ID']['output'];
+ status: AgentWorkspaceSmartRoutingDryRunStatus;
+};
export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
cloudId: Scalars['ID']['input'];
draftId?: InputMaybe<Scalars['ID']['input']>;
expectedSetupVersion?: InputMaybe<Scalars['Int']['input']>;
fieldId: Scalars['String']['input'];
projectKey: Scalars['String']['input'];
selectedServiceIds?: InputMaybe<Array<Scalars['String']['input']>>;
+ serviceFieldName?: InputMaybe<Scalars['String']['input']>;
serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
};
export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
__typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
@@ -8781,8 +8851,9 @@
cloudId: Scalars['ID']['input'];
enabled: Scalars['Boolean']['input'];
projectKey: Scalars['String']['input'];
serviceFieldId?: InputMaybe<Scalars['String']['input']>;
+ serviceFieldName?: InputMaybe<Scalars['String']['input']>;
serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
};
export declare type AgentWorkspaceUpdateScheduleInput = {
agentIds: Array<Scalars['ID']['input']>;
@@ -17048,8 +17119,9 @@
relationshipTypes?: InputMaybe<Array<Scalars['String']['input']>>;
};
export declare type CcpEntitlementDisplayInfo = {
__typename?: 'CcpEntitlementDisplayInfo';
+ entitlementCustomName?: Maybe<Scalars['String']['output']>;
provisionedResource?: Maybe<CcpEntitlementProvisionedResource>;
};
export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
__typename?: 'CcpEntitlementExperienceCapabilities';
@@ -43264,8 +43336,9 @@
};
export declare type DevAiRovoDevCreatePullRequestInput = {
branchName?: InputMaybe<Scalars['String']['input']>;
codeChanges?: InputMaybe<Scalars['String']['input']>;
+ isDraft?: InputMaybe<Scalars['Boolean']['input']>;
sessionAri: Scalars['ID']['input'];
};
export declare type DevAiRovoDevCreatePullRequestPayload = Payload & {
__typename?: 'DevAiRovoDevCreatePullRequestPayload';
@@ -162304,8 +162377,9 @@
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
agentWorkspace_bulkUpsertDraftedRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesPayload>;
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
+ agentWorkspace_cancelSmartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
agentWorkspace_createDraftedRoutingTableEntriesV2?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
@@ -162327,8 +162401,9 @@
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
agentWorkspace_startGenerateRoutingTableV2?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
+ agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
agentWorkspace_unassignCoverShift?: Maybe<AgentWorkspaceUnassignCoverShiftPayload>;
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
@@ -164144,8 +164219,11 @@
};
export declare type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
input: AgentWorkspaceCancelRoutingTableGenerationInput;
};
+export declare type MutationAgentWorkspace_CancelSmartRoutingDryRunArgs = {
+ input: AgentWorkspaceCancelSmartRoutingDryRunInput;
+};
export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
input: AgentWorkspaceCreateAndLinkTeamsInput;
};
export declare type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesArgs = {
@@ -164215,8 +164293,11 @@
};
export declare type MutationAgentWorkspace_StartGenerateRoutingTableV2Args = {
input: AgentWorkspaceStartGenerateRoutingTableInputV2;
};
+export declare type MutationAgentWorkspace_StartSmartRoutingDryRunArgs = {
+ input: AgentWorkspaceStartSmartRoutingDryRunInput;
+};
export declare type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
input: AgentWorkspaceSubmitDraftedRoutingTableInput;
};
export declare type MutationAgentWorkspace_UnassignCoverShiftArgs = {
@@ -172522,8 +172603,9 @@
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceProjectSkillCategoryConnection>;
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
+ agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
@@ -176773,8 +176855,12 @@
};
export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
projectAri: Scalars['ID']['input'];
};
+export declare type QueryAgentWorkspace_SmartRoutingDryRunArgs = {
+ cloudId: Scalars['ID']['input'];
+ projectKey: Scalars['String']['input'];
+};
export declare type QueryAgentWorkspace_TeamCapacitiesArgs = {
input: AgentWorkspaceTeamCapacitiesInput;
};
export declare type QueryAgentWorkspace_TeamRebalancingRecommendationsArgs = {