@forge/cli-shared 6.11.0-next.11 → 6.11.0-next.13
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 +12 -0
- package/out/graphql/graphql-types.d.ts +471 -6
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +75 -26
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +9 -6
- package/package.json +1 -1
|
@@ -1072,12 +1072,27 @@ export declare type AgentStudioUpdateCustomActionPayload = Payload & {
|
|
|
1072
1072
|
errors?: Maybe<Array<MutationError>>;
|
|
1073
1073
|
success: Scalars['Boolean']['output'];
|
|
1074
1074
|
};
|
|
1075
|
+
export declare enum AiCoreApiQuestionType {
|
|
1076
|
+
DraftDocument = "DRAFT_DOCUMENT",
|
|
1077
|
+
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
1078
|
+
}
|
|
1079
|
+
export declare type AiCoreApiQuestionWithType = {
|
|
1080
|
+
__typename?: 'AiCoreApiQuestionWithType';
|
|
1081
|
+
question: Scalars['String']['output'];
|
|
1082
|
+
type: AiCoreApiQuestionType;
|
|
1083
|
+
};
|
|
1075
1084
|
export declare type AiCoreApiVsaQuestions = {
|
|
1076
1085
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
1077
1086
|
projectAri: Scalars['ID']['output'];
|
|
1078
1087
|
questions: Array<Maybe<Scalars['String']['output']>>;
|
|
1079
1088
|
};
|
|
1080
1089
|
export declare type AiCoreApiVsaQuestionsResult = AiCoreApiVsaQuestions | QueryError;
|
|
1090
|
+
export declare type AiCoreApiVsaQuestionsWithType = {
|
|
1091
|
+
__typename?: 'AiCoreApiVSAQuestionsWithType';
|
|
1092
|
+
projectAri: Scalars['ID']['output'];
|
|
1093
|
+
questions: Array<Maybe<AiCoreApiQuestionWithType>>;
|
|
1094
|
+
};
|
|
1095
|
+
export declare type AiCoreApiVsaQuestionsWithTypeResult = AiCoreApiVsaQuestionsWithType | QueryError;
|
|
1081
1096
|
export declare type AiCoreApiVsaReporting = {
|
|
1082
1097
|
__typename?: 'AiCoreApiVSAReporting';
|
|
1083
1098
|
projectAri: Scalars['ID']['output'];
|
|
@@ -6482,7 +6497,7 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
6482
6497
|
export declare type CompassCreateCampaignInput = {
|
|
6483
6498
|
description: Scalars['String']['input'];
|
|
6484
6499
|
dueDate: Scalars['DateTime']['input'];
|
|
6485
|
-
goalId
|
|
6500
|
+
goalId: Scalars['ID']['input'];
|
|
6486
6501
|
name: Scalars['String']['input'];
|
|
6487
6502
|
scorecardId: Scalars['ID']['input'];
|
|
6488
6503
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -6682,6 +6697,15 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
6682
6697
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
6683
6698
|
weight: Scalars['Int']['input'];
|
|
6684
6699
|
};
|
|
6700
|
+
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
6701
|
+
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
6702
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6703
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6704
|
+
packageManager: CompassPackageDependencyManagerOptions;
|
|
6705
|
+
packageName: Scalars['String']['input'];
|
|
6706
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6707
|
+
weight: Scalars['Int']['input'];
|
|
6708
|
+
};
|
|
6685
6709
|
export declare type CompassCreateIncidentEventInput = {
|
|
6686
6710
|
description: Scalars['String']['input'];
|
|
6687
6711
|
displayName: Scalars['String']['input'];
|
|
@@ -7919,6 +7943,21 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
7919
7943
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
7920
7944
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
7921
7945
|
};
|
|
7946
|
+
export declare type CompassHasPackageDependencyScorecardCriteria = CompassScorecardCriteria & {
|
|
7947
|
+
__typename?: 'CompassHasPackageDependencyScorecardCriteria';
|
|
7948
|
+
comparators?: Maybe<Array<CompassPackageDependencyComparator>>;
|
|
7949
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7950
|
+
id: Scalars['ID']['output'];
|
|
7951
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7952
|
+
packageManager?: Maybe<Scalars['String']['output']>;
|
|
7953
|
+
packageName?: Maybe<Scalars['String']['output']>;
|
|
7954
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
7955
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
7956
|
+
weight: Scalars['Int']['output'];
|
|
7957
|
+
};
|
|
7958
|
+
export declare type CompassHasPackageDependencyScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
7959
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
7960
|
+
};
|
|
7922
7961
|
export declare type CompassIncidentEvent = CompassEvent & {
|
|
7923
7962
|
__typename?: 'CompassIncidentEvent';
|
|
7924
7963
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -8117,6 +8156,15 @@ export declare type CompassLink = {
|
|
|
8117
8156
|
type: CompassLinkType;
|
|
8118
8157
|
url: Scalars['URL']['output'];
|
|
8119
8158
|
};
|
|
8159
|
+
export declare type CompassLinkNode = Node & {
|
|
8160
|
+
__typename?: 'CompassLinkNode';
|
|
8161
|
+
eventSources?: Maybe<Array<EventSource>>;
|
|
8162
|
+
id: Scalars['ID']['output'];
|
|
8163
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8164
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
8165
|
+
type: CompassLinkType;
|
|
8166
|
+
url: Scalars['URL']['output'];
|
|
8167
|
+
};
|
|
8120
8168
|
export declare enum CompassLinkType {
|
|
8121
8169
|
ChatChannel = "CHAT_CHANNEL",
|
|
8122
8170
|
Dashboard = "DASHBOARD",
|
|
@@ -8293,6 +8341,44 @@ export declare type CompassPackageDependentComponentsArgs = {
|
|
|
8293
8341
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8294
8342
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8295
8343
|
};
|
|
8344
|
+
export declare type CompassPackageDependencyComparator = CompassPackageDependencyNullaryComparator | CompassPackageDependencyUnaryComparator;
|
|
8345
|
+
export declare type CompassPackageDependencyComparatorInput = {
|
|
8346
|
+
packageDependencyNullaryComparatorInput?: InputMaybe<CompassPackageDependencyNullaryComparatorInput>;
|
|
8347
|
+
packageDependencyUnaryComparatorInput?: InputMaybe<CompassPackageDependencyUnaryComparatorInput>;
|
|
8348
|
+
};
|
|
8349
|
+
export declare enum CompassPackageDependencyManagerOptions {
|
|
8350
|
+
Npm = "NPM"
|
|
8351
|
+
}
|
|
8352
|
+
export declare type CompassPackageDependencyNullaryComparator = {
|
|
8353
|
+
__typename?: 'CompassPackageDependencyNullaryComparator';
|
|
8354
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
8355
|
+
};
|
|
8356
|
+
export declare type CompassPackageDependencyNullaryComparatorInput = {
|
|
8357
|
+
comparator: CompassPackageDependencyNullaryComparatorOptions;
|
|
8358
|
+
};
|
|
8359
|
+
export declare enum CompassPackageDependencyNullaryComparatorOptions {
|
|
8360
|
+
IsAbsent = "IS_ABSENT",
|
|
8361
|
+
IsPresent = "IS_PRESENT"
|
|
8362
|
+
}
|
|
8363
|
+
export declare type CompassPackageDependencyUnaryComparator = {
|
|
8364
|
+
__typename?: 'CompassPackageDependencyUnaryComparator';
|
|
8365
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
8366
|
+
comparatorValue?: Maybe<Scalars['String']['output']>;
|
|
8367
|
+
};
|
|
8368
|
+
export declare type CompassPackageDependencyUnaryComparatorInput = {
|
|
8369
|
+
comparator: CompassPackageDependencyUnaryComparatorOptions;
|
|
8370
|
+
comparatorValue: Scalars['String']['input'];
|
|
8371
|
+
};
|
|
8372
|
+
export declare enum CompassPackageDependencyUnaryComparatorOptions {
|
|
8373
|
+
CompatibleWith = "COMPATIBLE_WITH",
|
|
8374
|
+
Equals = "EQUALS",
|
|
8375
|
+
GreaterThan = "GREATER_THAN",
|
|
8376
|
+
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
8377
|
+
LessThan = "LESS_THAN",
|
|
8378
|
+
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO",
|
|
8379
|
+
MatchesRegex = "MATCHES_REGEX",
|
|
8380
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
8381
|
+
}
|
|
8296
8382
|
export declare type CompassPackageDependentComponentVersionsBySourceConnection = {
|
|
8297
8383
|
__typename?: 'CompassPackageDependentComponentVersionsBySourceConnection';
|
|
8298
8384
|
edges?: Maybe<Array<CompassPackageDependentComponentVersionsBySourceEdge>>;
|
|
@@ -9614,6 +9700,16 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
9614
9700
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
9615
9701
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
9616
9702
|
};
|
|
9703
|
+
export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
9704
|
+
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
9705
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
9706
|
+
id: Scalars['ID']['input'];
|
|
9707
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
9708
|
+
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
9709
|
+
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
9710
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
9711
|
+
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
9712
|
+
};
|
|
9617
9713
|
export declare type CompassUpdateJqlMetricSourceUserInput = {
|
|
9618
9714
|
metricSourceId: Scalars['ID']['input'];
|
|
9619
9715
|
};
|
|
@@ -20091,6 +20187,7 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
20091
20187
|
hasLink?: InputMaybe<CreateCompassHasLinkScorecardCriteriaInput>;
|
|
20092
20188
|
hasMetricValue?: InputMaybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
20093
20189
|
hasOwner?: InputMaybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
20190
|
+
hasPackageDependency?: InputMaybe<CompassCreateHasPackageDependencyScorecardCriteriaInput>;
|
|
20094
20191
|
};
|
|
20095
20192
|
export declare type CreateCompassScorecardInput = {
|
|
20096
20193
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
@@ -20345,6 +20442,7 @@ export declare type CreateJiraPlaybookStepInput = {
|
|
|
20345
20442
|
};
|
|
20346
20443
|
export declare type CreateJiraPlaybookStepRunInput = {
|
|
20347
20444
|
playbookInstanceStepAri: Scalars['ID']['input'];
|
|
20445
|
+
targetTransition?: InputMaybe<TargetTransition>;
|
|
20348
20446
|
userInputs?: InputMaybe<Array<UserInput>>;
|
|
20349
20447
|
};
|
|
20350
20448
|
export declare type CreateJiraPlaybookStepRunPayload = Payload & {
|
|
@@ -20380,6 +20478,23 @@ export declare type CreateMentionReminderNotificationPayload = Payload & {
|
|
|
20380
20478
|
failedAccountIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
20381
20479
|
success: Scalars['Boolean']['output'];
|
|
20382
20480
|
};
|
|
20481
|
+
export declare type CreateMetadataInput = {
|
|
20482
|
+
extraProps?: InputMaybe<Array<PropInput>>;
|
|
20483
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20484
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20485
|
+
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
20486
|
+
};
|
|
20487
|
+
export declare type CreateNoteInput = {
|
|
20488
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
20489
|
+
metadata?: InputMaybe<CreateMetadataInput>;
|
|
20490
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
20491
|
+
};
|
|
20492
|
+
export declare type CreateNotePayload = {
|
|
20493
|
+
__typename?: 'CreateNotePayload';
|
|
20494
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
20495
|
+
note?: Maybe<NoteResponse>;
|
|
20496
|
+
success: Scalars['Boolean']['output'];
|
|
20497
|
+
};
|
|
20383
20498
|
export declare type CreatePersonalSpaceInput = {
|
|
20384
20499
|
copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
20385
20500
|
initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
|
|
@@ -21271,6 +21386,7 @@ export declare type CustomerServiceIndividualNotesArgs = {
|
|
|
21271
21386
|
export declare type CustomerServiceIndividualRequestsArgs = {
|
|
21272
21387
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
21273
21388
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21389
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
21274
21390
|
};
|
|
21275
21391
|
export declare type CustomerServiceIndividualDeletePayload = Payload & {
|
|
21276
21392
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
@@ -21693,6 +21809,7 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
21693
21809
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21694
21810
|
};
|
|
21695
21811
|
export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
|
|
21812
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
21696
21813
|
issueKey: Scalars['String']['input'];
|
|
21697
21814
|
};
|
|
21698
21815
|
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
@@ -22276,6 +22393,15 @@ export declare type DeleteLabelPayload = {
|
|
|
22276
22393
|
contentId: Scalars['ID']['output'];
|
|
22277
22394
|
label: Scalars['String']['output'];
|
|
22278
22395
|
};
|
|
22396
|
+
export declare type DeleteNoteInput = {
|
|
22397
|
+
ari: Scalars['String']['input'];
|
|
22398
|
+
};
|
|
22399
|
+
export declare type DeleteNotePayload = {
|
|
22400
|
+
__typename?: 'DeleteNotePayload';
|
|
22401
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
22402
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
22403
|
+
success: Scalars['Boolean']['output'];
|
|
22404
|
+
};
|
|
22279
22405
|
export declare type DeletePagesInput = {
|
|
22280
22406
|
areChildrenIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22281
22407
|
excludedBranchRootPageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
@@ -31498,13 +31624,16 @@ export declare type GraphStore = {
|
|
|
31498
31624
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
31499
31625
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31500
31626
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31627
|
+
componentHasComponentLink?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkConnection>;
|
|
31501
31628
|
componentHasComponentLinkInverse?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseConnection>;
|
|
31502
31629
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
31503
31630
|
componentImpactedByIncidentInverse?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
31504
31631
|
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31505
31632
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31506
31633
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
31634
|
+
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
31507
31635
|
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
31636
|
+
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
31508
31637
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
31509
31638
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
31510
31639
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -31668,6 +31797,7 @@ export declare type GraphStore = {
|
|
|
31668
31797
|
issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
|
|
31669
31798
|
issueHasChangedPriority?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityConnection>;
|
|
31670
31799
|
issueHasChangedPriorityInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityInverseConnection>;
|
|
31800
|
+
issueHasChangedStatus?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusConnection>;
|
|
31671
31801
|
issueHasChangedStatusInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseConnection>;
|
|
31672
31802
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
31673
31803
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
@@ -31983,6 +32113,8 @@ export declare type GraphStore = {
|
|
|
31983
32113
|
userContributedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection>;
|
|
31984
32114
|
userCreatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalConnection>;
|
|
31985
32115
|
userCreatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection>;
|
|
32116
|
+
userCreatedAtlasProject?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectConnection>;
|
|
32117
|
+
userCreatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection>;
|
|
31986
32118
|
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
31987
32119
|
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
31988
32120
|
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
@@ -32541,6 +32673,13 @@ export declare type GraphStoreComponentAssociatedDocumentRelationshipArgs = {
|
|
|
32541
32673
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32542
32674
|
id: Scalars['ID']['input'];
|
|
32543
32675
|
};
|
|
32676
|
+
export declare type GraphStoreComponentHasComponentLinkArgs = {
|
|
32677
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32678
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32679
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32680
|
+
id: Scalars['ID']['input'];
|
|
32681
|
+
sort?: InputMaybe<GraphStoreComponentHasComponentLinkSortInput>;
|
|
32682
|
+
};
|
|
32544
32683
|
export declare type GraphStoreComponentHasComponentLinkInverseArgs = {
|
|
32545
32684
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32546
32685
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32579,6 +32718,13 @@ export declare type GraphStoreComponentLinkIsJiraProjectArgs = {
|
|
|
32579
32718
|
id: Scalars['ID']['input'];
|
|
32580
32719
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
32581
32720
|
};
|
|
32721
|
+
export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
32722
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32723
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32724
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32725
|
+
id: Scalars['ID']['input'];
|
|
32726
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
32727
|
+
};
|
|
32582
32728
|
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
32583
32729
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32584
32730
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32586,6 +32732,13 @@ export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
|
32586
32732
|
id: Scalars['ID']['input'];
|
|
32587
32733
|
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
32588
32734
|
};
|
|
32735
|
+
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
32736
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32737
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32738
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32739
|
+
id: Scalars['ID']['input'];
|
|
32740
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
32741
|
+
};
|
|
32589
32742
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
32590
32743
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32591
32744
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33647,6 +33800,13 @@ export declare type GraphStoreIssueHasChangedPriorityInverseArgs = {
|
|
|
33647
33800
|
id: Scalars['ID']['input'];
|
|
33648
33801
|
sort?: InputMaybe<GraphStoreIssueHasChangedPrioritySortInput>;
|
|
33649
33802
|
};
|
|
33803
|
+
export declare type GraphStoreIssueHasChangedStatusArgs = {
|
|
33804
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33805
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33806
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33807
|
+
id: Scalars['ID']['input'];
|
|
33808
|
+
sort?: InputMaybe<GraphStoreIssueHasChangedStatusSortInput>;
|
|
33809
|
+
};
|
|
33650
33810
|
export declare type GraphStoreIssueHasChangedStatusInverseArgs = {
|
|
33651
33811
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33652
33812
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35734,6 +35894,20 @@ export declare type GraphStoreUserCreatedAtlasGoalInverseArgs = {
|
|
|
35734
35894
|
id: Scalars['ID']['input'];
|
|
35735
35895
|
sort?: InputMaybe<GraphStoreUserCreatedAtlasGoalSortInput>;
|
|
35736
35896
|
};
|
|
35897
|
+
export declare type GraphStoreUserCreatedAtlasProjectArgs = {
|
|
35898
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35899
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35900
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35901
|
+
id: Scalars['ID']['input'];
|
|
35902
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasProjectSortInput>;
|
|
35903
|
+
};
|
|
35904
|
+
export declare type GraphStoreUserCreatedAtlasProjectInverseArgs = {
|
|
35905
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35906
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35907
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35908
|
+
id: Scalars['ID']['input'];
|
|
35909
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasProjectSortInput>;
|
|
35910
|
+
};
|
|
35737
35911
|
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
35738
35912
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35739
35913
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38635,7 +38809,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38635
38809
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38636
38810
|
id: Scalars['ID']['output'];
|
|
38637
38811
|
};
|
|
38638
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38812
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38639
38813
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38640
38814
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38641
38815
|
value: Scalars['Int']['output'];
|
|
@@ -38670,7 +38844,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
38670
38844
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
38671
38845
|
id: Scalars['ID']['output'];
|
|
38672
38846
|
};
|
|
38673
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38847
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38674
38848
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
38675
38849
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
38676
38850
|
value: Scalars['String']['output'];
|
|
@@ -38680,13 +38854,13 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
38680
38854
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
38681
38855
|
id: Scalars['ID']['output'];
|
|
38682
38856
|
};
|
|
38683
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38857
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38684
38858
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
38685
38859
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
38686
38860
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
38687
38861
|
id: Scalars['ID']['output'];
|
|
38688
38862
|
};
|
|
38689
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38863
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38690
38864
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
38691
38865
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
38692
38866
|
value: Scalars['Boolean']['output'];
|
|
@@ -38731,7 +38905,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
38731
38905
|
V2 = "V2",
|
|
38732
38906
|
V3 = "V3"
|
|
38733
38907
|
}
|
|
38734
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38908
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38735
38909
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
38736
38910
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
38737
38911
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -44452,6 +44626,19 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge =
|
|
|
44452
44626
|
};
|
|
44453
44627
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion = CompassComponent;
|
|
44454
44628
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
44629
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkConnection = HasPageInfo & {
|
|
44630
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkConnection';
|
|
44631
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkEdge>>>;
|
|
44632
|
+
pageInfo: PageInfo;
|
|
44633
|
+
};
|
|
44634
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkEdge = {
|
|
44635
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkEdge';
|
|
44636
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44637
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44638
|
+
id: Scalars['ID']['output'];
|
|
44639
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44640
|
+
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkUnion>;
|
|
44641
|
+
};
|
|
44455
44642
|
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseConnection = HasPageInfo & {
|
|
44456
44643
|
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkInverseConnection';
|
|
44457
44644
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseEdge>>>;
|
|
@@ -44466,6 +44653,7 @@ export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseEdge = {
|
|
|
44466
44653
|
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseUnion>;
|
|
44467
44654
|
};
|
|
44468
44655
|
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseUnion = CompassComponent;
|
|
44656
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkUnion = CompassLinkNode;
|
|
44469
44657
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
44470
44658
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
44471
44659
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentEdge>>>;
|
|
@@ -44507,6 +44695,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectEdge = {
|
|
|
44507
44695
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44508
44696
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectUnion>;
|
|
44509
44697
|
};
|
|
44698
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection = HasPageInfo & {
|
|
44699
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection';
|
|
44700
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge>>>;
|
|
44701
|
+
pageInfo: PageInfo;
|
|
44702
|
+
};
|
|
44703
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge = {
|
|
44704
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge';
|
|
44705
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44706
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44707
|
+
id: Scalars['ID']['output'];
|
|
44708
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44709
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion>;
|
|
44710
|
+
};
|
|
44711
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
44510
44712
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
44511
44713
|
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
44512
44714
|
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
@@ -44521,6 +44723,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
|
44521
44723
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44522
44724
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
44523
44725
|
};
|
|
44726
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
44727
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
44728
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
44729
|
+
pageInfo: PageInfo;
|
|
44730
|
+
};
|
|
44731
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
44732
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
44733
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44734
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44735
|
+
id: Scalars['ID']['output'];
|
|
44736
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44737
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
44738
|
+
};
|
|
44739
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
44524
44740
|
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
44525
44741
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
44526
44742
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
@@ -46042,6 +46258,19 @@ export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseEdge = {
|
|
|
46042
46258
|
};
|
|
46043
46259
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseUnion = JiraIssue;
|
|
46044
46260
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityUnion = JiraPriority;
|
|
46261
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusConnection = HasPageInfo & {
|
|
46262
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusConnection';
|
|
46263
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusEdge>>>;
|
|
46264
|
+
pageInfo: PageInfo;
|
|
46265
|
+
};
|
|
46266
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusEdge = {
|
|
46267
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusEdge';
|
|
46268
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46269
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46270
|
+
id: Scalars['ID']['output'];
|
|
46271
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46272
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusUnion>;
|
|
46273
|
+
};
|
|
46045
46274
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseConnection = HasPageInfo & {
|
|
46046
46275
|
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusInverseConnection';
|
|
46047
46276
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseEdge>>>;
|
|
@@ -46056,6 +46285,7 @@ export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseEdge = {
|
|
|
46056
46285
|
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseUnion>;
|
|
46057
46286
|
};
|
|
46058
46287
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseUnion = JiraIssue;
|
|
46288
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusUnion = JiraStatus;
|
|
46059
46289
|
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
46060
46290
|
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
46061
46291
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
@@ -49132,6 +49362,34 @@ export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge = {
|
|
|
49132
49362
|
};
|
|
49133
49363
|
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49134
49364
|
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalUnion = TownsquareGoal;
|
|
49365
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectConnection = HasPageInfo & {
|
|
49366
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectConnection';
|
|
49367
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectEdge>>>;
|
|
49368
|
+
pageInfo: PageInfo;
|
|
49369
|
+
};
|
|
49370
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectEdge = {
|
|
49371
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectEdge';
|
|
49372
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49373
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49374
|
+
id: Scalars['ID']['output'];
|
|
49375
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49376
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectUnion>;
|
|
49377
|
+
};
|
|
49378
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection = HasPageInfo & {
|
|
49379
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection';
|
|
49380
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge>>>;
|
|
49381
|
+
pageInfo: PageInfo;
|
|
49382
|
+
};
|
|
49383
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge = {
|
|
49384
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge';
|
|
49385
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49386
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49387
|
+
id: Scalars['ID']['output'];
|
|
49388
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49389
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseUnion>;
|
|
49390
|
+
};
|
|
49391
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49392
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectUnion = TownsquareProject;
|
|
49135
49393
|
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
49136
49394
|
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
49137
49395
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
@@ -51871,6 +52129,9 @@ export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
|
51871
52129
|
export declare type GraphStoreUserCreatedAtlasGoalSortInput = {
|
|
51872
52130
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51873
52131
|
};
|
|
52132
|
+
export declare type GraphStoreUserCreatedAtlasProjectSortInput = {
|
|
52133
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52134
|
+
};
|
|
51874
52135
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
51875
52136
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51876
52137
|
};
|
|
@@ -52453,27 +52714,40 @@ export declare type GrowthUnifiedProfileIssueTypeInput = {
|
|
|
52453
52714
|
};
|
|
52454
52715
|
export declare enum GrowthUnifiedProfileJtbd {
|
|
52455
52716
|
AdHocTaskAndIncidentManagement = "AD_HOC_TASK_AND_INCIDENT_MANAGEMENT",
|
|
52717
|
+
Brainstorming = "BRAINSTORMING",
|
|
52456
52718
|
Budgets = "BUDGETS",
|
|
52719
|
+
CampaignPlanning = "CAMPAIGN_PLANNING",
|
|
52457
52720
|
CdWrtng = "CD_WRTNG",
|
|
52458
52721
|
CentralizedDocumentation = "CENTRALIZED_DOCUMENTATION",
|
|
52459
52722
|
ComplianceAndRiskManagement = "COMPLIANCE_AND_RISK_MANAGEMENT",
|
|
52723
|
+
CreativeBriefs = "CREATIVE_BRIEFS",
|
|
52724
|
+
CustomerJourneys = "CUSTOMER_JOURNEYS",
|
|
52460
52725
|
EstimateTimeAndEffort = "ESTIMATE_TIME_AND_EFFORT",
|
|
52726
|
+
FlowchartAndDiagrams = "FLOWCHART_AND_DIAGRAMS",
|
|
52727
|
+
GanttChart = "GANTT_CHART",
|
|
52461
52728
|
ImproveTeamProcesses = "IMPROVE_TEAM_PROCESSES",
|
|
52462
52729
|
ImproveWorkflow = "IMPROVE_WORKFLOW",
|
|
52730
|
+
KnowledgeHub = "KNOWLEDGE_HUB",
|
|
52463
52731
|
LaunchCampaigns = "LAUNCH_CAMPAIGNS",
|
|
52464
52732
|
ManageTasks = "MANAGE_TASKS",
|
|
52465
52733
|
ManagingClientAndVendorRelationships = "MANAGING_CLIENT_AND_VENDOR_RELATIONSHIPS",
|
|
52466
52734
|
MapWorkDependencies = "MAP_WORK_DEPENDENCIES",
|
|
52467
52735
|
MarketingContent = "MARKETING_CONTENT",
|
|
52736
|
+
MeetingNotes = "MEETING_NOTES",
|
|
52468
52737
|
PlanAndManage = "PLAN_AND_MANAGE",
|
|
52469
52738
|
PrioritizeWork = "PRIORITIZE_WORK",
|
|
52739
|
+
ProcessMapping = "PROCESS_MAPPING",
|
|
52740
|
+
ProjectPlan = "PROJECT_PLAN",
|
|
52470
52741
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
52471
52742
|
ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
|
|
52472
52743
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
52744
|
+
RequirementsDoc = "REQUIREMENTS_DOC",
|
|
52473
52745
|
RunSprints = "RUN_SPRINTS",
|
|
52474
52746
|
Stakeholders = "STAKEHOLDERS",
|
|
52475
52747
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
52476
52748
|
SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
|
|
52749
|
+
TaskTracking = "TASK_TRACKING",
|
|
52750
|
+
TeamStatusUpdate = "TEAM_STATUS_UPDATE",
|
|
52477
52751
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
52478
52752
|
TrackBugs = "TRACK_BUGS",
|
|
52479
52753
|
UseKanbanBoard = "USE_KANBAN_BOARD",
|
|
@@ -59718,6 +59992,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
59718
59992
|
};
|
|
59719
59993
|
export declare enum JiraFieldConfigOrderBy {
|
|
59720
59994
|
ContextCount = "CONTEXT_COUNT",
|
|
59995
|
+
FieldType = "FIELD_TYPE",
|
|
59721
59996
|
LastUsed = "LAST_USED",
|
|
59722
59997
|
Name = "NAME",
|
|
59723
59998
|
PlannedDeleteDate = "PLANNED_DELETE_DATE",
|
|
@@ -59736,6 +60011,7 @@ export declare type JiraFieldConfigScheme = {
|
|
|
59736
60011
|
id: Scalars['ID']['output'];
|
|
59737
60012
|
name?: Maybe<Scalars['String']['output']>;
|
|
59738
60013
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
60014
|
+
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
59739
60015
|
};
|
|
59740
60016
|
export declare type JiraFieldConfigSchemesConnection = {
|
|
59741
60017
|
__typename?: 'JiraFieldConfigSchemesConnection';
|
|
@@ -60903,6 +61179,7 @@ export declare type JiraIssueContentPanelsArgs = {
|
|
|
60903
61179
|
};
|
|
60904
61180
|
export declare type JiraIssueDesignsArgs = {
|
|
60905
61181
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61182
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60906
61183
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60907
61184
|
};
|
|
60908
61185
|
export declare type JiraIssueEndDateViewFieldArgs = {
|
|
@@ -61434,6 +61711,8 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
61434
61711
|
trashedByUser?: Maybe<User>;
|
|
61435
61712
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
61436
61713
|
type: JiraConfigFieldType;
|
|
61714
|
+
typeDisplayName?: Maybe<Scalars['String']['output']>;
|
|
61715
|
+
typeKey?: Maybe<Scalars['String']['output']>;
|
|
61437
61716
|
};
|
|
61438
61717
|
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
61439
61718
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -62297,6 +62576,15 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
62297
62576
|
success: Scalars['Boolean']['output'];
|
|
62298
62577
|
view?: Maybe<JiraIssueSearchView>;
|
|
62299
62578
|
};
|
|
62579
|
+
export declare type JiraIssueSearchViewProjectKeyAndItemIdQuery = {
|
|
62580
|
+
cloudId: Scalars['ID']['input'];
|
|
62581
|
+
itemId: Scalars['String']['input'];
|
|
62582
|
+
projectKey: Scalars['String']['input'];
|
|
62583
|
+
};
|
|
62584
|
+
export declare type JiraIssueSearchViewQueryInput = {
|
|
62585
|
+
projectKeyAndItemIdQuery?: InputMaybe<JiraIssueSearchViewProjectKeyAndItemIdQuery>;
|
|
62586
|
+
viewAri?: InputMaybe<Scalars['ID']['input']>;
|
|
62587
|
+
};
|
|
62300
62588
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
62301
62589
|
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
62302
62590
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
@@ -63354,6 +63642,18 @@ export declare type JiraLabel = {
|
|
|
63354
63642
|
labelId?: Maybe<Scalars['String']['output']>;
|
|
63355
63643
|
name?: Maybe<Scalars['String']['output']>;
|
|
63356
63644
|
};
|
|
63645
|
+
export declare type JiraLabelColorUpdateInput = {
|
|
63646
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
63647
|
+
fieldId: Scalars['ID']['input'];
|
|
63648
|
+
label: Scalars['String']['input'];
|
|
63649
|
+
};
|
|
63650
|
+
export declare type JiraLabelColorUpdatePayload = Payload & {
|
|
63651
|
+
__typename?: 'JiraLabelColorUpdatePayload';
|
|
63652
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63653
|
+
fieldId?: Maybe<Scalars['ID']['output']>;
|
|
63654
|
+
label?: Maybe<JiraLabel>;
|
|
63655
|
+
success: Scalars['Boolean']['output'];
|
|
63656
|
+
};
|
|
63357
63657
|
export declare type JiraLabelConnection = {
|
|
63358
63658
|
__typename?: 'JiraLabelConnection';
|
|
63359
63659
|
edges?: Maybe<Array<Maybe<JiraLabelEdge>>>;
|
|
@@ -64031,6 +64331,7 @@ export declare type JiraMutation = {
|
|
|
64031
64331
|
updateJsmOrganizationField?: Maybe<JiraServiceManagementOrganizationFieldPayload>;
|
|
64032
64332
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
64033
64333
|
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
64334
|
+
updateLabelColor?: Maybe<JiraLabelColorUpdatePayload>;
|
|
64034
64335
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
64035
64336
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
64036
64337
|
updateMultipleGroupPickerField?: Maybe<JiraMultipleGroupPickerFieldPayload>;
|
|
@@ -64600,6 +64901,9 @@ export declare type JiraMutationUpdateJwmFilterArgs = {
|
|
|
64600
64901
|
export declare type JiraMutationUpdateJwmOverviewArgs = {
|
|
64601
64902
|
input: JiraWorkManagementUpdateOverviewInput;
|
|
64602
64903
|
};
|
|
64904
|
+
export declare type JiraMutationUpdateLabelColorArgs = {
|
|
64905
|
+
input: JiraLabelColorUpdateInput;
|
|
64906
|
+
};
|
|
64603
64907
|
export declare type JiraMutationUpdateLabelsFieldArgs = {
|
|
64604
64908
|
input: JiraUpdateLabelsFieldInput;
|
|
64605
64909
|
};
|
|
@@ -65889,6 +66193,7 @@ export declare enum JiraPlaybookStepRunStatus {
|
|
|
65889
66193
|
QueuedForRetry = "QUEUED_FOR_RETRY",
|
|
65890
66194
|
SomeErrors = "SOME_ERRORS",
|
|
65891
66195
|
Success = "SUCCESS",
|
|
66196
|
+
SuccessUndone = "SUCCESS_UNDONE",
|
|
65892
66197
|
Throttled = "THROTTLED",
|
|
65893
66198
|
Waiting = "WAITING"
|
|
65894
66199
|
}
|
|
@@ -67531,6 +67836,7 @@ export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
|
67531
67836
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
67532
67837
|
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
67533
67838
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
67839
|
+
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
67534
67840
|
};
|
|
67535
67841
|
export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
67536
67842
|
cloudId: Scalars['ID']['input'];
|
|
@@ -79656,6 +79962,7 @@ export declare type MercuryProviderWorkSearchEdge = {
|
|
|
79656
79962
|
node?: Maybe<MercuryProviderWorkSearchItem>;
|
|
79657
79963
|
};
|
|
79658
79964
|
export declare type MercuryProviderWorkSearchFilters = {
|
|
79965
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
79659
79966
|
project?: InputMaybe<MercuryProviderWorkSearchProjectFilters>;
|
|
79660
79967
|
};
|
|
79661
79968
|
export declare type MercuryProviderWorkSearchItem = {
|
|
@@ -81013,6 +81320,7 @@ export declare type Mutation = {
|
|
|
81013
81320
|
createLivePage?: Maybe<Content>;
|
|
81014
81321
|
createMentionNotification?: Maybe<CreateMentionNotificationPayload>;
|
|
81015
81322
|
createMentionReminderNotification?: Maybe<CreateMentionReminderNotificationPayload>;
|
|
81323
|
+
createNote?: Maybe<CreateNotePayload>;
|
|
81016
81324
|
createOnboardingSpace?: Maybe<Scalars['String']['output']>;
|
|
81017
81325
|
createOrUpdateArchivePageNote?: Maybe<Scalars['String']['output']>;
|
|
81018
81326
|
createPersonalSpace?: Maybe<Space>;
|
|
@@ -81058,6 +81366,7 @@ export declare type Mutation = {
|
|
|
81058
81366
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
81059
81367
|
deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
81060
81368
|
deleteLabel?: Maybe<DeleteLabelPayload>;
|
|
81369
|
+
deleteNote?: Maybe<DeleteNotePayload>;
|
|
81061
81370
|
deletePages?: Maybe<DeletePagesPayload>;
|
|
81062
81371
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
81063
81372
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
@@ -81313,6 +81622,7 @@ export declare type Mutation = {
|
|
|
81313
81622
|
updateHomeUserSettings?: Maybe<HomeUserSettings>;
|
|
81314
81623
|
updateLocalStorage?: Maybe<LocalStorage>;
|
|
81315
81624
|
updateNestedPageOwners?: Maybe<UpdateNestedPageOwnersPayload>;
|
|
81625
|
+
updateNote?: Maybe<UpdateNotePayload>;
|
|
81316
81626
|
updateOwner?: Maybe<UpdateOwnerPayload>;
|
|
81317
81627
|
updatePage?: Maybe<UpdatePagePayload>;
|
|
81318
81628
|
updatePageOwners?: Maybe<UpdatePageOwnersPayload>;
|
|
@@ -82217,6 +82527,9 @@ export declare type MutationCreateMentionNotificationArgs = {
|
|
|
82217
82527
|
export declare type MutationCreateMentionReminderNotificationArgs = {
|
|
82218
82528
|
input: CreateMentionReminderNotificationInput;
|
|
82219
82529
|
};
|
|
82530
|
+
export declare type MutationCreateNoteArgs = {
|
|
82531
|
+
input: CreateNoteInput;
|
|
82532
|
+
};
|
|
82220
82533
|
export declare type MutationCreateOnboardingSpaceArgs = {
|
|
82221
82534
|
spaceType: Scalars['String']['input'];
|
|
82222
82535
|
};
|
|
@@ -82382,6 +82695,9 @@ export declare type MutationDeleteLabelArgs = {
|
|
|
82382
82695
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
82383
82696
|
input: DeleteLabelInput;
|
|
82384
82697
|
};
|
|
82698
|
+
export declare type MutationDeleteNoteArgs = {
|
|
82699
|
+
input: DeleteNoteInput;
|
|
82700
|
+
};
|
|
82385
82701
|
export declare type MutationDeletePagesArgs = {
|
|
82386
82702
|
input: Array<InputMaybe<DeletePagesInput>>;
|
|
82387
82703
|
};
|
|
@@ -83121,6 +83437,9 @@ export declare type MutationUpdateLocalStorageArgs = {
|
|
|
83121
83437
|
export declare type MutationUpdateNestedPageOwnersArgs = {
|
|
83122
83438
|
input: UpdatedNestedPageOwnersInput;
|
|
83123
83439
|
};
|
|
83440
|
+
export declare type MutationUpdateNoteArgs = {
|
|
83441
|
+
input: UpdateNoteInput;
|
|
83442
|
+
};
|
|
83124
83443
|
export declare type MutationUpdateOwnerArgs = {
|
|
83125
83444
|
input: UpdateOwnerInput;
|
|
83126
83445
|
};
|
|
@@ -83346,10 +83665,14 @@ export declare type MyVisitedSpacesInfo = {
|
|
|
83346
83665
|
export declare type MyVisitedSpacesItems = {
|
|
83347
83666
|
__typename?: 'MyVisitedSpacesItems';
|
|
83348
83667
|
spaces?: Maybe<Array<Maybe<Space>>>;
|
|
83668
|
+
spacesWithCloudId?: Maybe<Array<Maybe<Space>>>;
|
|
83349
83669
|
};
|
|
83350
83670
|
export declare type MyVisitedSpacesItemsSpacesArgs = {
|
|
83351
83671
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
83352
83672
|
};
|
|
83673
|
+
export declare type MyVisitedSpacesItemsSpacesWithCloudIdArgs = {
|
|
83674
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
83675
|
+
};
|
|
83353
83676
|
export declare type NadelBatchObjectIdentifiedBy = {
|
|
83354
83677
|
resultId: Scalars['String']['input'];
|
|
83355
83678
|
sourceId: Scalars['String']['input'];
|
|
@@ -83502,6 +83825,60 @@ export declare type NlpSource = {
|
|
|
83502
83825
|
export declare type Node = {
|
|
83503
83826
|
id: Scalars['ID']['output'];
|
|
83504
83827
|
};
|
|
83828
|
+
export declare type NoteConnection = {
|
|
83829
|
+
__typename?: 'NoteConnection';
|
|
83830
|
+
edges?: Maybe<Array<Maybe<NoteEdge>>>;
|
|
83831
|
+
nodes?: Maybe<Array<Maybe<NoteResponse>>>;
|
|
83832
|
+
noteInfo: NoteInfo;
|
|
83833
|
+
};
|
|
83834
|
+
export declare type NoteEdge = {
|
|
83835
|
+
__typename?: 'NoteEdge';
|
|
83836
|
+
cursor: Scalars['String']['output'];
|
|
83837
|
+
node: NoteResponse;
|
|
83838
|
+
};
|
|
83839
|
+
export declare type NoteInfo = {
|
|
83840
|
+
__typename?: 'NoteInfo';
|
|
83841
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
83842
|
+
hasNextNode: Scalars['Boolean']['output'];
|
|
83843
|
+
hasPreviousNode: Scalars['Boolean']['output'];
|
|
83844
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
83845
|
+
};
|
|
83846
|
+
export declare type NoteMutationError = {
|
|
83847
|
+
__typename?: 'NoteMutationError';
|
|
83848
|
+
extensions?: Maybe<Array<Maybe<NoteMutationErrorExtension>>>;
|
|
83849
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
83850
|
+
};
|
|
83851
|
+
export declare type NoteMutationErrorExtension = {
|
|
83852
|
+
__typename?: 'NoteMutationErrorExtension';
|
|
83853
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
83854
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
83855
|
+
};
|
|
83856
|
+
export declare type NoteResponse = {
|
|
83857
|
+
__typename?: 'NoteResponse';
|
|
83858
|
+
ari: Scalars['String']['output'];
|
|
83859
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
83860
|
+
bodyExcerpt?: Maybe<Scalars['String']['output']>;
|
|
83861
|
+
collectionName: Scalars['String']['output'];
|
|
83862
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
83863
|
+
extraProps?: Maybe<Array<Prop>>;
|
|
83864
|
+
isPinned: Scalars['Boolean']['output'];
|
|
83865
|
+
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
83866
|
+
productLink?: Maybe<Scalars['String']['output']>;
|
|
83867
|
+
thumbnailId?: Maybe<Scalars['String']['output']>;
|
|
83868
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
83869
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
83870
|
+
};
|
|
83871
|
+
export declare type NotesByCreatorInput = {
|
|
83872
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83873
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
83874
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83875
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83876
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
83877
|
+
orderBy?: InputMaybe<NotesByDateLastModifiedOrder>;
|
|
83878
|
+
};
|
|
83879
|
+
export declare enum NotesByDateLastModifiedOrder {
|
|
83880
|
+
DateLastModified = "DATE_LAST_MODIFIED"
|
|
83881
|
+
}
|
|
83505
83882
|
export declare enum NotificationAction {
|
|
83506
83883
|
DontNotify = "DONT_NOTIFY",
|
|
83507
83884
|
Notify = "NOTIFY"
|
|
@@ -83748,6 +84125,14 @@ export declare type OpsgenieTeamMemberEdge = {
|
|
|
83748
84125
|
cursor: Scalars['String']['output'];
|
|
83749
84126
|
node?: Maybe<OpsgenieTeamMember>;
|
|
83750
84127
|
};
|
|
84128
|
+
export declare type OrgPolicyPolicyDetails = Node & {
|
|
84129
|
+
__typename?: 'OrgPolicyPolicyDetails';
|
|
84130
|
+
id: Scalars['ID']['output'];
|
|
84131
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
84132
|
+
name: Scalars['String']['output'];
|
|
84133
|
+
rule?: Maybe<Scalars['JSON']['output']>;
|
|
84134
|
+
status: Scalars['String']['output'];
|
|
84135
|
+
};
|
|
83751
84136
|
export declare type Organization = {
|
|
83752
84137
|
__typename?: 'Organization';
|
|
83753
84138
|
orgId?: Maybe<Scalars['String']['output']>;
|
|
@@ -85612,6 +85997,15 @@ export declare type ProjectAvatars = {
|
|
|
85612
85997
|
x32: Scalars['URL']['output'];
|
|
85613
85998
|
x48: Scalars['URL']['output'];
|
|
85614
85999
|
};
|
|
86000
|
+
export declare type Prop = {
|
|
86001
|
+
__typename?: 'Prop';
|
|
86002
|
+
key: Scalars['String']['output'];
|
|
86003
|
+
value: Scalars['String']['output'];
|
|
86004
|
+
};
|
|
86005
|
+
export declare type PropInput = {
|
|
86006
|
+
key: Scalars['String']['input'];
|
|
86007
|
+
value: Scalars['String']['input'];
|
|
86008
|
+
};
|
|
85615
86009
|
export declare type Properties = {
|
|
85616
86010
|
__typename?: 'Properties';
|
|
85617
86011
|
formStatus: FormStatus;
|
|
@@ -85921,6 +86315,7 @@ export declare type Query = {
|
|
|
85921
86315
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
85922
86316
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
85923
86317
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
86318
|
+
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
85924
86319
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
85925
86320
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
85926
86321
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
@@ -86452,12 +86847,15 @@ export declare type Query = {
|
|
|
86452
86847
|
myVisitedSpaces?: Maybe<MyVisitedSpaces>;
|
|
86453
86848
|
nlpSearch?: Maybe<NlpSearchResponse>;
|
|
86454
86849
|
node?: Maybe<Node>;
|
|
86850
|
+
notesByCreator?: Maybe<NoteConnection>;
|
|
86455
86851
|
notifications?: Maybe<InfluentsNotificationQuery>;
|
|
86456
86852
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
86457
86853
|
onboardingState?: Maybe<Array<OnboardingState>>;
|
|
86458
86854
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
86459
86855
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
86460
86856
|
orgDefaultClassificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
86857
|
+
orgPolicy_policiesDetails?: Maybe<Array<Maybe<OrgPolicyPolicyDetails>>>;
|
|
86858
|
+
orgPolicy_policyDetails?: Maybe<OrgPolicyPolicyDetails>;
|
|
86461
86859
|
organization?: Maybe<Organization>;
|
|
86462
86860
|
organizationContext?: Maybe<OrganizationContext>;
|
|
86463
86861
|
page?: Maybe<Page>;
|
|
@@ -86672,6 +87070,11 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
86672
87070
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
86673
87071
|
projectAri: Scalars['ID']['input'];
|
|
86674
87072
|
};
|
|
87073
|
+
export declare type QueryAiCoreApi_VsaQuestionsByProjectAndTypeArgs = {
|
|
87074
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87075
|
+
projectAri: Scalars['ID']['input'];
|
|
87076
|
+
types?: InputMaybe<Array<InputMaybe<AiCoreApiQuestionType>>>;
|
|
87077
|
+
};
|
|
86675
87078
|
export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
|
|
86676
87079
|
projectAri: Scalars['ID']['input'];
|
|
86677
87080
|
};
|
|
@@ -88814,12 +89217,21 @@ export declare type QueryNlpSearchArgs = {
|
|
|
88814
89217
|
export declare type QueryNodeArgs = {
|
|
88815
89218
|
id: Scalars['ID']['input'];
|
|
88816
89219
|
};
|
|
89220
|
+
export declare type QueryNotesByCreatorArgs = {
|
|
89221
|
+
input?: InputMaybe<NotesByCreatorInput>;
|
|
89222
|
+
};
|
|
88817
89223
|
export declare type QueryOnboardingStateArgs = {
|
|
88818
89224
|
key?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
88819
89225
|
};
|
|
88820
89226
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
88821
89227
|
id: Scalars['ID']['input'];
|
|
88822
89228
|
};
|
|
89229
|
+
export declare type QueryOrgPolicy_PoliciesDetailsArgs = {
|
|
89230
|
+
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
89231
|
+
};
|
|
89232
|
+
export declare type QueryOrgPolicy_PolicyDetailsArgs = {
|
|
89233
|
+
id: Scalars['ID']['input'];
|
|
89234
|
+
};
|
|
88823
89235
|
export declare type QueryPageArgs = {
|
|
88824
89236
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88825
89237
|
id: Scalars['ID']['input'];
|
|
@@ -96304,6 +96716,10 @@ export declare type TargetLocation = {
|
|
|
96304
96716
|
links?: Maybe<LinksContextBase>;
|
|
96305
96717
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
96306
96718
|
};
|
|
96719
|
+
export declare enum TargetTransition {
|
|
96720
|
+
Done = "DONE",
|
|
96721
|
+
Undone = "UNDONE"
|
|
96722
|
+
}
|
|
96307
96723
|
export declare enum TaskStatus {
|
|
96308
96724
|
Checked = "CHECKED",
|
|
96309
96725
|
Unchecked = "UNCHECKED"
|
|
@@ -101723,6 +102139,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
101723
102139
|
hasLink?: InputMaybe<UpdateCompassHasLinkScorecardCriteriaInput>;
|
|
101724
102140
|
hasMetricValue?: InputMaybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
101725
102141
|
hasOwner?: InputMaybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
102142
|
+
hasPackageDependency?: InputMaybe<CompassUpdateHasPackageDependencyScorecardCriteriaInput>;
|
|
101726
102143
|
};
|
|
101727
102144
|
export declare type UpdateCompassScorecardInput = {
|
|
101728
102145
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
@@ -101998,6 +102415,14 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
101998
102415
|
stepId?: InputMaybe<Scalars['ID']['input']>;
|
|
101999
102416
|
type: JiraPlaybookStepType;
|
|
102000
102417
|
};
|
|
102418
|
+
export declare type UpdateMetadataInput = {
|
|
102419
|
+
ari: Scalars['String']['input'];
|
|
102420
|
+
extraProps?: InputMaybe<Array<PropInput>>;
|
|
102421
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102422
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102423
|
+
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
102424
|
+
thumbnailId?: InputMaybe<Scalars['String']['input']>;
|
|
102425
|
+
};
|
|
102001
102426
|
export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
102002
102427
|
__typename?: 'UpdateNestedPageOwnersPayload';
|
|
102003
102428
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -102005,6 +102430,17 @@ export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
|
102005
102430
|
taskId: Scalars['ID']['output'];
|
|
102006
102431
|
warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
|
|
102007
102432
|
};
|
|
102433
|
+
export declare type UpdateNoteInput = {
|
|
102434
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
102435
|
+
metadata: UpdateMetadataInput;
|
|
102436
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
102437
|
+
};
|
|
102438
|
+
export declare type UpdateNotePayload = {
|
|
102439
|
+
__typename?: 'UpdateNotePayload';
|
|
102440
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
102441
|
+
note?: Maybe<NoteResponse>;
|
|
102442
|
+
success: Scalars['Boolean']['output'];
|
|
102443
|
+
};
|
|
102008
102444
|
export declare type UpdateOwnerInput = {
|
|
102009
102445
|
contentId: Scalars['ID']['input'];
|
|
102010
102446
|
ownerId: Scalars['String']['input'];
|
|
@@ -102633,6 +103069,17 @@ export declare type VirtualAgentAiAnswerStatusForChannel = {
|
|
|
102633
103069
|
isAiResponsesChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
102634
103070
|
slackChannelId: Scalars['String']['output'];
|
|
102635
103071
|
};
|
|
103072
|
+
export declare type VirtualAgentAutoCloseConfig = {
|
|
103073
|
+
__typename?: 'VirtualAgentAutoCloseConfig';
|
|
103074
|
+
autoCloseMessage?: Maybe<Scalars['String']['output']>;
|
|
103075
|
+
};
|
|
103076
|
+
export declare type VirtualAgentCsatConfig = {
|
|
103077
|
+
__typename?: 'VirtualAgentCSATConfig';
|
|
103078
|
+
askForCSATMessage?: Maybe<Scalars['String']['output']>;
|
|
103079
|
+
noFeedbackProvidedMessage?: Maybe<Scalars['String']['output']>;
|
|
103080
|
+
requestAdditionalFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103081
|
+
thanksForFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103082
|
+
};
|
|
102636
103083
|
export declare type VirtualAgentChannelConfig = {
|
|
102637
103084
|
__typename?: 'VirtualAgentChannelConfig';
|
|
102638
103085
|
aiAnswersProductionStatus?: Maybe<Array<Maybe<VirtualAgentAiAnswerStatusForChannel>>>;
|
|
@@ -102655,6 +103102,7 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
102655
103102
|
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
102656
103103
|
offerEscalationConfig?: Maybe<VirtualAgentOfferEscalationConfig>;
|
|
102657
103104
|
respondToQueries: Scalars['Boolean']['output'];
|
|
103105
|
+
standardConfig?: Maybe<VirtualAgentStandardConfig>;
|
|
102658
103106
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
102659
103107
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
102660
103108
|
virtualAgentStatisticsProjection?: Maybe<VirtualAgentStatisticsProjection>;
|
|
@@ -102858,6 +103306,10 @@ export declare type VirtualAgentGlobalStatisticsProjection = {
|
|
|
102858
103306
|
totalMatched?: Maybe<Scalars['Float']['output']>;
|
|
102859
103307
|
totalTraffic?: Maybe<Scalars['Int']['output']>;
|
|
102860
103308
|
};
|
|
103309
|
+
export declare type VirtualAgentGreetingConfig = {
|
|
103310
|
+
__typename?: 'VirtualAgentGreetingConfig';
|
|
103311
|
+
greetingMessage?: Maybe<Scalars['String']['output']>;
|
|
103312
|
+
};
|
|
102861
103313
|
export declare type VirtualAgentIntent = Node & {
|
|
102862
103314
|
__typename?: 'VirtualAgentIntent';
|
|
102863
103315
|
confirmationMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -102985,6 +103437,12 @@ export declare type VirtualAgentLiveIntentCountResponse = {
|
|
|
102985
103437
|
containerId: Scalars['ID']['output'];
|
|
102986
103438
|
liveIntentsCount: Scalars['Int']['output'];
|
|
102987
103439
|
};
|
|
103440
|
+
export declare type VirtualAgentMatchIntentConfig = {
|
|
103441
|
+
__typename?: 'VirtualAgentMatchIntentConfig';
|
|
103442
|
+
askToRephraseAgainMessage?: Maybe<Scalars['String']['output']>;
|
|
103443
|
+
rephraseMessage?: Maybe<Scalars['String']['output']>;
|
|
103444
|
+
suggestMultipleIntentsMessage?: Maybe<Scalars['String']['output']>;
|
|
103445
|
+
};
|
|
102988
103446
|
export declare type VirtualAgentMutationApi = {
|
|
102989
103447
|
__typename?: 'VirtualAgentMutationApi';
|
|
102990
103448
|
copyIntentRuleProjection?: Maybe<VirtualAgentCopyIntentRuleProjectionPayload>;
|
|
@@ -103123,6 +103581,13 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
103123
103581
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
103124
103582
|
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
103125
103583
|
};
|
|
103584
|
+
export declare type VirtualAgentStandardConfig = {
|
|
103585
|
+
__typename?: 'VirtualAgentStandardConfig';
|
|
103586
|
+
autoCloseConfig?: Maybe<VirtualAgentAutoCloseConfig>;
|
|
103587
|
+
csatConfig?: Maybe<VirtualAgentCsatConfig>;
|
|
103588
|
+
greetingConfig?: Maybe<VirtualAgentGreetingConfig>;
|
|
103589
|
+
matchIntentConfig?: Maybe<VirtualAgentMatchIntentConfig>;
|
|
103590
|
+
};
|
|
103126
103591
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
103127
103592
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
103128
103593
|
aiResolution?: Maybe<Scalars['Float']['output']>;
|