@forge/cli-shared 8.3.1-next.4 → 8.4.0-next.5
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 +267 -49
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +30 -23
- package/out/ui/text.d.ts +5 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -0
- package/package.json +1 -1
|
@@ -5561,8 +5561,11 @@ export declare type CcpInvoiceGroupV2 = Node & {
|
|
|
5561
5561
|
};
|
|
5562
5562
|
export declare type CcpInvoiceRequest = {
|
|
5563
5563
|
__typename?: 'CcpInvoiceRequest';
|
|
5564
|
+
currency?: Maybe<CcpCurrency>;
|
|
5564
5565
|
id: Scalars['ID']['output'];
|
|
5565
5566
|
items?: Maybe<Array<Maybe<CcpInvoiceRequestItem>>>;
|
|
5567
|
+
preDunning?: Maybe<CcpSearchInvoiceRequestItemPreDunning>;
|
|
5568
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
5566
5569
|
};
|
|
5567
5570
|
export declare type CcpInvoiceRequestItem = {
|
|
5568
5571
|
__typename?: 'CcpInvoiceRequestItem';
|
|
@@ -6759,6 +6762,11 @@ export declare type CcpSearchFieldRangeInput = {
|
|
|
6759
6762
|
bounds: CcpSearchTimestampBoundsInput;
|
|
6760
6763
|
field: Scalars['String']['input'];
|
|
6761
6764
|
};
|
|
6765
|
+
export declare type CcpSearchInvoiceRequestItemPreDunning = {
|
|
6766
|
+
__typename?: 'CcpSearchInvoiceRequestItemPreDunning';
|
|
6767
|
+
endAt?: Maybe<Scalars['Float']['output']>;
|
|
6768
|
+
startedAt?: Maybe<Scalars['Float']['output']>;
|
|
6769
|
+
};
|
|
6762
6770
|
export declare type CcpSearchSortInput = {
|
|
6763
6771
|
field: Scalars['String']['input'];
|
|
6764
6772
|
order: CcpSearchSortOrder;
|
|
@@ -12884,6 +12892,15 @@ export declare type ConfluenceApplicationLink = {
|
|
|
12884
12892
|
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
12885
12893
|
typeId: Scalars['String']['output'];
|
|
12886
12894
|
};
|
|
12895
|
+
export declare type ConfluenceAssignableSpaceRole = {
|
|
12896
|
+
__typename?: 'ConfluenceAssignableSpaceRole';
|
|
12897
|
+
spaceRoles: Array<Maybe<ConfluenceBasicSpaceRole>>;
|
|
12898
|
+
type: ConfluenceAssignableSpaceRolePrincipalType;
|
|
12899
|
+
};
|
|
12900
|
+
export declare enum ConfluenceAssignableSpaceRolePrincipalType {
|
|
12901
|
+
Anonymous = "ANONYMOUS",
|
|
12902
|
+
Guest = "GUEST"
|
|
12903
|
+
}
|
|
12887
12904
|
export declare enum ConfluenceAttachmentSecurityLevel {
|
|
12888
12905
|
Insecure = "INSECURE",
|
|
12889
12906
|
Secure = "SECURE",
|
|
@@ -12895,6 +12912,13 @@ export declare type ConfluenceAttachmentSettings = {
|
|
|
12895
12912
|
maxAttachmentSize?: Maybe<Scalars['Long']['output']>;
|
|
12896
12913
|
maxAttachmentsPerUpload?: Maybe<Scalars['Int']['output']>;
|
|
12897
12914
|
};
|
|
12915
|
+
export declare type ConfluenceBasicSpaceRole = {
|
|
12916
|
+
__typename?: 'ConfluenceBasicSpaceRole';
|
|
12917
|
+
description: Scalars['String']['output'];
|
|
12918
|
+
id: Scalars['ID']['output'];
|
|
12919
|
+
name: Scalars['String']['output'];
|
|
12920
|
+
type: SpaceRoleType;
|
|
12921
|
+
};
|
|
12898
12922
|
export declare type ConfluenceBlockedAccessAssignableSpaceRole = {
|
|
12899
12923
|
__typename?: 'ConfluenceBlockedAccessAssignableSpaceRole';
|
|
12900
12924
|
roleDescription: Scalars['String']['output'];
|
|
@@ -13140,6 +13164,15 @@ export declare type ConfluenceCommentUpdated = {
|
|
|
13140
13164
|
__typename?: 'ConfluenceCommentUpdated';
|
|
13141
13165
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
13142
13166
|
};
|
|
13167
|
+
export declare type ConfluenceContentAiSummaryResponse = {
|
|
13168
|
+
__typename?: 'ConfluenceContentAISummaryResponse';
|
|
13169
|
+
contentAri: Scalars['ID']['output'];
|
|
13170
|
+
contentId: Scalars['ID']['output'];
|
|
13171
|
+
contentType: KnowledgeGraphContentType;
|
|
13172
|
+
createdAt: Scalars['String']['output'];
|
|
13173
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
13174
|
+
objectData?: Maybe<Scalars['String']['output']>;
|
|
13175
|
+
};
|
|
13143
13176
|
export declare type ConfluenceContentAccessRequest = {
|
|
13144
13177
|
__typename?: 'ConfluenceContentAccessRequest';
|
|
13145
13178
|
accessRequestedAaid: Scalars['ID']['output'];
|
|
@@ -14291,6 +14324,14 @@ export declare type ConfluenceMarkCommentAsDanglingPayload = Payload & {
|
|
|
14291
14324
|
errors: Array<MutationError>;
|
|
14292
14325
|
success: Scalars['Boolean']['output'];
|
|
14293
14326
|
};
|
|
14327
|
+
export declare type ConfluenceMediaTokenData = {
|
|
14328
|
+
__typename?: 'ConfluenceMediaTokenData';
|
|
14329
|
+
clientId: Scalars['String']['output'];
|
|
14330
|
+
collection: Scalars['String']['output'];
|
|
14331
|
+
expiration: Scalars['Int']['output'];
|
|
14332
|
+
fileStoreUrl: Scalars['String']['output'];
|
|
14333
|
+
token: Scalars['String']['output'];
|
|
14334
|
+
};
|
|
14294
14335
|
export declare type ConfluenceMutationApi = {
|
|
14295
14336
|
__typename?: 'ConfluenceMutationApi';
|
|
14296
14337
|
addCustomApplicationLink?: Maybe<ConfluenceAddCustomApplicationLinkPayload>;
|
|
@@ -16112,7 +16153,7 @@ export declare enum ContainerType {
|
|
|
16112
16153
|
}
|
|
16113
16154
|
export declare type Content = {
|
|
16114
16155
|
__typename?: 'Content';
|
|
16115
|
-
aiProperty?: Maybe<
|
|
16156
|
+
aiProperty?: Maybe<ConfluenceContentAiSummaryResponse>;
|
|
16116
16157
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
16117
16158
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
16118
16159
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
@@ -16186,9 +16227,7 @@ export declare type Content = {
|
|
|
16186
16227
|
visibleDescendantsCount: Scalars['Long']['output'];
|
|
16187
16228
|
};
|
|
16188
16229
|
export declare type ContentAiPropertyArgs = {
|
|
16189
|
-
|
|
16190
|
-
contentType: KnowledgeGraphContentType;
|
|
16191
|
-
objectType: KnowledgeGraphObjectType;
|
|
16230
|
+
objectType?: KnowledgeGraphObjectType;
|
|
16192
16231
|
};
|
|
16193
16232
|
export declare type ContentAttachmentsArgs = {
|
|
16194
16233
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18205,13 +18244,6 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
|
18205
18244
|
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
18206
18245
|
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
18207
18246
|
};
|
|
18208
|
-
export declare type ConvoAiPromptSuggestionResult = {
|
|
18209
|
-
__typename?: 'ConvoAiPromptSuggestionResult';
|
|
18210
|
-
suggestions?: Maybe<Array<Scalars['String']['output']>>;
|
|
18211
|
-
};
|
|
18212
|
-
export declare type ConvoAiPromptSuggestionsInput = {
|
|
18213
|
-
userPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
18214
|
-
};
|
|
18215
18247
|
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
18216
18248
|
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
18217
18249
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -18289,6 +18321,16 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
18289
18321
|
page: Scalars['String']['output'];
|
|
18290
18322
|
user: Scalars['Int']['output'];
|
|
18291
18323
|
};
|
|
18324
|
+
export declare type CplsAddContributorScopeAssociationInput = {
|
|
18325
|
+
cloudId: Scalars['ID']['input'];
|
|
18326
|
+
contributorIds: Array<Scalars['ID']['input']>;
|
|
18327
|
+
scopeId: Scalars['ID']['input'];
|
|
18328
|
+
};
|
|
18329
|
+
export declare type CplsAddContributorScopeAssociationPayload = {
|
|
18330
|
+
__typename?: 'CplsAddContributorScopeAssociationPayload';
|
|
18331
|
+
contributors: Array<CplsContributorEdge>;
|
|
18332
|
+
errors: Array<MutationError>;
|
|
18333
|
+
};
|
|
18292
18334
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
18293
18335
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
18294
18336
|
contributors: CplsContributorConnection;
|
|
@@ -18361,6 +18403,16 @@ export declare type CplsCustomContributionTarget = {
|
|
|
18361
18403
|
id: Scalars['ID']['output'];
|
|
18362
18404
|
name: Scalars['String']['output'];
|
|
18363
18405
|
};
|
|
18406
|
+
export declare type CplsDeleteContributorScopeAssociationInput = {
|
|
18407
|
+
cloudId: Scalars['ID']['input'];
|
|
18408
|
+
contributorIds: Array<Scalars['ID']['input']>;
|
|
18409
|
+
scopeId: Scalars['ID']['input'];
|
|
18410
|
+
};
|
|
18411
|
+
export declare type CplsDeleteContributorScopeAssociationPayload = {
|
|
18412
|
+
__typename?: 'CplsDeleteContributorScopeAssociationPayload';
|
|
18413
|
+
errors: Array<MutationError>;
|
|
18414
|
+
ids: Array<Scalars['ID']['output']>;
|
|
18415
|
+
};
|
|
18364
18416
|
export declare type CplsTimeCell = {
|
|
18365
18417
|
__typename?: 'CplsTimeCell';
|
|
18366
18418
|
endDate: Scalars['Date']['output'];
|
|
@@ -21888,9 +21940,17 @@ export declare type DevAiRovoDevBulkCreateSessionByCloudIdInput = {
|
|
|
21888
21940
|
export declare type DevAiRovoDevBulkCreateSessionPayload = Payload & {
|
|
21889
21941
|
__typename?: 'DevAiRovoDevBulkCreateSessionPayload';
|
|
21890
21942
|
errors?: Maybe<Array<MutationError>>;
|
|
21943
|
+
failedSessions?: Maybe<Array<DevAiRovoDevBulkSessionResult>>;
|
|
21891
21944
|
sessions?: Maybe<Array<Maybe<DevAiRovoDevSession>>>;
|
|
21945
|
+
succeededSessions?: Maybe<Array<DevAiRovoDevBulkSessionResult>>;
|
|
21892
21946
|
success: Scalars['Boolean']['output'];
|
|
21893
21947
|
};
|
|
21948
|
+
export declare type DevAiRovoDevBulkSessionResult = {
|
|
21949
|
+
__typename?: 'DevAiRovoDevBulkSessionResult';
|
|
21950
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21951
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
21952
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
21953
|
+
};
|
|
21894
21954
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
21895
21955
|
cloudId: Scalars['ID']['input'];
|
|
21896
21956
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -21994,10 +22054,11 @@ export declare enum DevAiRovoDevSessionSort {
|
|
|
21994
22054
|
Desc = "DESC"
|
|
21995
22055
|
}
|
|
21996
22056
|
export declare enum DevAiRovoDevSessionStatus {
|
|
22057
|
+
AgentWorking = "AGENT_WORKING",
|
|
21997
22058
|
Archived = "ARCHIVED",
|
|
22059
|
+
Cloning = "CLONING",
|
|
21998
22060
|
Failed = "FAILED",
|
|
21999
22061
|
Initialising = "INITIALISING",
|
|
22000
|
-
InProgress = "IN_PROGRESS",
|
|
22001
22062
|
Pending = "PENDING",
|
|
22002
22063
|
ReadyForReview = "READY_FOR_REVIEW",
|
|
22003
22064
|
WaitingForUser = "WAITING_FOR_USER"
|
|
@@ -31618,6 +31679,10 @@ export declare type GraphStore = {
|
|
|
31618
31679
|
userFavoritedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection>;
|
|
31619
31680
|
userFavoritedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection>;
|
|
31620
31681
|
userFavoritedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection>;
|
|
31682
|
+
userFavoritedFocusArea?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaConnection>;
|
|
31683
|
+
userFavoritedFocusAreaBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
31684
|
+
userFavoritedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection>;
|
|
31685
|
+
userFavoritedFocusAreaInverseBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
31621
31686
|
userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
|
|
31622
31687
|
userHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseConnection>;
|
|
31623
31688
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
@@ -35939,6 +36004,32 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardInverseArgs = {
|
|
|
35939
36004
|
id: Scalars['ID']['input'];
|
|
35940
36005
|
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
35941
36006
|
};
|
|
36007
|
+
export declare type GraphStoreUserFavoritedFocusAreaArgs = {
|
|
36008
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36009
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36010
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36011
|
+
id: Scalars['ID']['input'];
|
|
36012
|
+
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
36013
|
+
};
|
|
36014
|
+
export declare type GraphStoreUserFavoritedFocusAreaBatchArgs = {
|
|
36015
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36016
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36017
|
+
ids: Array<Scalars['ID']['input']>;
|
|
36018
|
+
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
36019
|
+
};
|
|
36020
|
+
export declare type GraphStoreUserFavoritedFocusAreaInverseArgs = {
|
|
36021
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36022
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36023
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36024
|
+
id: Scalars['ID']['input'];
|
|
36025
|
+
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
36026
|
+
};
|
|
36027
|
+
export declare type GraphStoreUserFavoritedFocusAreaInverseBatchArgs = {
|
|
36028
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36029
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36030
|
+
ids: Array<Scalars['ID']['input']>;
|
|
36031
|
+
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
36032
|
+
};
|
|
35942
36033
|
export declare type GraphStoreUserHasExternalPositionArgs = {
|
|
35943
36034
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35944
36035
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37975,6 +38066,47 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode = {
|
|
|
37975
38066
|
id: Scalars['ID']['output'];
|
|
37976
38067
|
};
|
|
37977
38068
|
export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIssue;
|
|
38069
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaConnection = HasPageInfo & {
|
|
38070
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaConnection';
|
|
38071
|
+
edges: Array<Maybe<GraphStoreBatchUserFavoritedFocusAreaEdge>>;
|
|
38072
|
+
nodes: Array<Maybe<GraphStoreBatchUserFavoritedFocusAreaNode>>;
|
|
38073
|
+
pageInfo: PageInfo;
|
|
38074
|
+
};
|
|
38075
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaEdge = {
|
|
38076
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaEdge';
|
|
38077
|
+
node: GraphStoreBatchUserFavoritedFocusAreaInnerConnection;
|
|
38078
|
+
};
|
|
38079
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaEndNode = {
|
|
38080
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaEndNode';
|
|
38081
|
+
data?: Maybe<GraphStoreBatchUserFavoritedFocusAreaEndUnion>;
|
|
38082
|
+
id: Scalars['ID']['output'];
|
|
38083
|
+
};
|
|
38084
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaEndUnion = MercuryFocusArea;
|
|
38085
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaInnerConnection = {
|
|
38086
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaInnerConnection';
|
|
38087
|
+
edges: Array<Maybe<GraphStoreBatchUserFavoritedFocusAreaInnerEdge>>;
|
|
38088
|
+
nodes: Array<Maybe<GraphStoreBatchUserFavoritedFocusAreaNode>>;
|
|
38089
|
+
requestedId: Scalars['ID']['output'];
|
|
38090
|
+
};
|
|
38091
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaInnerEdge = {
|
|
38092
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaInnerEdge';
|
|
38093
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38094
|
+
node: GraphStoreBatchUserFavoritedFocusAreaNode;
|
|
38095
|
+
};
|
|
38096
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaNode = Node & {
|
|
38097
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaNode';
|
|
38098
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38099
|
+
from: GraphStoreBatchUserFavoritedFocusAreaStartNode;
|
|
38100
|
+
id: Scalars['ID']['output'];
|
|
38101
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38102
|
+
to: GraphStoreBatchUserFavoritedFocusAreaEndNode;
|
|
38103
|
+
};
|
|
38104
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaStartNode = {
|
|
38105
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaStartNode';
|
|
38106
|
+
data?: Maybe<GraphStoreBatchUserFavoritedFocusAreaStartUnion>;
|
|
38107
|
+
id: Scalars['ID']['output'];
|
|
38108
|
+
};
|
|
38109
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37978
38110
|
export declare type GraphStoreBatchUserUpdatedIssueConnection = HasPageInfo & {
|
|
37979
38111
|
__typename?: 'GraphStoreBatchUserUpdatedIssueConnection';
|
|
37980
38112
|
edges: Array<Maybe<GraphStoreBatchUserUpdatedIssueEdge>>;
|
|
@@ -50358,6 +50490,34 @@ export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverse
|
|
|
50358
50490
|
};
|
|
50359
50491
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50360
50492
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
50493
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaConnection = HasPageInfo & {
|
|
50494
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedFocusAreaConnection';
|
|
50495
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaEdge>>>;
|
|
50496
|
+
pageInfo: PageInfo;
|
|
50497
|
+
};
|
|
50498
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaEdge = {
|
|
50499
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedFocusAreaEdge';
|
|
50500
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50501
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50502
|
+
id: Scalars['ID']['output'];
|
|
50503
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50504
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaUnion>;
|
|
50505
|
+
};
|
|
50506
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection = HasPageInfo & {
|
|
50507
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection';
|
|
50508
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge>>>;
|
|
50509
|
+
pageInfo: PageInfo;
|
|
50510
|
+
};
|
|
50511
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge = {
|
|
50512
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge';
|
|
50513
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50514
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50515
|
+
id: Scalars['ID']['output'];
|
|
50516
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50517
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion>;
|
|
50518
|
+
};
|
|
50519
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50520
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaUnion = MercuryFocusArea;
|
|
50361
50521
|
export declare type GraphStoreSimplifiedUserHasExternalPositionConnection = HasPageInfo & HasTotal & {
|
|
50362
50522
|
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionConnection';
|
|
50363
50523
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasExternalPositionEdge>>>;
|
|
@@ -52758,6 +52918,9 @@ export declare type GraphStoreUserFavoritedConfluencePageSortInput = {
|
|
|
52758
52918
|
export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
52759
52919
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52760
52920
|
};
|
|
52921
|
+
export declare type GraphStoreUserFavoritedFocusAreaSortInput = {
|
|
52922
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52923
|
+
};
|
|
52761
52924
|
export declare type GraphStoreUserHasExternalPositionSortInput = {
|
|
52762
52925
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
52763
52926
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -58487,19 +58650,6 @@ export declare type JiraCalendarVersionsInput = {
|
|
|
58487
58650
|
includeSharedReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58488
58651
|
versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
|
|
58489
58652
|
};
|
|
58490
|
-
export declare type JiraCalendarView = {
|
|
58491
|
-
__typename?: 'JiraCalendarView';
|
|
58492
|
-
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
58493
|
-
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
58494
|
-
id: Scalars['ID']['output'];
|
|
58495
|
-
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
58496
|
-
};
|
|
58497
|
-
export declare type JiraCalendarViewFilterConfigArgs = {
|
|
58498
|
-
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
58499
|
-
};
|
|
58500
|
-
export declare type JiraCalendarViewIsViewConfigModifiedArgs = {
|
|
58501
|
-
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
58502
|
-
};
|
|
58503
58653
|
export declare type JiraCalendarViewConfigurationInput = {
|
|
58504
58654
|
date?: InputMaybe<Scalars['DateTime']['input']>;
|
|
58505
58655
|
endDateField?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -74171,7 +74321,7 @@ export declare type JiraUpdateCalendarViewConfigInput = {
|
|
|
74171
74321
|
};
|
|
74172
74322
|
export declare type JiraUpdateCalendarViewConfigPayload = Payload & {
|
|
74173
74323
|
__typename?: 'JiraUpdateCalendarViewConfigPayload';
|
|
74174
|
-
|
|
74324
|
+
calendar?: Maybe<JiraCalendar>;
|
|
74175
74325
|
errors?: Maybe<Array<MutationError>>;
|
|
74176
74326
|
success: Scalars['Boolean']['output'];
|
|
74177
74327
|
};
|
|
@@ -77901,7 +78051,8 @@ export declare type KnowledgeGraphObjectResponseV2 = {
|
|
|
77901
78051
|
export declare enum KnowledgeGraphObjectType {
|
|
77902
78052
|
SnippetV1 = "snippet_v1",
|
|
77903
78053
|
SnippetV2 = "snippet_v2",
|
|
77904
|
-
SnippetV2_180 = "snippet_v2_180"
|
|
78054
|
+
SnippetV2_180 = "snippet_v2_180",
|
|
78055
|
+
SnippetV2_300 = "snippet_v2_300"
|
|
77905
78056
|
}
|
|
77906
78057
|
export declare type KnownUser = Person & {
|
|
77907
78058
|
__typename?: 'KnownUser';
|
|
@@ -78896,6 +79047,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
78896
79047
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
78897
79048
|
appKey: Scalars['ID']['output'];
|
|
78898
79049
|
appSoftwareId: Scalars['ID']['output'];
|
|
79050
|
+
complianceBoundaries?: Maybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
|
|
78899
79051
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
78900
79052
|
hasActiveCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
78901
79053
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -78960,7 +79112,6 @@ export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput =
|
|
|
78960
79112
|
frameworkId: Scalars['ID']['input'];
|
|
78961
79113
|
};
|
|
78962
79114
|
export declare type MarketplaceConsoleAppSoftwareVersionInput = {
|
|
78963
|
-
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78964
79115
|
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78965
79116
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
78966
79117
|
communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78969,31 +79120,24 @@ export declare type MarketplaceConsoleAppSoftwareVersionInput = {
|
|
|
78969
79120
|
documentationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78970
79121
|
editionDetails?: InputMaybe<MarketplaceConsoleEditionDetailsInput>;
|
|
78971
79122
|
eulaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78972
|
-
forumsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78973
79123
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
78974
79124
|
heroImageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78975
79125
|
highlights?: InputMaybe<Array<MarketplaceConsoleListingHighLightInput>>;
|
|
78976
79126
|
isBeta?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78977
79127
|
isSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78978
|
-
issueTrackerUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78979
79128
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78980
79129
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
78981
79130
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
78982
79131
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
78983
79132
|
partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
|
|
78984
79133
|
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
78985
|
-
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78986
79134
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
78987
79135
|
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78988
79136
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
78989
79137
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
78990
79138
|
screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
|
|
78991
|
-
segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
|
|
78992
79139
|
sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78993
79140
|
status: MarketplaceConsoleVersionType;
|
|
78994
|
-
statusAfterApproval?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
78995
|
-
summary?: InputMaybe<Scalars['String']['input']>;
|
|
78996
|
-
supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78997
79141
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
78998
79142
|
youtubeId?: InputMaybe<Scalars['String']['input']>;
|
|
78999
79143
|
};
|
|
@@ -82507,8 +82651,10 @@ export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
|
82507
82651
|
export declare type MercuryOnUpdateStrategicEventPayload = Payload & {
|
|
82508
82652
|
__typename?: 'MercuryOnUpdateStrategicEventPayload';
|
|
82509
82653
|
errors?: Maybe<Array<MutationError>>;
|
|
82654
|
+
event?: Maybe<Scalars['String']['output']>;
|
|
82510
82655
|
id: Scalars['ID']['output'];
|
|
82511
82656
|
success: Scalars['Boolean']['output'];
|
|
82657
|
+
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
82512
82658
|
};
|
|
82513
82659
|
export declare type MercuryOriginalProjectStatus = {
|
|
82514
82660
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
@@ -82525,6 +82671,7 @@ export declare type MercuryPortfolio = Node & {
|
|
|
82525
82671
|
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
82526
82672
|
name: Scalars['String']['output'];
|
|
82527
82673
|
owner?: Maybe<User>;
|
|
82674
|
+
updatedBy?: Maybe<User>;
|
|
82528
82675
|
url?: Maybe<Scalars['String']['output']>;
|
|
82529
82676
|
uuid: Scalars['ID']['output'];
|
|
82530
82677
|
version?: Maybe<Scalars['String']['output']>;
|
|
@@ -84118,6 +84265,8 @@ export declare type Mutation = {
|
|
|
84118
84265
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
84119
84266
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
84120
84267
|
copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
84268
|
+
cpls_addContributorScopeAssociation: CplsAddContributorScopeAssociationPayload;
|
|
84269
|
+
cpls_deleteContributorScopeAssociation: CplsDeleteContributorScopeAssociationPayload;
|
|
84121
84270
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
84122
84271
|
createApp?: Maybe<CreateAppResponse>;
|
|
84123
84272
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -84255,6 +84404,7 @@ export declare type Mutation = {
|
|
|
84255
84404
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
84256
84405
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
84257
84406
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
84407
|
+
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
84258
84408
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
84259
84409
|
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
84260
84410
|
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
@@ -84297,7 +84447,6 @@ export declare type Mutation = {
|
|
|
84297
84447
|
jira_deleteIssueSearchFormattingRule?: Maybe<JiraDeleteIssueSearchFormattingRulePayload>;
|
|
84298
84448
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
84299
84449
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
84300
|
-
jira_discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
84301
84450
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
84302
84451
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
84303
84452
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -84393,6 +84542,7 @@ export declare type Mutation = {
|
|
|
84393
84542
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
84394
84543
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
84395
84544
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
84545
|
+
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
84396
84546
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
84397
84547
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
84398
84548
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
@@ -84405,9 +84555,12 @@ export declare type Mutation = {
|
|
|
84405
84555
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
84406
84556
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
84407
84557
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
84558
|
+
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
84408
84559
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
84409
84560
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
84410
84561
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
84562
|
+
radar_grantFieldPermissions?: Maybe<RadarMutationResponse>;
|
|
84563
|
+
radar_removeFieldPermissions?: Maybe<RadarMutationResponse>;
|
|
84411
84564
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
84412
84565
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
84413
84566
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
@@ -85062,6 +85215,12 @@ export declare type MutationCopySpacePermissionsArgs = {
|
|
|
85062
85215
|
sourceSpaceKey: Scalars['String']['input'];
|
|
85063
85216
|
targetSpaceKey: Scalars['String']['input'];
|
|
85064
85217
|
};
|
|
85218
|
+
export declare type MutationCpls_AddContributorScopeAssociationArgs = {
|
|
85219
|
+
input: CplsAddContributorScopeAssociationInput;
|
|
85220
|
+
};
|
|
85221
|
+
export declare type MutationCpls_DeleteContributorScopeAssociationArgs = {
|
|
85222
|
+
input: CplsDeleteContributorScopeAssociationInput;
|
|
85223
|
+
};
|
|
85065
85224
|
export declare type MutationCreateAdminAnnouncementBannerArgs = {
|
|
85066
85225
|
announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
|
|
85067
85226
|
};
|
|
@@ -85524,6 +85683,9 @@ export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
|
85524
85683
|
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
85525
85684
|
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
85526
85685
|
};
|
|
85686
|
+
export declare type MutationGoals_ShareGoalArgs = {
|
|
85687
|
+
input: TownsquareGoalsShareGoalInput;
|
|
85688
|
+
};
|
|
85527
85689
|
export declare type MutationGrantContentAccessArgs = {
|
|
85528
85690
|
grantContentAccessInput: GrantContentAccessInput;
|
|
85529
85691
|
};
|
|
@@ -85641,9 +85803,6 @@ export declare type MutationJira_DeleteIssueTypeArgs = {
|
|
|
85641
85803
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
85642
85804
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
85643
85805
|
};
|
|
85644
|
-
export declare type MutationJira_DiscardUserCalendarViewConfigArgs = {
|
|
85645
|
-
input: JiraDiscardUserViewConfigInput;
|
|
85646
|
-
};
|
|
85647
85806
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
85648
85807
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
85649
85808
|
};
|
|
@@ -85913,6 +86072,9 @@ export declare type MutationProjects_EditLinkArgs = {
|
|
|
85913
86072
|
export declare type MutationProjects_EditUpdateArgs = {
|
|
85914
86073
|
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
85915
86074
|
};
|
|
86075
|
+
export declare type MutationProjects_RemoveDependencyArgs = {
|
|
86076
|
+
input: TownsquareProjectsRemoveDependencyInput;
|
|
86077
|
+
};
|
|
85916
86078
|
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
85917
86079
|
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
85918
86080
|
};
|
|
@@ -85954,6 +86116,10 @@ export declare type MutationRadar_CreateRoleAssignmentArgs = {
|
|
|
85954
86116
|
cloudId: Scalars['ID']['input'];
|
|
85955
86117
|
input: RadarRoleAssignmentRequest;
|
|
85956
86118
|
};
|
|
86119
|
+
export declare type MutationRadar_DeleteConnectorArgs = {
|
|
86120
|
+
cloudId: Scalars['ID']['input'];
|
|
86121
|
+
input: RadarDeleteConnectorInput;
|
|
86122
|
+
};
|
|
85957
86123
|
export declare type MutationRadar_DeleteCustomFieldsArgs = {
|
|
85958
86124
|
cloudId: Scalars['ID']['input'];
|
|
85959
86125
|
input: Array<RadarDeleteCustomFieldInput>;
|
|
@@ -85966,6 +86132,14 @@ export declare type MutationRadar_DeleteRoleAssignmentArgs = {
|
|
|
85966
86132
|
cloudId: Scalars['ID']['input'];
|
|
85967
86133
|
input: RadarRoleAssignmentRequest;
|
|
85968
86134
|
};
|
|
86135
|
+
export declare type MutationRadar_GrantFieldPermissionsArgs = {
|
|
86136
|
+
cloudId: Scalars['ID']['input'];
|
|
86137
|
+
input: Array<RadarFieldPermissionsInput>;
|
|
86138
|
+
};
|
|
86139
|
+
export declare type MutationRadar_RemoveFieldPermissionsArgs = {
|
|
86140
|
+
cloudId: Scalars['ID']['input'];
|
|
86141
|
+
input: Array<RadarFieldPermissionsInput>;
|
|
86142
|
+
};
|
|
85969
86143
|
export declare type MutationRadar_UpdateConnectorArgs = {
|
|
85970
86144
|
cloudId: Scalars['ID']['input'];
|
|
85971
86145
|
input: RadarConnectorsInput;
|
|
@@ -89426,11 +89600,13 @@ export declare type Query = {
|
|
|
89426
89600
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
89427
89601
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
89428
89602
|
confluence_applicationLinkByOauth2ClientId?: Maybe<ConfluenceApplicationLink>;
|
|
89603
|
+
confluence_assignableSpaceRoles?: Maybe<Array<Maybe<ConfluenceAssignableSpaceRole>>>;
|
|
89429
89604
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
89430
89605
|
confluence_calendarJiraDateFieldsByJql?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
89431
89606
|
confluence_calendarJiraDateFieldsBySearchFilter?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
89432
89607
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
89433
89608
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
89609
|
+
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
89434
89610
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
89435
89611
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
89436
89612
|
confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
@@ -89458,6 +89634,7 @@ export declare type Query = {
|
|
|
89458
89634
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
89459
89635
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
89460
89636
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
89637
|
+
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
89461
89638
|
confluence_note?: Maybe<NoteResponse>;
|
|
89462
89639
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
89463
89640
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
@@ -89522,7 +89699,6 @@ export declare type Query = {
|
|
|
89522
89699
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
89523
89700
|
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
89524
89701
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
89525
|
-
convoai_promptSuggestions?: Maybe<ConvoAiPromptSuggestionResult>;
|
|
89526
89702
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
89527
89703
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
89528
89704
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -89700,7 +89876,6 @@ export declare type Query = {
|
|
|
89700
89876
|
jiraReleases?: Maybe<JiraReleases>;
|
|
89701
89877
|
jiraServers?: Maybe<JiraServersResult>;
|
|
89702
89878
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
89703
|
-
jira_calendarView?: Maybe<JiraCalendarView>;
|
|
89704
89879
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
89705
89880
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
89706
89881
|
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
@@ -90407,7 +90582,8 @@ export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
|
90407
90582
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
90408
90583
|
};
|
|
90409
90584
|
export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
90410
|
-
|
|
90585
|
+
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
90586
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
90411
90587
|
};
|
|
90412
90588
|
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
90413
90589
|
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
@@ -90476,6 +90652,10 @@ export declare type QueryConfluence_ApplicationLinkByOauth2ClientIdArgs = {
|
|
|
90476
90652
|
cloudId: Scalars['ID']['input'];
|
|
90477
90653
|
oauthClientId: Scalars['String']['input'];
|
|
90478
90654
|
};
|
|
90655
|
+
export declare type QueryConfluence_AssignableSpaceRolesArgs = {
|
|
90656
|
+
cloudId: Scalars['ID']['input'];
|
|
90657
|
+
types: Array<InputMaybe<ConfluenceAssignableSpaceRolePrincipalType>>;
|
|
90658
|
+
};
|
|
90479
90659
|
export declare type QueryConfluence_AtlassianUserArgs = {
|
|
90480
90660
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
90481
90661
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -90496,6 +90676,10 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
90496
90676
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
90497
90677
|
cloudId: Scalars['ID']['input'];
|
|
90498
90678
|
};
|
|
90679
|
+
export declare type QueryConfluence_ContentAiSummariesArgs = {
|
|
90680
|
+
contentAris: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
90681
|
+
objectType: KnowledgeGraphObjectType;
|
|
90682
|
+
};
|
|
90499
90683
|
export declare type QueryConfluence_ContentAccessRequestByStatusArgs = {
|
|
90500
90684
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90501
90685
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90632,6 +90816,9 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
|
90632
90816
|
contentId: Scalars['ID']['input'];
|
|
90633
90817
|
macroIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
90634
90818
|
};
|
|
90819
|
+
export declare type QueryConfluence_MediaTokenDataArgs = {
|
|
90820
|
+
noteId: Scalars['ID']['input'];
|
|
90821
|
+
};
|
|
90635
90822
|
export declare type QueryConfluence_NoteArgs = {
|
|
90636
90823
|
id: Scalars['ID']['input'];
|
|
90637
90824
|
};
|
|
@@ -90986,10 +91173,6 @@ export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
|
90986
91173
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
90987
91174
|
workItemInput: ConvoAiJiraSimilarWorkItemsInput;
|
|
90988
91175
|
};
|
|
90989
|
-
export declare type QueryConvoai_PromptSuggestionsArgs = {
|
|
90990
|
-
cloudId: Scalars['ID']['input'];
|
|
90991
|
-
input: ConvoAiPromptSuggestionsInput;
|
|
90992
|
-
};
|
|
90993
91176
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
90994
91177
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
90995
91178
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -91653,9 +91836,6 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
91653
91836
|
export declare type QueryJira_BoardViewArgs = {
|
|
91654
91837
|
input: JiraBoardViewInput;
|
|
91655
91838
|
};
|
|
91656
|
-
export declare type QueryJira_CalendarViewArgs = {
|
|
91657
|
-
input: JiraViewInput;
|
|
91658
|
-
};
|
|
91659
91839
|
export declare type QueryJira_CategoryFieldArgs = {
|
|
91660
91840
|
cloudId: Scalars['ID']['input'];
|
|
91661
91841
|
};
|
|
@@ -92852,6 +93032,9 @@ export declare type RadarDateFieldValue = {
|
|
|
92852
93032
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
92853
93033
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
92854
93034
|
};
|
|
93035
|
+
export declare type RadarDeleteConnectorInput = {
|
|
93036
|
+
connectorId: Scalars['ID']['input'];
|
|
93037
|
+
};
|
|
92855
93038
|
export declare type RadarDeleteCustomFieldInput = {
|
|
92856
93039
|
entity: RadarEntityType;
|
|
92857
93040
|
relativeId: Scalars['String']['input'];
|
|
@@ -92899,6 +93082,10 @@ export declare type RadarFieldDefinition = {
|
|
|
92899
93082
|
sensitivityLevel: RadarSensitivityLevel;
|
|
92900
93083
|
type: RadarFieldType;
|
|
92901
93084
|
};
|
|
93085
|
+
export declare type RadarFieldPermissionsInput = {
|
|
93086
|
+
fieldId: Scalars['ID']['input'];
|
|
93087
|
+
principalId: Scalars['ID']['input'];
|
|
93088
|
+
};
|
|
92902
93089
|
export declare type RadarFieldSettingsInput = {
|
|
92903
93090
|
entity: RadarEntityType;
|
|
92904
93091
|
relativeId: Scalars['String']['input'];
|
|
@@ -101508,6 +101695,17 @@ export declare type TownsquareGoalsSetWatchingGoalPayload = {
|
|
|
101508
101695
|
success: Scalars['Boolean']['output'];
|
|
101509
101696
|
user?: Maybe<User>;
|
|
101510
101697
|
};
|
|
101698
|
+
export declare type TownsquareGoalsShareGoalInput = {
|
|
101699
|
+
goalId: Scalars['ID']['input'];
|
|
101700
|
+
users: Array<InputMaybe<TownsquareShareGoalUserInput>>;
|
|
101701
|
+
};
|
|
101702
|
+
export declare type TownsquareGoalsShareGoalPayload = {
|
|
101703
|
+
__typename?: 'TownsquareGoalsShareGoalPayload';
|
|
101704
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101705
|
+
goal?: Maybe<TownsquareGoal>;
|
|
101706
|
+
success: Scalars['Boolean']['output'];
|
|
101707
|
+
usersAdded?: Maybe<Array<User>>;
|
|
101708
|
+
};
|
|
101511
101709
|
export declare type TownsquareHighlight = {
|
|
101512
101710
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
101513
101711
|
creator?: Maybe<User>;
|
|
@@ -102101,6 +102299,17 @@ export declare type TownsquareProjectsEditUpdatePayload = {
|
|
|
102101
102299
|
success: Scalars['Boolean']['output'];
|
|
102102
102300
|
update?: Maybe<TownsquareProjectUpdate>;
|
|
102103
102301
|
};
|
|
102302
|
+
export declare type TownsquareProjectsRemoveDependencyInput = {
|
|
102303
|
+
incomingProjectId: Scalars['ID']['input'];
|
|
102304
|
+
outgoingProjectId: Scalars['ID']['input'];
|
|
102305
|
+
};
|
|
102306
|
+
export declare type TownsquareProjectsRemoveDependencyPayload = {
|
|
102307
|
+
__typename?: 'TownsquareProjectsRemoveDependencyPayload';
|
|
102308
|
+
errors?: Maybe<Array<MutationError>>;
|
|
102309
|
+
incomingProject?: Maybe<TownsquareProject>;
|
|
102310
|
+
outgoingProject?: Maybe<TownsquareProject>;
|
|
102311
|
+
success: Scalars['Boolean']['output'];
|
|
102312
|
+
};
|
|
102104
102313
|
export declare type TownsquareProjectsRemoveGoalLinkInput = {
|
|
102105
102314
|
goalId: Scalars['ID']['input'];
|
|
102106
102315
|
projectId: Scalars['ID']['input'];
|
|
@@ -102330,6 +102539,10 @@ export declare type TownsquareSetParentGoalPayload = {
|
|
|
102330
102539
|
goal?: Maybe<TownsquareGoal>;
|
|
102331
102540
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
102332
102541
|
};
|
|
102542
|
+
export declare type TownsquareShareGoalUserInput = {
|
|
102543
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
102544
|
+
addAsWatcher?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102545
|
+
};
|
|
102333
102546
|
export declare type TownsquareShareProjectUserInput = {
|
|
102334
102547
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
102335
102548
|
addAsWatcher?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -102347,6 +102560,8 @@ export declare type TownsquareTag = Node & {
|
|
|
102347
102560
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
102348
102561
|
id: Scalars['ID']['output'];
|
|
102349
102562
|
name?: Maybe<Scalars['String']['output']>;
|
|
102563
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
102564
|
+
usageCount?: Maybe<Scalars['Int']['output']>;
|
|
102350
102565
|
};
|
|
102351
102566
|
export declare type TownsquareTagConnection = {
|
|
102352
102567
|
__typename?: 'TownsquareTagConnection';
|
|
@@ -103258,6 +103473,8 @@ export declare type TrelloCard = Node & {
|
|
|
103258
103473
|
mirrorSourceNodeId?: Maybe<Scalars['String']['output']>;
|
|
103259
103474
|
name?: Maybe<Scalars['String']['output']>;
|
|
103260
103475
|
objectId: Scalars['ID']['output'];
|
|
103476
|
+
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
103477
|
+
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
103261
103478
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
103262
103479
|
position?: Maybe<Scalars['Float']['output']>;
|
|
103263
103480
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
@@ -104345,6 +104562,7 @@ export declare type TrelloMemberBoardStarConnection = {
|
|
|
104345
104562
|
export declare type TrelloMemberBoardStarEdge = {
|
|
104346
104563
|
__typename?: 'TrelloMemberBoardStarEdge';
|
|
104347
104564
|
cursor: Scalars['String']['output'];
|
|
104565
|
+
id: Scalars['ID']['output'];
|
|
104348
104566
|
node: TrelloBoard;
|
|
104349
104567
|
position: Scalars['Float']['output'];
|
|
104350
104568
|
};
|