@forge/cli-shared 5.3.2-next.1 → 5.3.2
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 +17 -0
- package/out/graphql/graphql-types.d.ts +246 -44
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +55 -18
- package/package.json +2 -2
|
@@ -616,6 +616,7 @@ export declare type App = {
|
|
|
616
616
|
avatarFileId?: Maybe<Scalars['String']['output']>;
|
|
617
617
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
618
618
|
contactLink?: Maybe<Scalars['String']['output']>;
|
|
619
|
+
createdAt: Scalars['String']['output'];
|
|
619
620
|
createdBy?: Maybe<User>;
|
|
620
621
|
deployments?: Maybe<AppDeploymentConnection>;
|
|
621
622
|
description: Scalars['String']['output'];
|
|
@@ -4825,6 +4826,7 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
|
|
|
4825
4826
|
export declare type CompassGlobalPermissions = {
|
|
4826
4827
|
__typename?: 'CompassGlobalPermissions';
|
|
4827
4828
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
4829
|
+
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
4828
4830
|
};
|
|
4829
4831
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
4830
4832
|
export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
@@ -16829,14 +16831,20 @@ export declare type DevOpsDeploymentProviderConfigStateArgs = {
|
|
|
16829
16831
|
export declare type DevOpsDesign = Node & {
|
|
16830
16832
|
__typename?: 'DevOpsDesign';
|
|
16831
16833
|
associatedIssues?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseConnection>;
|
|
16834
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
16835
|
+
createdByUser?: Maybe<DevOpsUser>;
|
|
16836
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
16832
16837
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
16833
16838
|
id: Scalars['ID']['output'];
|
|
16834
16839
|
inspectUrl?: Maybe<Scalars['URL']['output']>;
|
|
16835
16840
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
16841
|
+
lastUpdatedByUser?: Maybe<DevOpsUser>;
|
|
16836
16842
|
liveEmbedUrl?: Maybe<Scalars['URL']['output']>;
|
|
16843
|
+
owners?: Maybe<Array<Maybe<DevOpsUser>>>;
|
|
16837
16844
|
provider?: Maybe<DevOpsDataProvider>;
|
|
16838
16845
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
16839
16846
|
status?: Maybe<DevOpsDesignStatus>;
|
|
16847
|
+
thumbnail?: Maybe<DevOpsThumbnail>;
|
|
16840
16848
|
type?: Maybe<DevOpsDesignType>;
|
|
16841
16849
|
url?: Maybe<Scalars['URL']['output']>;
|
|
16842
16850
|
};
|
|
@@ -17915,6 +17923,10 @@ export declare type DevOpsThirdPartyRepository = CodeRepository & {
|
|
|
17915
17923
|
name: Scalars['String']['output'];
|
|
17916
17924
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
17917
17925
|
};
|
|
17926
|
+
export declare type DevOpsThumbnail = {
|
|
17927
|
+
__typename?: 'DevOpsThumbnail';
|
|
17928
|
+
externalUrl?: Maybe<Scalars['URL']['output']>;
|
|
17929
|
+
};
|
|
17918
17930
|
export declare type DevOpsTool = Node & {
|
|
17919
17931
|
__typename?: 'DevOpsTool';
|
|
17920
17932
|
auth?: Maybe<DevOpsToolAuth>;
|
|
@@ -18706,22 +18718,6 @@ export declare type FilterQuery = {
|
|
|
18706
18718
|
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
18707
18719
|
sanitisedJql: Scalars['String']['output'];
|
|
18708
18720
|
};
|
|
18709
|
-
export declare type ForgeAiDemo = {
|
|
18710
|
-
__typename?: 'ForgeAiDemo';
|
|
18711
|
-
emoji?: Maybe<Scalars['String']['output']>;
|
|
18712
|
-
endTimestamp?: Maybe<Scalars['String']['output']>;
|
|
18713
|
-
presenter?: Maybe<Scalars['String']['output']>;
|
|
18714
|
-
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
18715
|
-
summary?: Maybe<Scalars['String']['output']>;
|
|
18716
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
18717
|
-
};
|
|
18718
|
-
export declare type ForgeAiMutation = {
|
|
18719
|
-
__typename?: 'ForgeAiMutation';
|
|
18720
|
-
ForgeAiDemoAppAiGenerateSummaries?: Maybe<Array<Maybe<ForgeAiDemo>>>;
|
|
18721
|
-
};
|
|
18722
|
-
export declare type ForgeAiMutationForgeAiDemoAppAiGenerateSummariesArgs = {
|
|
18723
|
-
transcript?: InputMaybe<Scalars['String']['input']>;
|
|
18724
|
-
};
|
|
18725
18721
|
export declare type ForgeAlertsActivitiesQueryInput = {
|
|
18726
18722
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
18727
18723
|
endTime: Scalars['String']['input'];
|
|
@@ -20803,6 +20799,13 @@ export declare enum GraphDataDepotApprovalStatus {
|
|
|
20803
20799
|
Needswork = "NEEDSWORK",
|
|
20804
20800
|
Unapproved = "UNAPPROVED"
|
|
20805
20801
|
}
|
|
20802
|
+
export declare type GraphDataDepotAttachment = {
|
|
20803
|
+
__typename?: 'GraphDataDepotAttachment';
|
|
20804
|
+
byteSize: Scalars['Long']['output'];
|
|
20805
|
+
mimeType: Scalars['String']['output'];
|
|
20806
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
20807
|
+
url: Scalars['String']['output'];
|
|
20808
|
+
};
|
|
20806
20809
|
export declare type GraphDataDepotBranch = {
|
|
20807
20810
|
__typename?: 'GraphDataDepotBranch';
|
|
20808
20811
|
branchId: Scalars['String']['output'];
|
|
@@ -20883,6 +20886,29 @@ export declare type GraphDataDepotCommit = {
|
|
|
20883
20886
|
export declare enum GraphDataDepotCommitFlags {
|
|
20884
20887
|
MergeCommit = "MERGE_COMMIT"
|
|
20885
20888
|
}
|
|
20889
|
+
export declare type GraphDataDepotConversation = {
|
|
20890
|
+
__typename?: 'GraphDataDepotConversation';
|
|
20891
|
+
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20892
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20893
|
+
displayName: Scalars['String']['output'];
|
|
20894
|
+
externalId: Scalars['String']['output'];
|
|
20895
|
+
id: Scalars['ID']['output'];
|
|
20896
|
+
isArchived: Scalars['Boolean']['output'];
|
|
20897
|
+
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
20898
|
+
memberCount?: Maybe<Scalars['Long']['output']>;
|
|
20899
|
+
members?: Maybe<Array<GraphDataDepotUser>>;
|
|
20900
|
+
membershipType: GraphDataDepotMembershipType;
|
|
20901
|
+
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20902
|
+
topic?: Maybe<Scalars['String']['output']>;
|
|
20903
|
+
type: GraphDataDepotConversationType;
|
|
20904
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20905
|
+
workspace: Scalars['String']['output'];
|
|
20906
|
+
};
|
|
20907
|
+
export declare enum GraphDataDepotConversationType {
|
|
20908
|
+
Channel = "CHANNEL",
|
|
20909
|
+
DirectMessage = "DIRECT_MESSAGE",
|
|
20910
|
+
GroupDirectMessage = "GROUP_DIRECT_MESSAGE"
|
|
20911
|
+
}
|
|
20886
20912
|
export declare type GraphDataDepotCue = {
|
|
20887
20913
|
__typename?: 'GraphDataDepotCue';
|
|
20888
20914
|
endTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
@@ -20915,13 +20941,18 @@ export declare enum GraphDataDepotDeploymentState {
|
|
|
20915
20941
|
}
|
|
20916
20942
|
export declare type GraphDataDepotDesign = {
|
|
20917
20943
|
__typename?: 'GraphDataDepotDesign';
|
|
20944
|
+
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20945
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20918
20946
|
displayName: Scalars['String']['output'];
|
|
20919
20947
|
externalId: Scalars['String']['output'];
|
|
20920
20948
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
20921
20949
|
id: Scalars['ID']['output'];
|
|
20922
20950
|
inspectUrl?: Maybe<Scalars['String']['output']>;
|
|
20951
|
+
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
20923
20952
|
liveEmbedUrl: Scalars['String']['output'];
|
|
20953
|
+
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20924
20954
|
status: GraphDataDepotDesignStatus;
|
|
20955
|
+
thumbnail?: Maybe<GraphDataDepotThumbnail>;
|
|
20925
20956
|
type: GraphDataDepotDesignType;
|
|
20926
20957
|
url: Scalars['String']['output'];
|
|
20927
20958
|
};
|
|
@@ -20938,14 +20969,58 @@ export declare enum GraphDataDepotDesignType {
|
|
|
20938
20969
|
Other = "OTHER",
|
|
20939
20970
|
Prototype = "PROTOTYPE"
|
|
20940
20971
|
}
|
|
20972
|
+
export declare type GraphDataDepotDocument = {
|
|
20973
|
+
__typename?: 'GraphDataDepotDocument';
|
|
20974
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
20975
|
+
collaborators?: Maybe<Array<GraphDataDepotUser>>;
|
|
20976
|
+
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20977
|
+
displayName: Scalars['String']['output'];
|
|
20978
|
+
exportLinks?: Maybe<Array<GraphDataDepotExportLink>>;
|
|
20979
|
+
externalId: Scalars['String']['output'];
|
|
20980
|
+
hasChildren: Scalars['Boolean']['output'];
|
|
20981
|
+
id: Scalars['ID']['output'];
|
|
20982
|
+
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
20983
|
+
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20984
|
+
thumbnail?: Maybe<GraphDataDepotThumbnail>;
|
|
20985
|
+
truncatedDisplayName: Scalars['Boolean']['output'];
|
|
20986
|
+
type: GraphDataDepotDocumentType;
|
|
20987
|
+
updateSequenceNumber: Scalars['Long']['output'];
|
|
20988
|
+
url: Scalars['String']['output'];
|
|
20989
|
+
};
|
|
20990
|
+
export declare enum GraphDataDepotDocumentCategory {
|
|
20991
|
+
Archive = "ARCHIVE",
|
|
20992
|
+
Audio = "AUDIO",
|
|
20993
|
+
Code = "CODE",
|
|
20994
|
+
Document = "DOCUMENT",
|
|
20995
|
+
Folder = "FOLDER",
|
|
20996
|
+
Form = "FORM",
|
|
20997
|
+
Image = "IMAGE",
|
|
20998
|
+
Other = "OTHER",
|
|
20999
|
+
Pdf = "PDF",
|
|
21000
|
+
Presentation = "PRESENTATION",
|
|
21001
|
+
Shortcut = "SHORTCUT",
|
|
21002
|
+
Spreadsheet = "SPREADSHEET",
|
|
21003
|
+
Video = "VIDEO",
|
|
21004
|
+
WebPage = "WEB_PAGE"
|
|
21005
|
+
}
|
|
21006
|
+
export declare type GraphDataDepotDocumentType = {
|
|
21007
|
+
__typename?: 'GraphDataDepotDocumentType';
|
|
21008
|
+
category: GraphDataDepotDocumentCategory;
|
|
21009
|
+
fileExtension?: Maybe<Scalars['String']['output']>;
|
|
21010
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
21011
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
21012
|
+
};
|
|
20941
21013
|
export declare type GraphDataDepotEntities = {
|
|
20942
21014
|
__typename?: 'GraphDataDepotEntities';
|
|
20943
21015
|
branch: Array<GraphDataDepotBranch>;
|
|
20944
21016
|
buildInfo: Array<GraphDataDepotBuildInfo>;
|
|
20945
21017
|
commit: Array<GraphDataDepotCommit>;
|
|
21018
|
+
conversation: Array<GraphDataDepotConversation>;
|
|
20946
21019
|
deployment: Array<GraphDataDepotDeployment>;
|
|
20947
21020
|
design: Array<GraphDataDepotDesign>;
|
|
21021
|
+
document: Array<GraphDataDepotDocument>;
|
|
20948
21022
|
featureFlag: Array<GraphDataDepotFeatureFlag>;
|
|
21023
|
+
message: Array<GraphDataDepotMessage>;
|
|
20949
21024
|
pullRequest: Array<GraphDataDepotPullRequest>;
|
|
20950
21025
|
remoteLink: Array<GraphDataDepotRemoteLink>;
|
|
20951
21026
|
video: Array<GraphDataDepotVideo>;
|
|
@@ -20964,6 +21039,11 @@ export declare enum GraphDataDepotEnvironmentType {
|
|
|
20964
21039
|
Testing = "TESTING",
|
|
20965
21040
|
Unmapped = "UNMAPPED"
|
|
20966
21041
|
}
|
|
21042
|
+
export declare type GraphDataDepotExportLink = {
|
|
21043
|
+
__typename?: 'GraphDataDepotExportLink';
|
|
21044
|
+
mimeType: Scalars['String']['output'];
|
|
21045
|
+
url: Scalars['String']['output'];
|
|
21046
|
+
};
|
|
20967
21047
|
export declare type GraphDataDepotFeatureFlag = {
|
|
20968
21048
|
__typename?: 'GraphDataDepotFeatureFlag';
|
|
20969
21049
|
details: Array<GraphDataDepotFeatureFlagDetail>;
|
|
@@ -21014,12 +21094,24 @@ export declare type GraphDataDepotFileInfo = {
|
|
|
21014
21094
|
fileCount: Scalars['Int']['output'];
|
|
21015
21095
|
files: Array<GraphDataDepotFile>;
|
|
21016
21096
|
};
|
|
21017
|
-
export declare enum
|
|
21018
|
-
|
|
21019
|
-
|
|
21020
|
-
Production = "PRODUCTION",
|
|
21021
|
-
Staging = "STAGING"
|
|
21097
|
+
export declare enum GraphDataDepotMembershipType {
|
|
21098
|
+
Private = "PRIVATE",
|
|
21099
|
+
Public = "PUBLIC"
|
|
21022
21100
|
}
|
|
21101
|
+
export declare type GraphDataDepotMessage = {
|
|
21102
|
+
__typename?: 'GraphDataDepotMessage';
|
|
21103
|
+
attachments?: Maybe<Array<GraphDataDepotAttachment>>;
|
|
21104
|
+
createdBy?: Maybe<GraphDataDepotUser>;
|
|
21105
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
21106
|
+
externalId: Scalars['String']['output'];
|
|
21107
|
+
hidden: Scalars['Boolean']['output'];
|
|
21108
|
+
id: Scalars['ID']['output'];
|
|
21109
|
+
isPinned: Scalars['Boolean']['output'];
|
|
21110
|
+
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
21111
|
+
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
21112
|
+
thumbnail?: Maybe<GraphDataDepotThumbnail>;
|
|
21113
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
21114
|
+
};
|
|
21023
21115
|
export declare type GraphDataDepotPipeline = {
|
|
21024
21116
|
__typename?: 'GraphDataDepotPipeline';
|
|
21025
21117
|
displayName: Scalars['String']['output'];
|
|
@@ -21094,6 +21186,10 @@ export declare type GraphDataDepotTestInfo = {
|
|
|
21094
21186
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
21095
21187
|
totalNumber: Scalars['Int']['output'];
|
|
21096
21188
|
};
|
|
21189
|
+
export declare type GraphDataDepotThumbnail = {
|
|
21190
|
+
__typename?: 'GraphDataDepotThumbnail';
|
|
21191
|
+
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
21192
|
+
};
|
|
21097
21193
|
export declare type GraphDataDepotTrack = {
|
|
21098
21194
|
__typename?: 'GraphDataDepotTrack';
|
|
21099
21195
|
cues: Array<GraphDataDepotCue>;
|
|
@@ -24208,25 +24304,31 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalRelationshipArgs
|
|
|
24208
24304
|
};
|
|
24209
24305
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicArgs = {
|
|
24210
24306
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24307
|
+
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24211
24308
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24212
24309
|
id: Scalars['ID']['input'];
|
|
24213
24310
|
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24214
24311
|
};
|
|
24215
24312
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicInverseArgs = {
|
|
24216
24313
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24314
|
+
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24217
24315
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24218
24316
|
id: Scalars['ID']['input'];
|
|
24219
24317
|
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24220
24318
|
};
|
|
24221
24319
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicInverseRelationshipArgs = {
|
|
24222
24320
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24321
|
+
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24223
24322
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24224
24323
|
id: Scalars['ID']['input'];
|
|
24324
|
+
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24225
24325
|
};
|
|
24226
24326
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs = {
|
|
24227
24327
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24328
|
+
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24228
24329
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24229
24330
|
id: Scalars['ID']['input'];
|
|
24331
|
+
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24230
24332
|
};
|
|
24231
24333
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
24232
24334
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26212,8 +26314,25 @@ export declare type GraphStoreAtiFilterInput = {
|
|
|
26212
26314
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
26213
26315
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
26214
26316
|
};
|
|
26317
|
+
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput = {
|
|
26318
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
26319
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
26320
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
26321
|
+
relationship_syncLabels?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
26322
|
+
relationship_synced?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
26323
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
26324
|
+
};
|
|
26325
|
+
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput = {
|
|
26326
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput>>>;
|
|
26327
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput>>>;
|
|
26328
|
+
};
|
|
26215
26329
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
26330
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
26331
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
26216
26332
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
26333
|
+
relationship_syncLabels?: InputMaybe<GraphStoreSortInput>;
|
|
26334
|
+
relationship_synced?: InputMaybe<GraphStoreSortInput>;
|
|
26335
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
26217
26336
|
};
|
|
26218
26337
|
export declare type GraphStoreBatchContentReferencedEntityConnection = HasPageInfo & {
|
|
26219
26338
|
__typename?: 'GraphStoreBatchContentReferencedEntityConnection';
|
|
@@ -27520,8 +27639,14 @@ export declare type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicNode = Node & {
|
|
|
27520
27639
|
from: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode;
|
|
27521
27640
|
id: Scalars['ID']['output'];
|
|
27522
27641
|
lastUpdated: Scalars['DateTime']['output'];
|
|
27642
|
+
metadata?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicRelationshipMetadataOutput>;
|
|
27523
27643
|
to: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode;
|
|
27524
27644
|
};
|
|
27645
|
+
export declare type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicRelationshipMetadataOutput = {
|
|
27646
|
+
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicRelationshipMetadataOutput';
|
|
27647
|
+
syncLabels?: Maybe<Scalars['Boolean']['output']>;
|
|
27648
|
+
synced?: Maybe<Scalars['Boolean']['output']>;
|
|
27649
|
+
};
|
|
27525
27650
|
export declare type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode = {
|
|
27526
27651
|
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode';
|
|
27527
27652
|
data?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartUnion>;
|
|
@@ -31732,10 +31857,12 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInvers
|
|
|
31732
31857
|
};
|
|
31733
31858
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseUnion = TownsquareProject;
|
|
31734
31859
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalUnion = TownsquareGoal;
|
|
31735
|
-
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection = HasPageInfo & {
|
|
31860
|
+
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection = HasPageInfo & HasTotal & {
|
|
31736
31861
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection';
|
|
31737
31862
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge>>>;
|
|
31863
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
31738
31864
|
pageInfo: PageInfo;
|
|
31865
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
31739
31866
|
};
|
|
31740
31867
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
31741
31868
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge';
|
|
@@ -31745,10 +31872,12 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
|
31745
31872
|
lastUpdated: Scalars['DateTime']['output'];
|
|
31746
31873
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion>;
|
|
31747
31874
|
};
|
|
31748
|
-
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection = HasPageInfo & {
|
|
31875
|
+
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection = HasPageInfo & HasTotal & {
|
|
31749
31876
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection';
|
|
31750
31877
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge>>>;
|
|
31878
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
31751
31879
|
pageInfo: PageInfo;
|
|
31880
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
31752
31881
|
};
|
|
31753
31882
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge = {
|
|
31754
31883
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge';
|
|
@@ -38230,6 +38359,7 @@ export declare type JiraBoard = Node & {
|
|
|
38230
38359
|
boardId?: Maybe<Scalars['Long']['output']>;
|
|
38231
38360
|
boardType?: Maybe<JiraBoardType>;
|
|
38232
38361
|
boardUrl?: Maybe<Scalars['URL']['output']>;
|
|
38362
|
+
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
38233
38363
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
38234
38364
|
id: Scalars['ID']['output'];
|
|
38235
38365
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -39501,6 +39631,7 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
39501
39631
|
export declare type JiraCreateBoardFieldInput = {
|
|
39502
39632
|
issueTypes?: InputMaybe<Array<JiraIssueTypeInput>>;
|
|
39503
39633
|
labels?: InputMaybe<Array<JiraLabelsInput>>;
|
|
39634
|
+
projects: Array<JiraProjectInput>;
|
|
39504
39635
|
teams?: InputMaybe<Array<JiraAtlassianTeamInput>>;
|
|
39505
39636
|
};
|
|
39506
39637
|
export declare type JiraCreateBoardInput = {
|
|
@@ -39516,7 +39647,7 @@ export declare type JiraCreateBoardPayload = Payload & {
|
|
|
39516
39647
|
success: Scalars['Boolean']['output'];
|
|
39517
39648
|
};
|
|
39518
39649
|
export declare type JiraCreateBoardSource = {
|
|
39519
|
-
fieldInput
|
|
39650
|
+
fieldInput: JiraCreateBoardFieldInput;
|
|
39520
39651
|
};
|
|
39521
39652
|
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
39522
39653
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
@@ -41676,6 +41807,7 @@ export declare type JiraIssueExportInput = {
|
|
|
41676
41807
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
41677
41808
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
41678
41809
|
modified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41810
|
+
pagerStart?: InputMaybe<Scalars['Int']['input']>;
|
|
41679
41811
|
};
|
|
41680
41812
|
export declare type JiraIssueExportTask = {
|
|
41681
41813
|
__typename?: 'JiraIssueExportTask';
|
|
@@ -41683,6 +41815,7 @@ export declare type JiraIssueExportTask = {
|
|
|
41683
41815
|
};
|
|
41684
41816
|
export declare type JiraIssueExportTaskCompleted = {
|
|
41685
41817
|
__typename?: 'JiraIssueExportTaskCompleted';
|
|
41818
|
+
downloadResultUrl?: Maybe<Scalars['String']['output']>;
|
|
41686
41819
|
task?: Maybe<JiraIssueExportTask>;
|
|
41687
41820
|
};
|
|
41688
41821
|
export declare type JiraIssueExportTaskProgress = {
|
|
@@ -43075,6 +43208,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
43075
43208
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43076
43209
|
};
|
|
43077
43210
|
export declare enum JiraJqlViewContext {
|
|
43211
|
+
JswPlans = "JSW_PLANS",
|
|
43078
43212
|
Jwm = "JWM",
|
|
43079
43213
|
ShadowRequest = "SHADOW_REQUEST"
|
|
43080
43214
|
}
|
|
@@ -43675,6 +43809,7 @@ export declare type JiraMutation = {
|
|
|
43675
43809
|
updatePeopleField?: Maybe<JiraPeopleFieldPayload>;
|
|
43676
43810
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
43677
43811
|
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
43812
|
+
updateProjectName?: Maybe<JiraProjectUpdateNameMutationPayload>;
|
|
43678
43813
|
updateProjectNotificationPreferences?: Maybe<JiraUpdateProjectNotificationPreferencesPayload>;
|
|
43679
43814
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
43680
43815
|
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
@@ -44094,6 +44229,9 @@ export declare type JiraMutationUpdatePriorityFieldArgs = {
|
|
|
44094
44229
|
export declare type JiraMutationUpdateProjectFieldArgs = {
|
|
44095
44230
|
input: JiraUpdateProjectFieldInput;
|
|
44096
44231
|
};
|
|
44232
|
+
export declare type JiraMutationUpdateProjectNameArgs = {
|
|
44233
|
+
input: JiraProjectUpdateNameInput;
|
|
44234
|
+
};
|
|
44097
44235
|
export declare type JiraMutationUpdateProjectNotificationPreferencesArgs = {
|
|
44098
44236
|
cloudId: Scalars['ID']['input'];
|
|
44099
44237
|
input: JiraUpdateProjectNotificationPreferencesInput;
|
|
@@ -45865,6 +46003,17 @@ export declare type JiraProjectTypeDetailsEdge = {
|
|
|
45865
46003
|
cursor: Scalars['String']['output'];
|
|
45866
46004
|
node?: Maybe<JiraProjectTypeDetails>;
|
|
45867
46005
|
};
|
|
46006
|
+
export declare type JiraProjectUpdateNameInput = {
|
|
46007
|
+
cloudId: Scalars['ID']['input'];
|
|
46008
|
+
name: Scalars['String']['input'];
|
|
46009
|
+
projectIdOrKey: Scalars['String']['input'];
|
|
46010
|
+
};
|
|
46011
|
+
export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
46012
|
+
__typename?: 'JiraProjectUpdateNameMutationPayload';
|
|
46013
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46014
|
+
project?: Maybe<JiraProject>;
|
|
46015
|
+
success: Scalars['Boolean']['output'];
|
|
46016
|
+
};
|
|
45868
46017
|
export declare type JiraPullRequestReviewer = {
|
|
45869
46018
|
__typename?: 'JiraPullRequestReviewer';
|
|
45870
46019
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -45974,6 +46123,7 @@ export declare type JiraQuery = {
|
|
|
45974
46123
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
45975
46124
|
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
45976
46125
|
jiraSoftwareNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
46126
|
+
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
45977
46127
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
45978
46128
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
45979
46129
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
@@ -46498,6 +46648,9 @@ export declare type JiraQueryJiraSoftwareNavigationItemsArgs = {
|
|
|
46498
46648
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46499
46649
|
projectIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
46500
46650
|
};
|
|
46651
|
+
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
46652
|
+
cloudId: Scalars['ID']['input'];
|
|
46653
|
+
};
|
|
46501
46654
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
46502
46655
|
cloudId: Scalars['ID']['input'];
|
|
46503
46656
|
};
|
|
@@ -47533,6 +47686,7 @@ export declare type JiraScenarioIssueValues = {
|
|
|
47533
47686
|
goalsField?: Maybe<JiraGoalsField>;
|
|
47534
47687
|
issueTypeField?: Maybe<JiraIssueTypeField>;
|
|
47535
47688
|
projectField?: Maybe<JiraProjectField>;
|
|
47689
|
+
scenarioKey?: Maybe<Scalars['ID']['output']>;
|
|
47536
47690
|
scenarioType?: Maybe<JiraScenarioType>;
|
|
47537
47691
|
startDateViewField?: Maybe<JiraIssueField>;
|
|
47538
47692
|
statusField?: Maybe<JiraStatusField>;
|
|
@@ -52231,8 +52385,16 @@ export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
|
|
|
52231
52385
|
};
|
|
52232
52386
|
export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
52233
52387
|
__typename?: 'KnowledgeDiscoveryKeyPhrase';
|
|
52388
|
+
category: KnowledgeDiscoveryKeyPhraseCategory;
|
|
52234
52389
|
keyPhrase: Scalars['String']['output'];
|
|
52235
52390
|
};
|
|
52391
|
+
export declare enum KnowledgeDiscoveryKeyPhraseCategory {
|
|
52392
|
+
Acronym = "ACRONYM",
|
|
52393
|
+
IndustryJargon = "INDUSTRY_JARGON",
|
|
52394
|
+
Other = "OTHER",
|
|
52395
|
+
Project = "PROJECT",
|
|
52396
|
+
Team = "TEAM"
|
|
52397
|
+
}
|
|
52236
52398
|
export declare type KnowledgeDiscoveryKeyPhraseConnection = {
|
|
52237
52399
|
__typename?: 'KnowledgeDiscoveryKeyPhraseConnection';
|
|
52238
52400
|
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryKeyPhrase>>>;
|
|
@@ -52438,10 +52600,34 @@ export declare type LogQueryInput = {
|
|
|
52438
52600
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
52439
52601
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
52440
52602
|
};
|
|
52603
|
+
export declare type LpBunchballBadge = {
|
|
52604
|
+
__typename?: 'LpBunchballBadge';
|
|
52605
|
+
contentfulCourseId?: Maybe<Scalars['String']['output']>;
|
|
52606
|
+
dateEarned?: Maybe<Scalars['String']['output']>;
|
|
52607
|
+
fullUrl?: Maybe<Scalars['String']['output']>;
|
|
52608
|
+
missionId?: Maybe<Scalars['Int']['output']>;
|
|
52609
|
+
thumbUrl?: Maybe<Scalars['String']['output']>;
|
|
52610
|
+
};
|
|
52611
|
+
export declare type LpBunchballBadgeConnection = {
|
|
52612
|
+
__typename?: 'LpBunchballBadgeConnection';
|
|
52613
|
+
edges?: Maybe<Array<LpBunchballBadgeEdge>>;
|
|
52614
|
+
pageInfo?: Maybe<LpPageInfo>;
|
|
52615
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
52616
|
+
};
|
|
52617
|
+
export declare type LpBunchballBadgeEdge = {
|
|
52618
|
+
__typename?: 'LpBunchballBadgeEdge';
|
|
52619
|
+
cursor: Scalars['String']['output'];
|
|
52620
|
+
node?: Maybe<LpBunchballBadge>;
|
|
52621
|
+
};
|
|
52441
52622
|
export declare enum LpCertStatus {
|
|
52442
52623
|
Active = "ACTIVE",
|
|
52443
52624
|
Expired = "EXPIRED"
|
|
52444
52625
|
}
|
|
52626
|
+
export declare enum LpCertType {
|
|
52627
|
+
Badge = "BADGE",
|
|
52628
|
+
Certification = "CERTIFICATION",
|
|
52629
|
+
Standing = "STANDING"
|
|
52630
|
+
}
|
|
52445
52631
|
export declare type LpCertmetricsCertificate = {
|
|
52446
52632
|
__typename?: 'LpCertmetricsCertificate';
|
|
52447
52633
|
activeDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -52452,6 +52638,7 @@ export declare type LpCertmetricsCertificate = {
|
|
|
52452
52638
|
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
52453
52639
|
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
52454
52640
|
status?: Maybe<LpCertStatus>;
|
|
52641
|
+
type?: Maybe<LpCertType>;
|
|
52455
52642
|
};
|
|
52456
52643
|
export declare type LpCertmetricsCertificateConnection = {
|
|
52457
52644
|
__typename?: 'LpCertmetricsCertificateConnection';
|
|
@@ -52472,6 +52659,7 @@ export declare type LpCourseProgress = {
|
|
|
52472
52659
|
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
52473
52660
|
status?: Maybe<LpCourseStatus>;
|
|
52474
52661
|
title?: Maybe<Scalars['String']['output']>;
|
|
52662
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
52475
52663
|
};
|
|
52476
52664
|
export declare type LpCourseProgressConnection = {
|
|
52477
52665
|
__typename?: 'LpCourseProgressConnection';
|
|
@@ -52491,16 +52679,24 @@ export declare enum LpCourseStatus {
|
|
|
52491
52679
|
export declare type LpLearner = Node & {
|
|
52492
52680
|
__typename?: 'LpLearner';
|
|
52493
52681
|
atlassianId: Scalars['String']['output'];
|
|
52682
|
+
bunchballBadges?: Maybe<LpBunchballBadgeConnection>;
|
|
52494
52683
|
certmetricsCertificates?: Maybe<LpCertmetricsCertificateConnection>;
|
|
52495
52684
|
courses?: Maybe<LpCourseProgressConnection>;
|
|
52496
52685
|
id: Scalars['ID']['output'];
|
|
52497
52686
|
};
|
|
52687
|
+
export declare type LpLearnerBunchballBadgesArgs = {
|
|
52688
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52689
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
52690
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52691
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52692
|
+
};
|
|
52498
52693
|
export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
52499
52694
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52500
52695
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52501
52696
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52502
52697
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52503
52698
|
status?: InputMaybe<LpCertStatus>;
|
|
52699
|
+
type?: InputMaybe<Array<InputMaybe<LpCertType>>>;
|
|
52504
52700
|
};
|
|
52505
52701
|
export declare type LpLearnerCoursesArgs = {
|
|
52506
52702
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -52525,6 +52721,7 @@ export declare type LpLessonProgress = {
|
|
|
52525
52721
|
__typename?: 'LpLessonProgress';
|
|
52526
52722
|
lessonId?: Maybe<Scalars['String']['output']>;
|
|
52527
52723
|
status?: Maybe<Scalars['String']['output']>;
|
|
52724
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
52528
52725
|
};
|
|
52529
52726
|
export declare type LpPageInfo = {
|
|
52530
52727
|
__typename?: 'LpPageInfo';
|
|
@@ -54515,7 +54712,6 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
54515
54712
|
};
|
|
54516
54713
|
export declare type Mutation = {
|
|
54517
54714
|
__typename?: 'Mutation';
|
|
54518
|
-
ForgeAi?: Maybe<ForgeAiMutation>;
|
|
54519
54715
|
actions?: Maybe<ActionsMutation>;
|
|
54520
54716
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
54521
54717
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
@@ -58095,6 +58291,7 @@ export declare type Query = {
|
|
|
58095
58291
|
confluenceLegacy_homeUserSettings?: Maybe<ConfluenceLegacyHomeUserSettings>;
|
|
58096
58292
|
confluenceLegacy_incomingLinksCount?: Maybe<ConfluenceLegacyIncomingLinksCount>;
|
|
58097
58293
|
confluenceLegacy_inlineTasks?: Maybe<ConfluenceLegacyInlineTasksQueryResult>;
|
|
58294
|
+
confluenceLegacy_instanceAnalyticsCount?: Maybe<ConfluenceLegacyInstanceAnalyticsCount>;
|
|
58098
58295
|
confluenceLegacy_internalFrontendResource?: Maybe<ConfluenceLegacyFrontendResourceRenderResponse>;
|
|
58099
58296
|
confluenceLegacy_isDataClassificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
58100
58297
|
confluenceLegacy_isMoveContentStatesSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -58213,9 +58410,12 @@ export declare type Query = {
|
|
|
58213
58410
|
confluenceV2_inlineCommentsForBlogPost?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
58214
58411
|
confluenceV2_inlineCommentsForPage?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
58215
58412
|
confluenceV2_inlineCommentsForParentInlineComment?: Maybe<ConfluenceV2InlineCommentConnection>;
|
|
58413
|
+
confluenceV2_macros?: Maybe<ConfluenceV2MacroConnection>;
|
|
58414
|
+
confluenceV2_organization?: Maybe<ConfluenceV2Organization>;
|
|
58216
58415
|
confluenceV2_page?: Maybe<ConfluenceV2Page>;
|
|
58217
58416
|
confluenceV2_pages?: Maybe<Array<Maybe<ConfluenceV2Page>>>;
|
|
58218
58417
|
confluenceV2_pagesForSpace?: Maybe<ConfluenceV2PageConnection>;
|
|
58418
|
+
confluenceV2_renderedMacro?: Maybe<ConfluenceV2RenderedMacro>;
|
|
58219
58419
|
confluenceV2_space?: Maybe<ConfluenceV2Space>;
|
|
58220
58420
|
confluenceV2_spaceForPage?: Maybe<ConfluenceV2SpacePage>;
|
|
58221
58421
|
confluenceV2_spaceLookAndFeel?: Maybe<ConfluenceV2LookAndFeel>;
|
|
@@ -58272,7 +58472,6 @@ export declare type Query = {
|
|
|
58272
58472
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
58273
58473
|
insights?: Maybe<Insights>;
|
|
58274
58474
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
58275
|
-
instanceAnalyticsCount?: Maybe<ConfluenceLegacyInstanceAnalyticsCount>;
|
|
58276
58475
|
ipmImageModal?: Maybe<ContentPlatformIpmImageModal>;
|
|
58277
58476
|
ipmImageModals: ContentPlatformIpmImageModalSearchConnection;
|
|
58278
58477
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -58292,7 +58491,6 @@ export declare type Query = {
|
|
|
58292
58491
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
58293
58492
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
58294
58493
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
58295
|
-
macros?: Maybe<ConfluenceV2MacroConnection>;
|
|
58296
58494
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
58297
58495
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
58298
58496
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
@@ -58313,7 +58511,6 @@ export declare type Query = {
|
|
|
58313
58511
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
58314
58512
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
58315
58513
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
58316
|
-
organization?: Maybe<ConfluenceV2Organization>;
|
|
58317
58514
|
partner?: Maybe<Partner>;
|
|
58318
58515
|
partnerEarlyAccess?: Maybe<PeapQueryApi>;
|
|
58319
58516
|
pokemon?: Maybe<PokemonQuery>;
|
|
@@ -58338,7 +58535,6 @@ export declare type Query = {
|
|
|
58338
58535
|
productListings: Array<ProductListingResult>;
|
|
58339
58536
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
58340
58537
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
58341
|
-
renderedMacro?: Maybe<ConfluenceV2RenderedMacro>;
|
|
58342
58538
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
58343
58539
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
58344
58540
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
@@ -58868,6 +59064,11 @@ export declare type QueryConfluenceLegacy_IncomingLinksCountArgs = {
|
|
|
58868
59064
|
export declare type QueryConfluenceLegacy_InlineTasksArgs = {
|
|
58869
59065
|
tasksQuery: ConfluenceLegacyInlineTasksByMetadata;
|
|
58870
59066
|
};
|
|
59067
|
+
export declare type QueryConfluenceLegacy_InstanceAnalyticsCountArgs = {
|
|
59068
|
+
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
59069
|
+
eventName: Array<ConfluenceLegacyAnalyticsEventName>;
|
|
59070
|
+
startTime: Scalars['String']['input'];
|
|
59071
|
+
};
|
|
58871
59072
|
export declare type QueryConfluenceLegacy_IsMoveContentStatesSupportedArgs = {
|
|
58872
59073
|
contentId: Scalars['ID']['input'];
|
|
58873
59074
|
spaceKey: Scalars['String']['input'];
|
|
@@ -59381,6 +59582,12 @@ export declare type QueryConfluenceV2_InlineCommentsForParentInlineCommentArgs =
|
|
|
59381
59582
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59382
59583
|
id: Scalars['ID']['input'];
|
|
59383
59584
|
};
|
|
59585
|
+
export declare type QueryConfluenceV2_MacrosArgs = {
|
|
59586
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
59587
|
+
blocklist?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
59588
|
+
contentId: Scalars['ID']['input'];
|
|
59589
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59590
|
+
};
|
|
59384
59591
|
export declare type QueryConfluenceV2_PageArgs = {
|
|
59385
59592
|
id: Scalars['ID']['input'];
|
|
59386
59593
|
status?: InputMaybe<Array<ConfluenceV2PageStatus>>;
|
|
@@ -59394,6 +59601,10 @@ export declare type QueryConfluenceV2_PagesForSpaceArgs = {
|
|
|
59394
59601
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59395
59602
|
id: Scalars['ID']['input'];
|
|
59396
59603
|
};
|
|
59604
|
+
export declare type QueryConfluenceV2_RenderedMacroArgs = {
|
|
59605
|
+
adf: Scalars['String']['input'];
|
|
59606
|
+
contentId: Scalars['ID']['input'];
|
|
59607
|
+
};
|
|
59397
59608
|
export declare type QueryConfluenceV2_SpaceArgs = {
|
|
59398
59609
|
id: Scalars['ID']['input'];
|
|
59399
59610
|
};
|
|
@@ -59541,11 +59752,6 @@ export declare type QueryHelpObjectStoreArgs = {
|
|
|
59541
59752
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
59542
59753
|
appId: Scalars['ID']['input'];
|
|
59543
59754
|
};
|
|
59544
|
-
export declare type QueryInstanceAnalyticsCountArgs = {
|
|
59545
|
-
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
59546
|
-
eventName: Array<ConfluenceLegacyAnalyticsEventName>;
|
|
59547
|
-
startTime: Scalars['String']['input'];
|
|
59548
|
-
};
|
|
59549
59755
|
export declare type QueryIpmImageModalArgs = {
|
|
59550
59756
|
id: Scalars['String']['input'];
|
|
59551
59757
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -59594,12 +59800,6 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
59594
59800
|
export declare type QueryKnowledgeBaseArgs = {
|
|
59595
59801
|
cloudId: Scalars['ID']['input'];
|
|
59596
59802
|
};
|
|
59597
|
-
export declare type QueryMacrosArgs = {
|
|
59598
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
59599
|
-
blocklist?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
59600
|
-
contentId: Scalars['ID']['input'];
|
|
59601
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
59602
|
-
};
|
|
59603
59803
|
export declare type QueryMarketplaceAppArgs = {
|
|
59604
59804
|
appId: Scalars['ID']['input'];
|
|
59605
59805
|
};
|
|
@@ -59719,10 +59919,6 @@ export declare type QueryReleaseNotesArgs = {
|
|
|
59719
59919
|
search?: InputMaybe<ContentPlatformSearchOptions>;
|
|
59720
59920
|
visibleInFedRAMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59721
59921
|
};
|
|
59722
|
-
export declare type QueryRenderedMacroArgs = {
|
|
59723
|
-
adf: Scalars['String']['input'];
|
|
59724
|
-
contentId: Scalars['ID']['input'];
|
|
59725
|
-
};
|
|
59726
59922
|
export declare type QueryRepositoryRelationshipsForDevOpsServiceArgs = {
|
|
59727
59923
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
59728
59924
|
filter?: InputMaybe<DevOpsServiceAndRepositoryRelationshipFilter>;
|
|
@@ -62185,6 +62381,7 @@ export declare enum ShepherdAtlassianProduct {
|
|
|
62185
62381
|
AdminHub = "ADMIN_HUB",
|
|
62186
62382
|
Bitbucket = "BITBUCKET",
|
|
62187
62383
|
Confluence = "CONFLUENCE",
|
|
62384
|
+
GuardDetect = "GUARD_DETECT",
|
|
62188
62385
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
62189
62386
|
Marketplace = "MARKETPLACE"
|
|
62190
62387
|
}
|
|
@@ -64654,6 +64851,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
64654
64851
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
64655
64852
|
url?: Maybe<Scalars['String']['output']>;
|
|
64656
64853
|
uuid: Scalars['String']['output'];
|
|
64854
|
+
watchers?: Maybe<TownsquareUserConnection>;
|
|
64657
64855
|
};
|
|
64658
64856
|
export declare type TownsquareGoalSubGoalsArgs = {
|
|
64659
64857
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64937,6 +65135,10 @@ export declare type TownsquareTeam = Node & {
|
|
|
64937
65135
|
id: Scalars['ID']['output'];
|
|
64938
65136
|
name?: Maybe<Scalars['String']['output']>;
|
|
64939
65137
|
};
|
|
65138
|
+
export declare type TownsquareUserConnection = {
|
|
65139
|
+
__typename?: 'TownsquareUserConnection';
|
|
65140
|
+
count: Scalars['Int']['output'];
|
|
65141
|
+
};
|
|
64940
65142
|
export declare type TownsquareWorkspace = Node & {
|
|
64941
65143
|
__typename?: 'TownsquareWorkspace';
|
|
64942
65144
|
cloudId: Scalars['String']['output'];
|