@forge/cli-shared 8.25.0-next.6 → 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 -0
- package/out/graphql/graphql-types.d.ts +211 -176
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +76 -45
- 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';
|
|
@@ -47838,6 +47954,7 @@ export declare type ExternalDocument = Node & {
|
|
|
47838
47954
|
reactions?: Maybe<Array<Maybe<ExternalReaction>>>;
|
|
47839
47955
|
review?: Maybe<ExternalReview>;
|
|
47840
47956
|
score?: Maybe<Scalars['Int']['output']>;
|
|
47957
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
47841
47958
|
subType?: Maybe<Scalars['String']['output']>;
|
|
47842
47959
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
47843
47960
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
@@ -59246,6 +59363,7 @@ export declare type GraphStoreGetDynamicNodeTypesArgs = {
|
|
|
59246
59363
|
export declare type GraphStoreGetDynamicRelationshipTypesArgs = {
|
|
59247
59364
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59248
59365
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59366
|
+
typeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
59249
59367
|
workspaceAri: Scalars['ID']['input'];
|
|
59250
59368
|
};
|
|
59251
59369
|
export declare type GraphStoreGraphDocument3pDocumentInverseArgs = {
|
|
@@ -144250,12 +144368,6 @@ export declare type JpdViewsServiceCreateGlobalViewInput = {
|
|
|
144250
144368
|
name: Scalars['String']['input'];
|
|
144251
144369
|
visualizationType: JpdViewsServiceVisualizationType;
|
|
144252
144370
|
};
|
|
144253
|
-
export declare type JpdViewsServiceCreateGlobalViewPayload = Payload & {
|
|
144254
|
-
__typename?: 'JpdViewsServiceCreateGlobalViewPayload';
|
|
144255
|
-
errors?: Maybe<Array<MutationError>>;
|
|
144256
|
-
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
144257
|
-
success: Scalars['Boolean']['output'];
|
|
144258
|
-
};
|
|
144259
144371
|
export declare type JpdViewsServiceCreateGlobalViewPayload2 = Payload & {
|
|
144260
144372
|
__typename?: 'JpdViewsServiceCreateGlobalViewPayload2';
|
|
144261
144373
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -144332,70 +144444,6 @@ export declare type JpdViewsServiceFilterValueInput2 = {
|
|
|
144332
144444
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
144333
144445
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
144334
144446
|
};
|
|
144335
|
-
export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node & {
|
|
144336
|
-
__typename?: 'JpdViewsServiceGlobalView';
|
|
144337
|
-
assocToNewSpaces?: Maybe<Scalars['Boolean']['output']>;
|
|
144338
|
-
associatedSpacesCount?: Maybe<Scalars['Int']['output']>;
|
|
144339
|
-
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
144340
|
-
colorBy?: Maybe<JpdViewsServiceField>;
|
|
144341
|
-
colorStyle?: Maybe<Scalars['String']['output']>;
|
|
144342
|
-
colorStyleNew?: Maybe<JpdViewsServiceColorStyle>;
|
|
144343
|
-
columnSize?: Maybe<Scalars['String']['output']>;
|
|
144344
|
-
columnSizeNew: JpdViewsServiceColumnSize;
|
|
144345
|
-
connectionsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
144346
|
-
connectionsFilterNew: Array<JpdViewsServiceFilter>;
|
|
144347
|
-
connectionsLayoutType?: Maybe<Scalars['String']['output']>;
|
|
144348
|
-
connectionsLayoutTypeNew: JpdViewsServiceConnectionsLayout;
|
|
144349
|
-
createdAt: Scalars['String']['output'];
|
|
144350
|
-
createdDate?: Maybe<Scalars['String']['output']>;
|
|
144351
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
144352
|
-
descriptionNew?: Maybe<Scalars['JSON']['output']>;
|
|
144353
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
144354
|
-
fieldRollups?: Maybe<Array<Maybe<JpdViewsServiceFieldRollup>>>;
|
|
144355
|
-
fieldRollupsNew: Array<JpdViewsServiceFieldRollup>;
|
|
144356
|
-
fields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
144357
|
-
fieldsNew: Array<JpdViewsServiceField>;
|
|
144358
|
-
filter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
144359
|
-
filterNew: Array<JpdViewsServiceFilter>;
|
|
144360
|
-
groupBy?: Maybe<JpdViewsServiceField>;
|
|
144361
|
-
groupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
144362
|
-
groupValuesNew: Array<JpdViewsServiceNestedId>;
|
|
144363
|
-
groupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
144364
|
-
groupsFilterNew: Array<JpdViewsServiceFilter>;
|
|
144365
|
-
hidden: Array<JpdViewsServiceField>;
|
|
144366
|
-
hiddenFields?: Maybe<Array<Maybe<JpdViewsServiceField>>>;
|
|
144367
|
-
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
144368
|
-
hideEmptyColumnsNew: Scalars['Boolean']['output'];
|
|
144369
|
-
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
144370
|
-
id: Scalars['ID']['output'];
|
|
144371
|
-
layoutType?: Maybe<Scalars['String']['output']>;
|
|
144372
|
-
layoutTypeNew?: Maybe<JpdViewsServiceViewLayoutType>;
|
|
144373
|
-
matrixConfig?: Maybe<JpdViewsServiceMatrixConfig>;
|
|
144374
|
-
name: Scalars['String']['output'];
|
|
144375
|
-
numberColumnDisplay?: Maybe<Scalars['String']['output']>;
|
|
144376
|
-
rank?: Maybe<Scalars['Int']['output']>;
|
|
144377
|
-
showCardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
144378
|
-
showConnectionsMatchingColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
144379
|
-
showConnectionsMatchingColumnNew: Scalars['Boolean']['output'];
|
|
144380
|
-
showConnectionsMatchingGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
144381
|
-
showConnectionsMatchingGroupNew: Scalars['Boolean']['output'];
|
|
144382
|
-
sort?: Maybe<JpdViewsServiceSort>;
|
|
144383
|
-
sortMode?: Maybe<Scalars['String']['output']>;
|
|
144384
|
-
sortModeNew: JpdViewsServiceSortMode;
|
|
144385
|
-
sortNew: Array<JpdViewsServiceSort>;
|
|
144386
|
-
tableColumnSizes?: Maybe<Array<Maybe<JpdViewsServiceTableColumnSize>>>;
|
|
144387
|
-
timelineConfig?: Maybe<JpdViewsServiceTimelineConfig>;
|
|
144388
|
-
updatedAt: Scalars['String']['output'];
|
|
144389
|
-
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
144390
|
-
uuid: Scalars['String']['output'];
|
|
144391
|
-
verticalGroupBy?: Maybe<JpdViewsServiceField>;
|
|
144392
|
-
verticalGroupValues?: Maybe<Array<Maybe<JpdViewsServiceNestedId>>>;
|
|
144393
|
-
verticalGroupValuesNew: Array<JpdViewsServiceNestedId>;
|
|
144394
|
-
verticalGroupsFilter?: Maybe<Array<Maybe<JpdViewsServiceFilter>>>;
|
|
144395
|
-
verticalGroupsFilterNew: Array<JpdViewsServiceFilter>;
|
|
144396
|
-
viewId: Scalars['String']['output'];
|
|
144397
|
-
visualizationType: JpdViewsServiceVisualizationType;
|
|
144398
|
-
};
|
|
144399
144447
|
export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node & {
|
|
144400
144448
|
__typename?: 'JpdViewsServiceGlobalView2';
|
|
144401
144449
|
assocToNewSpaces?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -144445,11 +144493,6 @@ export declare type JpdViewsServiceGlobalView2 = JpdViewsServiceViewBase & Node
|
|
|
144445
144493
|
export declare enum JpdViewsServiceGlobalViewAssociationContainerType {
|
|
144446
144494
|
Project = "PROJECT"
|
|
144447
144495
|
}
|
|
144448
|
-
export declare type JpdViewsServiceGlobalViewConnection = {
|
|
144449
|
-
__typename?: 'JpdViewsServiceGlobalViewConnection';
|
|
144450
|
-
edges?: Maybe<Array<JpdViewsServiceGlobalViewEdge>>;
|
|
144451
|
-
pageInfo: PageInfo;
|
|
144452
|
-
};
|
|
144453
144496
|
export declare type JpdViewsServiceGlobalViewConnection2 = {
|
|
144454
144497
|
__typename?: 'JpdViewsServiceGlobalViewConnection2';
|
|
144455
144498
|
associatedGlobalViewsCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -144458,11 +144501,6 @@ export declare type JpdViewsServiceGlobalViewConnection2 = {
|
|
|
144458
144501
|
globalViewsWithoutDraftCount?: Maybe<Scalars['Int']['output']>;
|
|
144459
144502
|
pageInfo: PageInfo;
|
|
144460
144503
|
};
|
|
144461
|
-
export declare type JpdViewsServiceGlobalViewEdge = {
|
|
144462
|
-
__typename?: 'JpdViewsServiceGlobalViewEdge';
|
|
144463
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
144464
|
-
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
144465
|
-
};
|
|
144466
144504
|
export declare type JpdViewsServiceGlobalViewEdge2 = {
|
|
144467
144505
|
__typename?: 'JpdViewsServiceGlobalViewEdge2';
|
|
144468
144506
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -144530,12 +144568,6 @@ export declare type JpdViewsServiceOptionInput = {
|
|
|
144530
144568
|
export declare type JpdViewsServicePublishGlobalViewInput = {
|
|
144531
144569
|
id: Scalars['ID']['input'];
|
|
144532
144570
|
};
|
|
144533
|
-
export declare type JpdViewsServicePublishGlobalViewPayload = Payload & {
|
|
144534
|
-
__typename?: 'JpdViewsServicePublishGlobalViewPayload';
|
|
144535
|
-
errors?: Maybe<Array<MutationError>>;
|
|
144536
|
-
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
144537
|
-
success: Scalars['Boolean']['output'];
|
|
144538
|
-
};
|
|
144539
144571
|
export declare type JpdViewsServicePublishGlobalViewPayload2 = Payload & {
|
|
144540
144572
|
__typename?: 'JpdViewsServicePublishGlobalViewPayload2';
|
|
144541
144573
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -144578,18 +144610,6 @@ export declare type JpdViewsServiceTableColumnSizeInput = {
|
|
|
144578
144610
|
field: Scalars['String']['input'];
|
|
144579
144611
|
size: Scalars['Int']['input'];
|
|
144580
144612
|
};
|
|
144581
|
-
export declare type JpdViewsServiceTimelineConfig = {
|
|
144582
|
-
__typename?: 'JpdViewsServiceTimelineConfig';
|
|
144583
|
-
columnWidth?: Maybe<Scalars['Int']['output']>;
|
|
144584
|
-
dueDateField: JpdViewsServiceField;
|
|
144585
|
-
endTimestamp: Scalars['String']['output'];
|
|
144586
|
-
mode: Scalars['String']['output'];
|
|
144587
|
-
modeNew: JpdViewsServiceTimelineMode;
|
|
144588
|
-
startDateField: JpdViewsServiceField;
|
|
144589
|
-
startTimestamp: Scalars['String']['output'];
|
|
144590
|
-
summaryCardField: JpdViewsServiceField;
|
|
144591
|
-
todayMarker?: Maybe<JpdViewsServiceTodayMarker>;
|
|
144592
|
-
};
|
|
144593
144613
|
export declare type JpdViewsServiceTimelineConfig2 = {
|
|
144594
144614
|
__typename?: 'JpdViewsServiceTimelineConfig2';
|
|
144595
144615
|
dueDateField?: Maybe<JpdViewsServiceField>;
|
|
@@ -144649,43 +144669,6 @@ export declare type JpdViewsServiceUnassociateGlobalViewPayload = Payload & {
|
|
|
144649
144669
|
results?: Maybe<Array<JpdViewsServiceUnassociateGlobalViewContainerResult>>;
|
|
144650
144670
|
success: Scalars['Boolean']['output'];
|
|
144651
144671
|
};
|
|
144652
|
-
export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
144653
|
-
assocToNewSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144654
|
-
boldColors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144655
|
-
colorBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
144656
|
-
colorStyle?: InputMaybe<Scalars['String']['input']>;
|
|
144657
|
-
columnSize?: InputMaybe<Scalars['String']['input']>;
|
|
144658
|
-
connectionsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
144659
|
-
connectionsLayoutType?: InputMaybe<Scalars['String']['input']>;
|
|
144660
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
144661
|
-
descriptionNew?: InputMaybe<Scalars['JSON']['input']>;
|
|
144662
|
-
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
144663
|
-
fieldRollups?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldRollupInput>>>;
|
|
144664
|
-
fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
144665
|
-
filter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
144666
|
-
groupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
144667
|
-
groupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
144668
|
-
groupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
144669
|
-
hiddenFields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
144670
|
-
hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144671
|
-
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144672
|
-
id: Scalars['ID']['input'];
|
|
144673
|
-
layoutType?: InputMaybe<Scalars['String']['input']>;
|
|
144674
|
-
matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
|
|
144675
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
144676
|
-
numberColumnDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
144677
|
-
showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144678
|
-
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144679
|
-
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144680
|
-
sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
|
|
144681
|
-
sortMode?: InputMaybe<Scalars['String']['input']>;
|
|
144682
|
-
tableColumnSizes?: InputMaybe<Array<InputMaybe<JpdViewsServiceTableColumnSizeInput>>>;
|
|
144683
|
-
timelineConfig?: InputMaybe<JpdViewsServiceTimelineConfigInput>;
|
|
144684
|
-
verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
144685
|
-
verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
144686
|
-
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
144687
|
-
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
144688
|
-
};
|
|
144689
144672
|
export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
|
|
144690
144673
|
assocToNewSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144691
144674
|
boldColors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -144725,12 +144708,6 @@ export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
|
|
|
144725
144708
|
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
144726
144709
|
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
144727
144710
|
};
|
|
144728
|
-
export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
144729
|
-
__typename?: 'JpdViewsServiceUpdateGlobalViewPayload';
|
|
144730
|
-
errors?: Maybe<Array<MutationError>>;
|
|
144731
|
-
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
144732
|
-
success: Scalars['Boolean']['output'];
|
|
144733
|
-
};
|
|
144734
144711
|
export declare type JpdViewsServiceUpdateGlobalViewPayload2 = Payload & {
|
|
144735
144712
|
__typename?: 'JpdViewsServiceUpdateGlobalViewPayload2';
|
|
144736
144713
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -145214,11 +145191,22 @@ export declare type JsmChannelsRovoServiceSkillsQueryPayload = {
|
|
|
145214
145191
|
export declare type JsmChannelsRovoServiceSkillsResult = JsmChannelsRovoServiceSkillsQueryPayload | QueryError;
|
|
145215
145192
|
export declare type JsmChannelsRovoServiceTool = {
|
|
145216
145193
|
__typename?: 'JsmChannelsRovoServiceTool';
|
|
145194
|
+
definitionId?: Maybe<Scalars['String']['output']>;
|
|
145195
|
+
definitionSource?: Maybe<JsmChannelsRovoServiceToolDefinitionSource>;
|
|
145217
145196
|
displayName: Scalars['String']['output'];
|
|
145218
145197
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
145219
145198
|
id: Scalars['ID']['output'];
|
|
145220
145199
|
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
145221
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
|
+
};
|
|
145222
145210
|
export declare type JsmChannelsRovoServiceToolsConfiguration = {
|
|
145223
145211
|
__typename?: 'JsmChannelsRovoServiceToolsConfiguration';
|
|
145224
145212
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -145345,6 +145333,10 @@ export declare type JsmChannelsUpdateRovoServiceSkillsPayload = Payload & {
|
|
|
145345
145333
|
errors?: Maybe<Array<MutationError>>;
|
|
145346
145334
|
success: Scalars['Boolean']['output'];
|
|
145347
145335
|
};
|
|
145336
|
+
export declare type JsmChannelsUpdateRovoServiceToolsDefinitionsInput = {
|
|
145337
|
+
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
145338
|
+
enabledTools: Array<JsmChannelsRovoServiceToolSelectionInput>;
|
|
145339
|
+
};
|
|
145348
145340
|
export declare type JsmChannelsUpdateRovoServiceToolsInput = {
|
|
145349
145341
|
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
145350
145342
|
enabledToolIds: Array<Scalars['ID']['input']>;
|
|
@@ -145938,6 +145930,7 @@ export declare type JsmConversation = {
|
|
|
145938
145930
|
helpseeker?: Maybe<Scalars['ID']['output']>;
|
|
145939
145931
|
id: Scalars['ID']['output'];
|
|
145940
145932
|
issueId?: Maybe<Scalars['ID']['output']>;
|
|
145933
|
+
lastMessageAt?: Maybe<Scalars['DateTime']['output']>;
|
|
145941
145934
|
summary?: Maybe<Scalars['String']['output']>;
|
|
145942
145935
|
};
|
|
145943
145936
|
export declare enum JsmConversationActivationState {
|
|
@@ -145983,6 +145976,17 @@ export declare type JsmConversationConnection = {
|
|
|
145983
145976
|
nodes?: Maybe<Array<Maybe<JsmConversation>>>;
|
|
145984
145977
|
pageInfo: PageInfo;
|
|
145985
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
|
+
};
|
|
145986
145990
|
export declare type JsmConversationEdge = {
|
|
145987
145991
|
__typename?: 'JsmConversationEdge';
|
|
145988
145992
|
cursor: Scalars['String']['output'];
|
|
@@ -145994,6 +145998,10 @@ export declare type JsmConversationHelpseekerSettings = {
|
|
|
145994
145998
|
availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
145995
145999
|
};
|
|
145996
146000
|
export declare type JsmConversationHelpseekerSettingsResult = JsmConversationHelpseekerSettings | QueryError;
|
|
146001
|
+
export declare enum JsmConversationInviteType {
|
|
146002
|
+
Collaborate = "COLLABORATE",
|
|
146003
|
+
Transfer = "TRANSFER"
|
|
146004
|
+
}
|
|
145997
146005
|
export declare enum JsmConversationLiveChatAvailabilityCriteria {
|
|
145998
146006
|
AlwaysAvailable = "ALWAYS_AVAILABLE",
|
|
145999
146007
|
Status = "STATUS"
|
|
@@ -146744,6 +146752,7 @@ export declare type KitsuneIdeaNode = {
|
|
|
146744
146752
|
};
|
|
146745
146753
|
export declare type KitsuneInsight = Node & {
|
|
146746
146754
|
__typename?: 'KitsuneInsight';
|
|
146755
|
+
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
146747
146756
|
content: Scalars['KitsuneADF']['output'];
|
|
146748
146757
|
createdAt: Scalars['DateTime']['output'];
|
|
146749
146758
|
creator?: Maybe<User>;
|
|
@@ -146910,6 +146919,7 @@ export declare type KitsuneSectionViewsArgs = {
|
|
|
146910
146919
|
};
|
|
146911
146920
|
export declare type KitsuneSnippet = Node & {
|
|
146912
146921
|
__typename?: 'KitsuneSnippet';
|
|
146922
|
+
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
146913
146923
|
content: Array<Scalars['String']['output']>;
|
|
146914
146924
|
createdAt: Scalars['DateTime']['output'];
|
|
146915
146925
|
creator?: Maybe<User>;
|
|
@@ -147279,6 +147289,7 @@ export declare type KnowledgeBaseAgentArticleSearchInput = {
|
|
|
147279
147289
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
147280
147290
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
147281
147291
|
projectIdentifier: Scalars['String']['input'];
|
|
147292
|
+
searchExperience?: InputMaybe<Scalars['String']['input']>;
|
|
147282
147293
|
searchFilters?: InputMaybe<KnowledgeBaseSearchFiltersInput>;
|
|
147283
147294
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
147284
147295
|
shouldFetchCategories?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -163586,18 +163597,14 @@ export declare type Mutation = {
|
|
|
163586
163597
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
163587
163598
|
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
163588
163599
|
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
163589
|
-
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
163590
163600
|
jpdViewsService_createGlobalViewV2?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
163591
163601
|
jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
|
|
163592
163602
|
jpdViewsService_discardGlobalViewDraft?: Maybe<JpdViewsServiceDiscardGlobalViewDraftPayload>;
|
|
163593
163603
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
163594
|
-
jpdViewsService_publishGlobalView?: Maybe<JpdViewsServicePublishGlobalViewPayload>;
|
|
163595
163604
|
jpdViewsService_publishGlobalViewV2?: Maybe<JpdViewsServicePublishGlobalViewPayload2>;
|
|
163596
163605
|
jpdViewsService_rerankGlobalView?: Maybe<JpdViewsServiceRerankGlobalViewPayload>;
|
|
163597
163606
|
jpdViewsService_setAssocToNewSpaces?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
163598
163607
|
jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
|
|
163599
|
-
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
163600
|
-
jpdViewsService_updateGlobalViewV2?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
163601
163608
|
jpdViewsService_updateGlobalViewV3?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
163602
163609
|
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
163603
163610
|
jsmChannels_connectRovoServiceSkill?: Maybe<JsmChannelsConnectRovoServiceSkillPayload>;
|
|
@@ -163608,10 +163615,12 @@ export declare type Mutation = {
|
|
|
163608
163615
|
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
163609
163616
|
jsmChannels_updateRovoServiceSkills?: Maybe<JsmChannelsUpdateRovoServiceSkillsPayload>;
|
|
163610
163617
|
jsmChannels_updateRovoServiceTools?: Maybe<JsmChannelsUpdateRovoServiceToolsPayload>;
|
|
163618
|
+
jsmChannels_updateRovoServiceToolsDefinitions?: Maybe<JsmChannelsUpdateRovoServiceToolsPayload>;
|
|
163611
163619
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
163612
163620
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
163613
163621
|
jsmConversation_claimConversation?: Maybe<JsmConversationClaimConversationPayload>;
|
|
163614
163622
|
jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
|
|
163623
|
+
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
163615
163624
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
163616
163625
|
jsw?: Maybe<JswMutation>;
|
|
163617
163626
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
@@ -167936,10 +167945,6 @@ export declare type MutationJpdViewsService_CloneGlobalViewArgs = {
|
|
|
167936
167945
|
export declare type MutationJpdViewsService_CloneViewIntoGlobalArgs = {
|
|
167937
167946
|
input: JpdViewsServiceCloneViewIntoGlobalInput;
|
|
167938
167947
|
};
|
|
167939
|
-
export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
|
|
167940
|
-
cloudId: Scalars['ID']['input'];
|
|
167941
|
-
input: JpdViewsServiceCreateGlobalViewInput;
|
|
167942
|
-
};
|
|
167943
167948
|
export declare type MutationJpdViewsService_CreateGlobalViewV2Args = {
|
|
167944
167949
|
cloudId: Scalars['ID']['input'];
|
|
167945
167950
|
input: JpdViewsServiceCreateGlobalViewInput;
|
|
@@ -167954,9 +167959,6 @@ export declare type MutationJpdViewsService_EchoArgs = {
|
|
|
167954
167959
|
cloudId: Scalars['ID']['input'];
|
|
167955
167960
|
message: Scalars['String']['input'];
|
|
167956
167961
|
};
|
|
167957
|
-
export declare type MutationJpdViewsService_PublishGlobalViewArgs = {
|
|
167958
|
-
input: JpdViewsServicePublishGlobalViewInput;
|
|
167959
|
-
};
|
|
167960
167962
|
export declare type MutationJpdViewsService_PublishGlobalViewV2Args = {
|
|
167961
167963
|
input: JpdViewsServicePublishGlobalViewInput;
|
|
167962
167964
|
};
|
|
@@ -167969,12 +167971,6 @@ export declare type MutationJpdViewsService_SetAssocToNewSpacesArgs = {
|
|
|
167969
167971
|
export declare type MutationJpdViewsService_UnassociateGlobalViewArgs = {
|
|
167970
167972
|
input: JpdViewsServiceUnassociateGlobalViewInput;
|
|
167971
167973
|
};
|
|
167972
|
-
export declare type MutationJpdViewsService_UpdateGlobalViewArgs = {
|
|
167973
|
-
input: JpdViewsServiceUpdateGlobalViewInput;
|
|
167974
|
-
};
|
|
167975
|
-
export declare type MutationJpdViewsService_UpdateGlobalViewV2Args = {
|
|
167976
|
-
input: JpdViewsServiceUpdateGlobalViewInput;
|
|
167977
|
-
};
|
|
167978
167974
|
export declare type MutationJpdViewsService_UpdateGlobalViewV3Args = {
|
|
167979
167975
|
input: JpdViewsServiceUpdateGlobalViewInput2;
|
|
167980
167976
|
};
|
|
@@ -168017,6 +168013,11 @@ export declare type MutationJsmChannels_UpdateRovoServiceToolsArgs = {
|
|
|
168017
168013
|
input: JsmChannelsUpdateRovoServiceToolsInput;
|
|
168018
168014
|
jiraProjectAri: Scalars['ID']['input'];
|
|
168019
168015
|
};
|
|
168016
|
+
export declare type MutationJsmChannels_UpdateRovoServiceToolsDefinitionsArgs = {
|
|
168017
|
+
experience: JsmChannelsExperience;
|
|
168018
|
+
input: JsmChannelsUpdateRovoServiceToolsDefinitionsInput;
|
|
168019
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
168020
|
+
};
|
|
168020
168021
|
export declare type MutationJsmChannels_UpdateTaskAgentConfigurationArgs = {
|
|
168021
168022
|
agentName: Scalars['String']['input'];
|
|
168022
168023
|
experience: JsmChannelsExperience;
|
|
@@ -168029,6 +168030,9 @@ export declare type MutationJsmConversation_ClaimConversationArgs = {
|
|
|
168029
168030
|
export declare type MutationJsmConversation_CloseConversationArgs = {
|
|
168030
168031
|
input: JsmConversationCloseConversationInput;
|
|
168031
168032
|
};
|
|
168033
|
+
export declare type MutationJsmConversation_CreateInviteArgs = {
|
|
168034
|
+
input: JsmConversationCreateInviteInput;
|
|
168035
|
+
};
|
|
168032
168036
|
export declare type MutationJsmConversation_UpdateSettingsArgs = {
|
|
168033
168037
|
input: JsmConversationSettingsInput;
|
|
168034
168038
|
};
|
|
@@ -172800,6 +172804,7 @@ export declare type Query = {
|
|
|
172800
172804
|
agentWorkspace_workloadJqlConfig?: Maybe<AgentWorkspaceWorkloadJqlConfig>;
|
|
172801
172805
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
172802
172806
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
172807
|
+
aiCoreApi_agentEvaluationResponses?: Maybe<AiCoreApiAgentEvaluationResponsesResult>;
|
|
172803
172808
|
aiCoreApi_fetchRsaEmployeeTickets?: Maybe<AiCoreApiRsaEmployeeTicketsResult>;
|
|
172804
172809
|
aiCoreApi_fetchRsaFunnelMetrics?: Maybe<AiCoreApiRsaFunnelMetricsResult>;
|
|
172805
172810
|
aiCoreApi_fetchRsaReport?: Maybe<AiCoreApiRsaFetchReportResult>;
|
|
@@ -172936,6 +172941,7 @@ export declare type Query = {
|
|
|
172936
172941
|
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<AssetsVerticalNonConfiguredAssetTypesResult>;
|
|
172937
172942
|
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<AssetsVerticalNonConfiguredAssetTypesResult>;
|
|
172938
172943
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
172944
|
+
assetsVertical_rolesForPrincipals?: Maybe<AssetsVerticalRolesForPrincipalsResult>;
|
|
172939
172945
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
172940
172946
|
assetsVertical_stockroomObjectTypes?: Maybe<AssetsVerticalStockroomObjectTypesResult>;
|
|
172941
172947
|
assetsVertical_stockroomObjects?: Maybe<AssetsVerticalStockroomObjectsResult>;
|
|
@@ -173485,6 +173491,7 @@ export declare type Query = {
|
|
|
173485
173491
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
173486
173492
|
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
173487
173493
|
goals_directoryViewById?: Maybe<TownsquareDirectoryView>;
|
|
173494
|
+
goals_directoryViewSearch?: Maybe<TownsquareDirectoryViewConnection>;
|
|
173488
173495
|
goals_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
173489
173496
|
goals_fullHierarchySearch?: Maybe<TownsquareGoalConnection>;
|
|
173490
173497
|
goals_goalStatuses?: Maybe<Array<TownsquareStatus>>;
|
|
@@ -175684,13 +175691,10 @@ export declare type Query = {
|
|
|
175684
175691
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
175685
175692
|
jira_view?: Maybe<JiraViewResult>;
|
|
175686
175693
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
175687
|
-
jpdViewsService_globalView?: Maybe<JpdViewsServiceGlobalView>;
|
|
175688
175694
|
jpdViewsService_globalViewLimits?: Maybe<JpdViewsServiceGlobalViewLimitsResponse>;
|
|
175689
175695
|
jpdViewsService_globalViewSpaces?: Maybe<JpdViewsServiceGlobalViewProjectsResponse>;
|
|
175690
175696
|
jpdViewsService_globalViewV2?: Maybe<JpdViewsServiceGlobalView2>;
|
|
175691
|
-
jpdViewsService_globalViewsByCriteria?: Maybe<JpdViewsServiceGlobalViewConnection>;
|
|
175692
175697
|
jpdViewsService_globalViewsByCriteriaV2?: Maybe<JpdViewsServiceGlobalViewConnection2>;
|
|
175693
|
-
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
175694
175698
|
jpdViewsService_globalViewsByIdV2?: Maybe<Array<Maybe<JpdViewsServiceGlobalView2>>>;
|
|
175695
175699
|
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
175696
175700
|
jsmAdaptiveLanguage?: Maybe<JsmAdaptiveLanguageQueryApi>;
|
|
@@ -175912,6 +175916,7 @@ export declare type Query = {
|
|
|
175912
175916
|
projects_capabilities?: Maybe<TownsquareProjectAppCapabilities>;
|
|
175913
175917
|
projects_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
175914
175918
|
projects_directoryViewById?: Maybe<TownsquareDirectoryView>;
|
|
175919
|
+
projects_directoryViewSearch?: Maybe<TownsquareDirectoryViewConnection>;
|
|
175915
175920
|
projects_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
175916
175921
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
175917
175922
|
projects_msTeamsTenants?: Maybe<Array<Maybe<TownsquareMsTeamsTenant>>>;
|
|
@@ -177096,6 +177101,13 @@ export declare type QueryAgent_SessionQueryArgs = {
|
|
|
177096
177101
|
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
177097
177102
|
sort?: InputMaybe<Scalars['String']['input']>;
|
|
177098
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
|
+
};
|
|
177099
177111
|
export declare type QueryAiCoreApi_FetchRsaEmployeeTicketsArgs = {
|
|
177100
177112
|
accountIds: Array<Scalars['ID']['input']>;
|
|
177101
177113
|
jobId: Scalars['ID']['input'];
|
|
@@ -177825,6 +177837,11 @@ export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
|
177825
177837
|
cloudId: Scalars['ID']['input'];
|
|
177826
177838
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
177827
177839
|
};
|
|
177840
|
+
export declare type QueryAssetsVertical_RolesForPrincipalsArgs = {
|
|
177841
|
+
cloudId: Scalars['ID']['input'];
|
|
177842
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
177843
|
+
verticalType: AssetsVerticalVerticalType;
|
|
177844
|
+
};
|
|
177828
177845
|
export declare type QueryAssetsVertical_StockroomItamAttributesArgs = {
|
|
177829
177846
|
cloudId: Scalars['ID']['input'];
|
|
177830
177847
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -180259,6 +180276,13 @@ export declare type QueryGoals_DirectoryViewByIdArgs = {
|
|
|
180259
180276
|
containerId: Scalars['ID']['input'];
|
|
180260
180277
|
directoryId: Scalars['ID']['input'];
|
|
180261
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
|
+
};
|
|
180262
180286
|
export declare type QueryGoals_ExplainSearchArgs = {
|
|
180263
180287
|
containerId: Scalars['ID']['input'];
|
|
180264
180288
|
directoryViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -189528,6 +189552,7 @@ export declare type QueryGraphStore_GetDynamicNodeTypesArgs = {
|
|
|
189528
189552
|
export declare type QueryGraphStore_GetDynamicRelationshipTypesArgs = {
|
|
189529
189553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
189530
189554
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189555
|
+
typeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
189531
189556
|
workspaceAri: Scalars['ID']['input'];
|
|
189532
189557
|
};
|
|
189533
189558
|
export declare type QueryGraphStore_GraphDocument3pDocumentInverseArgs = {
|
|
@@ -196105,9 +196130,6 @@ export declare type QueryJpdViewsService_EchoArgs = {
|
|
|
196105
196130
|
cloudId: Scalars['ID']['input'];
|
|
196106
196131
|
message: Scalars['String']['input'];
|
|
196107
196132
|
};
|
|
196108
|
-
export declare type QueryJpdViewsService_GlobalViewArgs = {
|
|
196109
|
-
id: Scalars['ID']['input'];
|
|
196110
|
-
};
|
|
196111
196133
|
export declare type QueryJpdViewsService_GlobalViewLimitsArgs = {
|
|
196112
196134
|
cloudId: Scalars['ID']['input'];
|
|
196113
196135
|
limitTypes?: InputMaybe<Array<JpdViewsServiceGlobalViewLimitType>>;
|
|
@@ -196119,14 +196141,6 @@ export declare type QueryJpdViewsService_GlobalViewSpacesArgs = {
|
|
|
196119
196141
|
export declare type QueryJpdViewsService_GlobalViewV2Args = {
|
|
196120
196142
|
id: Scalars['ID']['input'];
|
|
196121
196143
|
};
|
|
196122
|
-
export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
|
|
196123
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
196124
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
196125
|
-
cloudId: Scalars['ID']['input'];
|
|
196126
|
-
filter: JpdViewsServiceGlobalViewsByCriteriaInput;
|
|
196127
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196128
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
196129
|
-
};
|
|
196130
196144
|
export declare type QueryJpdViewsService_GlobalViewsByCriteriaV2Args = {
|
|
196131
196145
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
196132
196146
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -196135,10 +196149,6 @@ export declare type QueryJpdViewsService_GlobalViewsByCriteriaV2Args = {
|
|
|
196135
196149
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196136
196150
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
196137
196151
|
};
|
|
196138
|
-
export declare type QueryJpdViewsService_GlobalViewsByIdArgs = {
|
|
196139
|
-
cloudId: Scalars['ID']['input'];
|
|
196140
|
-
ids: Array<Scalars['ID']['input']>;
|
|
196141
|
-
};
|
|
196142
196152
|
export declare type QueryJpdViewsService_GlobalViewsByIdV2Args = {
|
|
196143
196153
|
cloudId: Scalars['ID']['input'];
|
|
196144
196154
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -196903,6 +196913,13 @@ export declare type QueryProjects_DirectoryViewByIdArgs = {
|
|
|
196903
196913
|
containerId: Scalars['ID']['input'];
|
|
196904
196914
|
directoryId: Scalars['ID']['input'];
|
|
196905
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
|
+
};
|
|
196906
196923
|
export declare type QueryProjects_ExplainSearchArgs = {
|
|
196907
196924
|
containerId: Scalars['ID']['input'];
|
|
196908
196925
|
directoryViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -228574,10 +228591,28 @@ export declare type TownsquareDirectoryView = {
|
|
|
228574
228591
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
228575
228592
|
name?: Maybe<Scalars['String']['output']>;
|
|
228576
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
|
+
};
|
|
228577
228604
|
export declare enum TownsquareDirectoryViewEntityType {
|
|
228578
228605
|
Goal = "GOAL",
|
|
228579
228606
|
Project = "PROJECT"
|
|
228580
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
|
+
}
|
|
228581
228616
|
export declare type TownsquareDraftUpdate = {
|
|
228582
228617
|
__typename?: 'TownsquareDraftUpdate';
|
|
228583
228618
|
author?: Maybe<User>;
|