@forge/cli-shared 6.11.0-next.11 → 6.11.0-next.12
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 +6 -0
- package/out/graphql/graphql-types.d.ts +427 -5
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +68 -24
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- package/package.json +1 -1
|
@@ -6682,6 +6682,15 @@ export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
6682
6682
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
6683
6683
|
weight: Scalars['Int']['input'];
|
|
6684
6684
|
};
|
|
6685
|
+
export declare type CompassCreateHasPackageDependencyScorecardCriteriaInput = {
|
|
6686
|
+
comparators: Array<CompassPackageDependencyComparatorInput>;
|
|
6687
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
6688
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6689
|
+
packageManager: CompassPackageDependencyManagerOptions;
|
|
6690
|
+
packageName: Scalars['String']['input'];
|
|
6691
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6692
|
+
weight: Scalars['Int']['input'];
|
|
6693
|
+
};
|
|
6685
6694
|
export declare type CompassCreateIncidentEventInput = {
|
|
6686
6695
|
description: Scalars['String']['input'];
|
|
6687
6696
|
displayName: Scalars['String']['input'];
|
|
@@ -7919,6 +7928,21 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
7919
7928
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
7920
7929
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
7921
7930
|
};
|
|
7931
|
+
export declare type CompassHasPackageDependencyScorecardCriteria = CompassScorecardCriteria & {
|
|
7932
|
+
__typename?: 'CompassHasPackageDependencyScorecardCriteria';
|
|
7933
|
+
comparators?: Maybe<Array<CompassPackageDependencyComparator>>;
|
|
7934
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7935
|
+
id: Scalars['ID']['output'];
|
|
7936
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7937
|
+
packageManager?: Maybe<Scalars['String']['output']>;
|
|
7938
|
+
packageName?: Maybe<Scalars['String']['output']>;
|
|
7939
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
7940
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
7941
|
+
weight: Scalars['Int']['output'];
|
|
7942
|
+
};
|
|
7943
|
+
export declare type CompassHasPackageDependencyScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
7944
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
7945
|
+
};
|
|
7922
7946
|
export declare type CompassIncidentEvent = CompassEvent & {
|
|
7923
7947
|
__typename?: 'CompassIncidentEvent';
|
|
7924
7948
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -8117,6 +8141,15 @@ export declare type CompassLink = {
|
|
|
8117
8141
|
type: CompassLinkType;
|
|
8118
8142
|
url: Scalars['URL']['output'];
|
|
8119
8143
|
};
|
|
8144
|
+
export declare type CompassLinkNode = Node & {
|
|
8145
|
+
__typename?: 'CompassLinkNode';
|
|
8146
|
+
eventSources?: Maybe<Array<EventSource>>;
|
|
8147
|
+
id: Scalars['ID']['output'];
|
|
8148
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8149
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
8150
|
+
type: CompassLinkType;
|
|
8151
|
+
url: Scalars['URL']['output'];
|
|
8152
|
+
};
|
|
8120
8153
|
export declare enum CompassLinkType {
|
|
8121
8154
|
ChatChannel = "CHAT_CHANNEL",
|
|
8122
8155
|
Dashboard = "DASHBOARD",
|
|
@@ -8293,6 +8326,44 @@ export declare type CompassPackageDependentComponentsArgs = {
|
|
|
8293
8326
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8294
8327
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8295
8328
|
};
|
|
8329
|
+
export declare type CompassPackageDependencyComparator = CompassPackageDependencyNullaryComparator | CompassPackageDependencyUnaryComparator;
|
|
8330
|
+
export declare type CompassPackageDependencyComparatorInput = {
|
|
8331
|
+
packageDependencyNullaryComparatorInput?: InputMaybe<CompassPackageDependencyNullaryComparatorInput>;
|
|
8332
|
+
packageDependencyUnaryComparatorInput?: InputMaybe<CompassPackageDependencyUnaryComparatorInput>;
|
|
8333
|
+
};
|
|
8334
|
+
export declare enum CompassPackageDependencyManagerOptions {
|
|
8335
|
+
Npm = "NPM"
|
|
8336
|
+
}
|
|
8337
|
+
export declare type CompassPackageDependencyNullaryComparator = {
|
|
8338
|
+
__typename?: 'CompassPackageDependencyNullaryComparator';
|
|
8339
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
8340
|
+
};
|
|
8341
|
+
export declare type CompassPackageDependencyNullaryComparatorInput = {
|
|
8342
|
+
comparator: CompassPackageDependencyNullaryComparatorOptions;
|
|
8343
|
+
};
|
|
8344
|
+
export declare enum CompassPackageDependencyNullaryComparatorOptions {
|
|
8345
|
+
IsAbsent = "IS_ABSENT",
|
|
8346
|
+
IsPresent = "IS_PRESENT"
|
|
8347
|
+
}
|
|
8348
|
+
export declare type CompassPackageDependencyUnaryComparator = {
|
|
8349
|
+
__typename?: 'CompassPackageDependencyUnaryComparator';
|
|
8350
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
8351
|
+
comparatorValue?: Maybe<Scalars['String']['output']>;
|
|
8352
|
+
};
|
|
8353
|
+
export declare type CompassPackageDependencyUnaryComparatorInput = {
|
|
8354
|
+
comparator: CompassPackageDependencyUnaryComparatorOptions;
|
|
8355
|
+
comparatorValue: Scalars['String']['input'];
|
|
8356
|
+
};
|
|
8357
|
+
export declare enum CompassPackageDependencyUnaryComparatorOptions {
|
|
8358
|
+
CompatibleWith = "COMPATIBLE_WITH",
|
|
8359
|
+
Equals = "EQUALS",
|
|
8360
|
+
GreaterThan = "GREATER_THAN",
|
|
8361
|
+
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
8362
|
+
LessThan = "LESS_THAN",
|
|
8363
|
+
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO",
|
|
8364
|
+
MatchesRegex = "MATCHES_REGEX",
|
|
8365
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
8366
|
+
}
|
|
8296
8367
|
export declare type CompassPackageDependentComponentVersionsBySourceConnection = {
|
|
8297
8368
|
__typename?: 'CompassPackageDependentComponentVersionsBySourceConnection';
|
|
8298
8369
|
edges?: Maybe<Array<CompassPackageDependentComponentVersionsBySourceEdge>>;
|
|
@@ -9614,6 +9685,16 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
|
9614
9685
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
9615
9686
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
9616
9687
|
};
|
|
9688
|
+
export declare type CompassUpdateHasPackageDependencyScorecardCriteriaInput = {
|
|
9689
|
+
comparators?: InputMaybe<Array<CompassPackageDependencyComparatorInput>>;
|
|
9690
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
9691
|
+
id: Scalars['ID']['input'];
|
|
9692
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
9693
|
+
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
9694
|
+
packageName?: InputMaybe<Scalars['String']['input']>;
|
|
9695
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
9696
|
+
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
9697
|
+
};
|
|
9617
9698
|
export declare type CompassUpdateJqlMetricSourceUserInput = {
|
|
9618
9699
|
metricSourceId: Scalars['ID']['input'];
|
|
9619
9700
|
};
|
|
@@ -20091,6 +20172,7 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
20091
20172
|
hasLink?: InputMaybe<CreateCompassHasLinkScorecardCriteriaInput>;
|
|
20092
20173
|
hasMetricValue?: InputMaybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
20093
20174
|
hasOwner?: InputMaybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
20175
|
+
hasPackageDependency?: InputMaybe<CompassCreateHasPackageDependencyScorecardCriteriaInput>;
|
|
20094
20176
|
};
|
|
20095
20177
|
export declare type CreateCompassScorecardInput = {
|
|
20096
20178
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
@@ -20345,6 +20427,7 @@ export declare type CreateJiraPlaybookStepInput = {
|
|
|
20345
20427
|
};
|
|
20346
20428
|
export declare type CreateJiraPlaybookStepRunInput = {
|
|
20347
20429
|
playbookInstanceStepAri: Scalars['ID']['input'];
|
|
20430
|
+
targetTransition?: InputMaybe<TargetTransition>;
|
|
20348
20431
|
userInputs?: InputMaybe<Array<UserInput>>;
|
|
20349
20432
|
};
|
|
20350
20433
|
export declare type CreateJiraPlaybookStepRunPayload = Payload & {
|
|
@@ -20380,6 +20463,23 @@ export declare type CreateMentionReminderNotificationPayload = Payload & {
|
|
|
20380
20463
|
failedAccountIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
20381
20464
|
success: Scalars['Boolean']['output'];
|
|
20382
20465
|
};
|
|
20466
|
+
export declare type CreateMetadataInput = {
|
|
20467
|
+
extraProps?: InputMaybe<Array<PropInput>>;
|
|
20468
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20469
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20470
|
+
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
20471
|
+
};
|
|
20472
|
+
export declare type CreateNoteInput = {
|
|
20473
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
20474
|
+
metadata?: InputMaybe<CreateMetadataInput>;
|
|
20475
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
20476
|
+
};
|
|
20477
|
+
export declare type CreateNotePayload = {
|
|
20478
|
+
__typename?: 'CreateNotePayload';
|
|
20479
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
20480
|
+
note?: Maybe<NoteResponse>;
|
|
20481
|
+
success: Scalars['Boolean']['output'];
|
|
20482
|
+
};
|
|
20383
20483
|
export declare type CreatePersonalSpaceInput = {
|
|
20384
20484
|
copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
20385
20485
|
initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
|
|
@@ -21271,6 +21371,7 @@ export declare type CustomerServiceIndividualNotesArgs = {
|
|
|
21271
21371
|
export declare type CustomerServiceIndividualRequestsArgs = {
|
|
21272
21372
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
21273
21373
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21374
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
21274
21375
|
};
|
|
21275
21376
|
export declare type CustomerServiceIndividualDeletePayload = Payload & {
|
|
21276
21377
|
__typename?: 'CustomerServiceIndividualDeletePayload';
|
|
@@ -21693,6 +21794,7 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
21693
21794
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21694
21795
|
};
|
|
21695
21796
|
export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
|
|
21797
|
+
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
21696
21798
|
issueKey: Scalars['String']['input'];
|
|
21697
21799
|
};
|
|
21698
21800
|
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
@@ -22276,6 +22378,15 @@ export declare type DeleteLabelPayload = {
|
|
|
22276
22378
|
contentId: Scalars['ID']['output'];
|
|
22277
22379
|
label: Scalars['String']['output'];
|
|
22278
22380
|
};
|
|
22381
|
+
export declare type DeleteNoteInput = {
|
|
22382
|
+
ari: Scalars['String']['input'];
|
|
22383
|
+
};
|
|
22384
|
+
export declare type DeleteNotePayload = {
|
|
22385
|
+
__typename?: 'DeleteNotePayload';
|
|
22386
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
22387
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
22388
|
+
success: Scalars['Boolean']['output'];
|
|
22389
|
+
};
|
|
22279
22390
|
export declare type DeletePagesInput = {
|
|
22280
22391
|
areChildrenIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22281
22392
|
excludedBranchRootPageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
@@ -31498,13 +31609,16 @@ export declare type GraphStore = {
|
|
|
31498
31609
|
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
31499
31610
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31500
31611
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
31612
|
+
componentHasComponentLink?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkConnection>;
|
|
31501
31613
|
componentHasComponentLinkInverse?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseConnection>;
|
|
31502
31614
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
31503
31615
|
componentImpactedByIncidentInverse?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
31504
31616
|
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31505
31617
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
31506
31618
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
31619
|
+
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
31507
31620
|
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
31621
|
+
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
31508
31622
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
31509
31623
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
31510
31624
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -31983,6 +32097,8 @@ export declare type GraphStore = {
|
|
|
31983
32097
|
userContributedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection>;
|
|
31984
32098
|
userCreatedAtlasGoal?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalConnection>;
|
|
31985
32099
|
userCreatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasGoalInverseConnection>;
|
|
32100
|
+
userCreatedAtlasProject?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectConnection>;
|
|
32101
|
+
userCreatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection>;
|
|
31986
32102
|
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
31987
32103
|
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
31988
32104
|
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
@@ -32541,6 +32657,13 @@ export declare type GraphStoreComponentAssociatedDocumentRelationshipArgs = {
|
|
|
32541
32657
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32542
32658
|
id: Scalars['ID']['input'];
|
|
32543
32659
|
};
|
|
32660
|
+
export declare type GraphStoreComponentHasComponentLinkArgs = {
|
|
32661
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32662
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32663
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32664
|
+
id: Scalars['ID']['input'];
|
|
32665
|
+
sort?: InputMaybe<GraphStoreComponentHasComponentLinkSortInput>;
|
|
32666
|
+
};
|
|
32544
32667
|
export declare type GraphStoreComponentHasComponentLinkInverseArgs = {
|
|
32545
32668
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32546
32669
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32579,6 +32702,13 @@ export declare type GraphStoreComponentLinkIsJiraProjectArgs = {
|
|
|
32579
32702
|
id: Scalars['ID']['input'];
|
|
32580
32703
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
32581
32704
|
};
|
|
32705
|
+
export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
32706
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32707
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32709
|
+
id: Scalars['ID']['input'];
|
|
32710
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
32711
|
+
};
|
|
32582
32712
|
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
32583
32713
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32584
32714
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32586,6 +32716,13 @@ export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
|
32586
32716
|
id: Scalars['ID']['input'];
|
|
32587
32717
|
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
32588
32718
|
};
|
|
32719
|
+
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
32720
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32721
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32722
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32723
|
+
id: Scalars['ID']['input'];
|
|
32724
|
+
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
32725
|
+
};
|
|
32589
32726
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
32590
32727
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32591
32728
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35734,6 +35871,20 @@ export declare type GraphStoreUserCreatedAtlasGoalInverseArgs = {
|
|
|
35734
35871
|
id: Scalars['ID']['input'];
|
|
35735
35872
|
sort?: InputMaybe<GraphStoreUserCreatedAtlasGoalSortInput>;
|
|
35736
35873
|
};
|
|
35874
|
+
export declare type GraphStoreUserCreatedAtlasProjectArgs = {
|
|
35875
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35876
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35877
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35878
|
+
id: Scalars['ID']['input'];
|
|
35879
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasProjectSortInput>;
|
|
35880
|
+
};
|
|
35881
|
+
export declare type GraphStoreUserCreatedAtlasProjectInverseArgs = {
|
|
35882
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35883
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35884
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35885
|
+
id: Scalars['ID']['input'];
|
|
35886
|
+
sort?: InputMaybe<GraphStoreUserCreatedAtlasProjectSortInput>;
|
|
35887
|
+
};
|
|
35737
35888
|
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
35738
35889
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35739
35890
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38635,7 +38786,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38635
38786
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38636
38787
|
id: Scalars['ID']['output'];
|
|
38637
38788
|
};
|
|
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;
|
|
38789
|
+
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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38639
38790
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38640
38791
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38641
38792
|
value: Scalars['Int']['output'];
|
|
@@ -38670,7 +38821,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
38670
38821
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
38671
38822
|
id: Scalars['ID']['output'];
|
|
38672
38823
|
};
|
|
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;
|
|
38824
|
+
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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38674
38825
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
38675
38826
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
38676
38827
|
value: Scalars['String']['output'];
|
|
@@ -38680,13 +38831,13 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
38680
38831
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
38681
38832
|
id: Scalars['ID']['output'];
|
|
38682
38833
|
};
|
|
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;
|
|
38834
|
+
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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38684
38835
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
38685
38836
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
38686
38837
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
38687
38838
|
id: Scalars['ID']['output'];
|
|
38688
38839
|
};
|
|
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;
|
|
38840
|
+
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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38690
38841
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
38691
38842
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
38692
38843
|
value: Scalars['Boolean']['output'];
|
|
@@ -38731,7 +38882,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
38731
38882
|
V2 = "V2",
|
|
38732
38883
|
V3 = "V3"
|
|
38733
38884
|
}
|
|
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;
|
|
38885
|
+
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 | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38735
38886
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
38736
38887
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
38737
38888
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -44452,6 +44603,19 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge =
|
|
|
44452
44603
|
};
|
|
44453
44604
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion = CompassComponent;
|
|
44454
44605
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
44606
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkConnection = HasPageInfo & {
|
|
44607
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkConnection';
|
|
44608
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkEdge>>>;
|
|
44609
|
+
pageInfo: PageInfo;
|
|
44610
|
+
};
|
|
44611
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkEdge = {
|
|
44612
|
+
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkEdge';
|
|
44613
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44614
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44615
|
+
id: Scalars['ID']['output'];
|
|
44616
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44617
|
+
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkUnion>;
|
|
44618
|
+
};
|
|
44455
44619
|
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseConnection = HasPageInfo & {
|
|
44456
44620
|
__typename?: 'GraphStoreSimplifiedComponentHasComponentLinkInverseConnection';
|
|
44457
44621
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseEdge>>>;
|
|
@@ -44466,6 +44630,7 @@ export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseEdge = {
|
|
|
44466
44630
|
node?: Maybe<GraphStoreSimplifiedComponentHasComponentLinkInverseUnion>;
|
|
44467
44631
|
};
|
|
44468
44632
|
export declare type GraphStoreSimplifiedComponentHasComponentLinkInverseUnion = CompassComponent;
|
|
44633
|
+
export declare type GraphStoreSimplifiedComponentHasComponentLinkUnion = CompassLinkNode;
|
|
44469
44634
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
44470
44635
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
44471
44636
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentEdge>>>;
|
|
@@ -44507,6 +44672,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectEdge = {
|
|
|
44507
44672
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44508
44673
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectUnion>;
|
|
44509
44674
|
};
|
|
44675
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection = HasPageInfo & {
|
|
44676
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection';
|
|
44677
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge>>>;
|
|
44678
|
+
pageInfo: PageInfo;
|
|
44679
|
+
};
|
|
44680
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge = {
|
|
44681
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge';
|
|
44682
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44683
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44684
|
+
id: Scalars['ID']['output'];
|
|
44685
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44686
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion>;
|
|
44687
|
+
};
|
|
44688
|
+
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
44510
44689
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
44511
44690
|
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
44512
44691
|
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
@@ -44521,6 +44700,20 @@ export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
|
44521
44700
|
lastUpdated: Scalars['DateTime']['output'];
|
|
44522
44701
|
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
44523
44702
|
};
|
|
44703
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
44704
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
44705
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
44706
|
+
pageInfo: PageInfo;
|
|
44707
|
+
};
|
|
44708
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
44709
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
44710
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44711
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44712
|
+
id: Scalars['ID']['output'];
|
|
44713
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44714
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
44715
|
+
};
|
|
44716
|
+
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
44524
44717
|
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
44525
44718
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
44526
44719
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
@@ -49132,6 +49325,34 @@ export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseEdge = {
|
|
|
49132
49325
|
};
|
|
49133
49326
|
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49134
49327
|
export declare type GraphStoreSimplifiedUserCreatedAtlasGoalUnion = TownsquareGoal;
|
|
49328
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectConnection = HasPageInfo & {
|
|
49329
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectConnection';
|
|
49330
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectEdge>>>;
|
|
49331
|
+
pageInfo: PageInfo;
|
|
49332
|
+
};
|
|
49333
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectEdge = {
|
|
49334
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectEdge';
|
|
49335
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49336
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49337
|
+
id: Scalars['ID']['output'];
|
|
49338
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49339
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectUnion>;
|
|
49340
|
+
};
|
|
49341
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection = HasPageInfo & {
|
|
49342
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectInverseConnection';
|
|
49343
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge>>>;
|
|
49344
|
+
pageInfo: PageInfo;
|
|
49345
|
+
};
|
|
49346
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge = {
|
|
49347
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedAtlasProjectInverseEdge';
|
|
49348
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49349
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49350
|
+
id: Scalars['ID']['output'];
|
|
49351
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49352
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedAtlasProjectInverseUnion>;
|
|
49353
|
+
};
|
|
49354
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49355
|
+
export declare type GraphStoreSimplifiedUserCreatedAtlasProjectUnion = TownsquareProject;
|
|
49135
49356
|
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
49136
49357
|
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
49137
49358
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
@@ -51871,6 +52092,9 @@ export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
|
51871
52092
|
export declare type GraphStoreUserCreatedAtlasGoalSortInput = {
|
|
51872
52093
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51873
52094
|
};
|
|
52095
|
+
export declare type GraphStoreUserCreatedAtlasProjectSortInput = {
|
|
52096
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52097
|
+
};
|
|
51874
52098
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
51875
52099
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51876
52100
|
};
|
|
@@ -52453,27 +52677,40 @@ export declare type GrowthUnifiedProfileIssueTypeInput = {
|
|
|
52453
52677
|
};
|
|
52454
52678
|
export declare enum GrowthUnifiedProfileJtbd {
|
|
52455
52679
|
AdHocTaskAndIncidentManagement = "AD_HOC_TASK_AND_INCIDENT_MANAGEMENT",
|
|
52680
|
+
Brainstorming = "BRAINSTORMING",
|
|
52456
52681
|
Budgets = "BUDGETS",
|
|
52682
|
+
CampaignPlanning = "CAMPAIGN_PLANNING",
|
|
52457
52683
|
CdWrtng = "CD_WRTNG",
|
|
52458
52684
|
CentralizedDocumentation = "CENTRALIZED_DOCUMENTATION",
|
|
52459
52685
|
ComplianceAndRiskManagement = "COMPLIANCE_AND_RISK_MANAGEMENT",
|
|
52686
|
+
CreativeBriefs = "CREATIVE_BRIEFS",
|
|
52687
|
+
CustomerJourneys = "CUSTOMER_JOURNEYS",
|
|
52460
52688
|
EstimateTimeAndEffort = "ESTIMATE_TIME_AND_EFFORT",
|
|
52689
|
+
FlowchartAndDiagrams = "FLOWCHART_AND_DIAGRAMS",
|
|
52690
|
+
GanttChart = "GANTT_CHART",
|
|
52461
52691
|
ImproveTeamProcesses = "IMPROVE_TEAM_PROCESSES",
|
|
52462
52692
|
ImproveWorkflow = "IMPROVE_WORKFLOW",
|
|
52693
|
+
KnowledgeHub = "KNOWLEDGE_HUB",
|
|
52463
52694
|
LaunchCampaigns = "LAUNCH_CAMPAIGNS",
|
|
52464
52695
|
ManageTasks = "MANAGE_TASKS",
|
|
52465
52696
|
ManagingClientAndVendorRelationships = "MANAGING_CLIENT_AND_VENDOR_RELATIONSHIPS",
|
|
52466
52697
|
MapWorkDependencies = "MAP_WORK_DEPENDENCIES",
|
|
52467
52698
|
MarketingContent = "MARKETING_CONTENT",
|
|
52699
|
+
MeetingNotes = "MEETING_NOTES",
|
|
52468
52700
|
PlanAndManage = "PLAN_AND_MANAGE",
|
|
52469
52701
|
PrioritizeWork = "PRIORITIZE_WORK",
|
|
52702
|
+
ProcessMapping = "PROCESS_MAPPING",
|
|
52703
|
+
ProjectPlan = "PROJECT_PLAN",
|
|
52470
52704
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
52471
52705
|
ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
|
|
52472
52706
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
52707
|
+
RequirementsDoc = "REQUIREMENTS_DOC",
|
|
52473
52708
|
RunSprints = "RUN_SPRINTS",
|
|
52474
52709
|
Stakeholders = "STAKEHOLDERS",
|
|
52475
52710
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
52476
52711
|
SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
|
|
52712
|
+
TaskTracking = "TASK_TRACKING",
|
|
52713
|
+
TeamStatusUpdate = "TEAM_STATUS_UPDATE",
|
|
52477
52714
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
52478
52715
|
TrackBugs = "TRACK_BUGS",
|
|
52479
52716
|
UseKanbanBoard = "USE_KANBAN_BOARD",
|
|
@@ -59718,6 +59955,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
59718
59955
|
};
|
|
59719
59956
|
export declare enum JiraFieldConfigOrderBy {
|
|
59720
59957
|
ContextCount = "CONTEXT_COUNT",
|
|
59958
|
+
FieldType = "FIELD_TYPE",
|
|
59721
59959
|
LastUsed = "LAST_USED",
|
|
59722
59960
|
Name = "NAME",
|
|
59723
59961
|
PlannedDeleteDate = "PLANNED_DELETE_DATE",
|
|
@@ -59736,6 +59974,7 @@ export declare type JiraFieldConfigScheme = {
|
|
|
59736
59974
|
id: Scalars['ID']['output'];
|
|
59737
59975
|
name?: Maybe<Scalars['String']['output']>;
|
|
59738
59976
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
59977
|
+
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
59739
59978
|
};
|
|
59740
59979
|
export declare type JiraFieldConfigSchemesConnection = {
|
|
59741
59980
|
__typename?: 'JiraFieldConfigSchemesConnection';
|
|
@@ -60903,6 +61142,7 @@ export declare type JiraIssueContentPanelsArgs = {
|
|
|
60903
61142
|
};
|
|
60904
61143
|
export declare type JiraIssueDesignsArgs = {
|
|
60905
61144
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61145
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60906
61146
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60907
61147
|
};
|
|
60908
61148
|
export declare type JiraIssueEndDateViewFieldArgs = {
|
|
@@ -61434,6 +61674,8 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
61434
61674
|
trashedByUser?: Maybe<User>;
|
|
61435
61675
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
61436
61676
|
type: JiraConfigFieldType;
|
|
61677
|
+
typeDisplayName?: Maybe<Scalars['String']['output']>;
|
|
61678
|
+
typeKey?: Maybe<Scalars['String']['output']>;
|
|
61437
61679
|
};
|
|
61438
61680
|
export declare type JiraIssueFieldConfigAssociatedContextsArgs = {
|
|
61439
61681
|
after?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -62297,6 +62539,15 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
62297
62539
|
success: Scalars['Boolean']['output'];
|
|
62298
62540
|
view?: Maybe<JiraIssueSearchView>;
|
|
62299
62541
|
};
|
|
62542
|
+
export declare type JiraIssueSearchViewProjectKeyAndItemIdQuery = {
|
|
62543
|
+
cloudId: Scalars['ID']['input'];
|
|
62544
|
+
itemId: Scalars['String']['input'];
|
|
62545
|
+
projectKey: Scalars['String']['input'];
|
|
62546
|
+
};
|
|
62547
|
+
export declare type JiraIssueSearchViewQueryInput = {
|
|
62548
|
+
projectKeyAndItemIdQuery?: InputMaybe<JiraIssueSearchViewProjectKeyAndItemIdQuery>;
|
|
62549
|
+
viewAri?: InputMaybe<Scalars['ID']['input']>;
|
|
62550
|
+
};
|
|
62300
62551
|
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
62301
62552
|
export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
62302
62553
|
__typename?: 'JiraIssueStreamHubEventPayloadProject';
|
|
@@ -63354,6 +63605,18 @@ export declare type JiraLabel = {
|
|
|
63354
63605
|
labelId?: Maybe<Scalars['String']['output']>;
|
|
63355
63606
|
name?: Maybe<Scalars['String']['output']>;
|
|
63356
63607
|
};
|
|
63608
|
+
export declare type JiraLabelColorUpdateInput = {
|
|
63609
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
63610
|
+
fieldId: Scalars['ID']['input'];
|
|
63611
|
+
label: Scalars['String']['input'];
|
|
63612
|
+
};
|
|
63613
|
+
export declare type JiraLabelColorUpdatePayload = Payload & {
|
|
63614
|
+
__typename?: 'JiraLabelColorUpdatePayload';
|
|
63615
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63616
|
+
fieldId?: Maybe<Scalars['ID']['output']>;
|
|
63617
|
+
label?: Maybe<JiraLabel>;
|
|
63618
|
+
success: Scalars['Boolean']['output'];
|
|
63619
|
+
};
|
|
63357
63620
|
export declare type JiraLabelConnection = {
|
|
63358
63621
|
__typename?: 'JiraLabelConnection';
|
|
63359
63622
|
edges?: Maybe<Array<Maybe<JiraLabelEdge>>>;
|
|
@@ -64031,6 +64294,7 @@ export declare type JiraMutation = {
|
|
|
64031
64294
|
updateJsmOrganizationField?: Maybe<JiraServiceManagementOrganizationFieldPayload>;
|
|
64032
64295
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
64033
64296
|
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
64297
|
+
updateLabelColor?: Maybe<JiraLabelColorUpdatePayload>;
|
|
64034
64298
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
64035
64299
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
64036
64300
|
updateMultipleGroupPickerField?: Maybe<JiraMultipleGroupPickerFieldPayload>;
|
|
@@ -64600,6 +64864,9 @@ export declare type JiraMutationUpdateJwmFilterArgs = {
|
|
|
64600
64864
|
export declare type JiraMutationUpdateJwmOverviewArgs = {
|
|
64601
64865
|
input: JiraWorkManagementUpdateOverviewInput;
|
|
64602
64866
|
};
|
|
64867
|
+
export declare type JiraMutationUpdateLabelColorArgs = {
|
|
64868
|
+
input: JiraLabelColorUpdateInput;
|
|
64869
|
+
};
|
|
64603
64870
|
export declare type JiraMutationUpdateLabelsFieldArgs = {
|
|
64604
64871
|
input: JiraUpdateLabelsFieldInput;
|
|
64605
64872
|
};
|
|
@@ -65889,6 +66156,7 @@ export declare enum JiraPlaybookStepRunStatus {
|
|
|
65889
66156
|
QueuedForRetry = "QUEUED_FOR_RETRY",
|
|
65890
66157
|
SomeErrors = "SOME_ERRORS",
|
|
65891
66158
|
Success = "SUCCESS",
|
|
66159
|
+
SuccessUndone = "SUCCESS_UNDONE",
|
|
65892
66160
|
Throttled = "THROTTLED",
|
|
65893
66161
|
Waiting = "WAITING"
|
|
65894
66162
|
}
|
|
@@ -67531,6 +67799,7 @@ export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
|
67531
67799
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
67532
67800
|
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
67533
67801
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
67802
|
+
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
67534
67803
|
};
|
|
67535
67804
|
export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
67536
67805
|
cloudId: Scalars['ID']['input'];
|
|
@@ -79656,6 +79925,7 @@ export declare type MercuryProviderWorkSearchEdge = {
|
|
|
79656
79925
|
node?: Maybe<MercuryProviderWorkSearchItem>;
|
|
79657
79926
|
};
|
|
79658
79927
|
export declare type MercuryProviderWorkSearchFilters = {
|
|
79928
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
79659
79929
|
project?: InputMaybe<MercuryProviderWorkSearchProjectFilters>;
|
|
79660
79930
|
};
|
|
79661
79931
|
export declare type MercuryProviderWorkSearchItem = {
|
|
@@ -81013,6 +81283,7 @@ export declare type Mutation = {
|
|
|
81013
81283
|
createLivePage?: Maybe<Content>;
|
|
81014
81284
|
createMentionNotification?: Maybe<CreateMentionNotificationPayload>;
|
|
81015
81285
|
createMentionReminderNotification?: Maybe<CreateMentionReminderNotificationPayload>;
|
|
81286
|
+
createNote?: Maybe<CreateNotePayload>;
|
|
81016
81287
|
createOnboardingSpace?: Maybe<Scalars['String']['output']>;
|
|
81017
81288
|
createOrUpdateArchivePageNote?: Maybe<Scalars['String']['output']>;
|
|
81018
81289
|
createPersonalSpace?: Maybe<Space>;
|
|
@@ -81058,6 +81329,7 @@ export declare type Mutation = {
|
|
|
81058
81329
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
81059
81330
|
deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
81060
81331
|
deleteLabel?: Maybe<DeleteLabelPayload>;
|
|
81332
|
+
deleteNote?: Maybe<DeleteNotePayload>;
|
|
81061
81333
|
deletePages?: Maybe<DeletePagesPayload>;
|
|
81062
81334
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
81063
81335
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
@@ -81313,6 +81585,7 @@ export declare type Mutation = {
|
|
|
81313
81585
|
updateHomeUserSettings?: Maybe<HomeUserSettings>;
|
|
81314
81586
|
updateLocalStorage?: Maybe<LocalStorage>;
|
|
81315
81587
|
updateNestedPageOwners?: Maybe<UpdateNestedPageOwnersPayload>;
|
|
81588
|
+
updateNote?: Maybe<UpdateNotePayload>;
|
|
81316
81589
|
updateOwner?: Maybe<UpdateOwnerPayload>;
|
|
81317
81590
|
updatePage?: Maybe<UpdatePagePayload>;
|
|
81318
81591
|
updatePageOwners?: Maybe<UpdatePageOwnersPayload>;
|
|
@@ -82217,6 +82490,9 @@ export declare type MutationCreateMentionNotificationArgs = {
|
|
|
82217
82490
|
export declare type MutationCreateMentionReminderNotificationArgs = {
|
|
82218
82491
|
input: CreateMentionReminderNotificationInput;
|
|
82219
82492
|
};
|
|
82493
|
+
export declare type MutationCreateNoteArgs = {
|
|
82494
|
+
input: CreateNoteInput;
|
|
82495
|
+
};
|
|
82220
82496
|
export declare type MutationCreateOnboardingSpaceArgs = {
|
|
82221
82497
|
spaceType: Scalars['String']['input'];
|
|
82222
82498
|
};
|
|
@@ -82382,6 +82658,9 @@ export declare type MutationDeleteLabelArgs = {
|
|
|
82382
82658
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
82383
82659
|
input: DeleteLabelInput;
|
|
82384
82660
|
};
|
|
82661
|
+
export declare type MutationDeleteNoteArgs = {
|
|
82662
|
+
input: DeleteNoteInput;
|
|
82663
|
+
};
|
|
82385
82664
|
export declare type MutationDeletePagesArgs = {
|
|
82386
82665
|
input: Array<InputMaybe<DeletePagesInput>>;
|
|
82387
82666
|
};
|
|
@@ -83121,6 +83400,9 @@ export declare type MutationUpdateLocalStorageArgs = {
|
|
|
83121
83400
|
export declare type MutationUpdateNestedPageOwnersArgs = {
|
|
83122
83401
|
input: UpdatedNestedPageOwnersInput;
|
|
83123
83402
|
};
|
|
83403
|
+
export declare type MutationUpdateNoteArgs = {
|
|
83404
|
+
input: UpdateNoteInput;
|
|
83405
|
+
};
|
|
83124
83406
|
export declare type MutationUpdateOwnerArgs = {
|
|
83125
83407
|
input: UpdateOwnerInput;
|
|
83126
83408
|
};
|
|
@@ -83346,10 +83628,14 @@ export declare type MyVisitedSpacesInfo = {
|
|
|
83346
83628
|
export declare type MyVisitedSpacesItems = {
|
|
83347
83629
|
__typename?: 'MyVisitedSpacesItems';
|
|
83348
83630
|
spaces?: Maybe<Array<Maybe<Space>>>;
|
|
83631
|
+
spacesWithCloudId?: Maybe<Array<Maybe<Space>>>;
|
|
83349
83632
|
};
|
|
83350
83633
|
export declare type MyVisitedSpacesItemsSpacesArgs = {
|
|
83351
83634
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
83352
83635
|
};
|
|
83636
|
+
export declare type MyVisitedSpacesItemsSpacesWithCloudIdArgs = {
|
|
83637
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
83638
|
+
};
|
|
83353
83639
|
export declare type NadelBatchObjectIdentifiedBy = {
|
|
83354
83640
|
resultId: Scalars['String']['input'];
|
|
83355
83641
|
sourceId: Scalars['String']['input'];
|
|
@@ -83502,6 +83788,60 @@ export declare type NlpSource = {
|
|
|
83502
83788
|
export declare type Node = {
|
|
83503
83789
|
id: Scalars['ID']['output'];
|
|
83504
83790
|
};
|
|
83791
|
+
export declare type NoteConnection = {
|
|
83792
|
+
__typename?: 'NoteConnection';
|
|
83793
|
+
edges?: Maybe<Array<Maybe<NoteEdge>>>;
|
|
83794
|
+
nodes?: Maybe<Array<Maybe<NoteResponse>>>;
|
|
83795
|
+
noteInfo: NoteInfo;
|
|
83796
|
+
};
|
|
83797
|
+
export declare type NoteEdge = {
|
|
83798
|
+
__typename?: 'NoteEdge';
|
|
83799
|
+
cursor: Scalars['String']['output'];
|
|
83800
|
+
node: NoteResponse;
|
|
83801
|
+
};
|
|
83802
|
+
export declare type NoteInfo = {
|
|
83803
|
+
__typename?: 'NoteInfo';
|
|
83804
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
83805
|
+
hasNextNode: Scalars['Boolean']['output'];
|
|
83806
|
+
hasPreviousNode: Scalars['Boolean']['output'];
|
|
83807
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
83808
|
+
};
|
|
83809
|
+
export declare type NoteMutationError = {
|
|
83810
|
+
__typename?: 'NoteMutationError';
|
|
83811
|
+
extensions?: Maybe<Array<Maybe<NoteMutationErrorExtension>>>;
|
|
83812
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
83813
|
+
};
|
|
83814
|
+
export declare type NoteMutationErrorExtension = {
|
|
83815
|
+
__typename?: 'NoteMutationErrorExtension';
|
|
83816
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
83817
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
83818
|
+
};
|
|
83819
|
+
export declare type NoteResponse = {
|
|
83820
|
+
__typename?: 'NoteResponse';
|
|
83821
|
+
ari: Scalars['String']['output'];
|
|
83822
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
83823
|
+
bodyExcerpt?: Maybe<Scalars['String']['output']>;
|
|
83824
|
+
collectionName: Scalars['String']['output'];
|
|
83825
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
83826
|
+
extraProps?: Maybe<Array<Prop>>;
|
|
83827
|
+
isPinned: Scalars['Boolean']['output'];
|
|
83828
|
+
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
83829
|
+
productLink?: Maybe<Scalars['String']['output']>;
|
|
83830
|
+
thumbnailId?: Maybe<Scalars['String']['output']>;
|
|
83831
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
83832
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
83833
|
+
};
|
|
83834
|
+
export declare type NotesByCreatorInput = {
|
|
83835
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
83836
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
83837
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
83838
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83839
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
83840
|
+
orderBy?: InputMaybe<NotesByDateLastModifiedOrder>;
|
|
83841
|
+
};
|
|
83842
|
+
export declare enum NotesByDateLastModifiedOrder {
|
|
83843
|
+
DateLastModified = "DATE_LAST_MODIFIED"
|
|
83844
|
+
}
|
|
83505
83845
|
export declare enum NotificationAction {
|
|
83506
83846
|
DontNotify = "DONT_NOTIFY",
|
|
83507
83847
|
Notify = "NOTIFY"
|
|
@@ -83748,6 +84088,14 @@ export declare type OpsgenieTeamMemberEdge = {
|
|
|
83748
84088
|
cursor: Scalars['String']['output'];
|
|
83749
84089
|
node?: Maybe<OpsgenieTeamMember>;
|
|
83750
84090
|
};
|
|
84091
|
+
export declare type OrgPolicyPolicyDetails = Node & {
|
|
84092
|
+
__typename?: 'OrgPolicyPolicyDetails';
|
|
84093
|
+
id: Scalars['ID']['output'];
|
|
84094
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
84095
|
+
name: Scalars['String']['output'];
|
|
84096
|
+
rule?: Maybe<Scalars['JSON']['output']>;
|
|
84097
|
+
status: Scalars['String']['output'];
|
|
84098
|
+
};
|
|
83751
84099
|
export declare type Organization = {
|
|
83752
84100
|
__typename?: 'Organization';
|
|
83753
84101
|
orgId?: Maybe<Scalars['String']['output']>;
|
|
@@ -85612,6 +85960,15 @@ export declare type ProjectAvatars = {
|
|
|
85612
85960
|
x32: Scalars['URL']['output'];
|
|
85613
85961
|
x48: Scalars['URL']['output'];
|
|
85614
85962
|
};
|
|
85963
|
+
export declare type Prop = {
|
|
85964
|
+
__typename?: 'Prop';
|
|
85965
|
+
key: Scalars['String']['output'];
|
|
85966
|
+
value: Scalars['String']['output'];
|
|
85967
|
+
};
|
|
85968
|
+
export declare type PropInput = {
|
|
85969
|
+
key: Scalars['String']['input'];
|
|
85970
|
+
value: Scalars['String']['input'];
|
|
85971
|
+
};
|
|
85615
85972
|
export declare type Properties = {
|
|
85616
85973
|
__typename?: 'Properties';
|
|
85617
85974
|
formStatus: FormStatus;
|
|
@@ -86452,12 +86809,15 @@ export declare type Query = {
|
|
|
86452
86809
|
myVisitedSpaces?: Maybe<MyVisitedSpaces>;
|
|
86453
86810
|
nlpSearch?: Maybe<NlpSearchResponse>;
|
|
86454
86811
|
node?: Maybe<Node>;
|
|
86812
|
+
notesByCreator?: Maybe<NoteConnection>;
|
|
86455
86813
|
notifications?: Maybe<InfluentsNotificationQuery>;
|
|
86456
86814
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
86457
86815
|
onboardingState?: Maybe<Array<OnboardingState>>;
|
|
86458
86816
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
86459
86817
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
86460
86818
|
orgDefaultClassificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
86819
|
+
orgPolicy_policiesDetails?: Maybe<Array<Maybe<OrgPolicyPolicyDetails>>>;
|
|
86820
|
+
orgPolicy_policyDetails?: Maybe<OrgPolicyPolicyDetails>;
|
|
86461
86821
|
organization?: Maybe<Organization>;
|
|
86462
86822
|
organizationContext?: Maybe<OrganizationContext>;
|
|
86463
86823
|
page?: Maybe<Page>;
|
|
@@ -88814,12 +89174,21 @@ export declare type QueryNlpSearchArgs = {
|
|
|
88814
89174
|
export declare type QueryNodeArgs = {
|
|
88815
89175
|
id: Scalars['ID']['input'];
|
|
88816
89176
|
};
|
|
89177
|
+
export declare type QueryNotesByCreatorArgs = {
|
|
89178
|
+
input?: InputMaybe<NotesByCreatorInput>;
|
|
89179
|
+
};
|
|
88817
89180
|
export declare type QueryOnboardingStateArgs = {
|
|
88818
89181
|
key?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
88819
89182
|
};
|
|
88820
89183
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
88821
89184
|
id: Scalars['ID']['input'];
|
|
88822
89185
|
};
|
|
89186
|
+
export declare type QueryOrgPolicy_PoliciesDetailsArgs = {
|
|
89187
|
+
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
89188
|
+
};
|
|
89189
|
+
export declare type QueryOrgPolicy_PolicyDetailsArgs = {
|
|
89190
|
+
id: Scalars['ID']['input'];
|
|
89191
|
+
};
|
|
88823
89192
|
export declare type QueryPageArgs = {
|
|
88824
89193
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88825
89194
|
id: Scalars['ID']['input'];
|
|
@@ -96304,6 +96673,10 @@ export declare type TargetLocation = {
|
|
|
96304
96673
|
links?: Maybe<LinksContextBase>;
|
|
96305
96674
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
96306
96675
|
};
|
|
96676
|
+
export declare enum TargetTransition {
|
|
96677
|
+
Done = "DONE",
|
|
96678
|
+
Undone = "UNDONE"
|
|
96679
|
+
}
|
|
96307
96680
|
export declare enum TaskStatus {
|
|
96308
96681
|
Checked = "CHECKED",
|
|
96309
96682
|
Unchecked = "UNCHECKED"
|
|
@@ -101723,6 +102096,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
101723
102096
|
hasLink?: InputMaybe<UpdateCompassHasLinkScorecardCriteriaInput>;
|
|
101724
102097
|
hasMetricValue?: InputMaybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
101725
102098
|
hasOwner?: InputMaybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
102099
|
+
hasPackageDependency?: InputMaybe<CompassUpdateHasPackageDependencyScorecardCriteriaInput>;
|
|
101726
102100
|
};
|
|
101727
102101
|
export declare type UpdateCompassScorecardInput = {
|
|
101728
102102
|
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
@@ -101998,6 +102372,14 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
101998
102372
|
stepId?: InputMaybe<Scalars['ID']['input']>;
|
|
101999
102373
|
type: JiraPlaybookStepType;
|
|
102000
102374
|
};
|
|
102375
|
+
export declare type UpdateMetadataInput = {
|
|
102376
|
+
ari: Scalars['String']['input'];
|
|
102377
|
+
extraProps?: InputMaybe<Array<PropInput>>;
|
|
102378
|
+
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102379
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
102380
|
+
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
102381
|
+
thumbnailId?: InputMaybe<Scalars['String']['input']>;
|
|
102382
|
+
};
|
|
102001
102383
|
export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
102002
102384
|
__typename?: 'UpdateNestedPageOwnersPayload';
|
|
102003
102385
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -102005,6 +102387,17 @@ export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
|
102005
102387
|
taskId: Scalars['ID']['output'];
|
|
102006
102388
|
warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
|
|
102007
102389
|
};
|
|
102390
|
+
export declare type UpdateNoteInput = {
|
|
102391
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
102392
|
+
metadata: UpdateMetadataInput;
|
|
102393
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
102394
|
+
};
|
|
102395
|
+
export declare type UpdateNotePayload = {
|
|
102396
|
+
__typename?: 'UpdateNotePayload';
|
|
102397
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
102398
|
+
note?: Maybe<NoteResponse>;
|
|
102399
|
+
success: Scalars['Boolean']['output'];
|
|
102400
|
+
};
|
|
102008
102401
|
export declare type UpdateOwnerInput = {
|
|
102009
102402
|
contentId: Scalars['ID']['input'];
|
|
102010
102403
|
ownerId: Scalars['String']['input'];
|
|
@@ -102633,6 +103026,17 @@ export declare type VirtualAgentAiAnswerStatusForChannel = {
|
|
|
102633
103026
|
isAiResponsesChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
102634
103027
|
slackChannelId: Scalars['String']['output'];
|
|
102635
103028
|
};
|
|
103029
|
+
export declare type VirtualAgentAutoCloseConfig = {
|
|
103030
|
+
__typename?: 'VirtualAgentAutoCloseConfig';
|
|
103031
|
+
autoCloseMessage?: Maybe<Scalars['String']['output']>;
|
|
103032
|
+
};
|
|
103033
|
+
export declare type VirtualAgentCsatConfig = {
|
|
103034
|
+
__typename?: 'VirtualAgentCSATConfig';
|
|
103035
|
+
askForCSATMessage?: Maybe<Scalars['String']['output']>;
|
|
103036
|
+
noFeedbackProvidedMessage?: Maybe<Scalars['String']['output']>;
|
|
103037
|
+
requestAdditionalFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103038
|
+
thanksForFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103039
|
+
};
|
|
102636
103040
|
export declare type VirtualAgentChannelConfig = {
|
|
102637
103041
|
__typename?: 'VirtualAgentChannelConfig';
|
|
102638
103042
|
aiAnswersProductionStatus?: Maybe<Array<Maybe<VirtualAgentAiAnswerStatusForChannel>>>;
|
|
@@ -102655,6 +103059,7 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
102655
103059
|
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
102656
103060
|
offerEscalationConfig?: Maybe<VirtualAgentOfferEscalationConfig>;
|
|
102657
103061
|
respondToQueries: Scalars['Boolean']['output'];
|
|
103062
|
+
standardConfig?: Maybe<VirtualAgentStandardConfig>;
|
|
102658
103063
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
102659
103064
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
102660
103065
|
virtualAgentStatisticsProjection?: Maybe<VirtualAgentStatisticsProjection>;
|
|
@@ -102858,6 +103263,10 @@ export declare type VirtualAgentGlobalStatisticsProjection = {
|
|
|
102858
103263
|
totalMatched?: Maybe<Scalars['Float']['output']>;
|
|
102859
103264
|
totalTraffic?: Maybe<Scalars['Int']['output']>;
|
|
102860
103265
|
};
|
|
103266
|
+
export declare type VirtualAgentGreetingConfig = {
|
|
103267
|
+
__typename?: 'VirtualAgentGreetingConfig';
|
|
103268
|
+
greetingMessage?: Maybe<Scalars['String']['output']>;
|
|
103269
|
+
};
|
|
102861
103270
|
export declare type VirtualAgentIntent = Node & {
|
|
102862
103271
|
__typename?: 'VirtualAgentIntent';
|
|
102863
103272
|
confirmationMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -102985,6 +103394,12 @@ export declare type VirtualAgentLiveIntentCountResponse = {
|
|
|
102985
103394
|
containerId: Scalars['ID']['output'];
|
|
102986
103395
|
liveIntentsCount: Scalars['Int']['output'];
|
|
102987
103396
|
};
|
|
103397
|
+
export declare type VirtualAgentMatchIntentConfig = {
|
|
103398
|
+
__typename?: 'VirtualAgentMatchIntentConfig';
|
|
103399
|
+
askToRephraseAgainMessage?: Maybe<Scalars['String']['output']>;
|
|
103400
|
+
rephraseMessage?: Maybe<Scalars['String']['output']>;
|
|
103401
|
+
suggestMultipleIntentsMessage?: Maybe<Scalars['String']['output']>;
|
|
103402
|
+
};
|
|
102988
103403
|
export declare type VirtualAgentMutationApi = {
|
|
102989
103404
|
__typename?: 'VirtualAgentMutationApi';
|
|
102990
103405
|
copyIntentRuleProjection?: Maybe<VirtualAgentCopyIntentRuleProjectionPayload>;
|
|
@@ -103123,6 +103538,13 @@ export declare type VirtualAgentSlackChannel = {
|
|
|
103123
103538
|
isVirtualAgentTestChannel?: Maybe<Scalars['Boolean']['output']>;
|
|
103124
103539
|
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
103125
103540
|
};
|
|
103541
|
+
export declare type VirtualAgentStandardConfig = {
|
|
103542
|
+
__typename?: 'VirtualAgentStandardConfig';
|
|
103543
|
+
autoCloseConfig?: Maybe<VirtualAgentAutoCloseConfig>;
|
|
103544
|
+
csatConfig?: Maybe<VirtualAgentCsatConfig>;
|
|
103545
|
+
greetingConfig?: Maybe<VirtualAgentGreetingConfig>;
|
|
103546
|
+
matchIntentConfig?: Maybe<VirtualAgentMatchIntentConfig>;
|
|
103547
|
+
};
|
|
103126
103548
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
103127
103549
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
103128
103550
|
aiResolution?: Maybe<Scalars['Float']['output']>;
|