@forge/cli-shared 8.3.0 → 8.3.1-next.0
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 +7 -0
- package/out/graphql/graphql-types.d.ts +654 -79
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +57 -29
- package/package.json +2 -2
|
@@ -1306,6 +1306,12 @@ export declare type AdminAnnouncementBannerFeature = {
|
|
|
1306
1306
|
__typename?: 'AdminAnnouncementBannerFeature';
|
|
1307
1307
|
isEntitled: Scalars['Boolean']['output'];
|
|
1308
1308
|
};
|
|
1309
|
+
export declare type AdminAnnouncementBannerMutationErrorExtension = MutationErrorExtension & {
|
|
1310
|
+
__typename?: 'AdminAnnouncementBannerMutationErrorExtension';
|
|
1311
|
+
adminAnnouncementBannerList: Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>;
|
|
1312
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
1313
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
1314
|
+
};
|
|
1309
1315
|
export declare type AdminAnnouncementBannerPageInfo = {
|
|
1310
1316
|
__typename?: 'AdminAnnouncementBannerPageInfo';
|
|
1311
1317
|
endPage?: Maybe<Scalars['String']['output']>;
|
|
@@ -1440,6 +1446,7 @@ export declare type AgentStudioAgentsConnection = {
|
|
|
1440
1446
|
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
1441
1447
|
__typename?: 'AgentStudioAssistant';
|
|
1442
1448
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
1449
|
+
behaviour?: Maybe<Scalars['String']['output']>;
|
|
1443
1450
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
1444
1451
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
1445
1452
|
creator?: Maybe<User>;
|
|
@@ -1495,6 +1502,7 @@ export declare type AgentStudioConversationStarterSuggestions = {
|
|
|
1495
1502
|
export declare type AgentStudioCreateAgentInput = {
|
|
1496
1503
|
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
1497
1504
|
agentType: AgentStudioAgentType;
|
|
1505
|
+
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
1498
1506
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1499
1507
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
1500
1508
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1738,6 +1746,7 @@ export declare type AgentStudioUpdateAgentAsFavouritePayload = Payload & {
|
|
|
1738
1746
|
success: Scalars['Boolean']['output'];
|
|
1739
1747
|
};
|
|
1740
1748
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
1749
|
+
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
1741
1750
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
1742
1751
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
1743
1752
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1774,13 +1783,13 @@ export declare type AgentStudioUpdateCreatePermissionModePayload = Payload & {
|
|
|
1774
1783
|
export declare type AgentStudioUpdateScenarioInput = {
|
|
1775
1784
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1776
1785
|
containerId: Scalars['ID']['input'];
|
|
1777
|
-
creatorId
|
|
1778
|
-
instructions
|
|
1779
|
-
invocationDescription
|
|
1780
|
-
isActive
|
|
1781
|
-
isDefault
|
|
1786
|
+
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
1787
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
1788
|
+
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
1789
|
+
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1790
|
+
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1782
1791
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1783
|
-
name
|
|
1792
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1784
1793
|
};
|
|
1785
1794
|
export declare type AgentStudioUpdateScenarioMappingsPayload = Payload & {
|
|
1786
1795
|
__typename?: 'AgentStudioUpdateScenarioMappingsPayload';
|
|
@@ -3715,6 +3724,39 @@ export declare type AssetsDmObjectsListTag = {
|
|
|
3715
3724
|
tagCode: Scalars['Int']['output'];
|
|
3716
3725
|
tagId: Scalars['ID']['output'];
|
|
3717
3726
|
};
|
|
3727
|
+
export declare type AssetsDmPaginationInfo = {
|
|
3728
|
+
__typename?: 'AssetsDMPaginationInfo';
|
|
3729
|
+
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
3730
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
3731
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
3732
|
+
nextPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
3733
|
+
pageSize: Scalars['Int']['output'];
|
|
3734
|
+
previousPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
3735
|
+
totalPages: Scalars['Int']['output'];
|
|
3736
|
+
};
|
|
3737
|
+
export declare type AssetsDmPaginationInput = {
|
|
3738
|
+
pageCursor?: Scalars['Int']['input'];
|
|
3739
|
+
pageSize?: Scalars['Int']['input'];
|
|
3740
|
+
};
|
|
3741
|
+
export declare type AssetsDmRawDataFilter = {
|
|
3742
|
+
__typename?: 'AssetsDMRawDataFilter';
|
|
3743
|
+
name: Scalars['String']['output'];
|
|
3744
|
+
type: Scalars['String']['output'];
|
|
3745
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3746
|
+
valueTo?: Maybe<Scalars['String']['output']>;
|
|
3747
|
+
};
|
|
3748
|
+
export declare type AssetsDmRawDataFilterInput = {
|
|
3749
|
+
name: Scalars['String']['input'];
|
|
3750
|
+
type: Scalars['String']['input'];
|
|
3751
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
3752
|
+
valueTo?: InputMaybe<Scalars['String']['input']>;
|
|
3753
|
+
};
|
|
3754
|
+
export declare type AssetsDmRawDataResponse = {
|
|
3755
|
+
__typename?: 'AssetsDMRawDataResponse';
|
|
3756
|
+
data: Array<Scalars['JSON']['output']>;
|
|
3757
|
+
filters: Array<AssetsDmRawDataFilter>;
|
|
3758
|
+
pagination: AssetsDmPaginationInfo;
|
|
3759
|
+
};
|
|
3718
3760
|
export declare type AssetsDmSchemaObjectType = {
|
|
3719
3761
|
__typename?: 'AssetsDMSchemaObjectType';
|
|
3720
3762
|
id: Scalars['ID']['output'];
|
|
@@ -6966,6 +7008,7 @@ export declare type Comment = {
|
|
|
6966
7008
|
commentSource?: Maybe<Platform>;
|
|
6967
7009
|
container: Content;
|
|
6968
7010
|
contentStatus: Scalars['String']['output'];
|
|
7011
|
+
createdAt: ConfluenceDate;
|
|
6969
7012
|
createdAtNonLocalized: Scalars['String']['output'];
|
|
6970
7013
|
excerpt: Scalars['String']['output'];
|
|
6971
7014
|
id: Scalars['ID']['output'];
|
|
@@ -12583,6 +12626,12 @@ export declare type ConfluenceBulkPdfExportContent = {
|
|
|
12583
12626
|
contentId: Scalars['ID']['input'];
|
|
12584
12627
|
excludedChildrenIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
12585
12628
|
};
|
|
12629
|
+
export declare type ConfluenceCalendarJiraDateField = {
|
|
12630
|
+
__typename?: 'ConfluenceCalendarJiraDateField';
|
|
12631
|
+
isCustomField: Scalars['Boolean']['output'];
|
|
12632
|
+
key: Scalars['String']['output'];
|
|
12633
|
+
name: Scalars['String']['output'];
|
|
12634
|
+
};
|
|
12586
12635
|
export declare type ConfluenceCalendarJqlValidationResult = {
|
|
12587
12636
|
__typename?: 'ConfluenceCalendarJqlValidationResult';
|
|
12588
12637
|
errorMessages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -12709,6 +12758,7 @@ export declare type ConfluenceContentAccessRequest = {
|
|
|
12709
12758
|
lastModifierAaid?: Maybe<Scalars['ID']['output']>;
|
|
12710
12759
|
requestAccessType: ResourceAccessType;
|
|
12711
12760
|
status: ConfluenceContentAccessRequestStatus;
|
|
12761
|
+
user?: Maybe<AtlassianUser>;
|
|
12712
12762
|
};
|
|
12713
12763
|
export declare type ConfluenceContentAccessRequestConnection = {
|
|
12714
12764
|
__typename?: 'ConfluenceContentAccessRequestConnection';
|
|
@@ -12948,7 +12998,7 @@ export declare type ConfluenceCreateCsvExportTaskPayload = Payload & {
|
|
|
12948
12998
|
success: Scalars['Boolean']['output'];
|
|
12949
12999
|
};
|
|
12950
13000
|
export declare type ConfluenceCreateCustomRoleInput = {
|
|
12951
|
-
description
|
|
13001
|
+
description: Scalars['String']['input'];
|
|
12952
13002
|
name: Scalars['String']['input'];
|
|
12953
13003
|
permissions: Array<InputMaybe<Scalars['String']['input']>>;
|
|
12954
13004
|
};
|
|
@@ -13055,6 +13105,7 @@ export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
|
13055
13105
|
};
|
|
13056
13106
|
export declare type ConfluenceDataRetentionPolicyStatus = {
|
|
13057
13107
|
__typename?: 'ConfluenceDataRetentionPolicyStatus';
|
|
13108
|
+
disabledOnDate?: Maybe<ConfluenceDate>;
|
|
13058
13109
|
policyEnabledStatus: ConfluencePolicyEnabledStatus;
|
|
13059
13110
|
};
|
|
13060
13111
|
export declare type ConfluenceDatabase = Node & {
|
|
@@ -13078,6 +13129,10 @@ export declare type ConfluenceDatabaseLinks = {
|
|
|
13078
13129
|
base?: Maybe<Scalars['String']['output']>;
|
|
13079
13130
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
13080
13131
|
};
|
|
13132
|
+
export declare type ConfluenceDate = {
|
|
13133
|
+
__typename?: 'ConfluenceDate';
|
|
13134
|
+
value: Scalars['String']['output'];
|
|
13135
|
+
};
|
|
13081
13136
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
13082
13137
|
blogPostId: Scalars['ID']['input'];
|
|
13083
13138
|
key: Scalars['String']['input'];
|
|
@@ -13292,7 +13347,13 @@ export declare type ConfluenceExtensionPrincipal = {
|
|
|
13292
13347
|
id?: Maybe<Scalars['ID']['output']>;
|
|
13293
13348
|
};
|
|
13294
13349
|
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
13295
|
-
spaceId
|
|
13350
|
+
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
13351
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
13352
|
+
};
|
|
13353
|
+
export declare type ConfluenceExtensionSpecificContext = {
|
|
13354
|
+
appVersion: Scalars['String']['input'];
|
|
13355
|
+
context: ConfluenceForgePayloadContext;
|
|
13356
|
+
extensionId: Scalars['String']['input'];
|
|
13296
13357
|
};
|
|
13297
13358
|
export declare enum ConfluenceExtensionVisibilityControlMechanism {
|
|
13298
13359
|
AppAccessRules = "APP_ACCESS_RULES",
|
|
@@ -13353,11 +13414,28 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
13353
13414
|
name?: Maybe<Scalars['String']['output']>;
|
|
13354
13415
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
13355
13416
|
};
|
|
13417
|
+
export declare type ConfluenceForgeContextToken = {
|
|
13418
|
+
__typename?: 'ConfluenceForgeContextToken';
|
|
13419
|
+
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
13420
|
+
extensionId?: Maybe<Scalars['String']['output']>;
|
|
13421
|
+
jwt?: Maybe<Scalars['String']['output']>;
|
|
13422
|
+
};
|
|
13423
|
+
export declare type ConfluenceForgeContextTokenPayload = {
|
|
13424
|
+
__typename?: 'ConfluenceForgeContextTokenPayload';
|
|
13425
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13426
|
+
forgeContextToken?: Maybe<ConfluenceForgeContextToken>;
|
|
13427
|
+
success: Scalars['Boolean']['output'];
|
|
13428
|
+
};
|
|
13429
|
+
export declare type ConfluenceForgeContextTokenRequestInput = {
|
|
13430
|
+
contextIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
13431
|
+
extensionSpecificContexts: ConfluenceExtensionSpecificContext;
|
|
13432
|
+
};
|
|
13356
13433
|
export declare type ConfluenceForgeExtension = {
|
|
13357
13434
|
__typename?: 'ConfluenceForgeExtension';
|
|
13358
13435
|
appId: Scalars['ID']['output'];
|
|
13359
13436
|
appOwner?: Maybe<Scalars['String']['output']>;
|
|
13360
13437
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
13438
|
+
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
13361
13439
|
definitionId: Scalars['ID']['output'];
|
|
13362
13440
|
egress?: Maybe<Array<ConfluenceExtensionEgressDeclaration>>;
|
|
13363
13441
|
environmentId: Scalars['ID']['output'];
|
|
@@ -13374,6 +13452,25 @@ export declare type ConfluenceForgeExtension = {
|
|
|
13374
13452
|
scopes: Array<Maybe<Scalars['String']['output']>>;
|
|
13375
13453
|
type: Scalars['String']['output'];
|
|
13376
13454
|
};
|
|
13455
|
+
export declare type ConfluenceForgeExtensionData = {
|
|
13456
|
+
content?: InputMaybe<ConfluenceForgeExtensionDataContent>;
|
|
13457
|
+
isConfig?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13458
|
+
space?: InputMaybe<ConfluenceForgeExtensionDataSpace>;
|
|
13459
|
+
type: Scalars['String']['input'];
|
|
13460
|
+
};
|
|
13461
|
+
export declare type ConfluenceForgeExtensionDataContent = {
|
|
13462
|
+
id: Scalars['ID']['input'];
|
|
13463
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
13464
|
+
};
|
|
13465
|
+
export declare type ConfluenceForgeExtensionDataSpace = {
|
|
13466
|
+
id?: InputMaybe<Scalars['Long']['input']>;
|
|
13467
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
13468
|
+
};
|
|
13469
|
+
export declare type ConfluenceForgePayloadContext = {
|
|
13470
|
+
extension: ConfluenceForgeExtensionData;
|
|
13471
|
+
localId?: InputMaybe<Scalars['String']['input']>;
|
|
13472
|
+
moduleKey?: InputMaybe<Scalars['String']['input']>;
|
|
13473
|
+
};
|
|
13377
13474
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
13378
13475
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
13379
13476
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -13495,6 +13592,17 @@ export declare enum ConfluenceInlineTaskStatus {
|
|
|
13495
13592
|
Complete = "COMPLETE",
|
|
13496
13593
|
Incomplete = "INCOMPLETE"
|
|
13497
13594
|
}
|
|
13595
|
+
export declare type ConfluenceInsertOfflineVersionInput = {
|
|
13596
|
+
adfContent: Scalars['String']['input'];
|
|
13597
|
+
contentId: Scalars['ID']['input'];
|
|
13598
|
+
versionComment?: InputMaybe<Scalars['String']['input']>;
|
|
13599
|
+
};
|
|
13600
|
+
export declare type ConfluenceInsertOfflineVersionPayload = Payload & {
|
|
13601
|
+
__typename?: 'ConfluenceInsertOfflineVersionPayload';
|
|
13602
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13603
|
+
success: Scalars['Boolean']['output'];
|
|
13604
|
+
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
13605
|
+
};
|
|
13498
13606
|
export declare type ConfluenceInviteUserInput = {
|
|
13499
13607
|
inviteeIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
13500
13608
|
};
|
|
@@ -14354,6 +14462,11 @@ export declare enum ConfluenceSpaceOwnerType {
|
|
|
14354
14462
|
Group = "GROUP",
|
|
14355
14463
|
User = "USER"
|
|
14356
14464
|
}
|
|
14465
|
+
export declare type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
14466
|
+
__typename?: 'ConfluenceSpaceRoleAppPrincipal';
|
|
14467
|
+
displayName: Scalars['String']['output'];
|
|
14468
|
+
principalId: Scalars['ID']['output'];
|
|
14469
|
+
};
|
|
14357
14470
|
export declare enum ConfluenceSpaceRoleMode {
|
|
14358
14471
|
PreRoles = "PRE_ROLES",
|
|
14359
14472
|
Roles = "ROLES",
|
|
@@ -14567,9 +14680,11 @@ export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
|
14567
14680
|
success: Scalars['Boolean']['output'];
|
|
14568
14681
|
};
|
|
14569
14682
|
export declare type ConfluenceUpdateCustomRoleInput = {
|
|
14570
|
-
|
|
14571
|
-
|
|
14572
|
-
|
|
14683
|
+
anonymousReassignmentRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
14684
|
+
description: Scalars['String']['input'];
|
|
14685
|
+
guestReassignmentRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
14686
|
+
name: Scalars['String']['input'];
|
|
14687
|
+
permissions: Array<InputMaybe<Scalars['String']['input']>>;
|
|
14573
14688
|
roleId: Scalars['ID']['input'];
|
|
14574
14689
|
};
|
|
14575
14690
|
export declare type ConfluenceUpdateCustomRolePayload = Payload & {
|
|
@@ -14759,6 +14874,10 @@ export declare enum ConfluenceViewState {
|
|
|
14759
14874
|
Live = "LIVE",
|
|
14760
14875
|
Renderer = "RENDERER"
|
|
14761
14876
|
}
|
|
14877
|
+
export declare type ConfluenceWacTemplate = {
|
|
14878
|
+
__typename?: 'ConfluenceWacTemplate';
|
|
14879
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
14880
|
+
};
|
|
14762
14881
|
export declare type ConfluenceWatchSubCalendarInput = {
|
|
14763
14882
|
subCalendarId: Scalars['ID']['input'];
|
|
14764
14883
|
};
|
|
@@ -14979,7 +15098,6 @@ export declare type Content = {
|
|
|
14979
15098
|
children?: Maybe<PaginatedContentList>;
|
|
14980
15099
|
classificationLevelDetails?: Maybe<ClassificationLevelDetails>;
|
|
14981
15100
|
classificationLevelId?: Maybe<Scalars['String']['output']>;
|
|
14982
|
-
classificationLevelMetadata?: Maybe<ContentDataClassificationLevel>;
|
|
14983
15101
|
classificationLevelOverrideId?: Maybe<Scalars['String']['output']>;
|
|
14984
15102
|
comments?: Maybe<PaginatedContentList>;
|
|
14985
15103
|
container?: Maybe<SpaceOrContent>;
|
|
@@ -14989,6 +15107,7 @@ export declare type Content = {
|
|
|
14989
15107
|
contentProperties?: Maybe<ContentProperties>;
|
|
14990
15108
|
contentReactionsSummary?: Maybe<ReactionsSummaryResponse>;
|
|
14991
15109
|
contentState?: Maybe<ContentState>;
|
|
15110
|
+
contentStateLastUpdated?: Maybe<ConfluenceDate>;
|
|
14992
15111
|
creatorId?: Maybe<Scalars['String']['output']>;
|
|
14993
15112
|
currentUserHasAncestorWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
14994
15113
|
currentUserIsWatching: Scalars['Boolean']['output'];
|
|
@@ -15067,11 +15186,16 @@ export declare type ContentCommentsArgs = {
|
|
|
15067
15186
|
};
|
|
15068
15187
|
export declare type ContentContentAnalyticsViewsByUserArgs = {
|
|
15069
15188
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
15189
|
+
engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
15190
|
+
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15070
15191
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15071
15192
|
};
|
|
15072
15193
|
export declare type ContentContentStateArgs = {
|
|
15073
15194
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15074
15195
|
};
|
|
15196
|
+
export declare type ContentContentStateLastUpdatedArgs = {
|
|
15197
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
15198
|
+
};
|
|
15075
15199
|
export declare type ContentDynamicMobileBodyArgs = {
|
|
15076
15200
|
imageLazyLoading?: Scalars['Boolean']['input'];
|
|
15077
15201
|
pagePropertiesReportMacroRenderAtServer?: Scalars['Boolean']['input'];
|
|
@@ -17978,6 +18102,7 @@ export declare type CsmAiAgentVersion = {
|
|
|
17978
18102
|
agentIdentityConfig?: Maybe<CsmAiAgentIdentityConfigResult>;
|
|
17979
18103
|
coachingContents?: Maybe<Array<CsmAiCoachingContentResult>>;
|
|
17980
18104
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
|
|
18105
|
+
knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
|
|
17981
18106
|
versionId: Scalars['ID']['output'];
|
|
17982
18107
|
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
17983
18108
|
versionType?: Maybe<Scalars['String']['output']>;
|
|
@@ -17990,6 +18115,7 @@ export declare type CsmAiAgentVersionConnection = {
|
|
|
17990
18115
|
nodes?: Maybe<Array<CsmAiAgentVersion>>;
|
|
17991
18116
|
pageInfo: PageInfo;
|
|
17992
18117
|
};
|
|
18118
|
+
export declare type CsmAiAgentVersionResult = CsmAiAgentVersion | QueryError;
|
|
17993
18119
|
export declare type CsmAiApiOperation = {
|
|
17994
18120
|
__typename?: 'CsmAiApiOperation';
|
|
17995
18121
|
headers?: Maybe<Array<Maybe<CsmAiKeyValuePair>>>;
|
|
@@ -18028,6 +18154,11 @@ export declare type CsmAiAuthoredCoachingContentInput = {
|
|
|
18028
18154
|
triggerConditionByCoach?: InputMaybe<Scalars['String']['input']>;
|
|
18029
18155
|
};
|
|
18030
18156
|
export declare type CsmAiCoachingContentResult = CsmAiAgentCoachingContent | QueryError;
|
|
18157
|
+
export declare type CsmAiConfluenceKnowledgeFilter = {
|
|
18158
|
+
__typename?: 'CsmAiConfluenceKnowledgeFilter';
|
|
18159
|
+
parentFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
18160
|
+
spaceFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
18161
|
+
};
|
|
18031
18162
|
export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
|
|
18032
18163
|
export declare type CsmAiConnectorConfigurationInput = {
|
|
18033
18164
|
messageHandoff?: InputMaybe<CsmAiMessageHandoffInput>;
|
|
@@ -18125,6 +18256,21 @@ export declare type CsmAiKeyValuePair = {
|
|
|
18125
18256
|
key?: Maybe<Scalars['String']['output']>;
|
|
18126
18257
|
value?: Maybe<Scalars['String']['output']>;
|
|
18127
18258
|
};
|
|
18259
|
+
export declare type CsmAiKnowledgeCollection = {
|
|
18260
|
+
__typename?: 'CsmAiKnowledgeCollection';
|
|
18261
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
18262
|
+
id: Scalars['ID']['output'];
|
|
18263
|
+
sources?: Maybe<Array<CsmAiKnowledgeSource>>;
|
|
18264
|
+
};
|
|
18265
|
+
export declare type CsmAiKnowledgeCollectionResult = CsmAiKnowledgeCollection | QueryError;
|
|
18266
|
+
export declare type CsmAiKnowledgeFilter = CsmAiConfluenceKnowledgeFilter;
|
|
18267
|
+
export declare type CsmAiKnowledgeSource = {
|
|
18268
|
+
__typename?: 'CsmAiKnowledgeSource';
|
|
18269
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
18270
|
+
filters: CsmAiKnowledgeFilter;
|
|
18271
|
+
id: Scalars['ID']['output'];
|
|
18272
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
18273
|
+
};
|
|
18128
18274
|
export declare type CsmAiMessageHandoff = {
|
|
18129
18275
|
__typename?: 'CsmAiMessageHandoff';
|
|
18130
18276
|
message: Scalars['String']['output'];
|
|
@@ -19894,6 +20040,14 @@ export declare type DeleteEventSourcePayload = Payload & {
|
|
|
19894
20040
|
errors?: Maybe<Array<MutationError>>;
|
|
19895
20041
|
success: Scalars['Boolean']['output'];
|
|
19896
20042
|
};
|
|
20043
|
+
export declare type DeleteExCoSpacePermissionsInput = {
|
|
20044
|
+
accountId: Scalars['String']['input'];
|
|
20045
|
+
};
|
|
20046
|
+
export declare type DeleteExCoSpacePermissionsPayload = Payload & {
|
|
20047
|
+
__typename?: 'DeleteExCoSpacePermissionsPayload';
|
|
20048
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20049
|
+
success: Scalars['Boolean']['output'];
|
|
20050
|
+
};
|
|
19897
20051
|
export declare type DeleteInlineCommentInput = {
|
|
19898
20052
|
commentId: Scalars['ID']['input'];
|
|
19899
20053
|
step?: InputMaybe<Step>;
|
|
@@ -25242,51 +25396,6 @@ export declare enum ForgeMetricsApiRequestType {
|
|
|
25242
25396
|
Product = "PRODUCT",
|
|
25243
25397
|
Sql = "SQL"
|
|
25244
25398
|
}
|
|
25245
|
-
export declare type ForgeMetricsChartInsightChoiceData = {
|
|
25246
|
-
__typename?: 'ForgeMetricsChartInsightChoiceData';
|
|
25247
|
-
finishReason: Scalars['String']['output'];
|
|
25248
|
-
index: Scalars['Int']['output'];
|
|
25249
|
-
message: ForgeMetricsChartInsightChoiceMessageData;
|
|
25250
|
-
};
|
|
25251
|
-
export declare type ForgeMetricsChartInsightChoiceMessageData = {
|
|
25252
|
-
__typename?: 'ForgeMetricsChartInsightChoiceMessageData';
|
|
25253
|
-
content: Scalars['String']['output'];
|
|
25254
|
-
role: Scalars['String']['output'];
|
|
25255
|
-
};
|
|
25256
|
-
export declare type ForgeMetricsChartInsightData = {
|
|
25257
|
-
__typename?: 'ForgeMetricsChartInsightData';
|
|
25258
|
-
choices: Array<ForgeMetricsChartInsightChoiceData>;
|
|
25259
|
-
created: Scalars['Int']['output'];
|
|
25260
|
-
id: Scalars['ID']['output'];
|
|
25261
|
-
model: Scalars['String']['output'];
|
|
25262
|
-
object: Scalars['String']['output'];
|
|
25263
|
-
usage: ForgeMetricsChartInsightUsage;
|
|
25264
|
-
};
|
|
25265
|
-
export declare type ForgeMetricsChartInsightQueryInput = {
|
|
25266
|
-
apiRequestChartFilters?: InputMaybe<ForgeMetricsApiRequestQueryFilters>;
|
|
25267
|
-
apiRequestGroupBy?: InputMaybe<Array<ForgeMetricsApiRequestGroupByDimensions>>;
|
|
25268
|
-
chartName?: InputMaybe<ForgeMetricsChartName>;
|
|
25269
|
-
invocationChartFilters?: InputMaybe<ForgeMetricsQueryFilters>;
|
|
25270
|
-
invocationGroupBy?: InputMaybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
25271
|
-
latencyBucketsChartFilters?: InputMaybe<ForgeMetricsLatencyBucketsQueryFilters>;
|
|
25272
|
-
};
|
|
25273
|
-
export declare type ForgeMetricsChartInsightResult = ForgeMetricsChartInsightData | QueryError;
|
|
25274
|
-
export declare type ForgeMetricsChartInsightUsage = {
|
|
25275
|
-
__typename?: 'ForgeMetricsChartInsightUsage';
|
|
25276
|
-
completionTokens: Scalars['Int']['output'];
|
|
25277
|
-
promptTokens: Scalars['Int']['output'];
|
|
25278
|
-
totalTokens: Scalars['Int']['output'];
|
|
25279
|
-
};
|
|
25280
|
-
export declare enum ForgeMetricsChartName {
|
|
25281
|
-
ApiRequestCount_2Xx = "API_REQUEST_COUNT_2XX",
|
|
25282
|
-
ApiRequestCount_4Xx = "API_REQUEST_COUNT_4XX",
|
|
25283
|
-
ApiRequestCount_5Xx = "API_REQUEST_COUNT_5XX",
|
|
25284
|
-
ApiRequestLatency = "API_REQUEST_LATENCY",
|
|
25285
|
-
InvocationCount = "INVOCATION_COUNT",
|
|
25286
|
-
InvocationError = "INVOCATION_ERROR",
|
|
25287
|
-
InvocationLatency = "INVOCATION_LATENCY",
|
|
25288
|
-
InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
|
|
25289
|
-
}
|
|
25290
25399
|
export declare enum ForgeMetricsContexts {
|
|
25291
25400
|
Compass = "COMPASS",
|
|
25292
25401
|
Confluence = "CONFLUENCE",
|
|
@@ -25514,7 +25623,6 @@ export declare type ForgeMetricsQuery = {
|
|
|
25514
25623
|
appId: Scalars['ID']['output'];
|
|
25515
25624
|
appMetrics: ForgeMetricsOtlpResult;
|
|
25516
25625
|
cacheHitRate: ForgeMetricsSuccessRateResult;
|
|
25517
|
-
chartInsight: ForgeMetricsChartInsightResult;
|
|
25518
25626
|
customMetrics: ForgeMetricsInvocationsResult;
|
|
25519
25627
|
customMetricsMetaData: ForgeMetricsCustomResult;
|
|
25520
25628
|
errors: ForgeMetricsErrorsResult;
|
|
@@ -25549,9 +25657,6 @@ export declare type ForgeMetricsQueryAppMetricsArgs = {
|
|
|
25549
25657
|
export declare type ForgeMetricsQueryCacheHitRateArgs = {
|
|
25550
25658
|
query: ForgeMetricsApiRequestQueryInput;
|
|
25551
25659
|
};
|
|
25552
|
-
export declare type ForgeMetricsQueryChartInsightArgs = {
|
|
25553
|
-
query: ForgeMetricsChartInsightQueryInput;
|
|
25554
|
-
};
|
|
25555
25660
|
export declare type ForgeMetricsQueryCustomMetricsArgs = {
|
|
25556
25661
|
query: ForgeMetricsCustomQueryInput;
|
|
25557
25662
|
};
|
|
@@ -27309,6 +27414,12 @@ export declare enum GraphQlCoverPictureWidth {
|
|
|
27309
27414
|
Fixed = "FIXED",
|
|
27310
27415
|
Full = "FULL"
|
|
27311
27416
|
}
|
|
27417
|
+
export declare enum GraphQlDateFormat {
|
|
27418
|
+
Global = "GLOBAL",
|
|
27419
|
+
Millis = "MILLIS",
|
|
27420
|
+
User = "USER",
|
|
27421
|
+
UserFriendly = "USER_FRIENDLY"
|
|
27422
|
+
}
|
|
27312
27423
|
export declare enum GraphQlFrontCoverState {
|
|
27313
27424
|
Hidden = "HIDDEN",
|
|
27314
27425
|
Shown = "SHOWN",
|
|
@@ -29564,6 +29675,16 @@ export declare type GraphStore = {
|
|
|
29564
29675
|
appInstallationAssociatedToOperationsWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
|
|
29565
29676
|
appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
29566
29677
|
appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
29678
|
+
askHasImpactedWork?: Maybe<GraphStoreSimplifiedAskHasImpactedWorkConnection>;
|
|
29679
|
+
askHasImpactedWorkInverse?: Maybe<GraphStoreSimplifiedAskHasImpactedWorkInverseConnection>;
|
|
29680
|
+
askHasOwner?: Maybe<GraphStoreSimplifiedAskHasOwnerConnection>;
|
|
29681
|
+
askHasOwnerInverse?: Maybe<GraphStoreSimplifiedAskHasOwnerInverseConnection>;
|
|
29682
|
+
askHasReceivingTeam?: Maybe<GraphStoreSimplifiedAskHasReceivingTeamConnection>;
|
|
29683
|
+
askHasReceivingTeamInverse?: Maybe<GraphStoreSimplifiedAskHasReceivingTeamInverseConnection>;
|
|
29684
|
+
askHasSubmitter?: Maybe<GraphStoreSimplifiedAskHasSubmitterConnection>;
|
|
29685
|
+
askHasSubmitterInverse?: Maybe<GraphStoreSimplifiedAskHasSubmitterInverseConnection>;
|
|
29686
|
+
askHasSubmittingTeam?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamConnection>;
|
|
29687
|
+
askHasSubmittingTeamInverse?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamInverseConnection>;
|
|
29567
29688
|
atlasGoalHasContributor?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorConnection>;
|
|
29568
29689
|
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
29569
29690
|
atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
|
|
@@ -30356,6 +30477,76 @@ export declare type GraphStoreAppInstallationAssociatedToSecurityWorkspaceRelati
|
|
|
30356
30477
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30357
30478
|
id: Scalars['ID']['input'];
|
|
30358
30479
|
};
|
|
30480
|
+
export declare type GraphStoreAskHasImpactedWorkArgs = {
|
|
30481
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30482
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30483
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30484
|
+
id: Scalars['ID']['input'];
|
|
30485
|
+
sort?: InputMaybe<GraphStoreAskHasImpactedWorkSortInput>;
|
|
30486
|
+
};
|
|
30487
|
+
export declare type GraphStoreAskHasImpactedWorkInverseArgs = {
|
|
30488
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30489
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30490
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30491
|
+
id: Scalars['ID']['input'];
|
|
30492
|
+
sort?: InputMaybe<GraphStoreAskHasImpactedWorkSortInput>;
|
|
30493
|
+
};
|
|
30494
|
+
export declare type GraphStoreAskHasOwnerArgs = {
|
|
30495
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30496
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30497
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30498
|
+
id: Scalars['ID']['input'];
|
|
30499
|
+
sort?: InputMaybe<GraphStoreAskHasOwnerSortInput>;
|
|
30500
|
+
};
|
|
30501
|
+
export declare type GraphStoreAskHasOwnerInverseArgs = {
|
|
30502
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30503
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30504
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30505
|
+
id: Scalars['ID']['input'];
|
|
30506
|
+
sort?: InputMaybe<GraphStoreAskHasOwnerSortInput>;
|
|
30507
|
+
};
|
|
30508
|
+
export declare type GraphStoreAskHasReceivingTeamArgs = {
|
|
30509
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30510
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30511
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30512
|
+
id: Scalars['ID']['input'];
|
|
30513
|
+
sort?: InputMaybe<GraphStoreAskHasReceivingTeamSortInput>;
|
|
30514
|
+
};
|
|
30515
|
+
export declare type GraphStoreAskHasReceivingTeamInverseArgs = {
|
|
30516
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30517
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30518
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30519
|
+
id: Scalars['ID']['input'];
|
|
30520
|
+
sort?: InputMaybe<GraphStoreAskHasReceivingTeamSortInput>;
|
|
30521
|
+
};
|
|
30522
|
+
export declare type GraphStoreAskHasSubmitterArgs = {
|
|
30523
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30524
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30525
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30526
|
+
id: Scalars['ID']['input'];
|
|
30527
|
+
sort?: InputMaybe<GraphStoreAskHasSubmitterSortInput>;
|
|
30528
|
+
};
|
|
30529
|
+
export declare type GraphStoreAskHasSubmitterInverseArgs = {
|
|
30530
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30531
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30532
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30533
|
+
id: Scalars['ID']['input'];
|
|
30534
|
+
sort?: InputMaybe<GraphStoreAskHasSubmitterSortInput>;
|
|
30535
|
+
};
|
|
30536
|
+
export declare type GraphStoreAskHasSubmittingTeamArgs = {
|
|
30537
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30538
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30539
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30540
|
+
id: Scalars['ID']['input'];
|
|
30541
|
+
sort?: InputMaybe<GraphStoreAskHasSubmittingTeamSortInput>;
|
|
30542
|
+
};
|
|
30543
|
+
export declare type GraphStoreAskHasSubmittingTeamInverseArgs = {
|
|
30544
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30545
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30546
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30547
|
+
id: Scalars['ID']['input'];
|
|
30548
|
+
sort?: InputMaybe<GraphStoreAskHasSubmittingTeamSortInput>;
|
|
30549
|
+
};
|
|
30359
30550
|
export declare type GraphStoreAtlasGoalHasContributorArgs = {
|
|
30360
30551
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30361
30552
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35518,6 +35709,21 @@ export declare type GraphStoreAriFilterInput = {
|
|
|
35518
35709
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
35519
35710
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
35520
35711
|
};
|
|
35712
|
+
export declare type GraphStoreAskHasImpactedWorkSortInput = {
|
|
35713
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35714
|
+
};
|
|
35715
|
+
export declare type GraphStoreAskHasOwnerSortInput = {
|
|
35716
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35717
|
+
};
|
|
35718
|
+
export declare type GraphStoreAskHasReceivingTeamSortInput = {
|
|
35719
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35720
|
+
};
|
|
35721
|
+
export declare type GraphStoreAskHasSubmitterSortInput = {
|
|
35722
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35723
|
+
};
|
|
35724
|
+
export declare type GraphStoreAskHasSubmittingTeamSortInput = {
|
|
35725
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35726
|
+
};
|
|
35521
35727
|
export declare type GraphStoreAtiFilterInput = {
|
|
35522
35728
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
35523
35729
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -37107,7 +37313,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
37107
37313
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
37108
37314
|
id: Scalars['ID']['output'];
|
|
37109
37315
|
};
|
|
37110
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37316
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37111
37317
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
37112
37318
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
37113
37319
|
value: Scalars['Int']['output'];
|
|
@@ -37142,7 +37348,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
37142
37348
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
37143
37349
|
id: Scalars['ID']['output'];
|
|
37144
37350
|
};
|
|
37145
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37351
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37146
37352
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
37147
37353
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
37148
37354
|
value: Scalars['String']['output'];
|
|
@@ -37152,19 +37358,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
37152
37358
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
37153
37359
|
id: Scalars['ID']['output'];
|
|
37154
37360
|
};
|
|
37155
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37361
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37156
37362
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
37157
37363
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
37158
37364
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
37159
37365
|
id: Scalars['ID']['output'];
|
|
37160
37366
|
};
|
|
37161
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37367
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37162
37368
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
37163
37369
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
37164
37370
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
37165
37371
|
id: Scalars['ID']['output'];
|
|
37166
37372
|
};
|
|
37167
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37373
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37168
37374
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
37169
37375
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
37170
37376
|
value: Scalars['Boolean']['output'];
|
|
@@ -37263,7 +37469,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
37263
37469
|
V2 = "V2",
|
|
37264
37470
|
V3 = "V3"
|
|
37265
37471
|
}
|
|
37266
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37472
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37267
37473
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
37268
37474
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
37269
37475
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -42377,6 +42583,146 @@ export declare type GraphStoreShipit57IssueRecursiveLinksToPageSortInput = {
|
|
|
42377
42583
|
export declare type GraphStoreShipit57PullRequestLinksToPageSortInput = {
|
|
42378
42584
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42379
42585
|
};
|
|
42586
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkConnection = HasPageInfo & {
|
|
42587
|
+
__typename?: 'GraphStoreSimplifiedAskHasImpactedWorkConnection';
|
|
42588
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasImpactedWorkEdge>>>;
|
|
42589
|
+
pageInfo: PageInfo;
|
|
42590
|
+
};
|
|
42591
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkEdge = {
|
|
42592
|
+
__typename?: 'GraphStoreSimplifiedAskHasImpactedWorkEdge';
|
|
42593
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42594
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42595
|
+
id: Scalars['ID']['output'];
|
|
42596
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42597
|
+
node?: Maybe<GraphStoreSimplifiedAskHasImpactedWorkUnion>;
|
|
42598
|
+
};
|
|
42599
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkInverseConnection = HasPageInfo & {
|
|
42600
|
+
__typename?: 'GraphStoreSimplifiedAskHasImpactedWorkInverseConnection';
|
|
42601
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasImpactedWorkInverseEdge>>>;
|
|
42602
|
+
pageInfo: PageInfo;
|
|
42603
|
+
};
|
|
42604
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkInverseEdge = {
|
|
42605
|
+
__typename?: 'GraphStoreSimplifiedAskHasImpactedWorkInverseEdge';
|
|
42606
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42607
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42608
|
+
id: Scalars['ID']['output'];
|
|
42609
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42610
|
+
node?: Maybe<GraphStoreSimplifiedAskHasImpactedWorkInverseUnion>;
|
|
42611
|
+
};
|
|
42612
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkInverseUnion = SpfAsk;
|
|
42613
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
42614
|
+
export declare type GraphStoreSimplifiedAskHasOwnerConnection = HasPageInfo & {
|
|
42615
|
+
__typename?: 'GraphStoreSimplifiedAskHasOwnerConnection';
|
|
42616
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasOwnerEdge>>>;
|
|
42617
|
+
pageInfo: PageInfo;
|
|
42618
|
+
};
|
|
42619
|
+
export declare type GraphStoreSimplifiedAskHasOwnerEdge = {
|
|
42620
|
+
__typename?: 'GraphStoreSimplifiedAskHasOwnerEdge';
|
|
42621
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42622
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42623
|
+
id: Scalars['ID']['output'];
|
|
42624
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42625
|
+
node?: Maybe<GraphStoreSimplifiedAskHasOwnerUnion>;
|
|
42626
|
+
};
|
|
42627
|
+
export declare type GraphStoreSimplifiedAskHasOwnerInverseConnection = HasPageInfo & {
|
|
42628
|
+
__typename?: 'GraphStoreSimplifiedAskHasOwnerInverseConnection';
|
|
42629
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasOwnerInverseEdge>>>;
|
|
42630
|
+
pageInfo: PageInfo;
|
|
42631
|
+
};
|
|
42632
|
+
export declare type GraphStoreSimplifiedAskHasOwnerInverseEdge = {
|
|
42633
|
+
__typename?: 'GraphStoreSimplifiedAskHasOwnerInverseEdge';
|
|
42634
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42635
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42636
|
+
id: Scalars['ID']['output'];
|
|
42637
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42638
|
+
node?: Maybe<GraphStoreSimplifiedAskHasOwnerInverseUnion>;
|
|
42639
|
+
};
|
|
42640
|
+
export declare type GraphStoreSimplifiedAskHasOwnerInverseUnion = SpfAsk;
|
|
42641
|
+
export declare type GraphStoreSimplifiedAskHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42642
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamConnection = HasPageInfo & {
|
|
42643
|
+
__typename?: 'GraphStoreSimplifiedAskHasReceivingTeamConnection';
|
|
42644
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasReceivingTeamEdge>>>;
|
|
42645
|
+
pageInfo: PageInfo;
|
|
42646
|
+
};
|
|
42647
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamEdge = {
|
|
42648
|
+
__typename?: 'GraphStoreSimplifiedAskHasReceivingTeamEdge';
|
|
42649
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42650
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42651
|
+
id: Scalars['ID']['output'];
|
|
42652
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42653
|
+
node?: Maybe<GraphStoreSimplifiedAskHasReceivingTeamUnion>;
|
|
42654
|
+
};
|
|
42655
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamInverseConnection = HasPageInfo & {
|
|
42656
|
+
__typename?: 'GraphStoreSimplifiedAskHasReceivingTeamInverseConnection';
|
|
42657
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasReceivingTeamInverseEdge>>>;
|
|
42658
|
+
pageInfo: PageInfo;
|
|
42659
|
+
};
|
|
42660
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamInverseEdge = {
|
|
42661
|
+
__typename?: 'GraphStoreSimplifiedAskHasReceivingTeamInverseEdge';
|
|
42662
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42663
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42664
|
+
id: Scalars['ID']['output'];
|
|
42665
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42666
|
+
node?: Maybe<GraphStoreSimplifiedAskHasReceivingTeamInverseUnion>;
|
|
42667
|
+
};
|
|
42668
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamInverseUnion = SpfAsk;
|
|
42669
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamUnion = TeamV2;
|
|
42670
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterConnection = HasPageInfo & {
|
|
42671
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmitterConnection';
|
|
42672
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasSubmitterEdge>>>;
|
|
42673
|
+
pageInfo: PageInfo;
|
|
42674
|
+
};
|
|
42675
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterEdge = {
|
|
42676
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmitterEdge';
|
|
42677
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42678
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42679
|
+
id: Scalars['ID']['output'];
|
|
42680
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42681
|
+
node?: Maybe<GraphStoreSimplifiedAskHasSubmitterUnion>;
|
|
42682
|
+
};
|
|
42683
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterInverseConnection = HasPageInfo & {
|
|
42684
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmitterInverseConnection';
|
|
42685
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasSubmitterInverseEdge>>>;
|
|
42686
|
+
pageInfo: PageInfo;
|
|
42687
|
+
};
|
|
42688
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterInverseEdge = {
|
|
42689
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmitterInverseEdge';
|
|
42690
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42691
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42692
|
+
id: Scalars['ID']['output'];
|
|
42693
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42694
|
+
node?: Maybe<GraphStoreSimplifiedAskHasSubmitterInverseUnion>;
|
|
42695
|
+
};
|
|
42696
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterInverseUnion = SpfAsk;
|
|
42697
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42698
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamConnection = HasPageInfo & {
|
|
42699
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmittingTeamConnection';
|
|
42700
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasSubmittingTeamEdge>>>;
|
|
42701
|
+
pageInfo: PageInfo;
|
|
42702
|
+
};
|
|
42703
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamEdge = {
|
|
42704
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmittingTeamEdge';
|
|
42705
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42706
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42707
|
+
id: Scalars['ID']['output'];
|
|
42708
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42709
|
+
node?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamUnion>;
|
|
42710
|
+
};
|
|
42711
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseConnection = HasPageInfo & {
|
|
42712
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmittingTeamInverseConnection';
|
|
42713
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasSubmittingTeamInverseEdge>>>;
|
|
42714
|
+
pageInfo: PageInfo;
|
|
42715
|
+
};
|
|
42716
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseEdge = {
|
|
42717
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmittingTeamInverseEdge';
|
|
42718
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42719
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42720
|
+
id: Scalars['ID']['output'];
|
|
42721
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42722
|
+
node?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamInverseUnion>;
|
|
42723
|
+
};
|
|
42724
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseUnion = SpfAsk;
|
|
42725
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamUnion = TeamV2;
|
|
42380
42726
|
export declare type GraphStoreSimplifiedAtlasGoalHasContributorConnection = HasPageInfo & {
|
|
42381
42727
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorConnection';
|
|
42382
42728
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasContributorEdge>>>;
|
|
@@ -51500,13 +51846,24 @@ export declare type GrowthUnifiedProfileCompletionSeries = {
|
|
|
51500
51846
|
date?: Maybe<Scalars['String']['output']>;
|
|
51501
51847
|
value?: Maybe<Scalars['Int']['output']>;
|
|
51502
51848
|
};
|
|
51849
|
+
export declare enum GrowthUnifiedProfileConfluenceFamiliarity {
|
|
51850
|
+
Experience = "EXPERIENCE",
|
|
51851
|
+
Middle = "MIDDLE",
|
|
51852
|
+
New = "NEW"
|
|
51853
|
+
}
|
|
51503
51854
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
|
|
51504
51855
|
__typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
|
|
51856
|
+
confluenceFamiliarity?: Maybe<GrowthUnifiedProfileConfluenceFamiliarity>;
|
|
51857
|
+
experienceLevel?: Maybe<Scalars['String']['output']>;
|
|
51505
51858
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
51859
|
+
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
51506
51860
|
template?: Maybe<Scalars['String']['output']>;
|
|
51507
51861
|
};
|
|
51508
51862
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContextInput = {
|
|
51863
|
+
confluenceFamiliarity?: InputMaybe<GrowthUnifiedProfileConfluenceFamiliarity>;
|
|
51864
|
+
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
51509
51865
|
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
51866
|
+
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
51510
51867
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
51511
51868
|
};
|
|
51512
51869
|
export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
|
|
@@ -56531,8 +56888,12 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
|
|
|
56531
56888
|
};
|
|
56532
56889
|
export declare type JiraCalendar = {
|
|
56533
56890
|
__typename?: 'JiraCalendar';
|
|
56891
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
56534
56892
|
crossProjectVersions?: Maybe<JiraCrossProjectVersionConnection>;
|
|
56535
56893
|
endDateField?: Maybe<JiraIssueField>;
|
|
56894
|
+
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
56895
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
56896
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
56536
56897
|
issue?: Maybe<JiraIssueWithScenario>;
|
|
56537
56898
|
issues?: Maybe<JiraIssueConnection>;
|
|
56538
56899
|
issuesV2?: Maybe<JiraScenarioIssueLikeConnection>;
|
|
@@ -56551,6 +56912,12 @@ export declare type JiraCalendarCrossProjectVersionsArgs = {
|
|
|
56551
56912
|
input?: InputMaybe<JiraCalendarCrossProjectVersionsInput>;
|
|
56552
56913
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
56553
56914
|
};
|
|
56915
|
+
export declare type JiraCalendarFilterConfigArgs = {
|
|
56916
|
+
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
56917
|
+
};
|
|
56918
|
+
export declare type JiraCalendarIsViewConfigModifiedArgs = {
|
|
56919
|
+
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
56920
|
+
};
|
|
56554
56921
|
export declare type JiraCalendarIssueArgs = {
|
|
56555
56922
|
id: Scalars['ID']['input'];
|
|
56556
56923
|
issuesInput?: InputMaybe<JiraCalendarIssuesInput>;
|
|
@@ -56612,6 +56979,9 @@ export declare type JiraCalendarCrossProjectVersionsInput = {
|
|
|
56612
56979
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
56613
56980
|
statuses?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
56614
56981
|
};
|
|
56982
|
+
export declare type JiraCalendarInput = {
|
|
56983
|
+
viewInput?: InputMaybe<JiraViewQueryInput>;
|
|
56984
|
+
};
|
|
56615
56985
|
export declare type JiraCalendarIssuesInput = {
|
|
56616
56986
|
additionalFilterQuery?: InputMaybe<Scalars['String']['input']>;
|
|
56617
56987
|
};
|
|
@@ -59498,7 +59868,7 @@ export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
|
59498
59868
|
node?: Maybe<JiraFieldSchemeAssociatedField>;
|
|
59499
59869
|
};
|
|
59500
59870
|
export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
59501
|
-
|
|
59871
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59502
59872
|
schemeId: Scalars['ID']['input'];
|
|
59503
59873
|
};
|
|
59504
59874
|
export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
@@ -59532,6 +59902,7 @@ export declare type JiraFieldSearcherTemplateEdge = {
|
|
|
59532
59902
|
};
|
|
59533
59903
|
export declare type JiraFieldSetPreferences = {
|
|
59534
59904
|
__typename?: 'JiraFieldSetPreferences';
|
|
59905
|
+
isFrozen?: Maybe<Scalars['Boolean']['output']>;
|
|
59535
59906
|
width?: Maybe<Scalars['Int']['output']>;
|
|
59536
59907
|
};
|
|
59537
59908
|
export declare type JiraFieldSetPreferencesInput = {
|
|
@@ -60581,6 +60952,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
60581
60952
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
60582
60953
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
60583
60954
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
60955
|
+
canCreateSubtask?: Maybe<Scalars['Boolean']['output']>;
|
|
60584
60956
|
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
60585
60957
|
childIssues?: Maybe<JiraChildIssues>;
|
|
60586
60958
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
@@ -63970,6 +64342,7 @@ export declare type JiraMutation = {
|
|
|
63970
64342
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
63971
64343
|
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
63972
64344
|
discardUnpublishedChangesJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
64345
|
+
discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
63973
64346
|
duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
63974
64347
|
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
63975
64348
|
forge: JiraForgeMutation;
|
|
@@ -63996,6 +64369,7 @@ export declare type JiraMutation = {
|
|
|
63996
64369
|
moveJiraVersionToEnd?: Maybe<JiraUpdateVersionPayload>;
|
|
63997
64370
|
moveJiraVersionToStart?: Maybe<JiraUpdateVersionPayload>;
|
|
63998
64371
|
orderFormatingRule?: Maybe<JiraOrderFormattingRulePayload>;
|
|
64372
|
+
publishCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
63999
64373
|
publishJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
64000
64374
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
64001
64375
|
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
@@ -64321,6 +64695,9 @@ export declare type JiraMutationDiscardUnpublishedChangesJiraJourneyConfiguratio
|
|
|
64321
64695
|
cloudId: Scalars['ID']['input'];
|
|
64322
64696
|
input: JiraDiscardUnpublishedChangesJourneyConfigurationInput;
|
|
64323
64697
|
};
|
|
64698
|
+
export declare type JiraMutationDiscardUserCalendarViewConfigArgs = {
|
|
64699
|
+
input: JiraDiscardUserViewConfigInput;
|
|
64700
|
+
};
|
|
64324
64701
|
export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
|
|
64325
64702
|
cloudId: Scalars['ID']['input'];
|
|
64326
64703
|
input: JiraDuplicateJourneyConfigurationInput;
|
|
@@ -64402,6 +64779,9 @@ export declare type JiraMutationMoveJiraVersionToStartArgs = {
|
|
|
64402
64779
|
export declare type JiraMutationOrderFormatingRuleArgs = {
|
|
64403
64780
|
input: JiraOrderFormattingRuleInput;
|
|
64404
64781
|
};
|
|
64782
|
+
export declare type JiraMutationPublishCalendarViewConfigArgs = {
|
|
64783
|
+
input: JiraUpdateCalendarViewConfigInput;
|
|
64784
|
+
};
|
|
64405
64785
|
export declare type JiraMutationPublishJiraJourneyConfigurationArgs = {
|
|
64406
64786
|
cloudId: Scalars['ID']['input'];
|
|
64407
64787
|
input: JiraPublishJourneyConfigurationInput;
|
|
@@ -67883,6 +68263,7 @@ export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
|
|
|
67883
68263
|
};
|
|
67884
68264
|
export declare type JiraQueryJiraCalendarArgs = {
|
|
67885
68265
|
configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
|
|
68266
|
+
input?: InputMaybe<JiraCalendarInput>;
|
|
67886
68267
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
67887
68268
|
};
|
|
67888
68269
|
export declare type JiraQueryJiraCustomerOrganizationsByUuiDsArgs = {
|
|
@@ -72205,6 +72586,10 @@ export declare type JiraUpdateBackgroundInput = {
|
|
|
72205
72586
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
72206
72587
|
entityId: Scalars['ID']['input'];
|
|
72207
72588
|
};
|
|
72589
|
+
export declare type JiraUpdateCalendarViewConfigInput = {
|
|
72590
|
+
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
72591
|
+
viewId: Scalars['ID']['input'];
|
|
72592
|
+
};
|
|
72208
72593
|
export declare type JiraUpdateCalendarViewConfigPayload = Payload & {
|
|
72209
72594
|
__typename?: 'JiraUpdateCalendarViewConfigPayload';
|
|
72210
72595
|
calendarView?: Maybe<JiraCalendarView>;
|
|
@@ -72289,6 +72674,7 @@ export declare type JiraUpdateDateTimeFieldInput = {
|
|
|
72289
72674
|
};
|
|
72290
72675
|
export declare type JiraUpdateFieldSetPreferencesInput = {
|
|
72291
72676
|
fieldSetId: Scalars['String']['input'];
|
|
72677
|
+
isFrozen?: InputMaybe<Scalars['Boolean']['input']>;
|
|
72292
72678
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
72293
72679
|
};
|
|
72294
72680
|
export declare type JiraUpdateForgeMultipleGroupPickerFieldInput = {
|
|
@@ -75862,7 +76248,6 @@ export declare type KnowledgeDiscoveryZeroQuery = {
|
|
|
75862
76248
|
type: KnowledgeDiscoveryZeroQueryType;
|
|
75863
76249
|
};
|
|
75864
76250
|
export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
75865
|
-
RecentWork = "RECENT_WORK",
|
|
75866
76251
|
RelatedQuestion = "RELATED_QUESTION",
|
|
75867
76252
|
WhoIs = "WHO_IS"
|
|
75868
76253
|
}
|
|
@@ -79355,6 +79740,7 @@ export declare type MercuryChangeProposalImpact = {
|
|
|
79355
79740
|
};
|
|
79356
79741
|
export declare type MercuryChangeProposalPositionDetails = {
|
|
79357
79742
|
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
79743
|
+
positionsMoved?: Maybe<Scalars['Int']['output']>;
|
|
79358
79744
|
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
79359
79745
|
};
|
|
79360
79746
|
export declare type MercuryChangeProposalPositionSummary = {
|
|
@@ -79398,6 +79784,11 @@ export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
|
79398
79784
|
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
79399
79785
|
strategicEventId: Scalars['ID']['output'];
|
|
79400
79786
|
};
|
|
79787
|
+
export declare type MercuryChangeProposalUpdate = {
|
|
79788
|
+
__typename?: 'MercuryChangeProposalUpdate';
|
|
79789
|
+
id: Scalars['ID']['output'];
|
|
79790
|
+
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
79791
|
+
};
|
|
79401
79792
|
export declare type MercuryChangeSort = {
|
|
79402
79793
|
field: MercuryChangeSortField;
|
|
79403
79794
|
order: SortOrder;
|
|
@@ -80442,10 +80833,11 @@ export declare type MercuryOnDeleteChangeProposalPayload = Payload & {
|
|
|
80442
80833
|
id: Scalars['ID']['output'];
|
|
80443
80834
|
success: Scalars['Boolean']['output'];
|
|
80444
80835
|
};
|
|
80445
|
-
export declare type
|
|
80446
|
-
__typename?: '
|
|
80836
|
+
export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
80837
|
+
__typename?: 'MercuryOnUpdateChangeProposalsPayload';
|
|
80838
|
+
changeProposals?: Maybe<Array<MercuryChangeProposalUpdate>>;
|
|
80447
80839
|
errors?: Maybe<Array<MutationError>>;
|
|
80448
|
-
|
|
80840
|
+
strategicEventId: Scalars['ID']['output'];
|
|
80449
80841
|
success: Scalars['Boolean']['output'];
|
|
80450
80842
|
};
|
|
80451
80843
|
export declare type MercuryOnUpdateStrategicEventPayload = Payload & {
|
|
@@ -81332,7 +81724,7 @@ export declare type MercurySubscriptionApi = {
|
|
|
81332
81724
|
__typename?: 'MercurySubscriptionApi';
|
|
81333
81725
|
onCreateChangeProposal?: Maybe<MercuryOnCreateChangeProposalPayload>;
|
|
81334
81726
|
onDeleteChangeProposal?: Maybe<MercuryOnDeleteChangeProposalPayload>;
|
|
81335
|
-
|
|
81727
|
+
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
81336
81728
|
onUpdateStrategicEvent?: Maybe<MercuryOnUpdateStrategicEventPayload>;
|
|
81337
81729
|
};
|
|
81338
81730
|
export declare type MercurySubscriptionApiOnCreateChangeProposalArgs = {
|
|
@@ -81342,8 +81734,7 @@ export declare type MercurySubscriptionApiOnDeleteChangeProposalArgs = {
|
|
|
81342
81734
|
id: Scalars['ID']['input'];
|
|
81343
81735
|
strategicEventId: Scalars['ID']['input'];
|
|
81344
81736
|
};
|
|
81345
|
-
export declare type
|
|
81346
|
-
id: Scalars['ID']['input'];
|
|
81737
|
+
export declare type MercurySubscriptionApiOnUpdateChangeProposalsArgs = {
|
|
81347
81738
|
strategicEventId: Scalars['ID']['input'];
|
|
81348
81739
|
};
|
|
81349
81740
|
export declare type MercurySubscriptionApiOnUpdateStrategicEventArgs = {
|
|
@@ -81996,6 +82387,8 @@ export declare type Mutation = {
|
|
|
81996
82387
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
81997
82388
|
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
81998
82389
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
82390
|
+
confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
|
|
82391
|
+
confluence_insertOfflineVersion?: Maybe<ConfluenceInsertOfflineVersionPayload>;
|
|
81999
82392
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
82000
82393
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
82001
82394
|
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
@@ -82104,6 +82497,7 @@ export declare type Mutation = {
|
|
|
82104
82497
|
deleteDevOpsServiceAndRepositoryRelationship?: Maybe<DeleteDevOpsServiceAndRepositoryRelationshipPayload>;
|
|
82105
82498
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
82106
82499
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
82500
|
+
deleteExCoSpacePermissions?: Maybe<Array<Maybe<DeleteExCoSpacePermissionsPayload>>>;
|
|
82107
82501
|
deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
82108
82502
|
deleteLabel?: Maybe<DeleteLabelPayload>;
|
|
82109
82503
|
deleteNote?: Maybe<DeleteNotePayload>;
|
|
@@ -82154,6 +82548,7 @@ export declare type Mutation = {
|
|
|
82154
82548
|
favouriteSpace?: Maybe<FavouriteSpacePayload>;
|
|
82155
82549
|
favouriteSpaceBulk?: Maybe<FavouriteSpaceBulkPayload>;
|
|
82156
82550
|
followUser?: Maybe<FollowUserPayload>;
|
|
82551
|
+
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82157
82552
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82158
82553
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
82159
82554
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
@@ -82288,6 +82683,7 @@ export declare type Mutation = {
|
|
|
82288
82683
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
82289
82684
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
82290
82685
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
82686
|
+
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
82291
82687
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
82292
82688
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
82293
82689
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
@@ -82465,7 +82861,9 @@ export declare type Mutation = {
|
|
|
82465
82861
|
updateSpaceDefaultClassificationLevel?: Maybe<UpdateSpaceDefaultClassificationLevelPayload>;
|
|
82466
82862
|
updateSpaceDetails?: Maybe<UpdateSpaceDetailsPayload>;
|
|
82467
82863
|
updateSpacePermissionDefaults?: Maybe<UpdateDefaultSpacePermissionsPayload>;
|
|
82864
|
+
updateSpacePermissionDefaultsV2?: Maybe<UpdateDefaultSpacePermissionsPayloadV2>;
|
|
82468
82865
|
updateSpacePermissions?: Maybe<UpdateSpacePermissionsPayload>;
|
|
82866
|
+
updateSpacePermissionsV2?: Maybe<UpdateSpacePermissionsPayloadV2>;
|
|
82469
82867
|
updateSpaceTypeSettings?: Maybe<UpdateSpaceTypeSettingsPayload>;
|
|
82470
82868
|
updateTemplate?: Maybe<ContentTemplate>;
|
|
82471
82869
|
updateTemplatePropertySet?: Maybe<UpdateTemplatePropertySetPayload>;
|
|
@@ -82784,6 +83182,14 @@ export declare type MutationConfluence_DeleteTopicArgs = {
|
|
|
82784
83182
|
export declare type MutationConfluence_ExperimentInitModernizeArgs = {
|
|
82785
83183
|
cloudId: Scalars['ID']['input'];
|
|
82786
83184
|
};
|
|
83185
|
+
export declare type MutationConfluence_GenerateForgeContextTokenArgs = {
|
|
83186
|
+
cloudId: Scalars['ID']['input'];
|
|
83187
|
+
input: ConfluenceForgeContextTokenRequestInput;
|
|
83188
|
+
};
|
|
83189
|
+
export declare type MutationConfluence_InsertOfflineVersionArgs = {
|
|
83190
|
+
cloudId: Scalars['ID']['input'];
|
|
83191
|
+
input?: InputMaybe<ConfluenceInsertOfflineVersionInput>;
|
|
83192
|
+
};
|
|
82787
83193
|
export declare type MutationConfluence_InviteUsersArgs = {
|
|
82788
83194
|
cloudId: Scalars['ID']['input'];
|
|
82789
83195
|
input: ConfluenceInviteUserInput;
|
|
@@ -83180,6 +83586,9 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
|
83180
83586
|
export declare type MutationDeleteDevOpsServiceRelationshipArgs = {
|
|
83181
83587
|
input: DeleteDevOpsServiceRelationshipInput;
|
|
83182
83588
|
};
|
|
83589
|
+
export declare type MutationDeleteExCoSpacePermissionsArgs = {
|
|
83590
|
+
input: Array<InputMaybe<DeleteExCoSpacePermissionsInput>>;
|
|
83591
|
+
};
|
|
83183
83592
|
export declare type MutationDeleteInlineCommentArgs = {
|
|
83184
83593
|
input: DeleteInlineCommentInput;
|
|
83185
83594
|
};
|
|
@@ -83715,6 +84124,9 @@ export declare type MutationProjects_EditLinkArgs = {
|
|
|
83715
84124
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
83716
84125
|
input: TownsquareProjectsRemoveMemberInput;
|
|
83717
84126
|
};
|
|
84127
|
+
export declare type MutationProjects_SetDependencyArgs = {
|
|
84128
|
+
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
84129
|
+
};
|
|
83718
84130
|
export declare type MutationProjects_SetWatchingProjectArgs = {
|
|
83719
84131
|
input?: InputMaybe<TownsquareProjectsSetWatchingProjectInput>;
|
|
83720
84132
|
};
|
|
@@ -84289,9 +84701,15 @@ export declare type MutationUpdateSpaceDetailsArgs = {
|
|
|
84289
84701
|
export declare type MutationUpdateSpacePermissionDefaultsArgs = {
|
|
84290
84702
|
input: Array<UpdateDefaultSpacePermissionsInput>;
|
|
84291
84703
|
};
|
|
84704
|
+
export declare type MutationUpdateSpacePermissionDefaultsV2Args = {
|
|
84705
|
+
input: UpdateDefaultSpacePermissionsInputV2;
|
|
84706
|
+
};
|
|
84292
84707
|
export declare type MutationUpdateSpacePermissionsArgs = {
|
|
84293
84708
|
input: UpdateSpacePermissionsInput;
|
|
84294
84709
|
};
|
|
84710
|
+
export declare type MutationUpdateSpacePermissionsV2Args = {
|
|
84711
|
+
input: UpdateSpacePermissionsInputV2;
|
|
84712
|
+
};
|
|
84295
84713
|
export declare type MutationUpdateSpaceTypeSettingsArgs = {
|
|
84296
84714
|
input: UpdateSpaceTypeSettingsInput;
|
|
84297
84715
|
};
|
|
@@ -85111,6 +85529,7 @@ export declare type PtPage = {
|
|
|
85111
85529
|
ancestors?: Maybe<Array<Maybe<PtPage>>>;
|
|
85112
85530
|
blank?: Maybe<Scalars['Boolean']['output']>;
|
|
85113
85531
|
children?: Maybe<PtPaginatedPageList>;
|
|
85532
|
+
createdDate?: Maybe<ConfluenceDate>;
|
|
85114
85533
|
emojiTitleDraft?: Maybe<Scalars['String']['output']>;
|
|
85115
85534
|
emojiTitlePublished?: Maybe<Scalars['String']['output']>;
|
|
85116
85535
|
followingSiblings?: Maybe<PtPaginatedPageList>;
|
|
@@ -85118,6 +85537,7 @@ export declare type PtPage = {
|
|
|
85118
85537
|
hasInheritedRestrictions: Scalars['Boolean']['output'];
|
|
85119
85538
|
hasRestrictions: Scalars['Boolean']['output'];
|
|
85120
85539
|
id: Scalars['ID']['output'];
|
|
85540
|
+
lastUpdatedDate?: Maybe<ConfluenceDate>;
|
|
85121
85541
|
links?: Maybe<Map_LinkType_String>;
|
|
85122
85542
|
nearestAncestors?: Maybe<PtPaginatedPageList>;
|
|
85123
85543
|
page?: Maybe<Page>;
|
|
@@ -85133,11 +85553,17 @@ export declare type PtPageChildrenArgs = {
|
|
|
85133
85553
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85134
85554
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85135
85555
|
};
|
|
85556
|
+
export declare type PtPageCreatedDateArgs = {
|
|
85557
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
85558
|
+
};
|
|
85136
85559
|
export declare type PtPageFollowingSiblingsArgs = {
|
|
85137
85560
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85138
85561
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85139
85562
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85140
85563
|
};
|
|
85564
|
+
export declare type PtPageLastUpdatedDateArgs = {
|
|
85565
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
85566
|
+
};
|
|
85141
85567
|
export declare type PtPageNearestAncestorsArgs = {
|
|
85142
85568
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85143
85569
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -85178,6 +85604,7 @@ export declare type Page = {
|
|
|
85178
85604
|
ancestors: Array<Maybe<Page>>;
|
|
85179
85605
|
blank?: Maybe<Scalars['Boolean']['output']>;
|
|
85180
85606
|
children?: Maybe<PaginatedPageList>;
|
|
85607
|
+
createdDate?: Maybe<ConfluenceDate>;
|
|
85181
85608
|
emojiTitleDraft?: Maybe<Scalars['String']['output']>;
|
|
85182
85609
|
emojiTitlePublished?: Maybe<Scalars['String']['output']>;
|
|
85183
85610
|
followingSiblings?: Maybe<PaginatedPageList>;
|
|
@@ -85185,6 +85612,7 @@ export declare type Page = {
|
|
|
85185
85612
|
hasInheritedRestrictions: Scalars['Boolean']['output'];
|
|
85186
85613
|
hasRestrictions: Scalars['Boolean']['output'];
|
|
85187
85614
|
id?: Maybe<Scalars['ID']['output']>;
|
|
85615
|
+
lastUpdatedDate?: Maybe<ConfluenceDate>;
|
|
85188
85616
|
links?: Maybe<Map_LinkType_String>;
|
|
85189
85617
|
nearestAncestors?: Maybe<PaginatedPageList>;
|
|
85190
85618
|
previousSiblings?: Maybe<PaginatedPageList>;
|
|
@@ -85199,11 +85627,17 @@ export declare type PageChildrenArgs = {
|
|
|
85199
85627
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85200
85628
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85201
85629
|
};
|
|
85630
|
+
export declare type PageCreatedDateArgs = {
|
|
85631
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
85632
|
+
};
|
|
85202
85633
|
export declare type PageFollowingSiblingsArgs = {
|
|
85203
85634
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85204
85635
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85205
85636
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85206
85637
|
};
|
|
85638
|
+
export declare type PageLastUpdatedDateArgs = {
|
|
85639
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
85640
|
+
};
|
|
85207
85641
|
export declare type PageNearestAncestorsArgs = {
|
|
85208
85642
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85209
85643
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87138,6 +87572,7 @@ export declare type Query = {
|
|
|
87138
87572
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
87139
87573
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
87140
87574
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
87575
|
+
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
87141
87576
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
87142
87577
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
87143
87578
|
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
@@ -87184,6 +87619,8 @@ export declare type Query = {
|
|
|
87184
87619
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
87185
87620
|
confluence_applicationLinkByOauth2ClientId?: Maybe<ConfluenceApplicationLink>;
|
|
87186
87621
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
87622
|
+
confluence_calendarJiraDateFieldsByJql?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
87623
|
+
confluence_calendarJiraDateFieldsBySearchFilter?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
87187
87624
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
87188
87625
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
87189
87626
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
@@ -87205,6 +87642,7 @@ export declare type Query = {
|
|
|
87205
87642
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
87206
87643
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
87207
87644
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
87645
|
+
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
87208
87646
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
87209
87647
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
87210
87648
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
@@ -87283,6 +87721,8 @@ export declare type Query = {
|
|
|
87283
87721
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
87284
87722
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
87285
87723
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
87724
|
+
csmAi_generateCoachingTriggeringCondition: Scalars['String']['output'];
|
|
87725
|
+
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
87286
87726
|
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
87287
87727
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
87288
87728
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
@@ -87585,6 +88025,7 @@ export declare type Query = {
|
|
|
87585
88025
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
87586
88026
|
projects_byId?: Maybe<TownsquareProject>;
|
|
87587
88027
|
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
88028
|
+
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
87588
88029
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
87589
88030
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
87590
88031
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
@@ -87659,6 +88100,7 @@ export declare type Query = {
|
|
|
87659
88100
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
87660
88101
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
87661
88102
|
spf_ask?: Maybe<SpfAskResult>;
|
|
88103
|
+
spf_askCommentsByIds?: Maybe<Array<Maybe<SpfAskComment>>>;
|
|
87662
88104
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
87663
88105
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
87664
88106
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
@@ -87996,6 +88438,13 @@ export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
87996
88438
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
87997
88439
|
workspaceId: Scalars['ID']['input'];
|
|
87998
88440
|
};
|
|
88441
|
+
export declare type QueryAssetsDm_RawDataArgs = {
|
|
88442
|
+
cloudId: Scalars['ID']['input'];
|
|
88443
|
+
dataSourceId: Scalars['ID']['input'];
|
|
88444
|
+
filters?: InputMaybe<Array<AssetsDmRawDataFilterInput>>;
|
|
88445
|
+
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
88446
|
+
workspaceId: Scalars['ID']['input'];
|
|
88447
|
+
};
|
|
87999
88448
|
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
88000
88449
|
ids: Array<Scalars['ID']['input']>;
|
|
88001
88450
|
};
|
|
@@ -88169,6 +88618,16 @@ export declare type QueryConfluence_AtlassianUserArgs = {
|
|
|
88169
88618
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88170
88619
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
88171
88620
|
};
|
|
88621
|
+
export declare type QueryConfluence_CalendarJiraDateFieldsByJqlArgs = {
|
|
88622
|
+
applicationId: Scalars['ID']['input'];
|
|
88623
|
+
cloudId: Scalars['ID']['input'];
|
|
88624
|
+
jql: Scalars['String']['input'];
|
|
88625
|
+
};
|
|
88626
|
+
export declare type QueryConfluence_CalendarJiraDateFieldsBySearchFilterArgs = {
|
|
88627
|
+
applicationId: Scalars['ID']['input'];
|
|
88628
|
+
cloudId: Scalars['ID']['input'];
|
|
88629
|
+
searchFilterId: Scalars['ID']['input'];
|
|
88630
|
+
};
|
|
88172
88631
|
export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
88173
88632
|
cloudId: Scalars['ID']['input'];
|
|
88174
88633
|
};
|
|
@@ -88279,6 +88738,9 @@ export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
|
88279
88738
|
cloudId: Scalars['ID']['input'];
|
|
88280
88739
|
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
88281
88740
|
};
|
|
88741
|
+
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
88742
|
+
cloudId: Scalars['ID']['input'];
|
|
88743
|
+
};
|
|
88282
88744
|
export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
|
|
88283
88745
|
cloudId: Scalars['ID']['input'];
|
|
88284
88746
|
spaceKey: Scalars['String']['input'];
|
|
@@ -88706,6 +89168,16 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
88706
89168
|
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
88707
89169
|
id: Scalars['ID']['input'];
|
|
88708
89170
|
};
|
|
89171
|
+
export declare type QueryCsmAi_GenerateCoachingTriggeringConditionArgs = {
|
|
89172
|
+
conversationId: Scalars['ID']['input'];
|
|
89173
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
89174
|
+
messageId: Scalars['ID']['input'];
|
|
89175
|
+
};
|
|
89176
|
+
export declare type QueryCsmAi_GetAgentVersionArgs = {
|
|
89177
|
+
agentId: Scalars['ID']['input'];
|
|
89178
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
89179
|
+
versionId?: InputMaybe<Scalars['ID']['input']>;
|
|
89180
|
+
};
|
|
88709
89181
|
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
88710
89182
|
helpCenterAri: Scalars['ID']['input'];
|
|
88711
89183
|
};
|
|
@@ -89740,6 +90212,9 @@ export declare type QueryProjects_ByIdArgs = {
|
|
|
89740
90212
|
export declare type QueryProjects_ByIdsArgs = {
|
|
89741
90213
|
projectIds: Array<Scalars['String']['input']>;
|
|
89742
90214
|
};
|
|
90215
|
+
export declare type QueryProjects_CanCreateProjectFusionArgs = {
|
|
90216
|
+
input: TownsquareProjectsCanCreateProjectFusionInput;
|
|
90217
|
+
};
|
|
89743
90218
|
export declare type QueryProjects_LinksByIdsArgs = {
|
|
89744
90219
|
linkIds: Array<Scalars['ID']['input']>;
|
|
89745
90220
|
};
|
|
@@ -90062,6 +90537,9 @@ export declare type QuerySpacesWithExemptionsArgs = {
|
|
|
90062
90537
|
export declare type QuerySpf_AskArgs = {
|
|
90063
90538
|
id: Scalars['ID']['input'];
|
|
90064
90539
|
};
|
|
90540
|
+
export declare type QuerySpf_AskCommentsByIdsArgs = {
|
|
90541
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90542
|
+
};
|
|
90065
90543
|
export declare type QuerySpf_AsksArgs = {
|
|
90066
90544
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90067
90545
|
cloudId: Scalars['ID']['input'];
|
|
@@ -91117,6 +91595,7 @@ export declare enum RelationType {
|
|
|
91117
91595
|
}
|
|
91118
91596
|
export declare type RelevantSpaceUsersWrapper = {
|
|
91119
91597
|
__typename?: 'RelevantSpaceUsersWrapper';
|
|
91598
|
+
accountIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
91120
91599
|
id?: Maybe<Scalars['String']['output']>;
|
|
91121
91600
|
users?: Maybe<Array<Maybe<Person>>>;
|
|
91122
91601
|
};
|
|
@@ -92053,6 +92532,9 @@ export declare type RunImportInput = {
|
|
|
92053
92532
|
miroAuthToken?: InputMaybe<Scalars['String']['input']>;
|
|
92054
92533
|
miroProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
92055
92534
|
miroTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92535
|
+
oauthAccessRefreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
92536
|
+
oauthAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
92537
|
+
oauthAccessTokenExpiry?: InputMaybe<Scalars['String']['input']>;
|
|
92056
92538
|
orgId: Scalars['String']['input'];
|
|
92057
92539
|
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
92058
92540
|
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -92578,6 +93060,10 @@ export declare enum SearchBoardProductType {
|
|
|
92578
93060
|
Business = "BUSINESS",
|
|
92579
93061
|
Software = "SOFTWARE"
|
|
92580
93062
|
}
|
|
93063
|
+
export declare enum SearchCombinationType {
|
|
93064
|
+
And = "AND",
|
|
93065
|
+
Or = "OR"
|
|
93066
|
+
}
|
|
92581
93067
|
export declare type SearchCommonFilter = {
|
|
92582
93068
|
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92583
93069
|
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
@@ -92805,11 +93291,30 @@ export declare type SearchLayerDefinition = {
|
|
|
92805
93291
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
92806
93292
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
92807
93293
|
};
|
|
93294
|
+
export declare enum SearchLinkedEntityGranularity {
|
|
93295
|
+
AllMatchingMessages = "ALL_MATCHING_MESSAGES",
|
|
93296
|
+
Default = "DEFAULT",
|
|
93297
|
+
FullThread = "FULL_THREAD"
|
|
93298
|
+
}
|
|
92808
93299
|
export declare type SearchMercuryFilter = {
|
|
92809
93300
|
ancestorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92810
93301
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92811
93302
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92812
93303
|
};
|
|
93304
|
+
export declare type SearchParticipant = {
|
|
93305
|
+
combination: SearchCombinationType;
|
|
93306
|
+
type: SearchParticipantType;
|
|
93307
|
+
users: Array<Scalars['ID']['input']>;
|
|
93308
|
+
};
|
|
93309
|
+
export declare enum SearchParticipantType {
|
|
93310
|
+
Contributor = "CONTRIBUTOR",
|
|
93311
|
+
Mentions = "MENTIONS",
|
|
93312
|
+
Presence = "PRESENCE"
|
|
93313
|
+
}
|
|
93314
|
+
export declare type SearchParticipants = {
|
|
93315
|
+
combination: SearchCombinationType;
|
|
93316
|
+
items: Array<SearchParticipant>;
|
|
93317
|
+
};
|
|
92813
93318
|
export declare type SearchProductCount = {
|
|
92814
93319
|
__typename?: 'SearchProductCount';
|
|
92815
93320
|
count: Scalars['Int']['output'];
|
|
@@ -93297,6 +93802,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
93297
93802
|
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
93298
93803
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
93299
93804
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
93805
|
+
participants?: InputMaybe<SearchParticipants>;
|
|
93300
93806
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
93301
93807
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
93302
93808
|
thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
|
|
@@ -93306,6 +93812,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
93306
93812
|
export declare type SearchThirdPartyProduct = {
|
|
93307
93813
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
93308
93814
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
93815
|
+
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
93309
93816
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
93310
93817
|
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
93311
93818
|
subtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -96187,6 +96694,10 @@ export declare type SpaceUserMetadata = {
|
|
|
96187
96694
|
isFavourited: Scalars['Boolean']['output'];
|
|
96188
96695
|
isWatched: Scalars['Boolean']['output'];
|
|
96189
96696
|
isWatchingBlogs: Scalars['Boolean']['output'];
|
|
96697
|
+
lastVisitedDate?: Maybe<ConfluenceDate>;
|
|
96698
|
+
};
|
|
96699
|
+
export declare type SpaceUserMetadataLastVisitedDateArgs = {
|
|
96700
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
96190
96701
|
};
|
|
96191
96702
|
export declare type SpaceViewsPersistence = {
|
|
96192
96703
|
persistenceOption: SpaceViewsPersistenceOption;
|
|
@@ -96376,7 +96887,7 @@ export declare type SpfAskActivityUpdatedUser = SpfAskActivityUpdatedValue & {
|
|
|
96376
96887
|
export declare type SpfAskActivityUpdatedValue = {
|
|
96377
96888
|
attribute: SpfAskActivityAttribute;
|
|
96378
96889
|
};
|
|
96379
|
-
export declare type SpfAskComment = {
|
|
96890
|
+
export declare type SpfAskComment = Node & {
|
|
96380
96891
|
__typename?: 'SpfAskComment';
|
|
96381
96892
|
askId: Scalars['String']['output'];
|
|
96382
96893
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -97088,6 +97599,11 @@ export declare type SubjectPermissionDeltas = {
|
|
|
97088
97599
|
permissionsToRemove: Array<InputMaybe<SpacePermissionType>>;
|
|
97089
97600
|
subjectKeyInput: UpdatePermissionSubjectKeyInput;
|
|
97090
97601
|
};
|
|
97602
|
+
export declare type SubjectPermissionDeltasV2 = {
|
|
97603
|
+
permissionsToAdd: Array<InputMaybe<Scalars['String']['input']>>;
|
|
97604
|
+
permissionsToRemove: Array<InputMaybe<Scalars['String']['input']>>;
|
|
97605
|
+
principalInput: RoleAssignmentPrincipalInput;
|
|
97606
|
+
};
|
|
97091
97607
|
export declare type SubjectRestrictionHierarchySummary = {
|
|
97092
97608
|
__typename?: 'SubjectRestrictionHierarchySummary';
|
|
97093
97609
|
restrictedResources?: Maybe<Array<Maybe<RestrictedResource>>>;
|
|
@@ -98541,6 +99057,15 @@ export declare type TownsquareArchiveGoalPayload = {
|
|
|
98541
99057
|
__typename?: 'TownsquareArchiveGoalPayload';
|
|
98542
99058
|
goal?: Maybe<TownsquareGoal>;
|
|
98543
99059
|
};
|
|
99060
|
+
export declare enum TownsquareCanCreateFusionResult {
|
|
99061
|
+
CanCreate = "CAN_CREATE",
|
|
99062
|
+
IntegrationNotInstalled = "INTEGRATION_NOT_INSTALLED",
|
|
99063
|
+
IssueAlreadyLinked = "ISSUE_ALREADY_LINKED",
|
|
99064
|
+
NotInSameOrg = "NOT_IN_SAME_ORG",
|
|
99065
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
99066
|
+
UnexpectedIssueType = "UNEXPECTED_ISSUE_TYPE",
|
|
99067
|
+
UnknownError = "UNKNOWN_ERROR"
|
|
99068
|
+
}
|
|
98544
99069
|
export declare type TownsquareCapability = {
|
|
98545
99070
|
__typename?: 'TownsquareCapability';
|
|
98546
99071
|
capability?: Maybe<TownsquareAccessControlCapability>;
|
|
@@ -98723,6 +99248,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
98723
99248
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
98724
99249
|
canEditUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
98725
99250
|
canPostUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
99251
|
+
comments?: Maybe<TownsquareCommentConnection>;
|
|
98726
99252
|
creationDate: Scalars['DateTime']['output'];
|
|
98727
99253
|
description?: Maybe<Scalars['String']['output']>;
|
|
98728
99254
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
@@ -98754,6 +99280,10 @@ export declare type TownsquareGoal = Node & {
|
|
|
98754
99280
|
uuid: Scalars['String']['output'];
|
|
98755
99281
|
watchers?: Maybe<TownsquareUserConnection>;
|
|
98756
99282
|
};
|
|
99283
|
+
export declare type TownsquareGoalCommentsArgs = {
|
|
99284
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99285
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99286
|
+
};
|
|
98757
99287
|
export declare type TownsquareGoalParentGoalSuggestionsArgs = {
|
|
98758
99288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
98759
99289
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -99455,6 +99985,7 @@ export declare type TownsquareProjectsAddMembersPayload = {
|
|
|
99455
99985
|
errors?: Maybe<Array<MutationError>>;
|
|
99456
99986
|
project?: Maybe<TownsquareProject>;
|
|
99457
99987
|
success: Scalars['Boolean']['output'];
|
|
99988
|
+
userContributors?: Maybe<Array<Maybe<TownsquareContributor>>>;
|
|
99458
99989
|
users?: Maybe<Array<User>>;
|
|
99459
99990
|
};
|
|
99460
99991
|
export declare type TownsquareProjectsAddTeamContributorsInput = {
|
|
@@ -99469,6 +100000,15 @@ export declare type TownsquareProjectsAddTeamContributorsPayload = {
|
|
|
99469
100000
|
project?: Maybe<TownsquareProject>;
|
|
99470
100001
|
success: Scalars['Boolean']['output'];
|
|
99471
100002
|
};
|
|
100003
|
+
export declare type TownsquareProjectsCanCreateProjectFusionInput = {
|
|
100004
|
+
issueId: Scalars['ID']['input'];
|
|
100005
|
+
projectId: Scalars['ID']['input'];
|
|
100006
|
+
};
|
|
100007
|
+
export declare type TownsquareProjectsCanCreateProjectFusionPayload = {
|
|
100008
|
+
__typename?: 'TownsquareProjectsCanCreateProjectFusionPayload';
|
|
100009
|
+
canCreateFusionResult?: Maybe<TownsquareCanCreateFusionResult>;
|
|
100010
|
+
issue?: Maybe<JiraIssue>;
|
|
100011
|
+
};
|
|
99472
100012
|
export declare type TownsquareProjectsCloneInput = {
|
|
99473
100013
|
addLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99474
100014
|
addWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -99581,6 +100121,17 @@ export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
|
99581
100121
|
success: Scalars['Boolean']['output'];
|
|
99582
100122
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
99583
100123
|
};
|
|
100124
|
+
export declare type TownsquareProjectsSetDependencyInput = {
|
|
100125
|
+
incomingProjectId: Scalars['ID']['input'];
|
|
100126
|
+
outgoingProjectId: Scalars['ID']['input'];
|
|
100127
|
+
type: TownsquareProjectDependencyRelationship;
|
|
100128
|
+
};
|
|
100129
|
+
export declare type TownsquareProjectsSetDependencyPayload = {
|
|
100130
|
+
__typename?: 'TownsquareProjectsSetDependencyPayload';
|
|
100131
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100132
|
+
projectDependency?: Maybe<TownsquareProjectDependency>;
|
|
100133
|
+
success: Scalars['Boolean']['output'];
|
|
100134
|
+
};
|
|
99584
100135
|
export declare type TownsquareProjectsSetWatchingProjectInput = {
|
|
99585
100136
|
isWatching: Scalars['Boolean']['input'];
|
|
99586
100137
|
projectId: Scalars['ID']['input'];
|
|
@@ -100036,9 +100587,9 @@ export declare type TrelloActionCardEntity = {
|
|
|
100036
100587
|
};
|
|
100037
100588
|
export declare type TrelloActionCheckItemEntity = {
|
|
100038
100589
|
__typename?: 'TrelloActionCheckItemEntity';
|
|
100039
|
-
id: Scalars['ID']['output'];
|
|
100040
100590
|
name?: Maybe<Scalars['String']['output']>;
|
|
100041
100591
|
nameHtml?: Maybe<Scalars['String']['output']>;
|
|
100592
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100042
100593
|
state?: Maybe<Scalars['String']['output']>;
|
|
100043
100594
|
text?: Maybe<Scalars['String']['output']>;
|
|
100044
100595
|
textData?: Maybe<Scalars['String']['output']>;
|
|
@@ -100047,8 +100598,8 @@ export declare type TrelloActionCheckItemEntity = {
|
|
|
100047
100598
|
export declare type TrelloActionChecklistEntity = {
|
|
100048
100599
|
__typename?: 'TrelloActionChecklistEntity';
|
|
100049
100600
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
100050
|
-
id: Scalars['ID']['output'];
|
|
100051
100601
|
name?: Maybe<Scalars['String']['output']>;
|
|
100602
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100052
100603
|
type?: Maybe<Scalars['String']['output']>;
|
|
100053
100604
|
};
|
|
100054
100605
|
export declare type TrelloActionCommentEntity = {
|
|
@@ -100178,7 +100729,7 @@ export declare type TrelloAddRemoveMemberActionDisplayEntities = {
|
|
|
100178
100729
|
__typename?: 'TrelloAddRemoveMemberActionDisplayEntities';
|
|
100179
100730
|
card?: Maybe<TrelloActionCardEntity>;
|
|
100180
100731
|
member?: Maybe<TrelloActionMemberEntity>;
|
|
100181
|
-
|
|
100732
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
100182
100733
|
};
|
|
100183
100734
|
export declare type TrelloAiRule = {
|
|
100184
100735
|
__typename?: 'TrelloAiRule';
|
|
@@ -100222,6 +100773,7 @@ export declare type TrelloApplication = {
|
|
|
100222
100773
|
moderatedState?: Maybe<Scalars['String']['output']>;
|
|
100223
100774
|
name?: Maybe<Scalars['String']['output']>;
|
|
100224
100775
|
oauth2Client?: Maybe<TrelloOAuth2Client>;
|
|
100776
|
+
objectId: Scalars['ID']['output'];
|
|
100225
100777
|
privacyUrl?: Maybe<Scalars['URL']['output']>;
|
|
100226
100778
|
public?: Maybe<Scalars['Boolean']['output']>;
|
|
100227
100779
|
supportEmail?: Maybe<Scalars['String']['output']>;
|
|
@@ -101031,6 +101583,7 @@ export declare type TrelloCardUpdated = {
|
|
|
101031
101583
|
name?: Maybe<Scalars['String']['output']>;
|
|
101032
101584
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101033
101585
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
101586
|
+
onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
|
|
101034
101587
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
101035
101588
|
position?: Maybe<Scalars['Float']['output']>;
|
|
101036
101589
|
powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
|
|
@@ -102448,6 +103001,10 @@ export declare type TrelloPowerUpDataConnectionUpdated = {
|
|
|
102448
103001
|
__typename?: 'TrelloPowerUpDataConnectionUpdated';
|
|
102449
103002
|
edges?: Maybe<Array<TrelloPowerUpDataEdgeUpdated>>;
|
|
102450
103003
|
};
|
|
103004
|
+
export declare type TrelloPowerUpDataDeleted = {
|
|
103005
|
+
__typename?: 'TrelloPowerUpDataDeleted';
|
|
103006
|
+
id: Scalars['ID']['output'];
|
|
103007
|
+
};
|
|
102451
103008
|
export declare type TrelloPowerUpDataEdge = {
|
|
102452
103009
|
__typename?: 'TrelloPowerUpDataEdge';
|
|
102453
103010
|
cursor: Scalars['String']['output'];
|
|
@@ -104759,11 +105316,19 @@ export declare type UpdateDefaultSpacePermissionsInput = {
|
|
|
104759
105316
|
permissionsToRemove: Array<InputMaybe<SpacePermissionType>>;
|
|
104760
105317
|
subjectKeyInput: UpdatePermissionSubjectKeyInput;
|
|
104761
105318
|
};
|
|
105319
|
+
export declare type UpdateDefaultSpacePermissionsInputV2 = {
|
|
105320
|
+
subjectPermissionDeltasListV2: Array<SubjectPermissionDeltasV2>;
|
|
105321
|
+
};
|
|
104762
105322
|
export declare type UpdateDefaultSpacePermissionsPayload = {
|
|
104763
105323
|
__typename?: 'UpdateDefaultSpacePermissionsPayload';
|
|
104764
105324
|
errors?: Maybe<Array<MutationError>>;
|
|
104765
105325
|
success: Scalars['Boolean']['output'];
|
|
104766
105326
|
};
|
|
105327
|
+
export declare type UpdateDefaultSpacePermissionsPayloadV2 = Payload & {
|
|
105328
|
+
__typename?: 'UpdateDefaultSpacePermissionsPayloadV2';
|
|
105329
|
+
errors?: Maybe<Array<MutationError>>;
|
|
105330
|
+
success: Scalars['Boolean']['output'];
|
|
105331
|
+
};
|
|
104767
105332
|
export declare type UpdateDevOpsContainerRelationshipEntityPropertiesInput = {
|
|
104768
105333
|
id: Scalars['ID']['input'];
|
|
104769
105334
|
properties: Array<DevOpsContainerRelationshipEntityPropertyInput>;
|
|
@@ -105237,12 +105802,22 @@ export declare type UpdateSpacePermissionsInput = {
|
|
|
105237
105802
|
spaceKey: Scalars['String']['input'];
|
|
105238
105803
|
subjectPermissionDeltasList: Array<SubjectPermissionDeltas>;
|
|
105239
105804
|
};
|
|
105805
|
+
export declare type UpdateSpacePermissionsInputV2 = {
|
|
105806
|
+
spaceId: Scalars['Long']['input'];
|
|
105807
|
+
subjectPermissionDeltasListV2: Array<SubjectPermissionDeltasV2>;
|
|
105808
|
+
};
|
|
105240
105809
|
export declare type UpdateSpacePermissionsPayload = {
|
|
105241
105810
|
__typename?: 'UpdateSpacePermissionsPayload';
|
|
105242
105811
|
errors?: Maybe<Array<MutationError>>;
|
|
105243
105812
|
spaceKey: Scalars['String']['output'];
|
|
105244
105813
|
success: Scalars['Boolean']['output'];
|
|
105245
105814
|
};
|
|
105815
|
+
export declare type UpdateSpacePermissionsPayloadV2 = Payload & {
|
|
105816
|
+
__typename?: 'UpdateSpacePermissionsPayloadV2';
|
|
105817
|
+
errors?: Maybe<Array<MutationError>>;
|
|
105818
|
+
spaceId: Scalars['Long']['output'];
|
|
105819
|
+
success: Scalars['Boolean']['output'];
|
|
105820
|
+
};
|
|
105246
105821
|
export declare type UpdateSpaceTypeSettingsInput = {
|
|
105247
105822
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
105248
105823
|
spaceTypeSettings?: InputMaybe<SpaceTypeSettingsInput>;
|