@forge/cli-shared 8.25.0-next.5-experimental-44b7a12 → 9.0.0-next.7
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 +13 -18
- package/out/apps/template-module.d.ts +1 -2
- package/out/apps/template-module.d.ts.map +1 -1
- package/out/apps/template-module.js +0 -5
- package/out/graphql/graphql-types.d.ts +234 -176
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +76 -45
- package/out/ui/text.d.ts +6 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +18 -4
- package/package.json +13 -5
|
@@ -2846,6 +2846,7 @@ export declare type AvpSearchDashboardsInput = {
|
|
|
2846
2846
|
starredOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2847
2847
|
status?: InputMaybe<AvpDashboardStatus>;
|
|
2848
2848
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
2849
|
+
type?: InputMaybe<AvpDashboardType>;
|
|
2849
2850
|
};
|
|
2850
2851
|
export declare enum AvpSearchPermissionType {
|
|
2851
2852
|
Read = "READ",
|
|
@@ -9014,6 +9015,31 @@ export declare type AgentWorkspaceWorkloadJqlConfig = {
|
|
|
9014
9015
|
__typename?: 'AgentWorkspaceWorkloadJqlConfig';
|
|
9015
9016
|
jql: Scalars['String']['output'];
|
|
9016
9017
|
};
|
|
9018
|
+
export declare type AiCoreApiAgentEvaluationResponse = {
|
|
9019
|
+
__typename?: 'AiCoreApiAgentEvaluationResponse';
|
|
9020
|
+
createdAt: Scalars['Float']['output'];
|
|
9021
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
9022
|
+
evaluationType: AiCoreApiAgentEvaluationType;
|
|
9023
|
+
id: Scalars['ID']['output'];
|
|
9024
|
+
issueId: Scalars['ID']['output'];
|
|
9025
|
+
projectId: Scalars['ID']['output'];
|
|
9026
|
+
promptVersion?: Maybe<Scalars['String']['output']>;
|
|
9027
|
+
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
9028
|
+
result?: Maybe<AiCoreApiAgentEvaluationResult>;
|
|
9029
|
+
status: Scalars['String']['output'];
|
|
9030
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
9031
|
+
};
|
|
9032
|
+
export declare type AiCoreApiAgentEvaluationResponses = {
|
|
9033
|
+
__typename?: 'AiCoreApiAgentEvaluationResponses';
|
|
9034
|
+
items: Array<AiCoreApiAgentEvaluationResponse>;
|
|
9035
|
+
nextPageToken?: Maybe<Scalars['String']['output']>;
|
|
9036
|
+
};
|
|
9037
|
+
export declare type AiCoreApiAgentEvaluationResponsesResult = AiCoreApiAgentEvaluationResponses | QueryError;
|
|
9038
|
+
export declare type AiCoreApiAgentEvaluationResult = AiCoreApiDeflectionResult | AiCoreApiPlanGenerationResult;
|
|
9039
|
+
export declare enum AiCoreApiAgentEvaluationType {
|
|
9040
|
+
Deflection = "DEFLECTION",
|
|
9041
|
+
PlanGeneration = "PLAN_GENERATION"
|
|
9042
|
+
}
|
|
9017
9043
|
export declare type AiCoreApiCsvExportInput = {
|
|
9018
9044
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
9019
9045
|
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -9030,6 +9056,75 @@ export declare enum AiCoreApiCsvExportReportType {
|
|
|
9030
9056
|
SkillGap = "SKILL_GAP"
|
|
9031
9057
|
}
|
|
9032
9058
|
export declare type AiCoreApiCsvExportResult = AiCoreApiCsvExportJob | QueryError;
|
|
9059
|
+
export declare type AiCoreApiDeflectionResult = {
|
|
9060
|
+
__typename?: 'AiCoreApiDeflectionResult';
|
|
9061
|
+
actualTeamChanges?: Maybe<Array<Scalars['String']['output']>>;
|
|
9062
|
+
actualTeamsNotInSuggested?: Maybe<Array<Scalars['String']['output']>>;
|
|
9063
|
+
correctDeflectionSteps?: Maybe<Scalars['Int']['output']>;
|
|
9064
|
+
deflectionAccuracy?: Maybe<Scalars['Float']['output']>;
|
|
9065
|
+
deflectionMissed?: Maybe<Scalars['Boolean']['output']>;
|
|
9066
|
+
deflectionSteps?: Maybe<Array<AiCoreApiDeflectionStep>>;
|
|
9067
|
+
deflectionSuggested?: Maybe<Scalars['Boolean']['output']>;
|
|
9068
|
+
evaluationType: AiCoreApiAgentEvaluationType;
|
|
9069
|
+
filteredOutNonItTeams?: Maybe<Array<Scalars['String']['output']>>;
|
|
9070
|
+
finalTeam?: Maybe<Scalars['String']['output']>;
|
|
9071
|
+
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
9072
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
9073
|
+
suggestedTeam?: Maybe<Scalars['String']['output']>;
|
|
9074
|
+
suggestedTeamsNotInActual?: Maybe<Array<Scalars['String']['output']>>;
|
|
9075
|
+
supportTeam?: Maybe<Scalars['String']['output']>;
|
|
9076
|
+
totalDeflectionSteps?: Maybe<Scalars['Int']['output']>;
|
|
9077
|
+
};
|
|
9078
|
+
export declare type AiCoreApiDeflectionStep = {
|
|
9079
|
+
__typename?: 'AiCoreApiDeflectionStep';
|
|
9080
|
+
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
9081
|
+
matchedActualChange?: Maybe<Scalars['String']['output']>;
|
|
9082
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
9083
|
+
stepId?: Maybe<Scalars['Int']['output']>;
|
|
9084
|
+
stepTitle?: Maybe<Scalars['String']['output']>;
|
|
9085
|
+
targetTeam?: Maybe<Scalars['String']['output']>;
|
|
9086
|
+
};
|
|
9087
|
+
export declare type AiCoreApiPlanGenerationBranchAnalysis = {
|
|
9088
|
+
__typename?: 'AiCoreApiPlanGenerationBranchAnalysis';
|
|
9089
|
+
branchDecisions?: Maybe<Array<AiCoreApiPlanGenerationBranchDecision>>;
|
|
9090
|
+
eligibleStepIds?: Maybe<Array<Scalars['Int']['output']>>;
|
|
9091
|
+
executionPathReasoning?: Maybe<Scalars['String']['output']>;
|
|
9092
|
+
ineligibleStepIds?: Maybe<Array<Scalars['Int']['output']>>;
|
|
9093
|
+
};
|
|
9094
|
+
export declare type AiCoreApiPlanGenerationBranchDecision = {
|
|
9095
|
+
__typename?: 'AiCoreApiPlanGenerationBranchDecision';
|
|
9096
|
+
branchOptions?: Maybe<Array<Scalars['String']['output']>>;
|
|
9097
|
+
decisionStepId?: Maybe<Scalars['Int']['output']>;
|
|
9098
|
+
nextStepId?: Maybe<Scalars['Int']['output']>;
|
|
9099
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
9100
|
+
selectedBranch?: Maybe<Scalars['String']['output']>;
|
|
9101
|
+
};
|
|
9102
|
+
export declare type AiCoreApiPlanGenerationResult = {
|
|
9103
|
+
__typename?: 'AiCoreApiPlanGenerationResult';
|
|
9104
|
+
branchAnalysis?: Maybe<AiCoreApiPlanGenerationBranchAnalysis>;
|
|
9105
|
+
eligibleStepIds?: Maybe<Array<Scalars['Int']['output']>>;
|
|
9106
|
+
eligibleSteps?: Maybe<Scalars['Int']['output']>;
|
|
9107
|
+
evaluationType: AiCoreApiAgentEvaluationType;
|
|
9108
|
+
hasHumanActions?: Maybe<Scalars['Boolean']['output']>;
|
|
9109
|
+
humanActionAccuracy?: Maybe<Scalars['Float']['output']>;
|
|
9110
|
+
humanActionCorrectSteps?: Maybe<Scalars['Int']['output']>;
|
|
9111
|
+
humanActionOmittedStepIds?: Maybe<Array<Scalars['Int']['output']>>;
|
|
9112
|
+
humanActionReasoning?: Maybe<Scalars['String']['output']>;
|
|
9113
|
+
humanActionScoredSteps?: Maybe<Scalars['Int']['output']>;
|
|
9114
|
+
humanActions?: Maybe<Array<Scalars['String']['output']>>;
|
|
9115
|
+
parseErrorHa?: Maybe<Scalars['Boolean']['output']>;
|
|
9116
|
+
stepDetails?: Maybe<Array<AiCoreApiPlanGenerationStepDetail>>;
|
|
9117
|
+
totalSteps?: Maybe<Scalars['Int']['output']>;
|
|
9118
|
+
};
|
|
9119
|
+
export declare type AiCoreApiPlanGenerationStepDetail = {
|
|
9120
|
+
__typename?: 'AiCoreApiPlanGenerationStepDetail';
|
|
9121
|
+
confidence?: Maybe<Scalars['Float']['output']>;
|
|
9122
|
+
isCorrect?: Maybe<Scalars['Boolean']['output']>;
|
|
9123
|
+
matchedAction?: Maybe<Scalars['String']['output']>;
|
|
9124
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
9125
|
+
stepId?: Maybe<Scalars['Int']['output']>;
|
|
9126
|
+
stepTitle?: Maybe<Scalars['String']['output']>;
|
|
9127
|
+
};
|
|
9033
9128
|
export declare enum AiCoreApiQuestionType {
|
|
9034
9129
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
9035
9130
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -15049,6 +15144,11 @@ export declare type AssetsVerticalPinInsightPayload = Payload & {
|
|
|
15049
15144
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
15050
15145
|
success: Scalars['Boolean']['output'];
|
|
15051
15146
|
};
|
|
15147
|
+
export declare type AssetsVerticalPrincipalRoles = {
|
|
15148
|
+
__typename?: 'AssetsVerticalPrincipalRoles';
|
|
15149
|
+
principalId: Scalars['ID']['output'];
|
|
15150
|
+
roles: Array<AssetsVerticalRole>;
|
|
15151
|
+
};
|
|
15052
15152
|
export declare type AssetsVerticalProblemDetail = {
|
|
15053
15153
|
correctionGuidance?: Maybe<Scalars['String']['output']>;
|
|
15054
15154
|
detail: Scalars['String']['output'];
|
|
@@ -15124,6 +15224,22 @@ export declare enum AssetsVerticalRoleType {
|
|
|
15124
15224
|
HamAdmin = "HAM_ADMIN",
|
|
15125
15225
|
HamUser = "HAM_USER"
|
|
15126
15226
|
}
|
|
15227
|
+
export declare type AssetsVerticalRolesForPrincipalsResult = AssetsVerticalRolesForPrincipalsSuccess | QueryError;
|
|
15228
|
+
export declare type AssetsVerticalRolesForPrincipalsSuccess = {
|
|
15229
|
+
__typename?: 'AssetsVerticalRolesForPrincipalsSuccess';
|
|
15230
|
+
principalRoles: Array<AssetsVerticalPrincipalRoles>;
|
|
15231
|
+
};
|
|
15232
|
+
export declare enum AssetsVerticalRolesQueryErrorCode {
|
|
15233
|
+
NotFound = "NOT_FOUND",
|
|
15234
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
15235
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
15236
|
+
}
|
|
15237
|
+
export declare type AssetsVerticalRolesQueryErrorExtension = QueryErrorExtension & {
|
|
15238
|
+
__typename?: 'AssetsVerticalRolesQueryErrorExtension';
|
|
15239
|
+
code?: Maybe<AssetsVerticalRolesQueryErrorCode>;
|
|
15240
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
15241
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15242
|
+
};
|
|
15127
15243
|
export declare type AssetsVerticalRolesResult = AssetsVerticalRolesSuccess | QueryError;
|
|
15128
15244
|
export declare type AssetsVerticalRolesSuccess = {
|
|
15129
15245
|
__typename?: 'AssetsVerticalRolesSuccess';
|
|
@@ -42754,6 +42870,16 @@ export declare type DevAiAutodevNextTriggerWorkstreamScanPayload = Payload & {
|
|
|
42754
42870
|
skippedReason?: Maybe<Scalars['ID']['output']>;
|
|
42755
42871
|
success: Scalars['Boolean']['output'];
|
|
42756
42872
|
};
|
|
42873
|
+
export declare type DevAiAutodevNextUnassignWorkItemInput = {
|
|
42874
|
+
cloudId: Scalars['ID']['input'];
|
|
42875
|
+
workItemId: Scalars['ID']['input'];
|
|
42876
|
+
};
|
|
42877
|
+
export declare type DevAiAutodevNextUnassignWorkItemPayload = Payload & {
|
|
42878
|
+
__typename?: 'DevAiAutodevNextUnassignWorkItemPayload';
|
|
42879
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42880
|
+
success: Scalars['Boolean']['output'];
|
|
42881
|
+
workItem?: Maybe<DevAiAutodevNextWorkItem>;
|
|
42882
|
+
};
|
|
42757
42883
|
export declare type DevAiAutodevNextUpdateWorkstreamInput = {
|
|
42758
42884
|
cloudId: Scalars['ID']['input'];
|
|
42759
42885
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -47828,6 +47954,7 @@ export declare type ExternalDocument = Node & {
|
|
|
47828
47954
|
reactions?: Maybe<Array<Maybe<ExternalReaction>>>;
|
|
47829
47955
|
review?: Maybe<ExternalReview>;
|
|
47830
47956
|
score?: Maybe<Scalars['Int']['output']>;
|
|
47957
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
47831
47958
|
subType?: Maybe<Scalars['String']['output']>;
|
|
47832
47959
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
47833
47960
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -51528,11 +51655,20 @@ export declare type GraphInferenceGetRelatedReposV3Response = {
|
|
|
51528
51655
|
export declare type GraphInferenceJiraEntityContextCandidate = {
|
|
51529
51656
|
__typename?: 'GraphInferenceJiraEntityContextCandidate';
|
|
51530
51657
|
ari: Scalars['String']['output'];
|
|
51658
|
+
curatedBy?: Maybe<GraphInferenceJiraEntityContextCuratedBy>;
|
|
51531
51659
|
entity?: Maybe<GraphInferenceJiraEntityContextEntityUnion>;
|
|
51532
51660
|
evidence?: Maybe<Array<GraphInferenceJiraEntityContextEvidence>>;
|
|
51533
51661
|
nodeType: Scalars['String']['output'];
|
|
51534
51662
|
reasonCodes: Array<Scalars['String']['output']>;
|
|
51535
51663
|
score: Scalars['Float']['output'];
|
|
51664
|
+
scoreMl?: Maybe<Scalars['Float']['output']>;
|
|
51665
|
+
};
|
|
51666
|
+
export declare type GraphInferenceJiraEntityContextCuratedBy = {
|
|
51667
|
+
__typename?: 'GraphInferenceJiraEntityContextCuratedBy';
|
|
51668
|
+
actor?: Maybe<User>;
|
|
51669
|
+
actorAri?: Maybe<Scalars['String']['output']>;
|
|
51670
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
51671
|
+
linkSource?: Maybe<Scalars['String']['output']>;
|
|
51536
51672
|
};
|
|
51537
51673
|
export declare type GraphInferenceJiraEntityContextEntityUnion = ConfluencePage | ConfluenceWhiteboard | DevOpsOperationsIncidentDetails | DevOpsPullRequestDetails | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalVulnerability | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraServiceManagementComment | JiraWebRemoteIssueLink | LoomVideo | TownsquareGoal | TownsquareProject;
|
|
51538
51674
|
export declare type GraphInferenceJiraEntityContextEvidence = {
|
|
@@ -59227,6 +59363,7 @@ export declare type GraphStoreGetDynamicNodeTypesArgs = {
|
|
|
59227
59363
|
export declare type GraphStoreGetDynamicRelationshipTypesArgs = {
|
|
59228
59364
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59229
59365
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59366
|
+
typeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
59230
59367
|
workspaceAri: Scalars['ID']['input'];
|
|
59231
59368
|
};
|
|
59232
59369
|
export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
@@ -144231,12 +144368,6 @@ export declare type JpdViewsServiceCreateGlobalViewInput = {
|
|
|
144231
144368
|
name: Scalars['String']['input'];
|
|
144232
144369
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
144233
144370
|
};
|
|
144234
|
-
export declare type JpdViewsServiceCreateGlobalViewPayload = Payload & {
|
|
144235
|
-
__typename?: 'JpdViewsServiceCreateGlobalViewPayload';
|
|
144236
|
-
errors?: Maybe<Array<MutationError>>;
|
|
144237
|
-
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
144238
|
-
success: Scalars['Boolean']['output'];
|
|
144239
|
-
};
|
|
144240
144371
|
export declare type JpdViewsServiceCreateGlobalViewPayload2 = Payload & {
|
|
144241
144372
|
__typename?: 'JpdViewsServiceCreateGlobalViewPayload2';
|
|
144242
144373
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -144313,70 +144444,6 @@ export declare type JpdViewsServiceFilterValueInput2 = {
|
|
|
144313
144444
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
144314
144445
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
144315
144446
|
};
|
|
144316
|
-
export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node & {
|
|
144317
|
-
__typename?: 'JpdViewsServiceGlobalView';
|
|
144318
|
-
assocToNewSpaces?: Maybe<Scalars['Boolean']['output']>;
|
|
144319
|
-
associatedSpacesCount?: Maybe<Scalars['Int']['output']>;
|
|
144320
|
-
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
144321
|
-
colorBy?: Maybe<JpdViewsServiceField>;
|
|
144322
|
-
colorStyle?: Maybe<Scalars['String']['output']>;
|
|
144323
|
-
colorStyleNew?: Maybe<JpdViewsServiceColorStyle>;
|
|
144324
|
-
columnSize?: Maybe<Scalars['String']['output']>;
|
|
144325
|
-
columnSizeNew: JpdViewsServiceColumnSize;
|
|
144326
|
-
connectionsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
144327
|
-
connectionsFilterNew: Array<JpdViewsServiceFilter>;
|
|
144328
|
-
connectionsLayoutType?: Maybe<Scalars['String']['output']>;
|
|
144329
|
-
connectionsLayoutTypeNew: JpdViewsServiceConnectionsLayout;
|
|
144330
|
-
createdAt: Scalars['String']['output'];
|
|
144331
|
-
createdDate?: Maybe<Scalars['String']['output']>;
|
|
144332
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
144333
|
-
descriptionNew?: Maybe<Scalars['JSON']['output']>;
|
|
144334
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
144335
|
-
fieldRollups?: Maybe<Array<Maybe<JpdViewsServiceFieldRollup>>>;
|
|
144336
|
-
fieldRollupsNew: Array<JpdViewsServiceFieldRollup>;
|
|
144337
|
-
fields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
144338
|
-
fieldsNew: Array<JpdViewsServiceField>;
|
|
144339
|
-
filter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
144340
|
-
filterNew: Array<JpdViewsServiceFilter>;
|
|
144341
|
-
groupBy?: Maybe<JpdViewsServiceField>;
|
|
144342
|
-
groupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
144343
|
-
groupValuesNew: Array<JpdViewsServiceNestedId>;
|
|
144344
|
-
groupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
144345
|
-
groupsFilterNew: Array<JpdViewsServiceFilter>;
|
|
144346
|
-
hidden: Array<JpdViewsServiceField>;
|
|
144347
|
-
hiddenFields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
144348
|
-
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
144349
|
-
hideEmptyColumnsNew: Scalars['Boolean']['output'];
|
|
144350
|
-
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
144351
|
-
id: Scalars['ID']['output'];
|
|
144352
|
-
layoutType?: Maybe<Scalars['String']['output']>;
|
|
144353
|
-
layoutTypeNew?: Maybe<JpdViewsServiceViewLayoutType>;
|
|
144354
|
-
matrixConfig?: Maybe<JpdViewsServiceMatrixConfig>;
|
|
144355
|
-
name: Scalars['String']['output'];
|
|
144356
|
-
numberColumnDisplay?: Maybe<Scalars['String']['output']>;
|
|
144357
|
-
rank?: Maybe<Scalars['Int']['output']>;
|
|
144358
|
-
showCardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
144359
|
-
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
144360
|
-
showConnectionsMatchingColumnNew: Scalars['Boolean']['output'];
|
|
144361
|
-
showConnectionsMatchingGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
144362
|
-
showConnectionsMatchingGroupNew: Scalars['Boolean']['output'];
|
|
144363
|
-
sort?: Maybe<JpdViewsServiceSort>;
|
|
144364
|
-
sortMode?: Maybe<Scalars['String']['output']>;
|
|
144365
|
-
sortModeNew: JpdViewsServiceSortMode;
|
|
144366
|
-
sortNew: Array<JpdViewsServiceSort>;
|
|
144367
|
-
tableColumnSizes?: Maybe<Array<Maybe<JpdViewsServiceTableColumnSize>>>;
|
|
144368
|
-
timelineConfig?: Maybe<JpdViewsServiceTimelineConfig>;
|
|
144369
|
-
updatedAt: Scalars['String']['output'];
|
|
144370
|
-
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
144371
|
-
uuid: Scalars['String']['output'];
|
|
144372
|
-
verticalGroupBy?: Maybe<JpdViewsServiceField>;
|
|
144373
|
-
verticalGroupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
144374
|
-
verticalGroupValuesNew: Array<JpdViewsServiceNestedId>;
|
|
144375
|
-
verticalGroupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
144376
|
-
verticalGroupsFilterNew: Array<JpdViewsServiceFilter>;
|
|
144377
|
-
viewId: Scalars['String']['output'];
|
|
144378
|
-
visualizationType: JpdViewsServiceVisualizationType;
|
|
144379
|
-
};
|
|
144380
144447
|
export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node & {
|
|
144381
144448
|
__typename?: 'JpdViewsServiceGlobalView2';
|
|
144382
144449
|
assocToNewSpaces?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -144426,11 +144493,6 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
|
|
|
144426
144493
|
export declare enum JpdViewsServiceGlobalViewAssociationContainerType {
|
|
144427
144494
|
Project = "PROJECT"
|
|
144428
144495
|
}
|
|
144429
|
-
export declare type JpdViewsServiceGlobalViewConnection = {
|
|
144430
|
-
__typename?: 'JpdViewsServiceGlobalViewConnection';
|
|
144431
|
-
edges?: Maybe<Array<JpdViewsServiceGlobalViewEdge>>;
|
|
144432
|
-
pageInfo: PageInfo;
|
|
144433
|
-
};
|
|
144434
144496
|
export declare type JpdViewsServiceGlobalViewConnection2 = {
|
|
144435
144497
|
__typename?: 'JpdViewsServiceGlobalViewConnection2';
|
|
144436
144498
|
associatedGlobalViewsCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -144439,11 +144501,6 @@ export declare type JpdViewsServiceGlobalViewConnection2 = {
|
|
|
144439
144501
|
globalViewsWithoutDraftCount?: Maybe<Scalars['Int']['output']>;
|
|
144440
144502
|
pageInfo: PageInfo;
|
|
144441
144503
|
};
|
|
144442
|
-
export declare type JpdViewsServiceGlobalViewEdge = {
|
|
144443
|
-
__typename?: 'JpdViewsServiceGlobalViewEdge';
|
|
144444
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
144445
|
-
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
144446
|
-
};
|
|
144447
144504
|
export declare type JpdViewsServiceGlobalViewEdge2 = {
|
|
144448
144505
|
__typename?: 'JpdViewsServiceGlobalViewEdge2';
|
|
144449
144506
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -144511,12 +144568,6 @@ export declare type JpdViewsServiceOptionInput = {
|
|
|
144511
144568
|
export declare type JpdViewsServicePublishGlobalViewInput = {
|
|
144512
144569
|
id: Scalars['ID']['input'];
|
|
144513
144570
|
};
|
|
144514
|
-
export declare type JpdViewsServicePublishGlobalViewPayload = Payload & {
|
|
144515
|
-
__typename?: 'JpdViewsServicePublishGlobalViewPayload';
|
|
144516
|
-
errors?: Maybe<Array<MutationError>>;
|
|
144517
|
-
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
144518
|
-
success: Scalars['Boolean']['output'];
|
|
144519
|
-
};
|
|
144520
144571
|
export declare type JpdViewsServicePublishGlobalViewPayload2 = Payload & {
|
|
144521
144572
|
__typename?: 'JpdViewsServicePublishGlobalViewPayload2';
|
|
144522
144573
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -144559,18 +144610,6 @@ export declare type JpdViewsServiceTableColumnSizeInput = {
|
|
|
144559
144610
|
field: Scalars['String']['input'];
|
|
144560
144611
|
size: Scalars['Int']['input'];
|
|
144561
144612
|
};
|
|
144562
|
-
export declare type JpdViewsServiceTimelineConfig = {
|
|
144563
|
-
__typename?: 'JpdViewsServiceTimelineConfig';
|
|
144564
|
-
columnWidth?: Maybe<Scalars['Int']['output']>;
|
|
144565
|
-
dueDateField: JpdViewsServiceField;
|
|
144566
|
-
endTimestamp: Scalars['String']['output'];
|
|
144567
|
-
mode: Scalars['String']['output'];
|
|
144568
|
-
modeNew: JpdViewsServiceTimelineMode;
|
|
144569
|
-
startDateField: JpdViewsServiceField;
|
|
144570
|
-
startTimestamp: Scalars['String']['output'];
|
|
144571
|
-
summaryCardField: JpdViewsServiceField;
|
|
144572
|
-
todayMarker?: Maybe<JpdViewsServiceTodayMarker>;
|
|
144573
|
-
};
|
|
144574
144613
|
export declare type JpdViewsServiceTimelineConfig2 = {
|
|
144575
144614
|
__typename?: 'JpdViewsServiceTimelineConfig2';
|
|
144576
144615
|
dueDateField?: Maybe<JpdViewsServiceField>;
|
|
@@ -144630,43 +144669,6 @@ export declare type JpdViewsServiceUnassociateGlobalViewPayload = Payload & {
|
|
|
144630
144669
|
results?: Maybe<Array<JpdViewsServiceUnassociateGlobalViewContainerResult>>;
|
|
144631
144670
|
success: Scalars['Boolean']['output'];
|
|
144632
144671
|
};
|
|
144633
|
-
export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
144634
|
-
assocToNewSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144635
|
-
boldColors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144636
|
-
colorBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
144637
|
-
colorStyle?: InputMaybe<Scalars['String']['input']>;
|
|
144638
|
-
columnSize?: InputMaybe<Scalars['String']['input']>;
|
|
144639
|
-
connectionsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
144640
|
-
connectionsLayoutType?: InputMaybe<Scalars['String']['input']>;
|
|
144641
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
144642
|
-
descriptionNew?: InputMaybe<Scalars['JSON']['input']>;
|
|
144643
|
-
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
144644
|
-
fieldRollups?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldRollupInput>>>;
|
|
144645
|
-
fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
144646
|
-
filter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
144647
|
-
groupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
144648
|
-
groupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
144649
|
-
groupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
144650
|
-
hiddenFields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
144651
|
-
hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144652
|
-
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144653
|
-
id: Scalars['ID']['input'];
|
|
144654
|
-
layoutType?: InputMaybe<Scalars['String']['input']>;
|
|
144655
|
-
matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
|
|
144656
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
144657
|
-
numberColumnDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
144658
|
-
showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144659
|
-
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144660
|
-
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144661
|
-
sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
|
|
144662
|
-
sortMode?: InputMaybe<Scalars['String']['input']>;
|
|
144663
|
-
tableColumnSizes?: InputMaybe<Array<InputMaybe<JpdViewsServiceTableColumnSizeInput>>>;
|
|
144664
|
-
timelineConfig?: InputMaybe<JpdViewsServiceTimelineConfigInput>;
|
|
144665
|
-
verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
144666
|
-
verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
144667
|
-
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
144668
|
-
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
144669
|
-
};
|
|
144670
144672
|
export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
|
|
144671
144673
|
assocToNewSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144672
144674
|
boldColors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -144706,12 +144708,6 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
|
|
|
144706
144708
|
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
144707
144709
|
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
144708
144710
|
};
|
|
144709
|
-
export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
144710
|
-
__typename?: 'JpdViewsServiceUpdateGlobalViewPayload';
|
|
144711
|
-
errors?: Maybe<Array<MutationError>>;
|
|
144712
|
-
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
144713
|
-
success: Scalars['Boolean']['output'];
|
|
144714
|
-
};
|
|
144715
144711
|
export declare type JpdViewsServiceUpdateGlobalViewPayload2 = Payload & {
|
|
144716
144712
|
__typename?: 'JpdViewsServiceUpdateGlobalViewPayload2';
|
|
144717
144713
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -145195,11 +145191,22 @@ export declare type JsmChannelsRovoServiceSkillsQueryPayload = {
|
|
|
145195
145191
|
export declare type JsmChannelsRovoServiceSkillsResult = JsmChannelsRovoServiceSkillsQueryPayload | QueryError;
|
|
145196
145192
|
export declare type JsmChannelsRovoServiceTool = {
|
|
145197
145193
|
__typename?: 'JsmChannelsRovoServiceTool';
|
|
145194
|
+
definitionId?: Maybe<Scalars['String']['output']>;
|
|
145195
|
+
definitionSource?: Maybe<JsmChannelsRovoServiceToolDefinitionSource>;
|
|
145198
145196
|
displayName: Scalars['String']['output'];
|
|
145199
145197
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
145200
145198
|
id: Scalars['ID']['output'];
|
|
145201
145199
|
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
145202
145200
|
};
|
|
145201
|
+
export declare enum JsmChannelsRovoServiceToolDefinitionSource {
|
|
145202
|
+
ConvoAi = "CONVO_AI",
|
|
145203
|
+
IntegrationsService = "INTEGRATIONS_SERVICE",
|
|
145204
|
+
Unknown = "UNKNOWN"
|
|
145205
|
+
}
|
|
145206
|
+
export declare type JsmChannelsRovoServiceToolSelectionInput = {
|
|
145207
|
+
definitionSource: JsmChannelsRovoServiceToolDefinitionSource;
|
|
145208
|
+
toolId: Scalars['ID']['input'];
|
|
145209
|
+
};
|
|
145203
145210
|
export declare type JsmChannelsRovoServiceToolsConfiguration = {
|
|
145204
145211
|
__typename?: 'JsmChannelsRovoServiceToolsConfiguration';
|
|
145205
145212
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -145326,6 +145333,10 @@ export declare type JsmChannelsUpdateRovoServiceSkillsPayload = Payload & {
|
|
|
145326
145333
|
errors?: Maybe<Array<MutationError>>;
|
|
145327
145334
|
success: Scalars['Boolean']['output'];
|
|
145328
145335
|
};
|
|
145336
|
+
export declare type JsmChannelsUpdateRovoServiceToolsDefinitionsInput = {
|
|
145337
|
+
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
145338
|
+
enabledTools: Array<JsmChannelsRovoServiceToolSelectionInput>;
|
|
145339
|
+
};
|
|
145329
145340
|
export declare type JsmChannelsUpdateRovoServiceToolsInput = {
|
|
145330
145341
|
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
145331
145342
|
enabledToolIds: Array<Scalars['ID']['input']>;
|
|
@@ -145919,6 +145930,7 @@ export declare type JsmConversation = {
|
|
|
145919
145930
|
helpseeker?: Maybe<Scalars['ID']['output']>;
|
|
145920
145931
|
id: Scalars['ID']['output'];
|
|
145921
145932
|
issueId?: Maybe<Scalars['ID']['output']>;
|
|
145933
|
+
lastMessageAt?: Maybe<Scalars['DateTime']['output']>;
|
|
145922
145934
|
summary?: Maybe<Scalars['String']['output']>;
|
|
145923
145935
|
};
|
|
145924
145936
|
export declare enum JsmConversationActivationState {
|
|
@@ -145964,6 +145976,17 @@ export declare type JsmConversationConnection = {
|
|
|
145964
145976
|
nodes?: Maybe<Array<Maybe<JsmConversation>>>;
|
|
145965
145977
|
pageInfo: PageInfo;
|
|
145966
145978
|
};
|
|
145979
|
+
export declare type JsmConversationCreateInviteInput = {
|
|
145980
|
+
conversationAri: Scalars['ID']['input'];
|
|
145981
|
+
recipientAccountAri: Scalars['ID']['input'];
|
|
145982
|
+
type: JsmConversationInviteType;
|
|
145983
|
+
};
|
|
145984
|
+
export declare type JsmConversationCreateInvitePayload = Payload & {
|
|
145985
|
+
__typename?: 'JsmConversationCreateInvitePayload';
|
|
145986
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145987
|
+
inviteId?: Maybe<Scalars['ID']['output']>;
|
|
145988
|
+
success: Scalars['Boolean']['output'];
|
|
145989
|
+
};
|
|
145967
145990
|
export declare type JsmConversationEdge = {
|
|
145968
145991
|
__typename?: 'JsmConversationEdge';
|
|
145969
145992
|
cursor: Scalars['String']['output'];
|
|
@@ -145975,6 +145998,10 @@ export declare type JsmConversationHelpseekerSettings = {
|
|
|
145975
145998
|
availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
145976
145999
|
};
|
|
145977
146000
|
export declare type JsmConversationHelpseekerSettingsResult = JsmConversationHelpseekerSettings | QueryError;
|
|
146001
|
+
export declare enum JsmConversationInviteType {
|
|
146002
|
+
Collaborate = "COLLABORATE",
|
|
146003
|
+
Transfer = "TRANSFER"
|
|
146004
|
+
}
|
|
145978
146005
|
export declare enum JsmConversationLiveChatAvailabilityCriteria {
|
|
145979
146006
|
AlwaysAvailable = "ALWAYS_AVAILABLE",
|
|
145980
146007
|
Status = "STATUS"
|
|
@@ -146725,6 +146752,7 @@ export declare type KitsuneIdeaNode = {
|
|
|
146725
146752
|
};
|
|
146726
146753
|
export declare type KitsuneInsight = Node & {
|
|
146727
146754
|
__typename?: 'KitsuneInsight';
|
|
146755
|
+
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
146728
146756
|
content: Scalars['KitsuneADF']['output'];
|
|
146729
146757
|
createdAt: Scalars['DateTime']['output'];
|
|
146730
146758
|
creator?: Maybe<User>;
|
|
@@ -146891,6 +146919,7 @@ export declare type KitsuneSectionViewsArgs = {
|
|
|
146891
146919
|
};
|
|
146892
146920
|
export declare type KitsuneSnippet = Node & {
|
|
146893
146921
|
__typename?: 'KitsuneSnippet';
|
|
146922
|
+
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
146894
146923
|
content: Array<Scalars['String']['output']>;
|
|
146895
146924
|
createdAt: Scalars['DateTime']['output'];
|
|
146896
146925
|
creator?: Maybe<User>;
|
|
@@ -147260,6 +147289,7 @@ export declare type KnowledgeBaseAgentArticleSearchInput = {
|
|
|
147260
147289
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
147261
147290
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
147262
147291
|
projectIdentifier: Scalars['String']['input'];
|
|
147292
|
+
searchExperience?: InputMaybe<Scalars['String']['input']>;
|
|
147263
147293
|
searchFilters?: InputMaybe<KnowledgeBaseSearchFiltersInput>;
|
|
147264
147294
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
147265
147295
|
shouldFetchCategories?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -163120,6 +163150,7 @@ export declare type Mutation = {
|
|
|
163120
163150
|
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
163121
163151
|
devai_autodevNextSendWorkstreamNudges?: Maybe<DevAiAutodevNextSendWorkstreamNudgesPayload>;
|
|
163122
163152
|
devai_autodevNextTriggerWorkstreamScan?: Maybe<DevAiAutodevNextTriggerWorkstreamScanPayload>;
|
|
163153
|
+
devai_autodevNextUnassignWorkItem?: Maybe<DevAiAutodevNextUnassignWorkItemPayload>;
|
|
163123
163154
|
devai_autodevNextUpdateWorkstream?: Maybe<DevAiAutodevNextUpdateWorkstreamPayload>;
|
|
163124
163155
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
163125
163156
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
@@ -163566,18 +163597,14 @@ export declare type Mutation = {
|
|
|
163566
163597
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
163567
163598
|
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
163568
163599
|
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
163569
|
-
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
163570
163600
|
jpdViewsService_createGlobalViewV2?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
163571
163601
|
jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
|
|
163572
163602
|
jpdViewsService_discardGlobalViewDraft?: Maybe<JpdViewsServiceDiscardGlobalViewDraftPayload>;
|
|
163573
163603
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
163574
|
-
jpdViewsService_publishGlobalView?: Maybe<JpdViewsServicePublishGlobalViewPayload>;
|
|
163575
163604
|
jpdViewsService_publishGlobalViewV2?: Maybe<JpdViewsServicePublishGlobalViewPayload2>;
|
|
163576
163605
|
jpdViewsService_rerankGlobalView?: Maybe<JpdViewsServiceRerankGlobalViewPayload>;
|
|
163577
163606
|
jpdViewsService_setAssocToNewSpaces?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
163578
163607
|
jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
|
|
163579
|
-
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
163580
|
-
jpdViewsService_updateGlobalViewV2?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
163581
163608
|
jpdViewsService_updateGlobalViewV3?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
163582
163609
|
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
163583
163610
|
jsmChannels_connectRovoServiceSkill?: Maybe<JsmChannelsConnectRovoServiceSkillPayload>;
|
|
@@ -163588,10 +163615,12 @@ export declare type Mutation = {
|
|
|
163588
163615
|
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
163589
163616
|
jsmChannels_updateRovoServiceSkills?: Maybe<JsmChannelsUpdateRovoServiceSkillsPayload>;
|
|
163590
163617
|
jsmChannels_updateRovoServiceTools?: Maybe<JsmChannelsUpdateRovoServiceToolsPayload>;
|
|
163618
|
+
jsmChannels_updateRovoServiceToolsDefinitions?: Maybe<JsmChannelsUpdateRovoServiceToolsPayload>;
|
|
163591
163619
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
163592
163620
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
163593
163621
|
jsmConversation_claimConversation?: Maybe<JsmConversationClaimConversationPayload>;
|
|
163594
163622
|
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
163623
|
+
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
163595
163624
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
163596
163625
|
jsw?: Maybe<JswMutation>;
|
|
163597
163626
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
@@ -166533,6 +166562,9 @@ export declare type MutationDevai_AutodevNextSendWorkstreamNudgesArgs = {
|
|
|
166533
166562
|
export declare type MutationDevai_AutodevNextTriggerWorkstreamScanArgs = {
|
|
166534
166563
|
input: DevAiAutodevNextTriggerWorkstreamScanInput;
|
|
166535
166564
|
};
|
|
166565
|
+
export declare type MutationDevai_AutodevNextUnassignWorkItemArgs = {
|
|
166566
|
+
input: DevAiAutodevNextUnassignWorkItemInput;
|
|
166567
|
+
};
|
|
166536
166568
|
export declare type MutationDevai_AutodevNextUpdateWorkstreamArgs = {
|
|
166537
166569
|
input: DevAiAutodevNextUpdateWorkstreamInput;
|
|
166538
166570
|
};
|
|
@@ -167913,10 +167945,6 @@ export declare type MutationJpdViewsService_CloneGlobalViewArgs = {
|
|
|
167913
167945
|
export declare type MutationJpdViewsService_CloneViewIntoGlobalArgs = {
|
|
167914
167946
|
input: JpdViewsServiceCloneViewIntoGlobalInput;
|
|
167915
167947
|
};
|
|
167916
|
-
export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
|
|
167917
|
-
cloudId: Scalars['ID']['input'];
|
|
167918
|
-
input: JpdViewsServiceCreateGlobalViewInput;
|
|
167919
|
-
};
|
|
167920
167948
|
export declare type MutationJpdViewsService_CreateGlobalViewV2Args = {
|
|
167921
167949
|
cloudId: Scalars['ID']['input'];
|
|
167922
167950
|
input: JpdViewsServiceCreateGlobalViewInput;
|
|
@@ -167931,9 +167959,6 @@ export declare type MutationJpdViewsService_EchoArgs = {
|
|
|
167931
167959
|
cloudId: Scalars['ID']['input'];
|
|
167932
167960
|
message: Scalars['String']['input'];
|
|
167933
167961
|
};
|
|
167934
|
-
export declare type MutationJpdViewsService_PublishGlobalViewArgs = {
|
|
167935
|
-
input: JpdViewsServicePublishGlobalViewInput;
|
|
167936
|
-
};
|
|
167937
167962
|
export declare type MutationJpdViewsService_PublishGlobalViewV2Args = {
|
|
167938
167963
|
input: JpdViewsServicePublishGlobalViewInput;
|
|
167939
167964
|
};
|
|
@@ -167946,12 +167971,6 @@ export declare type MutationJpdViewsService_SetAssocToNewSpacesArgs = {
|
|
|
167946
167971
|
export declare type MutationJpdViewsService_UnassociateGlobalViewArgs = {
|
|
167947
167972
|
input: JpdViewsServiceUnassociateGlobalViewInput;
|
|
167948
167973
|
};
|
|
167949
|
-
export declare type MutationJpdViewsService_UpdateGlobalViewArgs = {
|
|
167950
|
-
input: JpdViewsServiceUpdateGlobalViewInput;
|
|
167951
|
-
};
|
|
167952
|
-
export declare type MutationJpdViewsService_UpdateGlobalViewV2Args = {
|
|
167953
|
-
input: JpdViewsServiceUpdateGlobalViewInput;
|
|
167954
|
-
};
|
|
167955
167974
|
export declare type MutationJpdViewsService_UpdateGlobalViewV3Args = {
|
|
167956
167975
|
input: JpdViewsServiceUpdateGlobalViewInput2;
|
|
167957
167976
|
};
|
|
@@ -167994,6 +168013,11 @@ export declare type MutationJsmChannels_UpdateRovoServiceToolsArgs = {
|
|
|
167994
168013
|
input: JsmChannelsUpdateRovoServiceToolsInput;
|
|
167995
168014
|
jiraProjectAri: Scalars['ID']['input'];
|
|
167996
168015
|
};
|
|
168016
|
+
export declare type MutationJsmChannels_UpdateRovoServiceToolsDefinitionsArgs = {
|
|
168017
|
+
experience: JsmChannelsExperience;
|
|
168018
|
+
input: JsmChannelsUpdateRovoServiceToolsDefinitionsInput;
|
|
168019
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
168020
|
+
};
|
|
167997
168021
|
export declare type MutationJsmChannels_UpdateTaskAgentConfigurationArgs = {
|
|
167998
168022
|
agentName: Scalars['String']['input'];
|
|
167999
168023
|
experience: JsmChannelsExperience;
|
|
@@ -168006,6 +168030,9 @@ export declare type MutationJsmConversation_ClaimConversationArgs = {
|
|
|
168006
168030
|
export declare type MutationJsmConversation_CloseConversationArgs = {
|
|
168007
168031
|
input: JsmConversationCloseConversationInput;
|
|
168008
168032
|
};
|
|
168033
|
+
export declare type MutationJsmConversation_CreateInviteArgs = {
|
|
168034
|
+
input: JsmConversationCreateInviteInput;
|
|
168035
|
+
};
|
|
168009
168036
|
export declare type MutationJsmConversation_UpdateSettingsArgs = {
|
|
168010
168037
|
input: JsmConversationSettingsInput;
|
|
168011
168038
|
};
|
|
@@ -172777,6 +172804,7 @@ export declare type Query = {
|
|
|
172777
172804
|
agentWorkspace_workloadJqlConfig?: Maybe<AgentWorkspaceWorkloadJqlConfig>;
|
|
172778
172805
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
172779
172806
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
172807
|
+
aiCoreApi_agentEvaluationResponses?: Maybe<AiCoreApiAgentEvaluationResponsesResult>;
|
|
172780
172808
|
aiCoreApi_fetchRsaEmployeeTickets?: Maybe<AiCoreApiRsaEmployeeTicketsResult>;
|
|
172781
172809
|
aiCoreApi_fetchRsaFunnelMetrics?: Maybe<AiCoreApiRsaFunnelMetricsResult>;
|
|
172782
172810
|
aiCoreApi_fetchRsaReport?: Maybe<AiCoreApiRsaFetchReportResult>;
|
|
@@ -172913,6 +172941,7 @@ export declare type Query = {
|
|
|
172913
172941
|
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<AssetsVerticalNonConfiguredAssetTypesResult>;
|
|
172914
172942
|
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<AssetsVerticalNonConfiguredAssetTypesResult>;
|
|
172915
172943
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
172944
|
+
assetsVertical_rolesForPrincipals?: Maybe<AssetsVerticalRolesForPrincipalsResult>;
|
|
172916
172945
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
172917
172946
|
assetsVertical_stockroomObjectTypes?: Maybe<AssetsVerticalStockroomObjectTypesResult>;
|
|
172918
172947
|
assetsVertical_stockroomObjects?: Maybe<AssetsVerticalStockroomObjectsResult>;
|
|
@@ -173462,6 +173491,7 @@ export declare type Query = {
|
|
|
173462
173491
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
173463
173492
|
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
173464
173493
|
goals_directoryViewById?: Maybe<TownsquareDirectoryView>;
|
|
173494
|
+
goals_directoryViewSearch?: Maybe<TownsquareDirectoryViewConnection>;
|
|
173465
173495
|
goals_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
173466
173496
|
goals_fullHierarchySearch?: Maybe<TownsquareGoalConnection>;
|
|
173467
173497
|
goals_goalStatuses?: Maybe<Array<TownsquareStatus>>;
|
|
@@ -175661,13 +175691,10 @@ export declare type Query = {
|
|
|
175661
175691
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
175662
175692
|
jira_view?: Maybe<JiraViewResult>;
|
|
175663
175693
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
175664
|
-
jpdViewsService_globalView?: Maybe<JpdViewsServiceGlobalView>;
|
|
175665
175694
|
jpdViewsService_globalViewLimits?: Maybe<JpdViewsServiceGlobalViewLimitsResponse>;
|
|
175666
175695
|
jpdViewsService_globalViewSpaces?: Maybe<JpdViewsServiceGlobalViewProjectsResponse>;
|
|
175667
175696
|
jpdViewsService_globalViewV2?: Maybe<JpdViewsServiceGlobalView2>;
|
|
175668
|
-
jpdViewsService_globalViewsByCriteria?: Maybe<JpdViewsServiceGlobalViewConnection>;
|
|
175669
175697
|
jpdViewsService_globalViewsByCriteriaV2?: Maybe<JpdViewsServiceGlobalViewConnection2>;
|
|
175670
|
-
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
175671
175698
|
jpdViewsService_globalViewsByIdV2?: Maybe<Array<Maybe<JpdViewsServiceGlobalView2>>>;
|
|
175672
175699
|
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
175673
175700
|
jsmAdaptiveLanguage?: Maybe<JsmAdaptiveLanguageQueryApi>;
|
|
@@ -175889,6 +175916,7 @@ export declare type Query = {
|
|
|
175889
175916
|
projects_capabilities?: Maybe<TownsquareProjectAppCapabilities>;
|
|
175890
175917
|
projects_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
175891
175918
|
projects_directoryViewById?: Maybe<TownsquareDirectoryView>;
|
|
175919
|
+
projects_directoryViewSearch?: Maybe<TownsquareDirectoryViewConnection>;
|
|
175892
175920
|
projects_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
175893
175921
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
175894
175922
|
projects_msTeamsTenants?: Maybe<Array<Maybe<TownsquareMsTeamsTenant>>>;
|
|
@@ -177073,6 +177101,13 @@ export declare type QueryAgent_SessionQueryArgs = {
|
|
|
177073
177101
|
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
177074
177102
|
sort?: InputMaybe<Scalars['String']['input']>;
|
|
177075
177103
|
};
|
|
177104
|
+
export declare type QueryAiCoreApi_AgentEvaluationResponsesArgs = {
|
|
177105
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
177106
|
+
evaluationType?: InputMaybe<AiCoreApiAgentEvaluationType>;
|
|
177107
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
177108
|
+
projectId: Scalars['ID']['input'];
|
|
177109
|
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
177110
|
+
};
|
|
177076
177111
|
export declare type QueryAiCoreApi_FetchRsaEmployeeTicketsArgs = {
|
|
177077
177112
|
accountIds: Array<Scalars['ID']['input']>;
|
|
177078
177113
|
jobId: Scalars['ID']['input'];
|
|
@@ -177802,6 +177837,11 @@ export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
|
177802
177837
|
cloudId: Scalars['ID']['input'];
|
|
177803
177838
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
177804
177839
|
};
|
|
177840
|
+
export declare type QueryAssetsVertical_RolesForPrincipalsArgs = {
|
|
177841
|
+
cloudId: Scalars['ID']['input'];
|
|
177842
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
177843
|
+
verticalType: AssetsVerticalVerticalType;
|
|
177844
|
+
};
|
|
177805
177845
|
export declare type QueryAssetsVertical_StockroomItamAttributesArgs = {
|
|
177806
177846
|
cloudId: Scalars['ID']['input'];
|
|
177807
177847
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -180236,6 +180276,13 @@ export declare type QueryGoals_DirectoryViewByIdArgs = {
|
|
|
180236
180276
|
containerId: Scalars['ID']['input'];
|
|
180237
180277
|
directoryId: Scalars['ID']['input'];
|
|
180238
180278
|
};
|
|
180279
|
+
export declare type QueryGoals_DirectoryViewSearchArgs = {
|
|
180280
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
180281
|
+
containerId: Scalars['ID']['input'];
|
|
180282
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180283
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
180284
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareDirectoryViewSortEnum>>>;
|
|
180285
|
+
};
|
|
180239
180286
|
export declare type QueryGoals_ExplainSearchArgs = {
|
|
180240
180287
|
containerId: Scalars['ID']['input'];
|
|
180241
180288
|
directoryViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -189505,6 +189552,7 @@ export declare type QueryGraphStore_GetDynamicNodeTypesArgs = {
|
|
|
189505
189552
|
export declare type QueryGraphStore_GetDynamicRelationshipTypesArgs = {
|
|
189506
189553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
189507
189554
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189555
|
+
typeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
189508
189556
|
workspaceAri: Scalars['ID']['input'];
|
|
189509
189557
|
};
|
|
189510
189558
|
export declare type QueryGraphStore_GraphDocument3pDocumentInverseArgs = {
|
|
@@ -196082,9 +196130,6 @@ export declare type QueryJpdViewsService_EchoArgs = {
|
|
|
196082
196130
|
cloudId: Scalars['ID']['input'];
|
|
196083
196131
|
message: Scalars['String']['input'];
|
|
196084
196132
|
};
|
|
196085
|
-
export declare type QueryJpdViewsService_GlobalViewArgs = {
|
|
196086
|
-
id: Scalars['ID']['input'];
|
|
196087
|
-
};
|
|
196088
196133
|
export declare type QueryJpdViewsService_GlobalViewLimitsArgs = {
|
|
196089
196134
|
cloudId: Scalars['ID']['input'];
|
|
196090
196135
|
limitTypes?: InputMaybe<Array<JpdViewsServiceGlobalViewLimitType>>;
|
|
@@ -196096,14 +196141,6 @@ export declare type QueryJpdViewsService_GlobalViewSpacesArgs = {
|
|
|
196096
196141
|
export declare type QueryJpdViewsService_GlobalViewV2Args = {
|
|
196097
196142
|
id: Scalars['ID']['input'];
|
|
196098
196143
|
};
|
|
196099
|
-
export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
|
|
196100
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
196101
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
196102
|
-
cloudId: Scalars['ID']['input'];
|
|
196103
|
-
filter: JpdViewsServiceGlobalViewsByCriteriaInput;
|
|
196104
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196105
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
196106
|
-
};
|
|
196107
196144
|
export declare type QueryJpdViewsService_GlobalViewsByCriteriaV2Args = {
|
|
196108
196145
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196109
196146
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -196112,10 +196149,6 @@ export declare type QueryJpdViewsService_GlobalViewsByCriteriaV2Args = {
|
|
|
196112
196149
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196113
196150
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
196114
196151
|
};
|
|
196115
|
-
export declare type QueryJpdViewsService_GlobalViewsByIdArgs = {
|
|
196116
|
-
cloudId: Scalars['ID']['input'];
|
|
196117
|
-
ids: Array<Scalars['ID']['input']>;
|
|
196118
|
-
};
|
|
196119
196152
|
export declare type QueryJpdViewsService_GlobalViewsByIdV2Args = {
|
|
196120
196153
|
cloudId: Scalars['ID']['input'];
|
|
196121
196154
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -196880,6 +196913,13 @@ export declare type QueryProjects_DirectoryViewByIdArgs = {
|
|
|
196880
196913
|
containerId: Scalars['ID']['input'];
|
|
196881
196914
|
directoryId: Scalars['ID']['input'];
|
|
196882
196915
|
};
|
|
196916
|
+
export declare type QueryProjects_DirectoryViewSearchArgs = {
|
|
196917
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
196918
|
+
containerId: Scalars['ID']['input'];
|
|
196919
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196920
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
196921
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareDirectoryViewSortEnum>>>;
|
|
196922
|
+
};
|
|
196883
196923
|
export declare type QueryProjects_ExplainSearchArgs = {
|
|
196884
196924
|
containerId: Scalars['ID']['input'];
|
|
196885
196925
|
directoryViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -228551,10 +228591,28 @@ export declare type TownsquareDirectoryView = {
|
|
|
228551
228591
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
228552
228592
|
name?: Maybe<Scalars['String']['output']>;
|
|
228553
228593
|
};
|
|
228594
|
+
export declare type TownsquareDirectoryViewConnection = {
|
|
228595
|
+
__typename?: 'TownsquareDirectoryViewConnection';
|
|
228596
|
+
edges?: Maybe<Array<Maybe<TownsquareDirectoryViewEdge>>>;
|
|
228597
|
+
pageInfo: PageInfo;
|
|
228598
|
+
};
|
|
228599
|
+
export declare type TownsquareDirectoryViewEdge = {
|
|
228600
|
+
__typename?: 'TownsquareDirectoryViewEdge';
|
|
228601
|
+
cursor: Scalars['String']['output'];
|
|
228602
|
+
node?: Maybe<TownsquareDirectoryView>;
|
|
228603
|
+
};
|
|
228554
228604
|
export declare enum TownsquareDirectoryViewEntityType {
|
|
228555
228605
|
Goal = "GOAL",
|
|
228556
228606
|
Project = "PROJECT"
|
|
228557
228607
|
}
|
|
228608
|
+
export declare enum TownsquareDirectoryViewSortEnum {
|
|
228609
|
+
CreationDateAsc = "CREATION_DATE_ASC",
|
|
228610
|
+
CreationDateDesc = "CREATION_DATE_DESC",
|
|
228611
|
+
FavouritedDateAsc = "FAVOURITED_DATE_ASC",
|
|
228612
|
+
FavouritedDateDesc = "FAVOURITED_DATE_DESC",
|
|
228613
|
+
NameAsc = "NAME_ASC",
|
|
228614
|
+
NameDesc = "NAME_DESC"
|
|
228615
|
+
}
|
|
228558
228616
|
export declare type TownsquareDraftUpdate = {
|
|
228559
228617
|
__typename?: 'TownsquareDraftUpdate';
|
|
228560
228618
|
author?: Maybe<User>;
|