@forge/cli-shared 8.1.1-next.1 → 8.2.0-next.11
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 +64 -0
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/file-system/file-system-reader.js +6 -9
- package/out/graphql/graphql-types.d.ts +789 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +71 -14
- package/out/service/statsig-service.d.ts +1 -2
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +0 -3
- package/out/shared/environment.d.ts +1 -1
- package/out/shared/environment.d.ts.map +1 -1
- package/out/ui/text.d.ts +1 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -8
- package/package.json +3 -3
|
@@ -1358,10 +1358,11 @@ export declare type AgentStudioKnowledgeConfigurationInput = {
|
|
|
1358
1358
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1359
1359
|
sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
|
|
1360
1360
|
};
|
|
1361
|
-
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter;
|
|
1361
|
+
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter | AgentStudioSlackKnowledgeFilter;
|
|
1362
1362
|
export declare type AgentStudioKnowledgeFiltersInput = {
|
|
1363
1363
|
confluenceFilter?: InputMaybe<AgentStudioConfluenceKnowledgeFilterInput>;
|
|
1364
1364
|
jiraFilter?: InputMaybe<AgentStudioJiraKnowledgeFilterInput>;
|
|
1365
|
+
slackFilter?: InputMaybe<AgentStudioSlackKnowledgeFilterInput>;
|
|
1365
1366
|
};
|
|
1366
1367
|
export declare type AgentStudioKnowledgeSource = {
|
|
1367
1368
|
__typename?: 'AgentStudioKnowledgeSource';
|
|
@@ -1416,6 +1417,13 @@ export declare type AgentStudioSlackChannelDetails = {
|
|
|
1416
1417
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
1417
1418
|
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
1418
1419
|
};
|
|
1420
|
+
export declare type AgentStudioSlackKnowledgeFilter = {
|
|
1421
|
+
__typename?: 'AgentStudioSlackKnowledgeFilter';
|
|
1422
|
+
containerFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1423
|
+
};
|
|
1424
|
+
export declare type AgentStudioSlackKnowledgeFilterInput = {
|
|
1425
|
+
containerFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1426
|
+
};
|
|
1419
1427
|
export declare type AgentStudioSuggestConversationStartersInput = {
|
|
1420
1428
|
agentDescription?: InputMaybe<Scalars['String']['input']>;
|
|
1421
1429
|
agentInstructions?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3120,6 +3128,14 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
3120
3128
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
3121
3129
|
title: Scalars['String']['output'];
|
|
3122
3130
|
};
|
|
3131
|
+
export declare type AssetsAvatar = {
|
|
3132
|
+
__typename?: 'AssetsAvatar';
|
|
3133
|
+
url16?: Maybe<Scalars['String']['output']>;
|
|
3134
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
3135
|
+
url72?: Maybe<Scalars['String']['output']>;
|
|
3136
|
+
url144?: Maybe<Scalars['String']['output']>;
|
|
3137
|
+
url288?: Maybe<Scalars['String']['output']>;
|
|
3138
|
+
};
|
|
3123
3139
|
export declare type AssetsDmAdapter = {
|
|
3124
3140
|
__typename?: 'AssetsDMAdapter';
|
|
3125
3141
|
dataSourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -3233,6 +3249,39 @@ export declare enum AssetsDmObjectClassEnum {
|
|
|
3233
3249
|
Peripherals = "Peripherals",
|
|
3234
3250
|
Software = "Software"
|
|
3235
3251
|
}
|
|
3252
|
+
export declare type AssetsIcon = {
|
|
3253
|
+
__typename?: 'AssetsIcon';
|
|
3254
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
3255
|
+
url16?: Maybe<Scalars['String']['output']>;
|
|
3256
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
3257
|
+
};
|
|
3258
|
+
export declare type AssetsObject = {
|
|
3259
|
+
__typename?: 'AssetsObject';
|
|
3260
|
+
avatar?: Maybe<AssetsAvatar>;
|
|
3261
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3262
|
+
id: Scalars['ID']['output'];
|
|
3263
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
3264
|
+
objectKey?: Maybe<Scalars['String']['output']>;
|
|
3265
|
+
objectType?: Maybe<AssetsObjectType>;
|
|
3266
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3267
|
+
};
|
|
3268
|
+
export declare type AssetsObjectType = {
|
|
3269
|
+
__typename?: 'AssetsObjectType';
|
|
3270
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3271
|
+
icon?: Maybe<AssetsIcon>;
|
|
3272
|
+
id: Scalars['ID']['output'];
|
|
3273
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3274
|
+
schema?: Maybe<AssetsSchema>;
|
|
3275
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3276
|
+
};
|
|
3277
|
+
export declare type AssetsSchema = {
|
|
3278
|
+
__typename?: 'AssetsSchema';
|
|
3279
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3280
|
+
id: Scalars['ID']['output'];
|
|
3281
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
3282
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3283
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3284
|
+
};
|
|
3236
3285
|
export declare type AssignIssueParentInput = {
|
|
3237
3286
|
boardId: Scalars['ID']['input'];
|
|
3238
3287
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -6221,6 +6270,22 @@ export declare type CollabTokenResponse = {
|
|
|
6221
6270
|
__typename?: 'CollabTokenResponse';
|
|
6222
6271
|
token: Scalars['String']['output'];
|
|
6223
6272
|
};
|
|
6273
|
+
export declare type CollaborationGraphRecommendationResult = {
|
|
6274
|
+
__typename?: 'CollaborationGraphRecommendationResult';
|
|
6275
|
+
id: Scalars['ID']['output'];
|
|
6276
|
+
score: Scalars['Float']['output'];
|
|
6277
|
+
};
|
|
6278
|
+
export declare type CollaborationGraphRecommendationResults = {
|
|
6279
|
+
__typename?: 'CollaborationGraphRecommendationResults';
|
|
6280
|
+
nodes: Array<CollaborationGraphRecommendationResult>;
|
|
6281
|
+
totalCount: Scalars['Int']['output'];
|
|
6282
|
+
};
|
|
6283
|
+
export declare type CollaborationGraphRequestContext = {
|
|
6284
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
6285
|
+
objectId?: InputMaybe<Scalars['String']['input']>;
|
|
6286
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
6287
|
+
toPrivacySafeString?: InputMaybe<Scalars['String']['input']>;
|
|
6288
|
+
};
|
|
6224
6289
|
export declare type Column = {
|
|
6225
6290
|
__typename?: 'Column';
|
|
6226
6291
|
cards: Array<Maybe<SoftwareCard>>;
|
|
@@ -12098,6 +12163,7 @@ export declare type ConfluenceContentMetadata = {
|
|
|
12098
12163
|
export declare type ConfluenceContentModified = {
|
|
12099
12164
|
__typename?: 'ConfluenceContentModified';
|
|
12100
12165
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
12166
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
12101
12167
|
commentCreated?: Maybe<ConfluenceCommentCreated>;
|
|
12102
12168
|
commentDeleted?: Maybe<ConfluenceCommentUpdated>;
|
|
12103
12169
|
commentReopened?: Maybe<ConfluenceCommentUpdated>;
|
|
@@ -17188,6 +17254,19 @@ export declare type CsmAiAgent = {
|
|
|
17188
17254
|
name?: Maybe<Scalars['String']['output']>;
|
|
17189
17255
|
tone?: Maybe<CsmAiAgentTone>;
|
|
17190
17256
|
};
|
|
17257
|
+
export declare type CsmAiAgentCoachingContent = {
|
|
17258
|
+
__typename?: 'CsmAiAgentCoachingContent';
|
|
17259
|
+
authorId?: Maybe<Scalars['ID']['output']>;
|
|
17260
|
+
coachingContent?: Maybe<CsmAiAuthoredCoachingContent>;
|
|
17261
|
+
coachingContentType?: Maybe<Scalars['String']['output']>;
|
|
17262
|
+
groundingConversationId?: Maybe<Scalars['ID']['output']>;
|
|
17263
|
+
groundingMessageId?: Maybe<Scalars['ID']['output']>;
|
|
17264
|
+
id: Scalars['ID']['output'];
|
|
17265
|
+
lastModifiedUserId?: Maybe<Scalars['String']['output']>;
|
|
17266
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
17267
|
+
ranking?: Maybe<Scalars['String']['output']>;
|
|
17268
|
+
status?: Maybe<Scalars['Boolean']['output']>;
|
|
17269
|
+
};
|
|
17191
17270
|
export declare type CsmAiAgentConversationStarter = {
|
|
17192
17271
|
__typename?: 'CsmAiAgentConversationStarter';
|
|
17193
17272
|
id: Scalars['ID']['output'];
|
|
@@ -17228,8 +17307,19 @@ export declare type CsmAiAuthenticationInput = {
|
|
|
17228
17307
|
type: CsmAiAuthenticationType;
|
|
17229
17308
|
};
|
|
17230
17309
|
export declare enum CsmAiAuthenticationType {
|
|
17310
|
+
EndUserAuth = "END_USER_AUTH",
|
|
17231
17311
|
NoAuth = "NO_AUTH"
|
|
17232
17312
|
}
|
|
17313
|
+
export declare type CsmAiAuthoredCoachingContent = {
|
|
17314
|
+
__typename?: 'CsmAiAuthoredCoachingContent';
|
|
17315
|
+
triggerBehaviorByCoach?: Maybe<Scalars['String']['output']>;
|
|
17316
|
+
triggerConditionByCoach?: Maybe<Scalars['String']['output']>;
|
|
17317
|
+
};
|
|
17318
|
+
export declare type CsmAiAuthoredCoachingContentInput = {
|
|
17319
|
+
triggerBehaviorByCoach: Scalars['String']['input'];
|
|
17320
|
+
triggerConditionByCoach: Scalars['String']['input'];
|
|
17321
|
+
};
|
|
17322
|
+
export declare type CsmAiCoachingContentResult = CsmAiAgentCoachingContent | QueryError;
|
|
17233
17323
|
export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
|
|
17234
17324
|
export declare type CsmAiConnectorConfigurationInput = {
|
|
17235
17325
|
messageHandoff?: InputMaybe<CsmAiMessageHandoffInput>;
|
|
@@ -17251,6 +17341,19 @@ export declare type CsmAiCreateActionPayload = Payload & {
|
|
|
17251
17341
|
errors?: Maybe<Array<MutationError>>;
|
|
17252
17342
|
success: Scalars['Boolean']['output'];
|
|
17253
17343
|
};
|
|
17344
|
+
export declare type CsmAiCreateCoachingContentInput = {
|
|
17345
|
+
coachingContent: CsmAiAuthoredCoachingContentInput;
|
|
17346
|
+
coachingContentType?: InputMaybe<Scalars['String']['input']>;
|
|
17347
|
+
groundingConversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
17348
|
+
groundingMessageId?: InputMaybe<Scalars['ID']['input']>;
|
|
17349
|
+
name: Scalars['String']['input'];
|
|
17350
|
+
};
|
|
17351
|
+
export declare type CsmAiCreateCoachingContentPayload = Payload & {
|
|
17352
|
+
__typename?: 'CsmAiCreateCoachingContentPayload';
|
|
17353
|
+
coachingContent?: Maybe<CsmAiAgentCoachingContent>;
|
|
17354
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17355
|
+
success: Scalars['Boolean']['output'];
|
|
17356
|
+
};
|
|
17254
17357
|
export declare type CsmAiDeleteActionPayload = Payload & {
|
|
17255
17358
|
__typename?: 'CsmAiDeleteActionPayload';
|
|
17256
17359
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -17283,6 +17386,7 @@ export declare type CsmAiHub = {
|
|
|
17283
17386
|
__typename?: 'CsmAiHub';
|
|
17284
17387
|
actions?: Maybe<Array<Maybe<CsmAiActionResult>>>;
|
|
17285
17388
|
agent?: Maybe<CsmAiAgentResult>;
|
|
17389
|
+
coachingContents?: Maybe<Array<Maybe<CsmAiCoachingContentResult>>>;
|
|
17286
17390
|
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
17287
17391
|
id: Scalars['ID']['output'];
|
|
17288
17392
|
widgets?: Maybe<Array<Maybe<CsmAiWidgetConfigResult>>>;
|
|
@@ -17290,6 +17394,9 @@ export declare type CsmAiHub = {
|
|
|
17290
17394
|
export declare type CsmAiHubActionsArgs = {
|
|
17291
17395
|
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17292
17396
|
};
|
|
17397
|
+
export declare type CsmAiHubWidgetsArgs = {
|
|
17398
|
+
type?: InputMaybe<CsmAiWidgetType>;
|
|
17399
|
+
};
|
|
17293
17400
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
17294
17401
|
export declare type CsmAiKeyValueInput = {
|
|
17295
17402
|
key: Scalars['String']['input'];
|
|
@@ -17401,10 +17508,10 @@ export declare enum CsmAiWidgetBrandingSpaceVariant {
|
|
|
17401
17508
|
export declare type CsmAiWidgetBrandingTheme = {
|
|
17402
17509
|
__typename?: 'CsmAiWidgetBrandingTheme';
|
|
17403
17510
|
attribution?: Maybe<CsmAiWidgetBrandingAttribution>;
|
|
17404
|
-
chatColor
|
|
17405
|
-
colorVibeVariant
|
|
17406
|
-
radius
|
|
17407
|
-
space
|
|
17511
|
+
chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
|
|
17512
|
+
colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
|
|
17513
|
+
radius: CsmAiWidgetBrandingRadius;
|
|
17514
|
+
space: CsmAiWidgetBrandingSpaceVariant;
|
|
17408
17515
|
};
|
|
17409
17516
|
export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
17410
17517
|
attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
|
|
@@ -19840,6 +19947,17 @@ export declare type DevConsoleDeveloperSpaceDetailsResult = {
|
|
|
19840
19947
|
error?: Maybe<DevConsoleDeveloperSpaceDetailsError>;
|
|
19841
19948
|
success: Scalars['Boolean']['output'];
|
|
19842
19949
|
};
|
|
19950
|
+
export declare type DevConsoleDeveloperSpaceMember = {
|
|
19951
|
+
__typename?: 'DevConsoleDeveloperSpaceMember';
|
|
19952
|
+
accountId: Scalars['String']['output'];
|
|
19953
|
+
email: Scalars['String']['output'];
|
|
19954
|
+
name: Scalars['String']['output'];
|
|
19955
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
19956
|
+
};
|
|
19957
|
+
export declare type DevConsoleDeveloperSpaceMembersResponse = {
|
|
19958
|
+
__typename?: 'DevConsoleDeveloperSpaceMembersResponse';
|
|
19959
|
+
members: Array<DevConsoleDeveloperSpaceMember>;
|
|
19960
|
+
};
|
|
19843
19961
|
export declare enum DevConsoleDeveloperSpaceType {
|
|
19844
19962
|
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
19845
19963
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
@@ -19854,11 +19972,15 @@ export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
|
19854
19972
|
export declare type DevConsoleQuery = {
|
|
19855
19973
|
__typename?: 'DevConsoleQuery';
|
|
19856
19974
|
getDeveloperSpaceDetails: DevConsoleBulkDeveloperSpaceDetailsResponse;
|
|
19975
|
+
getDeveloperSpaceMembers: DevConsoleDeveloperSpaceMembersResponse;
|
|
19857
19976
|
getDeveloperSpaceWithLinkingAccess: Array<Maybe<Scalars['String']['output']>>;
|
|
19858
19977
|
};
|
|
19859
19978
|
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
19860
19979
|
developerSpaceIds: Array<Scalars['String']['input']>;
|
|
19861
19980
|
};
|
|
19981
|
+
export declare type DevConsoleQueryGetDeveloperSpaceMembersArgs = {
|
|
19982
|
+
developerSpaceId: Scalars['String']['input'];
|
|
19983
|
+
};
|
|
19862
19984
|
export declare type DevOps = {
|
|
19863
19985
|
__typename?: 'DevOps';
|
|
19864
19986
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -28817,6 +28939,8 @@ export declare type GraphStore = {
|
|
|
28817
28939
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
28818
28940
|
teamConnectedToContainer?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerConnection>;
|
|
28819
28941
|
teamConnectedToContainerInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseConnection>;
|
|
28942
|
+
teamHasAgents?: Maybe<GraphStoreSimplifiedTeamHasAgentsConnection>;
|
|
28943
|
+
teamHasAgentsInverse?: Maybe<GraphStoreSimplifiedTeamHasAgentsInverseConnection>;
|
|
28820
28944
|
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
28821
28945
|
teamOwnsComponentInverse?: Maybe<GraphStoreSimplifiedTeamOwnsComponentInverseConnection>;
|
|
28822
28946
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
@@ -28922,6 +29046,8 @@ export declare type GraphStore = {
|
|
|
28922
29046
|
userFavoritedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection>;
|
|
28923
29047
|
userFavoritedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection>;
|
|
28924
29048
|
userFavoritedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection>;
|
|
29049
|
+
userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
|
|
29050
|
+
userHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseConnection>;
|
|
28925
29051
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
28926
29052
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
28927
29053
|
userHasTopCollaborator?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorConnection>;
|
|
@@ -32315,6 +32441,20 @@ export declare type GraphStoreTeamConnectedToContainerInverseArgs = {
|
|
|
32315
32441
|
id: Scalars['ID']['input'];
|
|
32316
32442
|
sort?: InputMaybe<GraphStoreTeamConnectedToContainerSortInput>;
|
|
32317
32443
|
};
|
|
32444
|
+
export declare type GraphStoreTeamHasAgentsArgs = {
|
|
32445
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32446
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32447
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32448
|
+
id: Scalars['ID']['input'];
|
|
32449
|
+
sort?: InputMaybe<GraphStoreTeamHasAgentsSortInput>;
|
|
32450
|
+
};
|
|
32451
|
+
export declare type GraphStoreTeamHasAgentsInverseArgs = {
|
|
32452
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32453
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32454
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32455
|
+
id: Scalars['ID']['input'];
|
|
32456
|
+
sort?: InputMaybe<GraphStoreTeamHasAgentsSortInput>;
|
|
32457
|
+
};
|
|
32318
32458
|
export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
32319
32459
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32320
32460
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33034,6 +33174,20 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardInverseArgs = {
|
|
|
33034
33174
|
id: Scalars['ID']['input'];
|
|
33035
33175
|
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
33036
33176
|
};
|
|
33177
|
+
export declare type GraphStoreUserHasExternalPositionArgs = {
|
|
33178
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33179
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33180
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33181
|
+
id: Scalars['ID']['input'];
|
|
33182
|
+
sort?: InputMaybe<GraphStoreUserHasExternalPositionSortInput>;
|
|
33183
|
+
};
|
|
33184
|
+
export declare type GraphStoreUserHasExternalPositionInverseArgs = {
|
|
33185
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33186
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33187
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33188
|
+
id: Scalars['ID']['input'];
|
|
33189
|
+
sort?: InputMaybe<GraphStoreUserHasExternalPositionSortInput>;
|
|
33190
|
+
};
|
|
33037
33191
|
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
33038
33192
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33039
33193
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34224,7 +34378,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
34224
34378
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
34225
34379
|
id: Scalars['ID']['output'];
|
|
34226
34380
|
};
|
|
34227
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
34381
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
34228
34382
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
34229
34383
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
34230
34384
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -36372,7 +36526,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
36372
36526
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
36373
36527
|
id: Scalars['ID']['output'];
|
|
36374
36528
|
};
|
|
36375
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
36529
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
36376
36530
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
36377
36531
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
36378
36532
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -41840,7 +41994,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
41840
41994
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
41841
41995
|
};
|
|
41842
41996
|
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | DeploymentSummary | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalComment | ExternalCommit | ExternalDeployment | ExternalPullRequest | ExternalRepository | ExternalVulnerability | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
41843
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
41997
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
41844
41998
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
41845
41999
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
41846
42000
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -45559,6 +45713,34 @@ export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseEdge = {
|
|
|
45559
45713
|
};
|
|
45560
45714
|
export declare type GraphStoreSimplifiedTeamConnectedToContainerInverseUnion = TeamV2;
|
|
45561
45715
|
export declare type GraphStoreSimplifiedTeamConnectedToContainerUnion = ConfluenceSpace | JiraProject | LoomSpace;
|
|
45716
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsConnection = HasPageInfo & {
|
|
45717
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsConnection';
|
|
45718
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamHasAgentsEdge>>>;
|
|
45719
|
+
pageInfo: PageInfo;
|
|
45720
|
+
};
|
|
45721
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsEdge = {
|
|
45722
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsEdge';
|
|
45723
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45724
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45725
|
+
id: Scalars['ID']['output'];
|
|
45726
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45727
|
+
node?: Maybe<GraphStoreSimplifiedTeamHasAgentsUnion>;
|
|
45728
|
+
};
|
|
45729
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsInverseConnection = HasPageInfo & {
|
|
45730
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsInverseConnection';
|
|
45731
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamHasAgentsInverseEdge>>>;
|
|
45732
|
+
pageInfo: PageInfo;
|
|
45733
|
+
};
|
|
45734
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsInverseEdge = {
|
|
45735
|
+
__typename?: 'GraphStoreSimplifiedTeamHasAgentsInverseEdge';
|
|
45736
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45737
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45738
|
+
id: Scalars['ID']['output'];
|
|
45739
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45740
|
+
node?: Maybe<GraphStoreSimplifiedTeamHasAgentsInverseUnion>;
|
|
45741
|
+
};
|
|
45742
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsInverseUnion = TeamV2;
|
|
45743
|
+
export declare type GraphStoreSimplifiedTeamHasAgentsUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45562
45744
|
export declare type GraphStoreSimplifiedTeamOwnsComponentConnection = HasPageInfo & {
|
|
45563
45745
|
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentConnection';
|
|
45564
45746
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentEdge>>>;
|
|
@@ -46885,6 +47067,38 @@ export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverse
|
|
|
46885
47067
|
};
|
|
46886
47068
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46887
47069
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
47070
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionConnection = HasPageInfo & HasTotal & {
|
|
47071
|
+
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionConnection';
|
|
47072
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasExternalPositionEdge>>>;
|
|
47073
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
47074
|
+
pageInfo: PageInfo;
|
|
47075
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
47076
|
+
};
|
|
47077
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionEdge = {
|
|
47078
|
+
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionEdge';
|
|
47079
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47080
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47081
|
+
id: Scalars['ID']['output'];
|
|
47082
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47083
|
+
node?: Maybe<GraphStoreSimplifiedUserHasExternalPositionUnion>;
|
|
47084
|
+
};
|
|
47085
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionInverseConnection = HasPageInfo & HasTotal & {
|
|
47086
|
+
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionInverseConnection';
|
|
47087
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseEdge>>>;
|
|
47088
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
47089
|
+
pageInfo: PageInfo;
|
|
47090
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
47091
|
+
};
|
|
47092
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionInverseEdge = {
|
|
47093
|
+
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionInverseEdge';
|
|
47094
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47095
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47096
|
+
id: Scalars['ID']['output'];
|
|
47097
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47098
|
+
node?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseUnion>;
|
|
47099
|
+
};
|
|
47100
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47101
|
+
export declare type GraphStoreSimplifiedUserHasExternalPositionUnion = ExternalPosition;
|
|
46888
47102
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
46889
47103
|
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
46890
47104
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
@@ -47763,7 +47977,7 @@ export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
|
47763
47977
|
lastUpdated: Scalars['DateTime']['output'];
|
|
47764
47978
|
node?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion>;
|
|
47765
47979
|
};
|
|
47766
|
-
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47980
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
47767
47981
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
47768
47982
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasGoalConnection = HasPageInfo & {
|
|
47769
47983
|
__typename?: 'GraphStoreSimplifiedUserUpdatedAtlasGoalConnection';
|
|
@@ -49009,6 +49223,9 @@ export declare type GraphStoreTeamConnectedToContainerSortInput = {
|
|
|
49009
49223
|
relationship_createdFromAutocreate?: InputMaybe<GraphStoreSortInput>;
|
|
49010
49224
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
49011
49225
|
};
|
|
49226
|
+
export declare type GraphStoreTeamHasAgentsSortInput = {
|
|
49227
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49228
|
+
};
|
|
49012
49229
|
export declare type GraphStoreTeamOwnsComponentSortInput = {
|
|
49013
49230
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49014
49231
|
};
|
|
@@ -49216,6 +49433,12 @@ export declare type GraphStoreUserFavoritedConfluencePageSortInput = {
|
|
|
49216
49433
|
export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
49217
49434
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49218
49435
|
};
|
|
49436
|
+
export declare type GraphStoreUserHasExternalPositionSortInput = {
|
|
49437
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
49438
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
49439
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
49440
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
49441
|
+
};
|
|
49219
49442
|
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
49220
49443
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
49221
49444
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -49526,6 +49749,7 @@ export declare type Group = {
|
|
|
49526
49749
|
name?: Maybe<Scalars['String']['output']>;
|
|
49527
49750
|
permissionType?: Maybe<SitePermissionType>;
|
|
49528
49751
|
resourceAri?: Maybe<Scalars['ID']['output']>;
|
|
49752
|
+
team?: Maybe<TeamV2>;
|
|
49529
49753
|
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
49530
49754
|
};
|
|
49531
49755
|
export declare type GroupByPageInfo = {
|
|
@@ -49546,6 +49770,7 @@ export declare type GroupWithPermissions = {
|
|
|
49546
49770
|
name?: Maybe<Scalars['String']['output']>;
|
|
49547
49771
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
49548
49772
|
resourceAri?: Maybe<Scalars['ID']['output']>;
|
|
49773
|
+
team?: Maybe<TeamV2>;
|
|
49549
49774
|
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
49550
49775
|
};
|
|
49551
49776
|
export declare type GroupWithPermissionsEdge = {
|
|
@@ -49569,6 +49794,7 @@ export declare type GroupWithRestrictions = {
|
|
|
49569
49794
|
permissionType?: Maybe<SitePermissionType>;
|
|
49570
49795
|
resourceAri?: Maybe<Scalars['ID']['output']>;
|
|
49571
49796
|
restrictingContent?: Maybe<Content>;
|
|
49797
|
+
team?: Maybe<TeamV2>;
|
|
49572
49798
|
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
49573
49799
|
};
|
|
49574
49800
|
export declare type GroupWithRestrictionsEdge = {
|
|
@@ -49983,11 +50209,15 @@ export declare type GrowthUnifiedProfileTrialContextInput = {
|
|
|
49983
50209
|
trialType: GrowthUnifiedProfileTrialType;
|
|
49984
50210
|
};
|
|
49985
50211
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
50212
|
+
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
49986
50213
|
EditionParity = "EDITION_PARITY",
|
|
49987
|
-
ReverseTrial = "REVERSE_TRIAL"
|
|
50214
|
+
ReverseTrial = "REVERSE_TRIAL",
|
|
50215
|
+
Ui = "UI"
|
|
49988
50216
|
}
|
|
49989
50217
|
export declare enum GrowthUnifiedProfileTrialType {
|
|
50218
|
+
AutoUpgrade = "AUTO_UPGRADE",
|
|
49990
50219
|
DirectTrial = "DIRECT_TRIAL",
|
|
50220
|
+
ManualTrial = "MANUAL_TRIAL",
|
|
49991
50221
|
ReverseTrial = "REVERSE_TRIAL"
|
|
49992
50222
|
}
|
|
49993
50223
|
export declare type GrowthUnifiedProfileTwcCreateOrgProfileResponse = {
|
|
@@ -50649,7 +50879,7 @@ export declare type HelpCenterPageUpdatePayload = Payload & {
|
|
|
50649
50879
|
success: Scalars['Boolean']['output'];
|
|
50650
50880
|
};
|
|
50651
50881
|
export declare type HelpCenterPagesFilter = {
|
|
50652
|
-
ids
|
|
50882
|
+
ids: Array<Scalars['ID']['input']>;
|
|
50653
50883
|
};
|
|
50654
50884
|
export declare type HelpCenterPermissionSettings = {
|
|
50655
50885
|
__typename?: 'HelpCenterPermissionSettings';
|
|
@@ -51441,15 +51671,11 @@ export declare type HelpLayoutMediaConfig = {
|
|
|
51441
51671
|
export declare type HelpLayoutMutationApi = {
|
|
51442
51672
|
__typename?: 'HelpLayoutMutationApi';
|
|
51443
51673
|
createLayout: HelpLayoutCreatePayload;
|
|
51444
|
-
deleteLayout?: Maybe<Payload>;
|
|
51445
51674
|
updateLayout: HelpLayoutUpdatePayload;
|
|
51446
51675
|
};
|
|
51447
51676
|
export declare type HelpLayoutMutationApiCreateLayoutArgs = {
|
|
51448
51677
|
input: HelpLayoutCreationInput;
|
|
51449
51678
|
};
|
|
51450
|
-
export declare type HelpLayoutMutationApiDeleteLayoutArgs = {
|
|
51451
|
-
layoutId: Scalars['ID']['input'];
|
|
51452
|
-
};
|
|
51453
51679
|
export declare type HelpLayoutMutationApiUpdateLayoutArgs = {
|
|
51454
51680
|
input: HelpLayoutUpdateInput;
|
|
51455
51681
|
};
|
|
@@ -51735,7 +51961,18 @@ export declare type HelpObjectStoreArticleMetadata = {
|
|
|
51735
51961
|
isExternal: Scalars['Boolean']['output'];
|
|
51736
51962
|
searchStrategy: HelpObjectStoreArticleSearchStrategy;
|
|
51737
51963
|
};
|
|
51964
|
+
export declare type HelpObjectStoreArticleRelative = {
|
|
51965
|
+
__typename?: 'HelpObjectStoreArticleRelative';
|
|
51966
|
+
id: Scalars['ID']['output'];
|
|
51967
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
51968
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
51969
|
+
type?: Maybe<HelpObjectStoreArticleContentType>;
|
|
51970
|
+
};
|
|
51738
51971
|
export declare type HelpObjectStoreArticleResult = HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
51972
|
+
export declare enum HelpObjectStoreArticleSearchExpandType {
|
|
51973
|
+
Ancestors = "ANCESTORS",
|
|
51974
|
+
ViewCount = "VIEW_COUNT"
|
|
51975
|
+
}
|
|
51739
51976
|
export declare type HelpObjectStoreArticleSearchResponse = HelpObjectStoreArticleSearchResults | HelpObjectStoreSearchError;
|
|
51740
51977
|
export declare type HelpObjectStoreArticleSearchResult = {
|
|
51741
51978
|
__typename?: 'HelpObjectStoreArticleSearchResult';
|
|
@@ -52015,6 +52252,8 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
52015
52252
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
52016
52253
|
};
|
|
52017
52254
|
export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
52255
|
+
articleIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
52256
|
+
expand?: InputMaybe<Array<HelpObjectStoreArticleSearchExpandType>>;
|
|
52018
52257
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
52019
52258
|
parentId?: InputMaybe<Scalars['Long']['input']>;
|
|
52020
52259
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -52023,6 +52262,7 @@ export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
|
52023
52262
|
export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSearchError | HelpObjectStoreSupportSiteArticleSearchResultConnection;
|
|
52024
52263
|
export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
52025
52264
|
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
|
|
52265
|
+
ancestors?: Maybe<Array<HelpObjectStoreArticleRelative>>;
|
|
52026
52266
|
body?: Maybe<Scalars['String']['output']>;
|
|
52027
52267
|
contentType?: Maybe<HelpObjectStoreArticleContentType>;
|
|
52028
52268
|
id: Scalars['ID']['output'];
|
|
@@ -54214,6 +54454,7 @@ export declare type JiraBoardView = {
|
|
|
54214
54454
|
groupByOptions?: Maybe<Array<JiraViewGroupByConfig>>;
|
|
54215
54455
|
id: Scalars['ID']['output'];
|
|
54216
54456
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
54457
|
+
layout?: Maybe<JiraBoardViewLayout>;
|
|
54217
54458
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
54218
54459
|
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
54219
54460
|
};
|
|
@@ -54273,6 +54514,27 @@ export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
|
|
|
54273
54514
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
54274
54515
|
id: Scalars['ID']['output'];
|
|
54275
54516
|
};
|
|
54517
|
+
export declare type JiraBoardViewCell = {
|
|
54518
|
+
__typename?: 'JiraBoardViewCell';
|
|
54519
|
+
column?: Maybe<JiraBoardViewColumn>;
|
|
54520
|
+
id: Scalars['ID']['output'];
|
|
54521
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
54522
|
+
};
|
|
54523
|
+
export declare type JiraBoardViewCellIssuesArgs = {
|
|
54524
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54525
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54526
|
+
};
|
|
54527
|
+
export declare type JiraBoardViewCellConnection = {
|
|
54528
|
+
__typename?: 'JiraBoardViewCellConnection';
|
|
54529
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewCellEdge>>>;
|
|
54530
|
+
errors?: Maybe<Array<QueryError>>;
|
|
54531
|
+
pageInfo?: Maybe<PageInfo>;
|
|
54532
|
+
};
|
|
54533
|
+
export declare type JiraBoardViewCellEdge = {
|
|
54534
|
+
__typename?: 'JiraBoardViewCellEdge';
|
|
54535
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
54536
|
+
node?: Maybe<JiraBoardViewCell>;
|
|
54537
|
+
};
|
|
54276
54538
|
export declare type JiraBoardViewColumn = {
|
|
54277
54539
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
54278
54540
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54290,6 +54552,14 @@ export declare type JiraBoardViewColumnEdge = {
|
|
|
54290
54552
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
54291
54553
|
node?: Maybe<JiraBoardViewColumn>;
|
|
54292
54554
|
};
|
|
54555
|
+
export declare type JiraBoardViewColumnLayout = {
|
|
54556
|
+
__typename?: 'JiraBoardViewColumnLayout';
|
|
54557
|
+
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
54558
|
+
};
|
|
54559
|
+
export declare type JiraBoardViewColumnLayoutCellsArgs = {
|
|
54560
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54561
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54562
|
+
};
|
|
54293
54563
|
export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
54294
54564
|
__typename?: 'JiraBoardViewFieldCardOption';
|
|
54295
54565
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54301,6 +54571,7 @@ export declare type JiraBoardViewInput = {
|
|
|
54301
54571
|
jiraBoardViewQueryInput: JiraBoardViewQueryInput;
|
|
54302
54572
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
54303
54573
|
};
|
|
54574
|
+
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout;
|
|
54304
54575
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
54305
54576
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
54306
54577
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -55976,7 +56247,7 @@ export declare type JiraCreateBoardViewStatusColumnInput = {
|
|
|
55976
56247
|
statusCategoryId: Scalars['ID']['input'];
|
|
55977
56248
|
viewId: Scalars['ID']['input'];
|
|
55978
56249
|
};
|
|
55979
|
-
export declare type JiraCreateBoardViewStatusColumnPayload = {
|
|
56250
|
+
export declare type JiraCreateBoardViewStatusColumnPayload = Payload & {
|
|
55980
56251
|
__typename?: 'JiraCreateBoardViewStatusColumnPayload';
|
|
55981
56252
|
boardView?: Maybe<JiraBoardView>;
|
|
55982
56253
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -56361,6 +56632,11 @@ export declare type JiraCustomerServiceUpdateOrganizationOperationInput = {
|
|
|
56361
56632
|
operation: JiraSingleValueFieldOperations;
|
|
56362
56633
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
56363
56634
|
};
|
|
56635
|
+
export declare type JiraCustomizeProjectLevelSidebarMenuItemInput = {
|
|
56636
|
+
cloudId: Scalars['ID']['input'];
|
|
56637
|
+
hiddenMenuItems: Array<InputMaybe<JiraProjectLevelSidebarMenuItemInput>>;
|
|
56638
|
+
projectId: Scalars['ID']['input'];
|
|
56639
|
+
};
|
|
56364
56640
|
export declare type JiraDashboard = Node & {
|
|
56365
56641
|
__typename?: 'JiraDashboard';
|
|
56366
56642
|
dashboardId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -56530,7 +56806,7 @@ export declare type JiraDeleteBoardViewStatusColumnInput = {
|
|
|
56530
56806
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
56531
56807
|
viewId: Scalars['ID']['input'];
|
|
56532
56808
|
};
|
|
56533
|
-
export declare type JiraDeleteBoardViewStatusColumnPayload = {
|
|
56809
|
+
export declare type JiraDeleteBoardViewStatusColumnPayload = Payload & {
|
|
56534
56810
|
__typename?: 'JiraDeleteBoardViewStatusColumnPayload';
|
|
56535
56811
|
boardView?: Maybe<JiraBoardView>;
|
|
56536
56812
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -56646,12 +56922,14 @@ export declare enum JiraDeploymentsFeaturePrecondition {
|
|
|
56646
56922
|
}
|
|
56647
56923
|
export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView & Node & {
|
|
56648
56924
|
__typename?: 'JiraDetailedView';
|
|
56925
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
56649
56926
|
error?: Maybe<QueryError>;
|
|
56650
56927
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
56651
56928
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
56652
56929
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
56653
56930
|
id: Scalars['ID']['output'];
|
|
56654
56931
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
56932
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
56655
56933
|
issues?: Maybe<JiraIssueConnection>;
|
|
56656
56934
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
56657
56935
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -56668,6 +56946,9 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
56668
56946
|
export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
|
|
56669
56947
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
56670
56948
|
};
|
|
56949
|
+
export declare type JiraDetailedViewIsViewConfigModifiedArgs = {
|
|
56950
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
56951
|
+
};
|
|
56671
56952
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
56672
56953
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56673
56954
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56678,6 +56959,7 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
56678
56959
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
56679
56960
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56680
56961
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
56962
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
56681
56963
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
56682
56964
|
};
|
|
56683
56965
|
export declare type JiraDevInfoConfigError = {
|
|
@@ -57383,7 +57665,9 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
57383
57665
|
};
|
|
57384
57666
|
export declare enum JiraFieldConfigOrderBy {
|
|
57385
57667
|
ContextCount = "CONTEXT_COUNT",
|
|
57668
|
+
Description = "DESCRIPTION",
|
|
57386
57669
|
FieldType = "FIELD_TYPE",
|
|
57670
|
+
Id = "ID",
|
|
57387
57671
|
LastUsed = "LAST_USED",
|
|
57388
57672
|
Name = "NAME",
|
|
57389
57673
|
PlannedDeleteDate = "PLANNED_DELETE_DATE",
|
|
@@ -58415,6 +58699,7 @@ export declare type JiraGroupInput = {
|
|
|
58415
58699
|
};
|
|
58416
58700
|
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
58417
58701
|
__typename?: 'JiraGroupedListView';
|
|
58702
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
58418
58703
|
error?: Maybe<QueryError>;
|
|
58419
58704
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
58420
58705
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -58422,6 +58707,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
58422
58707
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
58423
58708
|
id: Scalars['ID']['output'];
|
|
58424
58709
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
58710
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
58425
58711
|
jql?: Maybe<Scalars['String']['output']>;
|
|
58426
58712
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
58427
58713
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -58451,6 +58737,9 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
58451
58737
|
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
58452
58738
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
58453
58739
|
};
|
|
58740
|
+
export declare type JiraGroupedListViewIsViewConfigModifiedArgs = {
|
|
58741
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
58742
|
+
};
|
|
58454
58743
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
58455
58744
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
58456
58745
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -58601,6 +58890,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
58601
58890
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
58602
58891
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
58603
58892
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
58893
|
+
linkedCommits?: Maybe<JiraIssueCommits>;
|
|
58604
58894
|
linkedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
58605
58895
|
matchesIssueSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
58606
58896
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
@@ -58788,6 +59078,9 @@ export declare type JiraIssueLegacyContentPanelsArgs = {
|
|
|
58788
59078
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58789
59079
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
58790
59080
|
};
|
|
59081
|
+
export declare type JiraIssueLinkedCommitsArgs = {
|
|
59082
|
+
input?: InputMaybe<JiraIssueCommitsInput>;
|
|
59083
|
+
};
|
|
58791
59084
|
export declare type JiraIssueLinkedPullRequestsArgs = {
|
|
58792
59085
|
input?: InputMaybe<JiraIssuePullRequestsInput>;
|
|
58793
59086
|
};
|
|
@@ -58980,6 +59273,9 @@ export declare type JiraIssueCommits = {
|
|
|
58980
59273
|
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
58981
59274
|
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
58982
59275
|
};
|
|
59276
|
+
export declare type JiraIssueCommitsInput = {
|
|
59277
|
+
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59278
|
+
};
|
|
58983
59279
|
export declare type JiraIssueConnection = {
|
|
58984
59280
|
__typename?: 'JiraIssueConnection';
|
|
58985
59281
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
@@ -60042,12 +60338,15 @@ export declare type JiraIssueSearchStatus = {
|
|
|
60042
60338
|
};
|
|
60043
60339
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
60044
60340
|
__typename?: 'JiraIssueSearchView';
|
|
60341
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
60045
60342
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
60046
60343
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
60047
60344
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
60048
60345
|
id: Scalars['ID']['output'];
|
|
60049
60346
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60347
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
60050
60348
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
60349
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
60051
60350
|
viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
60052
60351
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
60053
60352
|
};
|
|
@@ -60062,6 +60361,9 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
60062
60361
|
export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
60063
60362
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
60064
60363
|
};
|
|
60364
|
+
export declare type JiraIssueSearchViewIsViewConfigModifiedArgs = {
|
|
60365
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
60366
|
+
};
|
|
60065
60367
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
60066
60368
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
60067
60369
|
};
|
|
@@ -60133,12 +60435,15 @@ export declare enum JiraIssueSearchViewLayout {
|
|
|
60133
60435
|
List = "LIST"
|
|
60134
60436
|
}
|
|
60135
60437
|
export declare type JiraIssueSearchViewMetadata = {
|
|
60438
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
60136
60439
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
60137
60440
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
60138
60441
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
60139
60442
|
id: Scalars['ID']['output'];
|
|
60140
60443
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
60444
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
60141
60445
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
60446
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
60142
60447
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
60143
60448
|
};
|
|
60144
60449
|
export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
@@ -60152,6 +60457,9 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
60152
60457
|
export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
60153
60458
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
60154
60459
|
};
|
|
60460
|
+
export declare type JiraIssueSearchViewMetadataIsViewConfigModifiedArgs = {
|
|
60461
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
60462
|
+
};
|
|
60155
60463
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
60156
60464
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
60157
60465
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -61379,12 +61687,14 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
61379
61687
|
};
|
|
61380
61688
|
export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
61381
61689
|
__typename?: 'JiraListView';
|
|
61690
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
61382
61691
|
error?: Maybe<QueryError>;
|
|
61383
61692
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
61384
61693
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
61385
61694
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
61386
61695
|
id: Scalars['ID']['output'];
|
|
61387
61696
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
61697
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
61388
61698
|
issues?: Maybe<JiraIssueConnection>;
|
|
61389
61699
|
jql?: Maybe<Scalars['String']['output']>;
|
|
61390
61700
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
@@ -61404,6 +61714,9 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
61404
61714
|
export declare type JiraListViewHasDefaultFieldSetsArgs = {
|
|
61405
61715
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61406
61716
|
};
|
|
61717
|
+
export declare type JiraListViewIsViewConfigModifiedArgs = {
|
|
61718
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
61719
|
+
};
|
|
61407
61720
|
export declare type JiraListViewIssuesArgs = {
|
|
61408
61721
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61409
61722
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61414,6 +61727,7 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
61414
61727
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
61415
61728
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61416
61729
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61730
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
61417
61731
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
61418
61732
|
};
|
|
61419
61733
|
export declare type JiraListViewViewSettingsArgs = {
|
|
@@ -64511,6 +64825,29 @@ export declare type JiraProjectKeysInput = {
|
|
|
64511
64825
|
cloudId: Scalars['ID']['input'];
|
|
64512
64826
|
keys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64513
64827
|
};
|
|
64828
|
+
export declare type JiraProjectLevelSidebarMenuCustomization = {
|
|
64829
|
+
__typename?: 'JiraProjectLevelSidebarMenuCustomization';
|
|
64830
|
+
hiddenMenuItems?: Maybe<JiraProjectLevelSidebarMenuItemConnection>;
|
|
64831
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
64832
|
+
};
|
|
64833
|
+
export declare type JiraProjectLevelSidebarMenuItem = {
|
|
64834
|
+
__typename?: 'JiraProjectLevelSidebarMenuItem';
|
|
64835
|
+
itemId: Scalars['ID']['output'];
|
|
64836
|
+
};
|
|
64837
|
+
export declare type JiraProjectLevelSidebarMenuItemConnection = {
|
|
64838
|
+
__typename?: 'JiraProjectLevelSidebarMenuItemConnection';
|
|
64839
|
+
edges?: Maybe<Array<Maybe<JiraProjectLevelSidebarMenuItemEdge>>>;
|
|
64840
|
+
pageInfo?: Maybe<PageInfo>;
|
|
64841
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
64842
|
+
};
|
|
64843
|
+
export declare type JiraProjectLevelSidebarMenuItemEdge = {
|
|
64844
|
+
__typename?: 'JiraProjectLevelSidebarMenuItemEdge';
|
|
64845
|
+
cursor: Scalars['String']['output'];
|
|
64846
|
+
node?: Maybe<JiraProjectLevelSidebarMenuItem>;
|
|
64847
|
+
};
|
|
64848
|
+
export declare type JiraProjectLevelSidebarMenuItemInput = {
|
|
64849
|
+
itemId: Scalars['ID']['input'];
|
|
64850
|
+
};
|
|
64514
64851
|
export declare enum JiraProjectListRightPanelState {
|
|
64515
64852
|
Closed = "CLOSED",
|
|
64516
64853
|
Open = "OPEN"
|
|
@@ -64782,16 +65119,10 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
|
64782
65119
|
};
|
|
64783
65120
|
export declare type JiraProjectWithIssueTypeIds = {
|
|
64784
65121
|
__typename?: 'JiraProjectWithIssueTypeIds';
|
|
64785
|
-
aiSuggestedAvailableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
64786
65122
|
allowedCustomFieldTypes?: Maybe<JiraFieldTypeConnection>;
|
|
64787
65123
|
availableFields?: Maybe<JiraAvailableFieldsConnection>;
|
|
64788
65124
|
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
64789
65125
|
};
|
|
64790
|
-
export declare type JiraProjectWithIssueTypeIdsAiSuggestedAvailableFieldsArgs = {
|
|
64791
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
64792
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64793
|
-
input?: InputMaybe<JiraProjectAvailableFieldsInput>;
|
|
64794
|
-
};
|
|
64795
65126
|
export declare type JiraProjectWithIssueTypeIdsAllowedCustomFieldTypesArgs = {
|
|
64796
65127
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64797
65128
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -66476,7 +66807,7 @@ export declare type JiraRenameBoardViewStatusColumnInput = {
|
|
|
66476
66807
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
66477
66808
|
viewId: Scalars['ID']['input'];
|
|
66478
66809
|
};
|
|
66479
|
-
export declare type JiraRenameBoardViewStatusColumnPayload = {
|
|
66810
|
+
export declare type JiraRenameBoardViewStatusColumnPayload = Payload & {
|
|
66480
66811
|
__typename?: 'JiraRenameBoardViewStatusColumnPayload';
|
|
66481
66812
|
boardView?: Maybe<JiraBoardView>;
|
|
66482
66813
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -66541,6 +66872,7 @@ export declare type JiraReportCategory = {
|
|
|
66541
66872
|
export declare type JiraReportCategoryConnection = {
|
|
66542
66873
|
__typename?: 'JiraReportCategoryConnection';
|
|
66543
66874
|
edges?: Maybe<Array<Maybe<JiraReportCategoryEdge>>>;
|
|
66875
|
+
errors?: Maybe<Array<QueryError>>;
|
|
66544
66876
|
pageInfo: PageInfo;
|
|
66545
66877
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
66546
66878
|
};
|
|
@@ -68939,11 +69271,13 @@ export declare type JiraSpreadsheetGroupByConfigRecentlyUsedArgs = {
|
|
|
68939
69271
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
68940
69272
|
filter?: InputMaybe<JiraGroupByDropdownFilter>;
|
|
68941
69273
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69274
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
68942
69275
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
68943
69276
|
};
|
|
68944
69277
|
export declare type JiraSpreadsheetGroupByFieldOptionConnection = {
|
|
68945
69278
|
__typename?: 'JiraSpreadsheetGroupByFieldOptionConnection';
|
|
68946
69279
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupByFieldOptionEdge>>>;
|
|
69280
|
+
error?: Maybe<QueryError>;
|
|
68947
69281
|
pageInfo?: Maybe<PageInfo>;
|
|
68948
69282
|
};
|
|
68949
69283
|
export declare type JiraSpreadsheetGroupByFieldOptionEdge = {
|
|
@@ -68968,14 +69302,17 @@ export declare type JiraSpreadsheetGroupEdge = {
|
|
|
68968
69302
|
};
|
|
68969
69303
|
export declare type JiraSpreadsheetGroupFieldValue = JiraGoal | JiraOption | JiraPriority | JiraStatus | JiraStoryPoint;
|
|
68970
69304
|
export declare type JiraSpreadsheetView = {
|
|
69305
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
68971
69306
|
error?: Maybe<QueryError>;
|
|
68972
69307
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
68973
69308
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
68974
69309
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
68975
69310
|
id: Scalars['ID']['output'];
|
|
68976
69311
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69312
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
68977
69313
|
jql?: Maybe<Scalars['String']['output']>;
|
|
68978
69314
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
69315
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
68979
69316
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
68980
69317
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
68981
69318
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
@@ -68991,6 +69328,9 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
68991
69328
|
export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
68992
69329
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
68993
69330
|
};
|
|
69331
|
+
export declare type JiraSpreadsheetViewIsViewConfigModifiedArgs = {
|
|
69332
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
69333
|
+
};
|
|
68994
69334
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
68995
69335
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
68996
69336
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -73478,7 +73818,8 @@ export declare type KnowledgeGraphObjectResponseV2 = {
|
|
|
73478
73818
|
};
|
|
73479
73819
|
export declare enum KnowledgeGraphObjectType {
|
|
73480
73820
|
SnippetV1 = "snippet_v1",
|
|
73481
|
-
SnippetV2 = "snippet_v2"
|
|
73821
|
+
SnippetV2 = "snippet_v2",
|
|
73822
|
+
SnippetV2_180 = "snippet_v2_180"
|
|
73482
73823
|
}
|
|
73483
73824
|
export declare type KnownUser = Person & {
|
|
73484
73825
|
__typename?: 'KnownUser';
|
|
@@ -74460,6 +74801,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
74460
74801
|
hasActiveCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
74461
74802
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
74462
74803
|
hasDecoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
74804
|
+
hasPublicApprovedVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
74463
74805
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
74464
74806
|
hosting: MarketplaceConsoleHosting;
|
|
74465
74807
|
isLatestActiveVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -75107,7 +75449,7 @@ export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
|
75107
75449
|
};
|
|
75108
75450
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
75109
75451
|
appKey: Scalars['ID']['input'];
|
|
75110
|
-
|
|
75452
|
+
cloudComplianceBoundaries?: InputMaybe<Array<InputMaybe<MarketplaceConsoleCloudComplianceBoundary>>>;
|
|
75111
75453
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
75112
75454
|
};
|
|
75113
75455
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
@@ -75137,6 +75479,24 @@ export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
|
75137
75479
|
__typename?: 'MarketplaceConsoleMutationVoidResponse';
|
|
75138
75480
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
75139
75481
|
};
|
|
75482
|
+
export declare type MarketplaceConsoleOffering = {
|
|
75483
|
+
__typename?: 'MarketplaceConsoleOffering';
|
|
75484
|
+
id: Scalars['ID']['output'];
|
|
75485
|
+
isDecoupled: Scalars['Boolean']['output'];
|
|
75486
|
+
name: Scalars['String']['output'];
|
|
75487
|
+
parentProduct: Scalars['String']['output'];
|
|
75488
|
+
status: MarketplaceConsoleOfferingStatus;
|
|
75489
|
+
};
|
|
75490
|
+
export declare type MarketplaceConsoleOfferingInput = {
|
|
75491
|
+
appKey: Scalars['String']['input'];
|
|
75492
|
+
productId: Scalars['String']['input'];
|
|
75493
|
+
};
|
|
75494
|
+
export declare enum MarketplaceConsoleOfferingStatus {
|
|
75495
|
+
Active = "ACTIVE",
|
|
75496
|
+
AtNotice = "AT_NOTICE",
|
|
75497
|
+
Draft = "DRAFT",
|
|
75498
|
+
Expired = "EXPIRED"
|
|
75499
|
+
}
|
|
75140
75500
|
export declare type MarketplaceConsoleParentSoftware = {
|
|
75141
75501
|
__typename?: 'MarketplaceConsoleParentSoftware';
|
|
75142
75502
|
extensibilityFrameworks: Array<MarketplaceConsoleExtensibilityFramework>;
|
|
@@ -75374,6 +75734,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
75374
75734
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
75375
75735
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
75376
75736
|
makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
|
|
75737
|
+
offerings?: Maybe<Array<Maybe<MarketplaceConsoleOffering>>>;
|
|
75377
75738
|
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
75378
75739
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
75379
75740
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
@@ -75430,6 +75791,9 @@ export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
|
|
|
75430
75791
|
appId: Scalars['ID']['input'];
|
|
75431
75792
|
buildNumber: Scalars['ID']['input'];
|
|
75432
75793
|
};
|
|
75794
|
+
export declare type MarketplaceConsoleQueryApiOfferingsArgs = {
|
|
75795
|
+
product: MarketplaceConsoleOfferingInput;
|
|
75796
|
+
};
|
|
75433
75797
|
export declare type MarketplaceConsoleQueryApiParentProductPricingArgs = {
|
|
75434
75798
|
product: MarketplaceConsoleParentSoftwarePricingQueryInput;
|
|
75435
75799
|
};
|
|
@@ -77411,6 +77775,21 @@ export declare type MercuryFocusAreaPositionChangeSummary = {
|
|
|
77411
77775
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
77412
77776
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
77413
77777
|
};
|
|
77778
|
+
export declare type MercuryFocusAreaRankingValidation = {
|
|
77779
|
+
__typename?: 'MercuryFocusAreaRankingValidation';
|
|
77780
|
+
isValid: Scalars['Boolean']['output'];
|
|
77781
|
+
validationErrors?: Maybe<Array<MercuryFocusAreaRankingValidationError>>;
|
|
77782
|
+
};
|
|
77783
|
+
export declare type MercuryFocusAreaRankingValidationError = {
|
|
77784
|
+
__typename?: 'MercuryFocusAreaRankingValidationError';
|
|
77785
|
+
errorCode: MercuryFocusAreaRankingValidationErrorCode;
|
|
77786
|
+
focusArea: MercuryFocusArea;
|
|
77787
|
+
rankingView?: Maybe<MercuryPortfolio>;
|
|
77788
|
+
};
|
|
77789
|
+
export declare enum MercuryFocusAreaRankingValidationErrorCode {
|
|
77790
|
+
FaRanked = "FA_RANKED",
|
|
77791
|
+
FaTypeMismatch = "FA_TYPE_MISMATCH"
|
|
77792
|
+
}
|
|
77414
77793
|
export declare type MercuryFocusAreaSort = {
|
|
77415
77794
|
field?: InputMaybe<MercuryFocusAreaSortField>;
|
|
77416
77795
|
order: SortOrder;
|
|
@@ -77758,6 +78137,7 @@ export declare type MercuryMutationApi = {
|
|
|
77758
78137
|
updateFocusAreaTargetDate?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
77759
78138
|
updatePortfolioName?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
77760
78139
|
validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
|
|
78140
|
+
validateFocusAreasForRanking?: Maybe<MercuryValidateFocusAreasForRankingPayload>;
|
|
77761
78141
|
};
|
|
77762
78142
|
export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
77763
78143
|
input: MercuryAddWatcherToFocusAreaInput;
|
|
@@ -77858,6 +78238,9 @@ export declare type MercuryMutationApiUpdatePortfolioNameArgs = {
|
|
|
77858
78238
|
export declare type MercuryMutationApiValidateFocusAreaArchivalArgs = {
|
|
77859
78239
|
input: MercuryArchiveFocusAreaValidationInput;
|
|
77860
78240
|
};
|
|
78241
|
+
export declare type MercuryMutationApiValidateFocusAreasForRankingArgs = {
|
|
78242
|
+
input: MercuryValidateFocusAreasForRankingInput;
|
|
78243
|
+
};
|
|
77861
78244
|
export declare type MercuryNewFundSummaryByChangeProposalStatus = {
|
|
77862
78245
|
__typename?: 'MercuryNewFundSummaryByChangeProposalStatus';
|
|
77863
78246
|
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -79049,6 +79432,17 @@ export declare type MercuryUserEdge = {
|
|
|
79049
79432
|
cursor: Scalars['String']['output'];
|
|
79050
79433
|
node?: Maybe<User>;
|
|
79051
79434
|
};
|
|
79435
|
+
export declare type MercuryValidateFocusAreasForRankingInput = {
|
|
79436
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79437
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
79438
|
+
rankingViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
79439
|
+
};
|
|
79440
|
+
export declare type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
79441
|
+
__typename?: 'MercuryValidateFocusAreasForRankingPayload';
|
|
79442
|
+
errors?: Maybe<Array<MutationError>>;
|
|
79443
|
+
success: Scalars['Boolean']['output'];
|
|
79444
|
+
validation?: Maybe<MercuryFocusAreaRankingValidation>;
|
|
79445
|
+
};
|
|
79052
79446
|
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
79053
79447
|
export declare type MercuryWorkspaceConnectionStatus = {
|
|
79054
79448
|
__typename?: 'MercuryWorkspaceConnectionStatus';
|
|
@@ -79216,6 +79610,10 @@ export declare enum MobilePlatform {
|
|
|
79216
79610
|
Android = "ANDROID",
|
|
79217
79611
|
Ios = "IOS"
|
|
79218
79612
|
}
|
|
79613
|
+
export declare type ModelRequestParams = {
|
|
79614
|
+
caller: Scalars['String']['input'];
|
|
79615
|
+
experience: Scalars['String']['input'];
|
|
79616
|
+
};
|
|
79219
79617
|
export declare type ModuleCompleteKey = {
|
|
79220
79618
|
__typename?: 'ModuleCompleteKey';
|
|
79221
79619
|
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -79443,6 +79841,7 @@ export declare type Mutation = {
|
|
|
79443
79841
|
createTemplate?: Maybe<ContentTemplate>;
|
|
79444
79842
|
createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
|
|
79445
79843
|
csmAi_createAction?: Maybe<CsmAiCreateActionPayload>;
|
|
79844
|
+
csmAi_createCoachingContent?: Maybe<CsmAiCreateCoachingContentPayload>;
|
|
79446
79845
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
79447
79846
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
79448
79847
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
@@ -79541,6 +79940,7 @@ export declare type Mutation = {
|
|
|
79541
79940
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79542
79941
|
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
79543
79942
|
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
79943
|
+
jira_customizeProjectLevelSidebarMenuItem?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
79544
79944
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
79545
79945
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
79546
79946
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
@@ -79619,10 +80019,13 @@ export declare type Mutation = {
|
|
|
79619
80019
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
79620
80020
|
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
79621
80021
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
80022
|
+
playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
|
|
79622
80023
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
79623
80024
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
79624
80025
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
79625
80026
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
80027
|
+
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
80028
|
+
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
79626
80029
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
79627
80030
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
79628
80031
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -79701,9 +80104,11 @@ export declare type Mutation = {
|
|
|
79701
80104
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
79702
80105
|
spf_createAsk?: Maybe<SpfCreateAskPayload>;
|
|
79703
80106
|
spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
|
|
80107
|
+
spf_createAskUpdate?: Maybe<SpfCreateAskUpdatePayload>;
|
|
79704
80108
|
spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
|
|
79705
80109
|
spf_deleteAskComment?: Maybe<SpfDeleteAskCommentPayload>;
|
|
79706
80110
|
spf_deleteAskLink?: Maybe<SpfDeleteAskLinkPayload>;
|
|
80111
|
+
spf_deleteAskUpdate?: Maybe<SpfDeleteAskUpdatePayload>;
|
|
79707
80112
|
spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
|
|
79708
80113
|
spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
|
|
79709
80114
|
spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
|
|
@@ -79714,6 +80119,9 @@ export declare type Mutation = {
|
|
|
79714
80119
|
spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
79715
80120
|
spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
|
|
79716
80121
|
spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
|
|
80122
|
+
spf_updateAskUpdateDescription?: Maybe<SpfAskUpdatePayload>;
|
|
80123
|
+
spf_updateAskUpdateStatus?: Maybe<SpfAskUpdatePayload>;
|
|
80124
|
+
spf_updateAskUpdateTargetDate?: Maybe<SpfAskUpdatePayload>;
|
|
79717
80125
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
79718
80126
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
79719
80127
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -80371,6 +80779,11 @@ export declare type MutationCsmAi_CreateActionArgs = {
|
|
|
80371
80779
|
helpCenterAri: Scalars['ID']['input'];
|
|
80372
80780
|
input: CsmAiCreateActionInput;
|
|
80373
80781
|
};
|
|
80782
|
+
export declare type MutationCsmAi_CreateCoachingContentArgs = {
|
|
80783
|
+
csmAiHubId: Scalars['ID']['input'];
|
|
80784
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
80785
|
+
input: CsmAiCreateCoachingContentInput;
|
|
80786
|
+
};
|
|
80374
80787
|
export declare type MutationCsmAi_DeleteActionArgs = {
|
|
80375
80788
|
csmAiActionId: Scalars['ID']['input'];
|
|
80376
80789
|
csmAiHubId: Scalars['ID']['input'];
|
|
@@ -80674,6 +81087,9 @@ export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
|
80674
81087
|
export declare type MutationJira_CreateIssueTypeArgs = {
|
|
80675
81088
|
input: JiraCreateIssueTypeInput;
|
|
80676
81089
|
};
|
|
81090
|
+
export declare type MutationJira_CustomizeProjectLevelSidebarMenuItemArgs = {
|
|
81091
|
+
input: JiraCustomizeProjectLevelSidebarMenuItemInput;
|
|
81092
|
+
};
|
|
80677
81093
|
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
80678
81094
|
input: JiraDeleteBoardViewStatusColumnInput;
|
|
80679
81095
|
};
|
|
@@ -80894,6 +81310,9 @@ export declare type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookAr
|
|
|
80894
81310
|
export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
80895
81311
|
input: UpdateJiraPlaybookInput;
|
|
80896
81312
|
};
|
|
81313
|
+
export declare type MutationPlaybook_UpdateJiraPlaybookLabelArgs = {
|
|
81314
|
+
input: UpdateJiraPlaybookLabelInput;
|
|
81315
|
+
};
|
|
80897
81316
|
export declare type MutationPlaybook_UpdateJiraPlaybookStateArgs = {
|
|
80898
81317
|
input: UpdateJiraPlaybookStateInput;
|
|
80899
81318
|
};
|
|
@@ -80903,6 +81322,12 @@ export declare type MutationPolarisAddReactionArgs = {
|
|
|
80903
81322
|
export declare type MutationPolarisDeleteReactionArgs = {
|
|
80904
81323
|
input: PolarisDeleteReactionInput;
|
|
80905
81324
|
};
|
|
81325
|
+
export declare type MutationProjects_CreateLinkArgs = {
|
|
81326
|
+
input?: InputMaybe<TownsquareProjectsCreateLinkInput>;
|
|
81327
|
+
};
|
|
81328
|
+
export declare type MutationProjects_EditArgs = {
|
|
81329
|
+
input?: InputMaybe<TownsquareProjectsEditInput>;
|
|
81330
|
+
};
|
|
80906
81331
|
export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
80907
81332
|
action: PublicLinkAdminAction;
|
|
80908
81333
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -81157,6 +81582,9 @@ export declare type MutationSpf_CreateAskArgs = {
|
|
|
81157
81582
|
export declare type MutationSpf_CreateAskCommentArgs = {
|
|
81158
81583
|
input: SpfCreateAskCommentInput;
|
|
81159
81584
|
};
|
|
81585
|
+
export declare type MutationSpf_CreateAskUpdateArgs = {
|
|
81586
|
+
input: SpfCreateAskUpdateInput;
|
|
81587
|
+
};
|
|
81160
81588
|
export declare type MutationSpf_DeleteAskArgs = {
|
|
81161
81589
|
input: SpfDeleteAskInput;
|
|
81162
81590
|
};
|
|
@@ -81166,6 +81594,9 @@ export declare type MutationSpf_DeleteAskCommentArgs = {
|
|
|
81166
81594
|
export declare type MutationSpf_DeleteAskLinkArgs = {
|
|
81167
81595
|
input: SpfDeleteAskLinkInput;
|
|
81168
81596
|
};
|
|
81597
|
+
export declare type MutationSpf_DeleteAskUpdateArgs = {
|
|
81598
|
+
input: SpfDeleteAskUpdateInput;
|
|
81599
|
+
};
|
|
81169
81600
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
81170
81601
|
input: SpfUpdateAskCommentDataInput;
|
|
81171
81602
|
};
|
|
@@ -81196,6 +81627,15 @@ export declare type MutationSpf_UpdateAskSubmitterArgs = {
|
|
|
81196
81627
|
export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
|
|
81197
81628
|
input: SpfUpdateAskSubmittingTeamInput;
|
|
81198
81629
|
};
|
|
81630
|
+
export declare type MutationSpf_UpdateAskUpdateDescriptionArgs = {
|
|
81631
|
+
input: SpfAskUpdateDescriptionInput;
|
|
81632
|
+
};
|
|
81633
|
+
export declare type MutationSpf_UpdateAskUpdateStatusArgs = {
|
|
81634
|
+
input: SpfAskUpdateStatusInput;
|
|
81635
|
+
};
|
|
81636
|
+
export declare type MutationSpf_UpdateAskUpdateTargetDateArgs = {
|
|
81637
|
+
input: SpfAskUpdateTargetDateInput;
|
|
81638
|
+
};
|
|
81199
81639
|
export declare type MutationSplitIssueArgs = {
|
|
81200
81640
|
input?: InputMaybe<SplitIssueInput>;
|
|
81201
81641
|
};
|
|
@@ -84282,6 +84722,9 @@ export declare type Query = {
|
|
|
84282
84722
|
assetsDM_adapters?: Maybe<AssetsDmAdapters>;
|
|
84283
84723
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
84284
84724
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
84725
|
+
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
84726
|
+
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
84727
|
+
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
84285
84728
|
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84286
84729
|
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84287
84730
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -84457,6 +84900,8 @@ export declare type Query = {
|
|
|
84457
84900
|
devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
|
|
84458
84901
|
devai_flowSessionsByCreatorAndCloudId?: Maybe<Array<Maybe<DevAiFlowSession>>>;
|
|
84459
84902
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
84903
|
+
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
84904
|
+
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
84460
84905
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
84461
84906
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
84462
84907
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
@@ -84534,6 +84979,7 @@ export declare type Query = {
|
|
|
84534
84979
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
84535
84980
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
84536
84981
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
84982
|
+
home_tagSearch?: Maybe<TownsquareTagConnection>;
|
|
84537
84983
|
identity_groupsByIds?: Maybe<Array<IdentityGroup>>;
|
|
84538
84984
|
incomingLinksCount?: Maybe<IncomingLinksCount>;
|
|
84539
84985
|
inlineTasks?: Maybe<InlineTasksQueryResult>;
|
|
@@ -84573,6 +85019,7 @@ export declare type Query = {
|
|
|
84573
85019
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
84574
85020
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
84575
85021
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
85022
|
+
jira_projectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
84576
85023
|
jira_projectTypesByIds?: Maybe<Array<Maybe<JiraProjectTypeDetails>>>;
|
|
84577
85024
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
84578
85025
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
@@ -84587,6 +85034,8 @@ export declare type Query = {
|
|
|
84587
85034
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
84588
85035
|
latestKnowledgeGraphObject?: Maybe<KnowledgeGraphObjectResponse>;
|
|
84589
85036
|
license?: Maybe<License>;
|
|
85037
|
+
linksIncomingToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
85038
|
+
linksOutgoingFromConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
84590
85039
|
localStorage?: Maybe<LocalStorage>;
|
|
84591
85040
|
logAccessByContexts?: Maybe<Array<InstallationContextWithInstallationIdResponse>>;
|
|
84592
85041
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
@@ -84637,6 +85086,7 @@ export declare type Query = {
|
|
|
84637
85086
|
notesByCreator?: Maybe<NoteConnection>;
|
|
84638
85087
|
notifications?: Maybe<InfluentsNotificationQuery>;
|
|
84639
85088
|
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
85089
|
+
objectRecommendations?: Maybe<CollaborationGraphRecommendationResults>;
|
|
84640
85090
|
onboardingState?: Maybe<Array<OnboardingState>>;
|
|
84641
85091
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
84642
85092
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
@@ -85040,6 +85490,15 @@ export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
|
85040
85490
|
cloudId: Scalars['ID']['input'];
|
|
85041
85491
|
workspaceId: Scalars['ID']['input'];
|
|
85042
85492
|
};
|
|
85493
|
+
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
85494
|
+
ids: Array<Scalars['ID']['input']>;
|
|
85495
|
+
};
|
|
85496
|
+
export declare type QueryAssets_ObjectsByIdsArgs = {
|
|
85497
|
+
ids: Array<Scalars['ID']['input']>;
|
|
85498
|
+
};
|
|
85499
|
+
export declare type QueryAssets_SchemasByIdsArgs = {
|
|
85500
|
+
ids: Array<Scalars['ID']['input']>;
|
|
85501
|
+
};
|
|
85043
85502
|
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
85044
85503
|
issueId: Scalars['ID']['input'];
|
|
85045
85504
|
};
|
|
@@ -85864,6 +86323,14 @@ export declare type QueryDevai_FlowSessionsByIssueKeyAndCloudIdArgs = {
|
|
|
85864
86323
|
issueKey: Scalars['String']['input'];
|
|
85865
86324
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
85866
86325
|
};
|
|
86326
|
+
export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
86327
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86328
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
86329
|
+
};
|
|
86330
|
+
export declare type QueryDevai_GetUserPermissionsForRepoArgs = {
|
|
86331
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
86332
|
+
repoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
86333
|
+
};
|
|
85867
86334
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
85868
86335
|
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
85869
86336
|
cloudId: Scalars['ID']['input'];
|
|
@@ -86132,6 +86599,13 @@ export declare type QueryHelpObjectStore_SearchRequestTypesArgs = {
|
|
|
86132
86599
|
portalId?: InputMaybe<Scalars['String']['input']>;
|
|
86133
86600
|
queryTerm: Scalars['String']['input'];
|
|
86134
86601
|
};
|
|
86602
|
+
export declare type QueryHome_TagSearchArgs = {
|
|
86603
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86604
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
86605
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86606
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
86607
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareTagSortEnum>>>;
|
|
86608
|
+
};
|
|
86135
86609
|
export declare type QueryIdentity_GroupsByIdsArgs = {
|
|
86136
86610
|
ids: Array<Scalars['ID']['input']>;
|
|
86137
86611
|
};
|
|
@@ -86243,6 +86717,10 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
86243
86717
|
cloudId: Scalars['ID']['input'];
|
|
86244
86718
|
idOrKey: Scalars['String']['input'];
|
|
86245
86719
|
};
|
|
86720
|
+
export declare type QueryJira_ProjectLevelSidebarMenuCustomizationArgs = {
|
|
86721
|
+
cloudId: Scalars['ID']['input'];
|
|
86722
|
+
projectId: Scalars['ID']['input'];
|
|
86723
|
+
};
|
|
86246
86724
|
export declare type QueryJira_ProjectTypesByIdsArgs = {
|
|
86247
86725
|
ids: Array<Scalars['ID']['input']>;
|
|
86248
86726
|
};
|
|
@@ -86286,6 +86764,12 @@ export declare type QueryLatestKnowledgeGraphObjectArgs = {
|
|
|
86286
86764
|
objectType: KnowledgeGraphObjectType;
|
|
86287
86765
|
objectVersion?: Scalars['String']['input'];
|
|
86288
86766
|
};
|
|
86767
|
+
export declare type QueryLinksIncomingToConfluencePageArgs = {
|
|
86768
|
+
pageId: Scalars['ID']['input'];
|
|
86769
|
+
};
|
|
86770
|
+
export declare type QueryLinksOutgoingFromConfluencePageArgs = {
|
|
86771
|
+
pageId: Scalars['ID']['input'];
|
|
86772
|
+
};
|
|
86289
86773
|
export declare type QueryLogAccessByContextsArgs = {
|
|
86290
86774
|
appId: Scalars['ID']['input'];
|
|
86291
86775
|
contextInstallationPairs: Array<InstallationContextWithInstallationIdInput>;
|
|
@@ -86418,6 +86902,11 @@ export declare type QueryNodeArgs = {
|
|
|
86418
86902
|
export declare type QueryNotesByCreatorArgs = {
|
|
86419
86903
|
input?: InputMaybe<NotesByCreatorInput>;
|
|
86420
86904
|
};
|
|
86905
|
+
export declare type QueryObjectRecommendationsArgs = {
|
|
86906
|
+
context: CollaborationGraphRequestContext;
|
|
86907
|
+
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
86908
|
+
modelRequestParams: ModelRequestParams;
|
|
86909
|
+
};
|
|
86421
86910
|
export declare type QueryOnboardingStateArgs = {
|
|
86422
86911
|
key?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
86423
86912
|
};
|
|
@@ -87433,7 +87922,6 @@ export declare type RadarFunction = {
|
|
|
87433
87922
|
operators: Array<RadarFilterOperators>;
|
|
87434
87923
|
};
|
|
87435
87924
|
export declare enum RadarFunctionId {
|
|
87436
|
-
Haschild = "HASCHILD",
|
|
87437
87925
|
Under = "UNDER"
|
|
87438
87926
|
}
|
|
87439
87927
|
export declare type RadarGroupMetrics = {
|
|
@@ -87564,7 +88052,7 @@ export declare type RadarPositionsByAriObject = MercuryFocusArea;
|
|
|
87564
88052
|
export declare type RadarPositionsByEntity = {
|
|
87565
88053
|
__typename?: 'RadarPositionsByEntity';
|
|
87566
88054
|
entity?: Maybe<RadarPositionsByAriObject>;
|
|
87567
|
-
entityId
|
|
88055
|
+
entityId?: Maybe<Scalars['ID']['output']>;
|
|
87568
88056
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
87569
88057
|
id: Scalars['ID']['output'];
|
|
87570
88058
|
type: RadarEntityType;
|
|
@@ -90135,6 +90623,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
90135
90623
|
assignees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
90136
90624
|
containerAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
90137
90625
|
containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
90626
|
+
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
90138
90627
|
createdBy?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
90139
90628
|
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
90140
90629
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -93076,6 +93565,7 @@ export declare type SpaceWithExemption = {
|
|
|
93076
93565
|
};
|
|
93077
93566
|
export declare type SpfAsk = Node & {
|
|
93078
93567
|
__typename?: 'SpfAsk';
|
|
93568
|
+
activities?: Maybe<SpfAskActivityConnection>;
|
|
93079
93569
|
comments?: Maybe<SpfAskCommentConnection>;
|
|
93080
93570
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
93081
93571
|
createdBy?: Maybe<User>;
|
|
@@ -93102,6 +93592,12 @@ export declare type SpfAsk = Node & {
|
|
|
93102
93592
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
93103
93593
|
updatedBy?: Maybe<User>;
|
|
93104
93594
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
93595
|
+
updates?: Maybe<SpfAskUpdateConnection>;
|
|
93596
|
+
};
|
|
93597
|
+
export declare type SpfAskActivitiesArgs = {
|
|
93598
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
93599
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
93600
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
93105
93601
|
};
|
|
93106
93602
|
export declare type SpfAskCommentsArgs = {
|
|
93107
93603
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -93113,6 +93609,117 @@ export declare type SpfAskLinksArgs = {
|
|
|
93113
93609
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
93114
93610
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
93115
93611
|
};
|
|
93612
|
+
export declare type SpfAskUpdatesArgs = {
|
|
93613
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
93614
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
93615
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
93616
|
+
};
|
|
93617
|
+
export declare type SpfAskActivity = {
|
|
93618
|
+
__typename?: 'SpfAskActivity';
|
|
93619
|
+
askActivityType: SpfAskActivityType;
|
|
93620
|
+
askId: Scalars['String']['output'];
|
|
93621
|
+
askUpdatedAt: Scalars['DateTime']['output'];
|
|
93622
|
+
askUpdatedByUser?: Maybe<User>;
|
|
93623
|
+
askUpdatedByUserId: Scalars['String']['output'];
|
|
93624
|
+
id: Scalars['ID']['output'];
|
|
93625
|
+
updatedValues?: Maybe<Array<Maybe<SpfAskActivityUpdatedValue>>>;
|
|
93626
|
+
};
|
|
93627
|
+
export declare enum SpfAskActivityAttribute {
|
|
93628
|
+
Description = "DESCRIPTION",
|
|
93629
|
+
ImpactedWork = "IMPACTED_WORK",
|
|
93630
|
+
Justification = "JUSTIFICATION",
|
|
93631
|
+
Link = "LINK",
|
|
93632
|
+
Name = "NAME",
|
|
93633
|
+
Owner = "OWNER",
|
|
93634
|
+
Priority = "PRIORITY",
|
|
93635
|
+
ReceivingTeam = "RECEIVING_TEAM",
|
|
93636
|
+
Status = "STATUS",
|
|
93637
|
+
Submitter = "SUBMITTER",
|
|
93638
|
+
SubmittingTeam = "SUBMITTING_TEAM",
|
|
93639
|
+
TargetDate = "TARGET_DATE"
|
|
93640
|
+
}
|
|
93641
|
+
export declare type SpfAskActivityConnection = {
|
|
93642
|
+
__typename?: 'SpfAskActivityConnection';
|
|
93643
|
+
edges?: Maybe<Array<Maybe<SpfAskActivityEdge>>>;
|
|
93644
|
+
pageInfo: PageInfo;
|
|
93645
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
93646
|
+
};
|
|
93647
|
+
export declare type SpfAskActivityEdge = {
|
|
93648
|
+
__typename?: 'SpfAskActivityEdge';
|
|
93649
|
+
cursor: Scalars['String']['output'];
|
|
93650
|
+
node?: Maybe<SpfAskActivityResult>;
|
|
93651
|
+
};
|
|
93652
|
+
export declare type SpfAskActivityLink = {
|
|
93653
|
+
__typename?: 'SpfAskActivityLink';
|
|
93654
|
+
linkText?: Maybe<Scalars['String']['output']>;
|
|
93655
|
+
linkUrl?: Maybe<Scalars['String']['output']>;
|
|
93656
|
+
};
|
|
93657
|
+
export declare type SpfAskActivityResult = QueryError | SpfAskActivity;
|
|
93658
|
+
export declare enum SpfAskActivityType {
|
|
93659
|
+
Created = "CREATED",
|
|
93660
|
+
Updated = "UPDATED"
|
|
93661
|
+
}
|
|
93662
|
+
export declare type SpfAskActivityUpdatedDocument = SpfAskActivityUpdatedValue & {
|
|
93663
|
+
__typename?: 'SpfAskActivityUpdatedDocument';
|
|
93664
|
+
attribute: SpfAskActivityAttribute;
|
|
93665
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
93666
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
93667
|
+
};
|
|
93668
|
+
export declare type SpfAskActivityUpdatedImpactedWork = SpfAskActivityUpdatedValue & {
|
|
93669
|
+
__typename?: 'SpfAskActivityUpdatedImpactedWork';
|
|
93670
|
+
attribute: SpfAskActivityAttribute;
|
|
93671
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
93672
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
93673
|
+
};
|
|
93674
|
+
export declare type SpfAskActivityUpdatedLink = SpfAskActivityUpdatedValue & {
|
|
93675
|
+
__typename?: 'SpfAskActivityUpdatedLink';
|
|
93676
|
+
attribute: SpfAskActivityAttribute;
|
|
93677
|
+
newValue?: Maybe<SpfAskActivityLink>;
|
|
93678
|
+
oldValue?: Maybe<SpfAskActivityLink>;
|
|
93679
|
+
};
|
|
93680
|
+
export declare type SpfAskActivityUpdatedPriority = SpfAskActivityUpdatedValue & {
|
|
93681
|
+
__typename?: 'SpfAskActivityUpdatedPriority';
|
|
93682
|
+
attribute: SpfAskActivityAttribute;
|
|
93683
|
+
newValue?: Maybe<SpfAskPriority>;
|
|
93684
|
+
oldValue?: Maybe<SpfAskPriority>;
|
|
93685
|
+
};
|
|
93686
|
+
export declare type SpfAskActivityUpdatedStatus = SpfAskActivityUpdatedValue & {
|
|
93687
|
+
__typename?: 'SpfAskActivityUpdatedStatus';
|
|
93688
|
+
attribute: SpfAskActivityAttribute;
|
|
93689
|
+
newValue?: Maybe<SpfAskStatus>;
|
|
93690
|
+
oldValue?: Maybe<SpfAskStatus>;
|
|
93691
|
+
};
|
|
93692
|
+
export declare type SpfAskActivityUpdatedString = SpfAskActivityUpdatedValue & {
|
|
93693
|
+
__typename?: 'SpfAskActivityUpdatedString';
|
|
93694
|
+
attribute: SpfAskActivityAttribute;
|
|
93695
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
93696
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
93697
|
+
};
|
|
93698
|
+
export declare type SpfAskActivityUpdatedTargetDate = SpfAskActivityUpdatedValue & {
|
|
93699
|
+
__typename?: 'SpfAskActivityUpdatedTargetDate';
|
|
93700
|
+
attribute: SpfAskActivityAttribute;
|
|
93701
|
+
newValue?: Maybe<SpfAskTargetDate>;
|
|
93702
|
+
oldValue?: Maybe<SpfAskTargetDate>;
|
|
93703
|
+
};
|
|
93704
|
+
export declare type SpfAskActivityUpdatedTeam = SpfAskActivityUpdatedValue & {
|
|
93705
|
+
__typename?: 'SpfAskActivityUpdatedTeam';
|
|
93706
|
+
attribute: SpfAskActivityAttribute;
|
|
93707
|
+
newTeam?: Maybe<TeamV2>;
|
|
93708
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
93709
|
+
oldTeam?: Maybe<TeamV2>;
|
|
93710
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
93711
|
+
};
|
|
93712
|
+
export declare type SpfAskActivityUpdatedUser = SpfAskActivityUpdatedValue & {
|
|
93713
|
+
__typename?: 'SpfAskActivityUpdatedUser';
|
|
93714
|
+
attribute: SpfAskActivityAttribute;
|
|
93715
|
+
newUser?: Maybe<User>;
|
|
93716
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
93717
|
+
oldUser?: Maybe<User>;
|
|
93718
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
93719
|
+
};
|
|
93720
|
+
export declare type SpfAskActivityUpdatedValue = {
|
|
93721
|
+
attribute: SpfAskActivityAttribute;
|
|
93722
|
+
};
|
|
93116
93723
|
export declare type SpfAskComment = {
|
|
93117
93724
|
__typename?: 'SpfAskComment';
|
|
93118
93725
|
askId: Scalars['String']['output'];
|
|
@@ -93151,6 +93758,7 @@ export declare type SpfAskLink = {
|
|
|
93151
93758
|
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
93152
93759
|
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
93153
93760
|
id: Scalars['ID']['output'];
|
|
93761
|
+
linkText?: Maybe<Scalars['String']['output']>;
|
|
93154
93762
|
url: Scalars['URL']['output'];
|
|
93155
93763
|
};
|
|
93156
93764
|
export declare type SpfAskLinkConnection = {
|
|
@@ -93202,8 +93810,52 @@ export declare type SpfAskTransition = {
|
|
|
93202
93810
|
status?: Maybe<SpfAskStatus>;
|
|
93203
93811
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
93204
93812
|
};
|
|
93813
|
+
export declare type SpfAskUpdate = {
|
|
93814
|
+
__typename?: 'SpfAskUpdate';
|
|
93815
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
93816
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
93817
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
93818
|
+
id: Scalars['ID']['output'];
|
|
93819
|
+
newStatus?: Maybe<SpfAskStatus>;
|
|
93820
|
+
newTargetDate?: Maybe<SpfAskTargetDate>;
|
|
93821
|
+
oldStatus?: Maybe<SpfAskStatus>;
|
|
93822
|
+
oldTargetDate?: Maybe<SpfAskTargetDate>;
|
|
93823
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
93824
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
93825
|
+
};
|
|
93826
|
+
export declare type SpfAskUpdateConnection = {
|
|
93827
|
+
__typename?: 'SpfAskUpdateConnection';
|
|
93828
|
+
edges?: Maybe<Array<Maybe<SpfAskUpdateEdge>>>;
|
|
93829
|
+
pageInfo: PageInfo;
|
|
93830
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
93831
|
+
};
|
|
93832
|
+
export declare type SpfAskUpdateDescriptionInput = {
|
|
93833
|
+
description: Scalars['String']['input'];
|
|
93834
|
+
id: Scalars['ID']['input'];
|
|
93835
|
+
};
|
|
93836
|
+
export declare type SpfAskUpdateEdge = {
|
|
93837
|
+
__typename?: 'SpfAskUpdateEdge';
|
|
93838
|
+
cursor: Scalars['String']['output'];
|
|
93839
|
+
node?: Maybe<SpfAskUpdateResult>;
|
|
93840
|
+
};
|
|
93841
|
+
export declare type SpfAskUpdatePayload = Payload & {
|
|
93842
|
+
__typename?: 'SpfAskUpdatePayload';
|
|
93843
|
+
askUpdate?: Maybe<SpfAskUpdate>;
|
|
93844
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93845
|
+
success: Scalars['Boolean']['output'];
|
|
93846
|
+
};
|
|
93847
|
+
export declare type SpfAskUpdateResult = QueryError | SpfAskUpdate;
|
|
93848
|
+
export declare type SpfAskUpdateStatusInput = {
|
|
93849
|
+
id: Scalars['ID']['input'];
|
|
93850
|
+
status: SpfAskStatus;
|
|
93851
|
+
};
|
|
93852
|
+
export declare type SpfAskUpdateTargetDateInput = {
|
|
93853
|
+
id: Scalars['ID']['input'];
|
|
93854
|
+
targetDate: SpfAskTargetDateInput;
|
|
93855
|
+
};
|
|
93205
93856
|
export declare type SpfAttachAskLinkInput = {
|
|
93206
93857
|
askId: Scalars['ID']['input'];
|
|
93858
|
+
linkText?: InputMaybe<Scalars['String']['input']>;
|
|
93207
93859
|
url: Scalars['URL']['input'];
|
|
93208
93860
|
};
|
|
93209
93861
|
export declare type SpfAttachAskLinkPayload = Payload & {
|
|
@@ -93242,6 +93894,18 @@ export declare type SpfCreateAskPayload = Payload & {
|
|
|
93242
93894
|
errors?: Maybe<Array<MutationError>>;
|
|
93243
93895
|
success: Scalars['Boolean']['output'];
|
|
93244
93896
|
};
|
|
93897
|
+
export declare type SpfCreateAskUpdateInput = {
|
|
93898
|
+
askId: Scalars['String']['input'];
|
|
93899
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
93900
|
+
status?: InputMaybe<SpfAskStatus>;
|
|
93901
|
+
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
93902
|
+
};
|
|
93903
|
+
export declare type SpfCreateAskUpdatePayload = Payload & {
|
|
93904
|
+
__typename?: 'SpfCreateAskUpdatePayload';
|
|
93905
|
+
askUpdate?: Maybe<SpfAskUpdate>;
|
|
93906
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93907
|
+
success: Scalars['Boolean']['output'];
|
|
93908
|
+
};
|
|
93245
93909
|
export declare type SpfDeleteAskCommentInput = {
|
|
93246
93910
|
id: Scalars['ID']['input'];
|
|
93247
93911
|
};
|
|
@@ -93269,6 +93933,15 @@ export declare type SpfDeleteAskPayload = Payload & {
|
|
|
93269
93933
|
id: Scalars['ID']['output'];
|
|
93270
93934
|
success: Scalars['Boolean']['output'];
|
|
93271
93935
|
};
|
|
93936
|
+
export declare type SpfDeleteAskUpdateInput = {
|
|
93937
|
+
id: Scalars['ID']['input'];
|
|
93938
|
+
};
|
|
93939
|
+
export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
93940
|
+
__typename?: 'SpfDeleteAskUpdatePayload';
|
|
93941
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93942
|
+
id: Scalars['ID']['output'];
|
|
93943
|
+
success: Scalars['Boolean']['output'];
|
|
93944
|
+
};
|
|
93272
93945
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
93273
93946
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
93274
93947
|
data: Scalars['String']['input'];
|
|
@@ -94065,6 +94738,7 @@ export declare type SupportRequestParticipants = {
|
|
|
94065
94738
|
};
|
|
94066
94739
|
export declare type SupportRequestParticipantsInput = {
|
|
94067
94740
|
aaids?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
94741
|
+
emails?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
94068
94742
|
gsacUsernames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
94069
94743
|
requestKey: Scalars['String']['input'];
|
|
94070
94744
|
};
|
|
@@ -94443,6 +95117,7 @@ export declare type TeamSort = {
|
|
|
94443
95117
|
export declare enum TeamSortField {
|
|
94444
95118
|
DisplayName = "DISPLAY_NAME",
|
|
94445
95119
|
Id = "ID",
|
|
95120
|
+
IsVerified = "IS_VERIFIED",
|
|
94446
95121
|
State = "STATE"
|
|
94447
95122
|
}
|
|
94448
95123
|
export declare enum TeamSortOrder {
|
|
@@ -95095,6 +95770,21 @@ export declare type TownsquareCommentEdge = {
|
|
|
95095
95770
|
cursor: Scalars['String']['output'];
|
|
95096
95771
|
node?: Maybe<TownsquareComment>;
|
|
95097
95772
|
};
|
|
95773
|
+
export declare type TownsquareContributor = {
|
|
95774
|
+
__typename?: 'TownsquareContributor';
|
|
95775
|
+
teamContributor?: Maybe<TownsquareTeamContributor>;
|
|
95776
|
+
userContributor?: Maybe<User>;
|
|
95777
|
+
};
|
|
95778
|
+
export declare type TownsquareContributorConnection = {
|
|
95779
|
+
__typename?: 'TownsquareContributorConnection';
|
|
95780
|
+
edges?: Maybe<Array<Maybe<TownsquareContributorEdge>>>;
|
|
95781
|
+
pageInfo: PageInfo;
|
|
95782
|
+
};
|
|
95783
|
+
export declare type TownsquareContributorEdge = {
|
|
95784
|
+
__typename?: 'TownsquareContributorEdge';
|
|
95785
|
+
cursor: Scalars['String']['output'];
|
|
95786
|
+
node?: Maybe<TownsquareContributor>;
|
|
95787
|
+
};
|
|
95098
95788
|
export declare type TownsquareCreateGoalHasJiraAlignProjectInput = {
|
|
95099
95789
|
from: Scalars['String']['input'];
|
|
95100
95790
|
to: Scalars['String']['input'];
|
|
@@ -95442,6 +96132,11 @@ export declare type TownsquareIcon = {
|
|
|
95442
96132
|
id?: Maybe<Scalars['String']['output']>;
|
|
95443
96133
|
shortName?: Maybe<Scalars['String']['output']>;
|
|
95444
96134
|
};
|
|
96135
|
+
export declare type TownsquareIconInput = {
|
|
96136
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
96137
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
96138
|
+
shortName?: InputMaybe<Scalars['String']['input']>;
|
|
96139
|
+
};
|
|
95445
96140
|
export declare type TownsquareIconUrIs = {
|
|
95446
96141
|
__typename?: 'TownsquareIconURIs';
|
|
95447
96142
|
roundedSquare?: Maybe<TownsquareThemeUrIs>;
|
|
@@ -95540,6 +96235,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
95540
96235
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
95541
96236
|
changelog?: Maybe<TownsquareProjectChangelogItemConnection>;
|
|
95542
96237
|
comments?: Maybe<TownsquareCommentConnection>;
|
|
96238
|
+
contributors?: Maybe<TownsquareContributorConnection>;
|
|
95543
96239
|
dependencies?: Maybe<TownsquareProjectDependencyConnection>;
|
|
95544
96240
|
description?: Maybe<TownsquareProjectDescription>;
|
|
95545
96241
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
@@ -95596,6 +96292,10 @@ export declare type TownsquareProjectCommentsArgs = {
|
|
|
95596
96292
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95597
96293
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95598
96294
|
};
|
|
96295
|
+
export declare type TownsquareProjectContributorsArgs = {
|
|
96296
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96297
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96298
|
+
};
|
|
95599
96299
|
export declare type TownsquareProjectDependenciesArgs = {
|
|
95600
96300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95601
96301
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -95800,6 +96500,44 @@ export declare type TownsquareProjectUpdateEdge = {
|
|
|
95800
96500
|
cursor: Scalars['String']['output'];
|
|
95801
96501
|
node?: Maybe<TownsquareProjectUpdate>;
|
|
95802
96502
|
};
|
|
96503
|
+
export declare type TownsquareProjectsCreateLinkInput = {
|
|
96504
|
+
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
96505
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
96506
|
+
projectId: Scalars['ID']['input'];
|
|
96507
|
+
provider?: InputMaybe<Scalars['String']['input']>;
|
|
96508
|
+
type?: InputMaybe<TownsquareLinkType>;
|
|
96509
|
+
url: Scalars['String']['input'];
|
|
96510
|
+
};
|
|
96511
|
+
export declare type TownsquareProjectsCreateLinkMutationErrorExtension = MutationErrorExtension & {
|
|
96512
|
+
__typename?: 'TownsquareProjectsCreateLinkMutationErrorExtension';
|
|
96513
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
96514
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
96515
|
+
};
|
|
96516
|
+
export declare type TownsquareProjectsCreateLinkPayload = {
|
|
96517
|
+
__typename?: 'TownsquareProjectsCreateLinkPayload';
|
|
96518
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96519
|
+
link?: Maybe<TownsquareLink>;
|
|
96520
|
+
project?: Maybe<TownsquareProject>;
|
|
96521
|
+
success: Scalars['Boolean']['output'];
|
|
96522
|
+
};
|
|
96523
|
+
export declare type TownsquareProjectsEditInput = {
|
|
96524
|
+
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
96525
|
+
icon?: InputMaybe<TownsquareIconInput>;
|
|
96526
|
+
id: Scalars['ID']['input'];
|
|
96527
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
96528
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
96529
|
+
};
|
|
96530
|
+
export declare type TownsquareProjectsEditMutationErrorExtension = MutationErrorExtension & {
|
|
96531
|
+
__typename?: 'TownsquareProjectsEditMutationErrorExtension';
|
|
96532
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
96533
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
96534
|
+
};
|
|
96535
|
+
export declare type TownsquareProjectsEditPayload = {
|
|
96536
|
+
__typename?: 'TownsquareProjectsEditPayload';
|
|
96537
|
+
errors?: Maybe<Array<MutationError>>;
|
|
96538
|
+
project?: Maybe<TownsquareProject>;
|
|
96539
|
+
success: Scalars['Boolean']['output'];
|
|
96540
|
+
};
|
|
95803
96541
|
export declare type TownsquareQueryApi = {
|
|
95804
96542
|
__typename?: 'TownsquareQueryApi';
|
|
95805
96543
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -95978,6 +96716,17 @@ export declare type TownsquareTagEdge = {
|
|
|
95978
96716
|
cursor: Scalars['String']['output'];
|
|
95979
96717
|
node?: Maybe<TownsquareTag>;
|
|
95980
96718
|
};
|
|
96719
|
+
export declare enum TownsquareTagSortEnum {
|
|
96720
|
+
EntityCountDesc = "ENTITY_COUNT_DESC",
|
|
96721
|
+
IdAsc = "ID_ASC",
|
|
96722
|
+
IdDesc = "ID_DESC",
|
|
96723
|
+
NameAsc = "NAME_ASC",
|
|
96724
|
+
NameDesc = "NAME_DESC",
|
|
96725
|
+
UsageAsc = "USAGE_ASC",
|
|
96726
|
+
UsageDesc = "USAGE_DESC",
|
|
96727
|
+
WatcherAsc = "WATCHER_ASC",
|
|
96728
|
+
WatcherDesc = "WATCHER_DESC"
|
|
96729
|
+
}
|
|
95981
96730
|
export declare type TownsquareTargetDate = {
|
|
95982
96731
|
__typename?: 'TownsquareTargetDate';
|
|
95983
96732
|
confidence?: Maybe<TownsquareTargetDateType>;
|
|
@@ -96009,6 +96758,15 @@ export declare type TownsquareTeamConnection = {
|
|
|
96009
96758
|
edges?: Maybe<Array<Maybe<TownsquareTeamEdge>>>;
|
|
96010
96759
|
pageInfo: PageInfo;
|
|
96011
96760
|
};
|
|
96761
|
+
export declare type TownsquareTeamContributor = {
|
|
96762
|
+
__typename?: 'TownsquareTeamContributor';
|
|
96763
|
+
contributingMembers?: Maybe<TownsquareUserConnection>;
|
|
96764
|
+
team?: Maybe<TeamV2>;
|
|
96765
|
+
};
|
|
96766
|
+
export declare type TownsquareTeamContributorContributingMembersArgs = {
|
|
96767
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96768
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96769
|
+
};
|
|
96012
96770
|
export declare type TownsquareTeamEdge = {
|
|
96013
96771
|
__typename?: 'TownsquareTeamEdge';
|
|
96014
96772
|
cursor: Scalars['String']['output'];
|
|
@@ -96710,6 +97468,7 @@ export declare type TrelloCard = Node & {
|
|
|
96710
97468
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
96711
97469
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
96712
97470
|
due?: Maybe<TrelloCardDueInfo>;
|
|
97471
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
96713
97472
|
id: Scalars['ID']['output'];
|
|
96714
97473
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
96715
97474
|
labels?: Maybe<TrelloLabelConnection>;
|
|
@@ -97041,6 +97800,7 @@ export declare type TrelloCardUpdated = {
|
|
|
97041
97800
|
customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
|
|
97042
97801
|
description?: Maybe<TrelloUserGeneratedText>;
|
|
97043
97802
|
due?: Maybe<TrelloCardDueInfo>;
|
|
97803
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
97044
97804
|
id: Scalars['ID']['output'];
|
|
97045
97805
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
97046
97806
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
@@ -97350,6 +98110,7 @@ export declare type TrelloCreateOAuth2ApplicationInput = {
|
|
|
97350
98110
|
author: Scalars['String']['input'];
|
|
97351
98111
|
email: Scalars['String']['input'];
|
|
97352
98112
|
iframeUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
98113
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
97353
98114
|
name: Scalars['String']['input'];
|
|
97354
98115
|
supportContact: Scalars['String']['input'];
|
|
97355
98116
|
workspaceId: Scalars['ID']['input'];
|