@forge/cli-shared 8.14.0 → 8.15.0-next.1
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 +18 -0
- package/out/graphql/graphql-types.d.ts +1024 -254
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +67 -28
- package/package.json +2 -2
|
@@ -1803,6 +1803,20 @@ export declare type AdminAuditLogEventExportResponsePayload = Payload & {
|
|
|
1803
1803
|
errors?: Maybe<Array<MutationError>>;
|
|
1804
1804
|
success: Scalars['Boolean']['output'];
|
|
1805
1805
|
};
|
|
1806
|
+
export declare type AdminAuditLogEventIpAddress = {
|
|
1807
|
+
__typename?: 'AdminAuditLogEventIpAddress';
|
|
1808
|
+
ip: Scalars['String']['output'];
|
|
1809
|
+
};
|
|
1810
|
+
export declare type AdminAuditLogEventIpAddressConnection = {
|
|
1811
|
+
__typename?: 'AdminAuditLogEventIpAddressConnection';
|
|
1812
|
+
edges?: Maybe<Array<AdminAuditLogEventIpAddressEdge>>;
|
|
1813
|
+
pageInfo: PageInfo;
|
|
1814
|
+
};
|
|
1815
|
+
export declare type AdminAuditLogEventIpAddressEdge = {
|
|
1816
|
+
__typename?: 'AdminAuditLogEventIpAddressEdge';
|
|
1817
|
+
cursor: Scalars['String']['output'];
|
|
1818
|
+
node: AdminAuditLogEventIpAddress;
|
|
1819
|
+
};
|
|
1806
1820
|
export declare type AdminAuditLogEventLocation = {
|
|
1807
1821
|
__typename?: 'AdminAuditLogEventLocation';
|
|
1808
1822
|
cityName: Scalars['String']['output'];
|
|
@@ -1983,6 +1997,7 @@ export declare type AdminEntitlement = {
|
|
|
1983
1997
|
bundleName?: Maybe<Scalars['String']['output']>;
|
|
1984
1998
|
entitlement?: Maybe<AdminEntitlementDetails>;
|
|
1985
1999
|
id: Scalars['ID']['output'];
|
|
2000
|
+
licenseLocks?: Maybe<Array<Scalars['String']['output']>>;
|
|
1986
2001
|
plan?: Maybe<AdminWorkspacePlan>;
|
|
1987
2002
|
seats?: Maybe<AdminSeats>;
|
|
1988
2003
|
sourceSystem: Scalars['String']['output'];
|
|
@@ -4632,6 +4647,7 @@ export declare type AppInstallation = {
|
|
|
4632
4647
|
isRecoverable: Scalars['Boolean']['output'];
|
|
4633
4648
|
license?: Maybe<AppInstallationLicense>;
|
|
4634
4649
|
provisionedExternally?: Maybe<Scalars['Boolean']['output']>;
|
|
4650
|
+
remoteInstallationRegion?: Maybe<Scalars['String']['output']>;
|
|
4635
4651
|
secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4636
4652
|
version?: Maybe<AppVersion>;
|
|
4637
4653
|
};
|
|
@@ -4860,12 +4876,14 @@ export declare type AppLogsWithMetaData = {
|
|
|
4860
4876
|
appId: Scalars['String']['output'];
|
|
4861
4877
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
4862
4878
|
cloudwatchId?: Maybe<Scalars['String']['output']>;
|
|
4879
|
+
container?: Maybe<Scalars['String']['output']>;
|
|
4863
4880
|
context?: Maybe<Context>;
|
|
4864
4881
|
edition?: Maybe<EditionValue>;
|
|
4865
4882
|
environmentId: Scalars['String']['output'];
|
|
4866
4883
|
error?: Maybe<Scalars['String']['output']>;
|
|
4867
4884
|
functionKey?: Maybe<Scalars['String']['output']>;
|
|
4868
4885
|
installationContext?: Maybe<Scalars['String']['output']>;
|
|
4886
|
+
instance?: Maybe<Scalars['String']['output']>;
|
|
4869
4887
|
invocationId: Scalars['String']['output'];
|
|
4870
4888
|
licenseState?: Maybe<LicenseValue>;
|
|
4871
4889
|
lvl?: Maybe<Scalars['String']['output']>;
|
|
@@ -4875,6 +4893,7 @@ export declare type AppLogsWithMetaData = {
|
|
|
4875
4893
|
other?: Maybe<Scalars['String']['output']>;
|
|
4876
4894
|
p?: Maybe<Scalars['String']['output']>;
|
|
4877
4895
|
product?: Maybe<Scalars['String']['output']>;
|
|
4896
|
+
service?: Maybe<Scalars['String']['output']>;
|
|
4878
4897
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
4879
4898
|
ts: Scalars['String']['output'];
|
|
4880
4899
|
};
|
|
@@ -5834,6 +5853,20 @@ export declare type AssetsDmAutoColumnMappingResponse = {
|
|
|
5834
5853
|
isSuccessful: Scalars['Boolean']['output'];
|
|
5835
5854
|
message: Scalars['String']['output'];
|
|
5836
5855
|
};
|
|
5856
|
+
export declare type AssetsDmBatchCreateComputeDictionaryValueResult = {
|
|
5857
|
+
__typename?: 'AssetsDMBatchCreateComputeDictionaryValueResult';
|
|
5858
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5859
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
5860
|
+
name: Scalars['String']['output'];
|
|
5861
|
+
};
|
|
5862
|
+
export declare type AssetsDmBatchCreateComputeDictionaryValuesResponse = {
|
|
5863
|
+
__typename?: 'AssetsDMBatchCreateComputeDictionaryValuesResponse';
|
|
5864
|
+
failureCount: Scalars['Int']['output'];
|
|
5865
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
5866
|
+
results: Array<AssetsDmBatchCreateComputeDictionaryValueResult>;
|
|
5867
|
+
successCount: Scalars['Int']['output'];
|
|
5868
|
+
totalCount: Scalars['Int']['output'];
|
|
5869
|
+
};
|
|
5837
5870
|
export declare type AssetsDmChangeDataSourceStatusArgs = {
|
|
5838
5871
|
cloudId: Scalars['ID']['input'];
|
|
5839
5872
|
input: AssetsDmChangeDataSourceStatusInput;
|
|
@@ -5923,11 +5956,6 @@ export declare type AssetsDmCreateComputeDictionaryValueInput = {
|
|
|
5923
5956
|
isImported: Scalars['Boolean']['input'];
|
|
5924
5957
|
name: Scalars['String']['input'];
|
|
5925
5958
|
};
|
|
5926
|
-
export declare type AssetsDmCreateComputeDictionaryValueResponse = {
|
|
5927
|
-
__typename?: 'AssetsDMCreateComputeDictionaryValueResponse';
|
|
5928
|
-
isSuccessful: Scalars['Boolean']['output'];
|
|
5929
|
-
message: Scalars['String']['output'];
|
|
5930
|
-
};
|
|
5931
5959
|
export declare type AssetsDmCreateDataDictionaryGroupInput = {
|
|
5932
5960
|
computeDictionaryId: Scalars['ID']['input'];
|
|
5933
5961
|
name: Scalars['String']['input'];
|
|
@@ -6396,6 +6424,7 @@ export declare type AssetsDmDataSourceFormFields = {
|
|
|
6396
6424
|
schemaObjectTypes: Array<AssetsDmSchemaObjectType>;
|
|
6397
6425
|
};
|
|
6398
6426
|
export declare type AssetsDmDataSourceFormFieldsDataSourceTypesArgs = {
|
|
6427
|
+
createDataSourceTypeIfMissing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6399
6428
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6400
6429
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
6401
6430
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -8135,6 +8164,7 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
|
|
|
8135
8164
|
};
|
|
8136
8165
|
export declare type BlockServiceBatchRetrieveBlocksInput = {
|
|
8137
8166
|
blockAris: Array<Scalars['String']['input']>;
|
|
8167
|
+
documentAri?: InputMaybe<Scalars['String']['input']>;
|
|
8138
8168
|
};
|
|
8139
8169
|
export declare type BlockServiceBatchRetrieveBlocksPayload = {
|
|
8140
8170
|
__typename?: 'BlockServiceBatchRetrieveBlocksPayload';
|
|
@@ -8172,6 +8202,7 @@ export declare type BlockServiceCreateBlockInput = {
|
|
|
8172
8202
|
content: Scalars['String']['input'];
|
|
8173
8203
|
product: BlockServiceBlockProduct;
|
|
8174
8204
|
sourceAri: Scalars['String']['input'];
|
|
8205
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
8175
8206
|
stepVersion?: InputMaybe<Scalars['Float']['input']>;
|
|
8176
8207
|
};
|
|
8177
8208
|
export declare type BlockServiceDeleteBlockInput = {
|
|
@@ -8188,6 +8219,11 @@ export declare type BlockServiceDocumentReferenceBlocksPayload = {
|
|
|
8188
8219
|
blocks: Array<BlockServiceBlockPayload>;
|
|
8189
8220
|
errors?: Maybe<Array<BlockServiceBlockErrorPayload>>;
|
|
8190
8221
|
};
|
|
8222
|
+
export declare type BlockServiceUpdateBlockInput = {
|
|
8223
|
+
blockAri: Scalars['String']['input'];
|
|
8224
|
+
content: Scalars['String']['input'];
|
|
8225
|
+
stepVersion?: InputMaybe<Scalars['Float']['input']>;
|
|
8226
|
+
};
|
|
8191
8227
|
export declare type BlockSmartLink = SmartLink & {
|
|
8192
8228
|
__typename?: 'BlockSmartLink';
|
|
8193
8229
|
url: Scalars['String']['output'];
|
|
@@ -10898,6 +10934,15 @@ export declare type CcpUsageUpdateCadence = {
|
|
|
10898
10934
|
cadenceIntervalMinutes?: Maybe<Scalars['Int']['output']>;
|
|
10899
10935
|
name?: Maybe<Scalars['String']['output']>;
|
|
10900
10936
|
};
|
|
10937
|
+
export declare type ChangeManagementGlobalRiskAssessmentSettingsPayload = {
|
|
10938
|
+
__typename?: 'ChangeManagementGlobalRiskAssessmentSettingsPayload';
|
|
10939
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10940
|
+
};
|
|
10941
|
+
export declare type ChangeManagementLastRovoRiskAssessmentPayload = {
|
|
10942
|
+
__typename?: 'ChangeManagementLastRovoRiskAssessmentPayload';
|
|
10943
|
+
response?: Maybe<Scalars['String']['output']>;
|
|
10944
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
10945
|
+
};
|
|
10901
10946
|
export declare type ChangeManagementRovoRiskAssessmentSettingsPayload = {
|
|
10902
10947
|
__typename?: 'ChangeManagementRovoRiskAssessmentSettingsPayload';
|
|
10903
10948
|
isBusinessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -10906,6 +10951,16 @@ export declare type ChangeManagementRovoRiskAssessmentSettingsPayload = {
|
|
|
10906
10951
|
isTechnicalEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
10907
10952
|
knowledgeBases?: Maybe<Array<Scalars['String']['output']>>;
|
|
10908
10953
|
};
|
|
10954
|
+
export declare type ChangeManagementUpdateGlobalRiskAssessmentSettingsInput = {
|
|
10955
|
+
cloudId: Scalars['ID']['input'];
|
|
10956
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
10957
|
+
projectId: Scalars['String']['input'];
|
|
10958
|
+
};
|
|
10959
|
+
export declare type ChangeManagementUpdateLastRovoRiskAssessmentInput = {
|
|
10960
|
+
cloudId: Scalars['ID']['input'];
|
|
10961
|
+
issueId: Scalars['String']['input'];
|
|
10962
|
+
response: Scalars['String']['input'];
|
|
10963
|
+
};
|
|
10909
10964
|
export declare type ChangeManagementUpdateRovoRiskAssessmentSettingsInput = {
|
|
10910
10965
|
cloudId: Scalars['ID']['input'];
|
|
10911
10966
|
isBusinessEnabled: Scalars['Boolean']['input'];
|
|
@@ -16905,6 +16960,11 @@ export declare type ConfluenceAcceptAnswerPayload = Payload & {
|
|
|
16905
16960
|
errors?: Maybe<Array<MutationError>>;
|
|
16906
16961
|
success: Scalars['Boolean']['output'];
|
|
16907
16962
|
};
|
|
16963
|
+
export declare type ConfluenceAccessRequestSettings = {
|
|
16964
|
+
__typename?: 'ConfluenceAccessRequestSettings';
|
|
16965
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
16966
|
+
messageContent?: Maybe<Scalars['String']['output']>;
|
|
16967
|
+
};
|
|
16908
16968
|
export declare type ConfluenceAddCustomApplicationLinkInput = {
|
|
16909
16969
|
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
16910
16970
|
displayName: Scalars['String']['input'];
|
|
@@ -17808,6 +17868,7 @@ export declare type ConfluenceContentTemplateRef = {
|
|
|
17808
17868
|
__typename?: 'ConfluenceContentTemplateRef';
|
|
17809
17869
|
id: Scalars['ID']['output'];
|
|
17810
17870
|
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
17871
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
17811
17872
|
templateId?: Maybe<Scalars['ID']['output']>;
|
|
17812
17873
|
};
|
|
17813
17874
|
export declare type ConfluenceContentTitleEmoji = {
|
|
@@ -20377,6 +20438,107 @@ export declare enum ConfluencePermission {
|
|
|
20377
20438
|
Edit = "EDIT",
|
|
20378
20439
|
View = "VIEW"
|
|
20379
20440
|
}
|
|
20441
|
+
export declare type ConfluencePermissionCombinationPrincipalTypeAssignmentInput = {
|
|
20442
|
+
principalType: ConfluencePermissionTransitionPrincipalType;
|
|
20443
|
+
removeAccess: Scalars['Boolean']['input'];
|
|
20444
|
+
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
20445
|
+
};
|
|
20446
|
+
export declare type ConfluencePermissionCombinationRoleAssignmentInput = {
|
|
20447
|
+
permissionCombinationId: Scalars['ID']['input'];
|
|
20448
|
+
principalTypeAssignment: Array<InputMaybe<ConfluencePermissionCombinationPrincipalTypeAssignmentInput>>;
|
|
20449
|
+
};
|
|
20450
|
+
export declare type ConfluencePermissionTransitionBulkAssignRolesInput = {
|
|
20451
|
+
assignments: Array<InputMaybe<ConfluencePermissionCombinationRoleAssignmentInput>>;
|
|
20452
|
+
spaceSelection: ConfluencePermissionTransitionSpaceTargetSelectionInput;
|
|
20453
|
+
};
|
|
20454
|
+
export declare type ConfluencePermissionTransitionBulkAssignRolesPayload = Payload & {
|
|
20455
|
+
__typename?: 'ConfluencePermissionTransitionBulkAssignRolesPayload';
|
|
20456
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20457
|
+
success: Scalars['Boolean']['output'];
|
|
20458
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
20459
|
+
};
|
|
20460
|
+
export declare type ConfluencePermissionTransitionBulkRemoveAccessInput = {
|
|
20461
|
+
permissionCombinationIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
20462
|
+
spaceTargetSelection: ConfluencePermissionTransitionSpaceTargetSelectionInput;
|
|
20463
|
+
};
|
|
20464
|
+
export declare type ConfluencePermissionTransitionBulkRemoveAccessPayload = Payload & {
|
|
20465
|
+
__typename?: 'ConfluencePermissionTransitionBulkRemoveAccessPayload';
|
|
20466
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20467
|
+
success: Scalars['Boolean']['output'];
|
|
20468
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
20469
|
+
};
|
|
20470
|
+
export declare type ConfluencePermissionTransitionPrincipal = {
|
|
20471
|
+
__typename?: 'ConfluencePermissionTransitionPrincipal';
|
|
20472
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
20473
|
+
id: Scalars['ID']['output'];
|
|
20474
|
+
memberCount?: Maybe<Scalars['Int']['output']>;
|
|
20475
|
+
name: Scalars['String']['output'];
|
|
20476
|
+
profilePicture?: Maybe<Icon>;
|
|
20477
|
+
type: ConfluencePermissionTransitionPrincipalType;
|
|
20478
|
+
};
|
|
20479
|
+
export declare type ConfluencePermissionTransitionPrincipalEdge = {
|
|
20480
|
+
__typename?: 'ConfluencePermissionTransitionPrincipalEdge';
|
|
20481
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
20482
|
+
node: ConfluencePermissionTransitionPrincipal;
|
|
20483
|
+
};
|
|
20484
|
+
export declare type ConfluencePermissionTransitionPrincipalPageInfo = {
|
|
20485
|
+
__typename?: 'ConfluencePermissionTransitionPrincipalPageInfo';
|
|
20486
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
20487
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
20488
|
+
};
|
|
20489
|
+
export declare enum ConfluencePermissionTransitionPrincipalType {
|
|
20490
|
+
Anonymous = "ANONYMOUS",
|
|
20491
|
+
Group = "GROUP",
|
|
20492
|
+
Guest = "GUEST",
|
|
20493
|
+
User = "USER"
|
|
20494
|
+
}
|
|
20495
|
+
export declare type ConfluencePermissionTransitionPrincipalsConnection = {
|
|
20496
|
+
__typename?: 'ConfluencePermissionTransitionPrincipalsConnection';
|
|
20497
|
+
edges?: Maybe<Array<Maybe<ConfluencePermissionTransitionPrincipalEdge>>>;
|
|
20498
|
+
pageInfo: ConfluencePermissionTransitionPrincipalPageInfo;
|
|
20499
|
+
};
|
|
20500
|
+
export declare type ConfluencePermissionTransitionSpace = {
|
|
20501
|
+
__typename?: 'ConfluencePermissionTransitionSpace';
|
|
20502
|
+
icon: Scalars['String']['output'];
|
|
20503
|
+
id: Scalars['ID']['output'];
|
|
20504
|
+
isPersonalSpace: Scalars['Boolean']['output'];
|
|
20505
|
+
key: Scalars['String']['output'];
|
|
20506
|
+
name: Scalars['String']['output'];
|
|
20507
|
+
owner: ConfluencePermissionTransitionSpaceOwner;
|
|
20508
|
+
};
|
|
20509
|
+
export declare type ConfluencePermissionTransitionSpaceConnection = {
|
|
20510
|
+
__typename?: 'ConfluencePermissionTransitionSpaceConnection';
|
|
20511
|
+
edges?: Maybe<Array<Maybe<ConfluencePermissionTransitionSpaceEdge>>>;
|
|
20512
|
+
pageInfo: ConfluenceSpacePermissionPageInfo;
|
|
20513
|
+
};
|
|
20514
|
+
export declare type ConfluencePermissionTransitionSpaceEdge = {
|
|
20515
|
+
__typename?: 'ConfluencePermissionTransitionSpaceEdge';
|
|
20516
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
20517
|
+
node: ConfluencePermissionTransitionSpace;
|
|
20518
|
+
};
|
|
20519
|
+
export declare type ConfluencePermissionTransitionSpaceOwner = {
|
|
20520
|
+
__typename?: 'ConfluencePermissionTransitionSpaceOwner';
|
|
20521
|
+
email: Scalars['String']['output'];
|
|
20522
|
+
name: Scalars['String']['output'];
|
|
20523
|
+
profilePicture: Icon;
|
|
20524
|
+
};
|
|
20525
|
+
export declare type ConfluencePermissionTransitionSpaceTargetSelectionInput = {
|
|
20526
|
+
selectedSpaces?: InputMaybe<Array<InputMaybe<ConfluenceSpaceTargetInput>>>;
|
|
20527
|
+
spaceType: ConfluencePermissionTransitionSpaceType;
|
|
20528
|
+
};
|
|
20529
|
+
export declare enum ConfluencePermissionTransitionSpaceType {
|
|
20530
|
+
All = "ALL",
|
|
20531
|
+
AllExceptPersonal = "ALL_EXCEPT_PERSONAL",
|
|
20532
|
+
AllExceptSpecific = "ALL_EXCEPT_SPECIFIC",
|
|
20533
|
+
Personal = "PERSONAL",
|
|
20534
|
+
Specific = "SPECIFIC"
|
|
20535
|
+
}
|
|
20536
|
+
export declare enum ConfluencePermissionTransitionSpaceTypeFilter {
|
|
20537
|
+
Collaboration = "COLLABORATION",
|
|
20538
|
+
Global = "GLOBAL",
|
|
20539
|
+
KnowledgeBase = "KNOWLEDGE_BASE",
|
|
20540
|
+
Personal = "PERSONAL"
|
|
20541
|
+
}
|
|
20380
20542
|
export declare enum ConfluencePermissionTypeAssignabilityCode {
|
|
20381
20543
|
AnonymousAssignable = "ANONYMOUS_ASSIGNABLE",
|
|
20382
20544
|
Assignable = "ASSIGNABLE",
|
|
@@ -21097,6 +21259,7 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
21097
21259
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
21098
21260
|
connectionTimeout?: Maybe<Scalars['Int']['output']>;
|
|
21099
21261
|
contactAdministratorsMessage?: Maybe<Scalars['String']['output']>;
|
|
21262
|
+
contentAccessRequestSettings?: Maybe<ConfluenceAccessRequestSettings>;
|
|
21100
21263
|
customPageSettings?: Maybe<ConfluenceCustomPageSettings>;
|
|
21101
21264
|
editorDefaultWidth?: Maybe<ConfluenceSiteConfigurationEditorDefaultWidth>;
|
|
21102
21265
|
formattingSettings?: Maybe<ConfluenceFormattingSettings>;
|
|
@@ -21130,6 +21293,7 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
21130
21293
|
siteHomePage?: Maybe<Scalars['String']['output']>;
|
|
21131
21294
|
siteTitle?: Maybe<Scalars['String']['output']>;
|
|
21132
21295
|
socketTimeout?: Maybe<Scalars['Int']['output']>;
|
|
21296
|
+
spaceAccessRequestSettings?: Maybe<ConfluenceAccessRequestSettings>;
|
|
21133
21297
|
teamAdminControlsSettings?: Maybe<ConfluenceTeamAdminControlsSettings>;
|
|
21134
21298
|
teamPresenceSettings?: Maybe<ConfluenceTeamPresenceSettings>;
|
|
21135
21299
|
};
|
|
@@ -21367,6 +21531,10 @@ export declare enum ConfluenceSpaceStatus {
|
|
|
21367
21531
|
Current = "CURRENT",
|
|
21368
21532
|
Trashed = "TRASHED"
|
|
21369
21533
|
}
|
|
21534
|
+
export declare type ConfluenceSpaceTargetInput = {
|
|
21535
|
+
id: Scalars['ID']['input'];
|
|
21536
|
+
key: Scalars['String']['input'];
|
|
21537
|
+
};
|
|
21370
21538
|
export declare enum ConfluenceSpaceType {
|
|
21371
21539
|
Global = "GLOBAL",
|
|
21372
21540
|
Personal = "PERSONAL"
|
|
@@ -21694,6 +21862,15 @@ export declare type ConfluenceUnwatchSubCalendarPayload = {
|
|
|
21694
21862
|
errors?: Maybe<Array<MutationError>>;
|
|
21695
21863
|
success: Scalars['Boolean']['output'];
|
|
21696
21864
|
};
|
|
21865
|
+
export declare type ConfluenceUpdateAccessRequestSettingsInput = {
|
|
21866
|
+
enabled: Scalars['Boolean']['input'];
|
|
21867
|
+
messageContent?: InputMaybe<Scalars['String']['input']>;
|
|
21868
|
+
};
|
|
21869
|
+
export declare type ConfluenceUpdateAccessRequestSettingsPayload = Payload & {
|
|
21870
|
+
__typename?: 'ConfluenceUpdateAccessRequestSettingsPayload';
|
|
21871
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21872
|
+
success: Scalars['Boolean']['output'];
|
|
21873
|
+
};
|
|
21697
21874
|
export declare type ConfluenceUpdateAdminAnnouncementBannerInput = {
|
|
21698
21875
|
appearance?: InputMaybe<Scalars['String']['input']>;
|
|
21699
21876
|
content?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22828,6 +23005,7 @@ export declare type ContentContentStateArgs = {
|
|
|
22828
23005
|
};
|
|
22829
23006
|
export declare type ContentContentStateLastUpdatedArgs = {
|
|
22830
23007
|
format?: InputMaybe<GraphQlDateFormat>;
|
|
23008
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22831
23009
|
};
|
|
22832
23010
|
export declare type ContentDynamicMobileBodyArgs = {
|
|
22833
23011
|
imageLazyLoading?: Scalars['Boolean']['input'];
|
|
@@ -24765,6 +24943,17 @@ export declare type ConvoAiAgentMessage = {
|
|
|
24765
24943
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
24766
24944
|
timeCreated: Scalars['DateTime']['output'];
|
|
24767
24945
|
};
|
|
24946
|
+
export declare type ConvoAiAgentSession = ConvoAiAgentSessionNode & {
|
|
24947
|
+
__typename?: 'ConvoAiAgentSession';
|
|
24948
|
+
_type?: Maybe<Scalars['String']['output']>;
|
|
24949
|
+
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
24950
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
24951
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
24952
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
24953
|
+
};
|
|
24954
|
+
export declare type ConvoAiAgentSessionNode = {
|
|
24955
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
24956
|
+
};
|
|
24768
24957
|
export declare type ConvoAiAgentSessionUpdate = ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
|
|
24769
24958
|
export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
24770
24959
|
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
@@ -25314,12 +25503,14 @@ export declare type CplsFilters = {
|
|
|
25314
25503
|
__typename?: 'CplsFilters';
|
|
25315
25504
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
25316
25505
|
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
25506
|
+
jiraWorkItemStatuses?: Maybe<Array<Scalars['ID']['output']>>;
|
|
25317
25507
|
jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
|
|
25318
25508
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
25319
25509
|
};
|
|
25320
25510
|
export declare type CplsFiltersInput = {
|
|
25321
25511
|
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25322
25512
|
customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25513
|
+
jiraWorkItemStatuses?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25323
25514
|
jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
25324
25515
|
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
25325
25516
|
};
|
|
@@ -29399,6 +29590,17 @@ export declare type DevAiRovoDevBulkSessionResult = {
|
|
|
29399
29590
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
29400
29591
|
session?: Maybe<DevAiRovoDevSession>;
|
|
29401
29592
|
};
|
|
29593
|
+
export declare type DevAiRovoDevCreatePullRequestInput = {
|
|
29594
|
+
branchName?: InputMaybe<Scalars['String']['input']>;
|
|
29595
|
+
codeChanges?: InputMaybe<Scalars['String']['input']>;
|
|
29596
|
+
sessionAri: Scalars['ID']['input'];
|
|
29597
|
+
};
|
|
29598
|
+
export declare type DevAiRovoDevCreatePullRequestPayload = Payload & {
|
|
29599
|
+
__typename?: 'DevAiRovoDevCreatePullRequestPayload';
|
|
29600
|
+
errors: Array<MutationError>;
|
|
29601
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
29602
|
+
success: Scalars['Boolean']['output'];
|
|
29603
|
+
};
|
|
29402
29604
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
29403
29605
|
automationInvokerId?: InputMaybe<Scalars['String']['input']>;
|
|
29404
29606
|
cloudId: Scalars['ID']['input'];
|
|
@@ -32440,7 +32642,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
32440
32642
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
32441
32643
|
node?: Maybe<ExternalAssociation>;
|
|
32442
32644
|
};
|
|
32443
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
32645
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
32444
32646
|
export declare type ExternalAttachment = {
|
|
32445
32647
|
__typename?: 'ExternalAttachment';
|
|
32446
32648
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -33099,12 +33301,13 @@ export declare type ExternalEntities = {
|
|
|
33099
33301
|
testExecution?: Maybe<Array<Maybe<ExternalTestExecution>>>;
|
|
33100
33302
|
testPlan?: Maybe<Array<Maybe<ExternalTestPlan>>>;
|
|
33101
33303
|
testRun?: Maybe<Array<Maybe<ExternalTestRun>>>;
|
|
33304
|
+
testStatus?: Maybe<Array<Maybe<ExternalTestStatus>>>;
|
|
33102
33305
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
33103
33306
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
33104
33307
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
33105
33308
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
33106
33309
|
};
|
|
33107
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
33310
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
33108
33311
|
export declare type ExternalEntityExtendedValue = {
|
|
33109
33312
|
__typename?: 'ExternalEntityExtendedValue';
|
|
33110
33313
|
fieldDisplayName?: Maybe<ExternalEntityExtendedValueDisplayName>;
|
|
@@ -33642,6 +33845,32 @@ export declare type ExternalTestRun = Node & {
|
|
|
33642
33845
|
url?: Maybe<Scalars['String']['output']>;
|
|
33643
33846
|
version?: Maybe<Scalars['String']['output']>;
|
|
33644
33847
|
};
|
|
33848
|
+
export declare type ExternalTestStatus = Node & {
|
|
33849
|
+
__typename?: 'ExternalTestStatus';
|
|
33850
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
33851
|
+
container?: Maybe<ExternalEntity>;
|
|
33852
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
33853
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
33854
|
+
createdBy?: Maybe<ExternalUser>;
|
|
33855
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
33856
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
33857
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
33858
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
33859
|
+
id: Scalars['ID']['output'];
|
|
33860
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
33861
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
33862
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
33863
|
+
parent?: Maybe<ExternalEntity>;
|
|
33864
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
33865
|
+
provider?: Maybe<ExternalProvider>;
|
|
33866
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
33867
|
+
statusPrecedence?: Maybe<Scalars['String']['output']>;
|
|
33868
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
33869
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
33870
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
33871
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
33872
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
33873
|
+
};
|
|
33645
33874
|
export declare type ExternalThumbnail = {
|
|
33646
33875
|
__typename?: 'ExternalThumbnail';
|
|
33647
33876
|
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -36407,6 +36636,11 @@ export declare enum GraphIntegrationDirectoryItemType {
|
|
|
36407
36636
|
McpTool = "MCP_TOOL",
|
|
36408
36637
|
Skill = "SKILL"
|
|
36409
36638
|
}
|
|
36639
|
+
export declare type GraphIntegrationIcon = {
|
|
36640
|
+
__typename?: 'GraphIntegrationIcon';
|
|
36641
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
36642
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
36643
|
+
};
|
|
36410
36644
|
export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection = {
|
|
36411
36645
|
__typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection';
|
|
36412
36646
|
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge>>;
|
|
@@ -36428,6 +36662,7 @@ export declare type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNo
|
|
|
36428
36662
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
36429
36663
|
isInstalled: Scalars['Boolean']['output'];
|
|
36430
36664
|
serverUrl: Scalars['String']['output'];
|
|
36665
|
+
templateId: Scalars['String']['output'];
|
|
36431
36666
|
};
|
|
36432
36667
|
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
36433
36668
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
@@ -36510,6 +36745,7 @@ export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
|
36510
36745
|
icon?: InputMaybe<Scalars['String']['input']>;
|
|
36511
36746
|
serverType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerType>;
|
|
36512
36747
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
36748
|
+
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
36513
36749
|
url: Scalars['URL']['input'];
|
|
36514
36750
|
};
|
|
36515
36751
|
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerPayload = Payload & {
|
|
@@ -36651,6 +36887,7 @@ export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
|
36651
36887
|
contextAri: Scalars['ID']['output'];
|
|
36652
36888
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
36653
36889
|
description: Scalars['String']['output'];
|
|
36890
|
+
icon?: Maybe<GraphIntegrationIcon>;
|
|
36654
36891
|
iconKey: Scalars['String']['output'];
|
|
36655
36892
|
id: Scalars['String']['output'];
|
|
36656
36893
|
maxInstallations: Scalars['Int']['output'];
|
|
@@ -36671,6 +36908,7 @@ export declare type GraphIntegrationTwgCapabilityContainerMeta = {
|
|
|
36671
36908
|
__typename?: 'GraphIntegrationTwgCapabilityContainerMeta';
|
|
36672
36909
|
availableCapabilities: Array<GraphIntegrationAppCapability>;
|
|
36673
36910
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
36911
|
+
icon?: Maybe<GraphIntegrationIcon>;
|
|
36674
36912
|
iconKey: Scalars['String']['output'];
|
|
36675
36913
|
maxInstallations: Scalars['Int']['output'];
|
|
36676
36914
|
name: Scalars['String']['output'];
|
|
@@ -39718,6 +39956,8 @@ export declare type GraphStore = {
|
|
|
39718
39956
|
jiraRepoIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedJiraRepoIsProviderRepoInverseConnection>;
|
|
39719
39957
|
jiraWorkItemCommentHasChildComment?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentConnection>;
|
|
39720
39958
|
jiraWorkItemCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseConnection>;
|
|
39959
|
+
jiraWorkItemLinksAssetObject?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection>;
|
|
39960
|
+
jiraWorkItemLinksAssetObjectInverse?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection>;
|
|
39721
39961
|
jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
39722
39962
|
jsmProjectAssociatedServiceBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
39723
39963
|
jsmProjectAssociatedServiceInverse?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseConnection>;
|
|
@@ -43005,6 +43245,22 @@ export declare type GraphStoreJiraWorkItemCommentHasChildCommentInverseArgs = {
|
|
|
43005
43245
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
43006
43246
|
sort?: InputMaybe<GraphStoreJiraWorkItemCommentHasChildCommentSortInput>;
|
|
43007
43247
|
};
|
|
43248
|
+
export declare type GraphStoreJiraWorkItemLinksAssetObjectArgs = {
|
|
43249
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43250
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43251
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43252
|
+
id: Scalars['ID']['input'];
|
|
43253
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
43254
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemLinksAssetObjectSortInput>;
|
|
43255
|
+
};
|
|
43256
|
+
export declare type GraphStoreJiraWorkItemLinksAssetObjectInverseArgs = {
|
|
43257
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43258
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43259
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43260
|
+
id: Scalars['ID']['input'];
|
|
43261
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
43262
|
+
sort?: InputMaybe<GraphStoreJiraWorkItemLinksAssetObjectSortInput>;
|
|
43263
|
+
};
|
|
43008
43264
|
export declare type GraphStoreJsmProjectAssociatedServiceArgs = {
|
|
43009
43265
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
43010
43266
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48002,7 +48258,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
48002
48258
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
48003
48259
|
id: Scalars['ID']['output'];
|
|
48004
48260
|
};
|
|
48005
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48261
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
48006
48262
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
48007
48263
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
48008
48264
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -50768,7 +51024,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
50768
51024
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
50769
51025
|
id: Scalars['ID']['output'];
|
|
50770
51026
|
};
|
|
50771
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
51027
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
50772
51028
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
50773
51029
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
50774
51030
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -54224,6 +54480,9 @@ export declare type GraphStoreJiraRepoIsProviderRepoSortInput = {
|
|
|
54224
54480
|
export declare type GraphStoreJiraWorkItemCommentHasChildCommentSortInput = {
|
|
54225
54481
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54226
54482
|
};
|
|
54483
|
+
export declare type GraphStoreJiraWorkItemLinksAssetObjectSortInput = {
|
|
54484
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54485
|
+
};
|
|
54227
54486
|
export declare type GraphStoreJsmProjectAssociatedServiceSortInput = {
|
|
54228
54487
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
54229
54488
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -56905,7 +57164,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
56905
57164
|
lastUpdated: Scalars['DateTime']['output'];
|
|
56906
57165
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
56907
57166
|
};
|
|
56908
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
57167
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56909
57168
|
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | 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 | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56910
57169
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
56911
57170
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
@@ -58923,6 +59182,34 @@ export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInvers
|
|
|
58923
59182
|
};
|
|
58924
59183
|
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentInverseUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
58925
59184
|
export declare type GraphStoreSimplifiedJiraWorkItemCommentHasChildCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
59185
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection = HasPageInfo & {
|
|
59186
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectConnection';
|
|
59187
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectEdge>>>;
|
|
59188
|
+
pageInfo: PageInfo;
|
|
59189
|
+
};
|
|
59190
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectEdge = {
|
|
59191
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectEdge';
|
|
59192
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59193
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59194
|
+
id: Scalars['ID']['output'];
|
|
59195
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59196
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectUnion>;
|
|
59197
|
+
};
|
|
59198
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection = HasPageInfo & {
|
|
59199
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseConnection';
|
|
59200
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseEdge>>>;
|
|
59201
|
+
pageInfo: PageInfo;
|
|
59202
|
+
};
|
|
59203
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseEdge = {
|
|
59204
|
+
__typename?: 'GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseEdge';
|
|
59205
|
+
createdAt: Scalars['DateTime']['output'];
|
|
59206
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
59207
|
+
id: Scalars['ID']['output'];
|
|
59208
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
59209
|
+
node?: Maybe<GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseUnion>;
|
|
59210
|
+
};
|
|
59211
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectInverseUnion = JiraIssue;
|
|
59212
|
+
export declare type GraphStoreSimplifiedJiraWorkItemLinksAssetObjectUnion = AssetsObject;
|
|
58926
59213
|
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
58927
59214
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceConnection';
|
|
58928
59215
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceEdge>>>;
|
|
@@ -66329,6 +66616,10 @@ export declare type GraphStoreV2 = {
|
|
|
66329
66616
|
atlassianUserCreatedLoomVideoInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedLoomVideoInverseConnection>;
|
|
66330
66617
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
66331
66618
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
66619
|
+
atlassianUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalConnection>;
|
|
66620
|
+
atlassianUserFavoritedAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseConnection>;
|
|
66621
|
+
atlassianUserFavoritedAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectConnection>;
|
|
66622
|
+
atlassianUserFavoritedAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseConnection>;
|
|
66332
66623
|
atlassianUserFavoritedConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceBlogpostConnection>;
|
|
66333
66624
|
atlassianUserFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
66334
66625
|
atlassianUserFavoritedConfluenceDatabase?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceDatabaseConnection>;
|
|
@@ -66365,8 +66656,10 @@ export declare type GraphStoreV2 = {
|
|
|
66365
66656
|
atlassianUserMentionedInConfluenceCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluenceCommentInverseConnection>;
|
|
66366
66657
|
atlassianUserMentionedInConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePageConnection>;
|
|
66367
66658
|
atlassianUserMentionedInConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInConfluencePageInverseConnection>;
|
|
66659
|
+
atlassianUserMentionedInJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemConnection>;
|
|
66368
66660
|
atlassianUserMentionedInJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentConnection>;
|
|
66369
66661
|
atlassianUserMentionedInJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentInverseConnection>;
|
|
66662
|
+
atlassianUserMentionedInJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseConnection>;
|
|
66370
66663
|
atlassianUserMentionedInLoomVideoComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentConnection>;
|
|
66371
66664
|
atlassianUserMentionedInLoomVideoCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentInverseConnection>;
|
|
66372
66665
|
atlassianUserOwnsAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsAtlassianGoalConnection>;
|
|
@@ -66514,8 +66807,6 @@ export declare type GraphStoreV2 = {
|
|
|
66514
66807
|
externalDocumentHasChildExternalDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentHasChildExternalDocumentInverseConnection>;
|
|
66515
66808
|
externalDocumentLinksThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalDocumentLinksThirdPartyDocumentInverseConnection>;
|
|
66516
66809
|
externalEntityIsThirdPartyEntityInverse?: Maybe<GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseConnection>;
|
|
66517
|
-
externalMeetingHasExternalMeetingNotesPage?: Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageConnection>;
|
|
66518
|
-
externalMeetingHasExternalMeetingNotesPageInverse?: Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseConnection>;
|
|
66519
66810
|
externalMeetingRecurrenceHasJiraSpace?: Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceConnection>;
|
|
66520
66811
|
externalMeetingRecurrenceHasJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceInverseConnection>;
|
|
66521
66812
|
externalMessageHasChildExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalMessageHasChildExternalMessageConnection>;
|
|
@@ -66612,10 +66903,6 @@ export declare type GraphStoreV2 = {
|
|
|
66612
66903
|
externalUserCreatedExternalTestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseConnection>;
|
|
66613
66904
|
externalUserCreatedExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection>;
|
|
66614
66905
|
externalUserCreatedExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseConnection>;
|
|
66615
|
-
externalUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalConnection>;
|
|
66616
|
-
externalUserFavoritedAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseConnection>;
|
|
66617
|
-
externalUserFavoritedAtlassianProject?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectConnection>;
|
|
66618
|
-
externalUserFavoritedAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectInverseConnection>;
|
|
66619
66906
|
externalUserLastUpdatedExternalDesign?: Maybe<GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignConnection>;
|
|
66620
66907
|
externalUserLastUpdatedExternalDesignInverse?: Maybe<GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignInverseConnection>;
|
|
66621
66908
|
externalUserMemberOfExternalConversation?: Maybe<GraphStoreV2SimplifiedExternalUserMemberOfExternalConversationConnection>;
|
|
@@ -66792,6 +67079,8 @@ export declare type GraphStoreV2 = {
|
|
|
66792
67079
|
jiraWorkItemHasJiraPriorityInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraPriorityInverseConnection>;
|
|
66793
67080
|
jiraWorkItemHasJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentConnection>;
|
|
66794
67081
|
jiraWorkItemHasJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseConnection>;
|
|
67082
|
+
jiraWorkItemLinksAssetObject?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectConnection>;
|
|
67083
|
+
jiraWorkItemLinksAssetObjectInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseConnection>;
|
|
66795
67084
|
jiraWorkItemLinksConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection>;
|
|
66796
67085
|
jiraWorkItemLinksConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardInverseConnection>;
|
|
66797
67086
|
jiraWorkItemLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBranchConnection>;
|
|
@@ -66833,6 +67122,8 @@ export declare type GraphStoreV2 = {
|
|
|
66833
67122
|
jsmSpaceLinksExternalServiceInverse?: Maybe<GraphStoreV2SimplifiedJsmSpaceLinksExternalServiceInverseConnection>;
|
|
66834
67123
|
jsmSpaceLinksKnowledgeBaseEntity?: Maybe<GraphStoreV2SimplifiedJsmSpaceLinksKnowledgeBaseEntityConnection>;
|
|
66835
67124
|
jsmSpaceLinksKnowledgeBaseEntityInverse?: Maybe<GraphStoreV2SimplifiedJsmSpaceLinksKnowledgeBaseEntityInverseConnection>;
|
|
67125
|
+
loomMeetingHasConfluenceMeetingNotesPage?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageConnection>;
|
|
67126
|
+
loomMeetingHasConfluenceMeetingNotesPageInverse?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseConnection>;
|
|
66836
67127
|
loomMeetingHasJiraSpace?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasJiraSpaceConnection>;
|
|
66837
67128
|
loomMeetingHasJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasJiraSpaceInverseConnection>;
|
|
66838
67129
|
loomMeetingHasLoomVideo?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasLoomVideoConnection>;
|
|
@@ -67555,6 +67846,34 @@ export declare type GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEn
|
|
|
67555
67846
|
id: Scalars['ID']['input'];
|
|
67556
67847
|
sort?: InputMaybe<GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntitySortInput>;
|
|
67557
67848
|
};
|
|
67849
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianGoalArgs = {
|
|
67850
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67851
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67852
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67853
|
+
id: Scalars['ID']['input'];
|
|
67854
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFavoritedAtlassianGoalSortInput>;
|
|
67855
|
+
};
|
|
67856
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianGoalInverseArgs = {
|
|
67857
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67858
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67859
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67860
|
+
id: Scalars['ID']['input'];
|
|
67861
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFavoritedAtlassianGoalSortInput>;
|
|
67862
|
+
};
|
|
67863
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianProjectArgs = {
|
|
67864
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67865
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67866
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67867
|
+
id: Scalars['ID']['input'];
|
|
67868
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFavoritedAtlassianProjectSortInput>;
|
|
67869
|
+
};
|
|
67870
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianProjectInverseArgs = {
|
|
67871
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67872
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67873
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67874
|
+
id: Scalars['ID']['input'];
|
|
67875
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserFavoritedAtlassianProjectSortInput>;
|
|
67876
|
+
};
|
|
67558
67877
|
export declare type GraphStoreV2AtlassianUserFavoritedConfluenceBlogpostArgs = {
|
|
67559
67878
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67560
67879
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67809,6 +68128,13 @@ export declare type GraphStoreV2AtlassianUserMentionedInConfluencePageInverseArg
|
|
|
67809
68128
|
id: Scalars['ID']['input'];
|
|
67810
68129
|
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInConfluencePageSortInput>;
|
|
67811
68130
|
};
|
|
68131
|
+
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemArgs = {
|
|
68132
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68133
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68134
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68135
|
+
id: Scalars['ID']['input'];
|
|
68136
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInJiraWorkItemSortInput>;
|
|
68137
|
+
};
|
|
67812
68138
|
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentArgs = {
|
|
67813
68139
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67814
68140
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -67823,6 +68149,13 @@ export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentInver
|
|
|
67823
68149
|
id: Scalars['ID']['input'];
|
|
67824
68150
|
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentSortInput>;
|
|
67825
68151
|
};
|
|
68152
|
+
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemInverseArgs = {
|
|
68153
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68154
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68155
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68156
|
+
id: Scalars['ID']['input'];
|
|
68157
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserMentionedInJiraWorkItemSortInput>;
|
|
68158
|
+
};
|
|
67826
68159
|
export declare type GraphStoreV2AtlassianUserMentionedInLoomVideoCommentArgs = {
|
|
67827
68160
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
67828
68161
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -68855,20 +69188,6 @@ export declare type GraphStoreV2ExternalEntityIsThirdPartyEntityInverseArgs = {
|
|
|
68855
69188
|
id: Scalars['ID']['input'];
|
|
68856
69189
|
sort?: InputMaybe<GraphStoreV2ExternalEntityIsThirdPartyEntitySortInput>;
|
|
68857
69190
|
};
|
|
68858
|
-
export declare type GraphStoreV2ExternalMeetingHasExternalMeetingNotesPageArgs = {
|
|
68859
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68860
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68861
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68862
|
-
id: Scalars['ID']['input'];
|
|
68863
|
-
sort?: InputMaybe<GraphStoreV2ExternalMeetingHasExternalMeetingNotesPageSortInput>;
|
|
68864
|
-
};
|
|
68865
|
-
export declare type GraphStoreV2ExternalMeetingHasExternalMeetingNotesPageInverseArgs = {
|
|
68866
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68867
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68868
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68869
|
-
id: Scalars['ID']['input'];
|
|
68870
|
-
sort?: InputMaybe<GraphStoreV2ExternalMeetingHasExternalMeetingNotesPageSortInput>;
|
|
68871
|
-
};
|
|
68872
69191
|
export declare type GraphStoreV2ExternalMeetingRecurrenceHasJiraSpaceArgs = {
|
|
68873
69192
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68874
69193
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -69547,34 +69866,6 @@ export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemInverseArgs =
|
|
|
69547
69866
|
id: Scalars['ID']['input'];
|
|
69548
69867
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalWorkItemSortInput>;
|
|
69549
69868
|
};
|
|
69550
|
-
export declare type GraphStoreV2ExternalUserFavoritedAtlassianGoalArgs = {
|
|
69551
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
69552
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69553
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69554
|
-
id: Scalars['ID']['input'];
|
|
69555
|
-
sort?: InputMaybe<GraphStoreV2ExternalUserFavoritedAtlassianGoalSortInput>;
|
|
69556
|
-
};
|
|
69557
|
-
export declare type GraphStoreV2ExternalUserFavoritedAtlassianGoalInverseArgs = {
|
|
69558
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
69559
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69560
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69561
|
-
id: Scalars['ID']['input'];
|
|
69562
|
-
sort?: InputMaybe<GraphStoreV2ExternalUserFavoritedAtlassianGoalSortInput>;
|
|
69563
|
-
};
|
|
69564
|
-
export declare type GraphStoreV2ExternalUserFavoritedAtlassianProjectArgs = {
|
|
69565
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
69566
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69567
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69568
|
-
id: Scalars['ID']['input'];
|
|
69569
|
-
sort?: InputMaybe<GraphStoreV2ExternalUserFavoritedAtlassianProjectSortInput>;
|
|
69570
|
-
};
|
|
69571
|
-
export declare type GraphStoreV2ExternalUserFavoritedAtlassianProjectInverseArgs = {
|
|
69572
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
69573
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69574
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69575
|
-
id: Scalars['ID']['input'];
|
|
69576
|
-
sort?: InputMaybe<GraphStoreV2ExternalUserFavoritedAtlassianProjectSortInput>;
|
|
69577
|
-
};
|
|
69578
69869
|
export declare type GraphStoreV2ExternalUserLastUpdatedExternalDesignArgs = {
|
|
69579
69870
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69580
69871
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70839,6 +71130,20 @@ export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentInverseArgs =
|
|
|
70839
71130
|
id: Scalars['ID']['input'];
|
|
70840
71131
|
sort?: InputMaybe<GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput>;
|
|
70841
71132
|
};
|
|
71133
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetObjectArgs = {
|
|
71134
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71135
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71136
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71137
|
+
id: Scalars['ID']['input'];
|
|
71138
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksAssetObjectSortInput>;
|
|
71139
|
+
};
|
|
71140
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetObjectInverseArgs = {
|
|
71141
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71142
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71143
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71144
|
+
id: Scalars['ID']['input'];
|
|
71145
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksAssetObjectSortInput>;
|
|
71146
|
+
};
|
|
70842
71147
|
export declare type GraphStoreV2JiraWorkItemLinksConfluenceWhiteboardArgs = {
|
|
70843
71148
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70844
71149
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -71134,6 +71439,20 @@ export declare type GraphStoreV2JsmSpaceLinksKnowledgeBaseEntityInverseArgs = {
|
|
|
71134
71439
|
id: Scalars['ID']['input'];
|
|
71135
71440
|
sort?: InputMaybe<GraphStoreV2JsmSpaceLinksKnowledgeBaseEntitySortInput>;
|
|
71136
71441
|
};
|
|
71442
|
+
export declare type GraphStoreV2LoomMeetingHasConfluenceMeetingNotesPageArgs = {
|
|
71443
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71444
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71445
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71446
|
+
id: Scalars['ID']['input'];
|
|
71447
|
+
sort?: InputMaybe<GraphStoreV2LoomMeetingHasConfluenceMeetingNotesPageSortInput>;
|
|
71448
|
+
};
|
|
71449
|
+
export declare type GraphStoreV2LoomMeetingHasConfluenceMeetingNotesPageInverseArgs = {
|
|
71450
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71451
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71452
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71453
|
+
id: Scalars['ID']['input'];
|
|
71454
|
+
sort?: InputMaybe<GraphStoreV2LoomMeetingHasConfluenceMeetingNotesPageSortInput>;
|
|
71455
|
+
};
|
|
71137
71456
|
export declare type GraphStoreV2LoomMeetingHasJiraSpaceArgs = {
|
|
71138
71457
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71139
71458
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -71527,6 +71846,18 @@ export declare type GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEn
|
|
|
71527
71846
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71528
71847
|
to_dismissedCategories?: InputMaybe<GraphStoreV2AtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalSortInput>;
|
|
71529
71848
|
};
|
|
71849
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianGoalSortInput = {
|
|
71850
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71851
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71852
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71853
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71854
|
+
};
|
|
71855
|
+
export declare type GraphStoreV2AtlassianUserFavoritedAtlassianProjectSortInput = {
|
|
71856
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
71857
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
71858
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71859
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
71860
|
+
};
|
|
71530
71861
|
export declare type GraphStoreV2AtlassianUserFavoritedConfluenceBlogpostSortInput = {
|
|
71531
71862
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71532
71863
|
};
|
|
@@ -71611,6 +71942,9 @@ export declare type GraphStoreV2AtlassianUserMentionedInConfluencePageSortInput
|
|
|
71611
71942
|
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemCommentSortInput = {
|
|
71612
71943
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71613
71944
|
};
|
|
71945
|
+
export declare type GraphStoreV2AtlassianUserMentionedInJiraWorkItemSortInput = {
|
|
71946
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71947
|
+
};
|
|
71614
71948
|
export declare type GraphStoreV2AtlassianUserMentionedInLoomVideoCommentSortInput = {
|
|
71615
71949
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71616
71950
|
};
|
|
@@ -71889,73 +72223,73 @@ export declare type GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommenda
|
|
|
71889
72223
|
export declare type GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommendationEntityRelationshipObjectMetadataInput = {
|
|
71890
72224
|
dismissedCategories?: InputMaybe<GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput>;
|
|
71891
72225
|
};
|
|
71892
|
-
export declare type
|
|
72226
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalAliasInput = {
|
|
71893
72227
|
from: Scalars['ID']['input'];
|
|
71894
72228
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
71895
72229
|
to: Scalars['ID']['input'];
|
|
71896
72230
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
71897
72231
|
};
|
|
71898
|
-
export declare type
|
|
71899
|
-
aliases: Array<
|
|
72232
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalInput = {
|
|
72233
|
+
aliases: Array<GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalAliasInput>;
|
|
71900
72234
|
};
|
|
71901
|
-
export declare type
|
|
71902
|
-
__typename?: '
|
|
72235
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalPayload = {
|
|
72236
|
+
__typename?: 'GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalPayload';
|
|
71903
72237
|
errors?: Maybe<Array<MutationError>>;
|
|
71904
72238
|
success: Scalars['Boolean']['output'];
|
|
71905
72239
|
};
|
|
71906
|
-
export declare type
|
|
72240
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectAliasInput = {
|
|
71907
72241
|
from: Scalars['ID']['input'];
|
|
71908
72242
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
71909
72243
|
to: Scalars['ID']['input'];
|
|
71910
72244
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
71911
72245
|
};
|
|
71912
|
-
export declare type
|
|
71913
|
-
aliases: Array<
|
|
72246
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectInput = {
|
|
72247
|
+
aliases: Array<GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectAliasInput>;
|
|
71914
72248
|
};
|
|
71915
|
-
export declare type
|
|
71916
|
-
__typename?: '
|
|
72249
|
+
export declare type GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectPayload = {
|
|
72250
|
+
__typename?: 'GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectPayload';
|
|
71917
72251
|
errors?: Maybe<Array<MutationError>>;
|
|
71918
72252
|
success: Scalars['Boolean']['output'];
|
|
71919
72253
|
};
|
|
71920
|
-
export declare type
|
|
72254
|
+
export declare type GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderAliasInput = {
|
|
71921
72255
|
from: Scalars['ID']['input'];
|
|
71922
72256
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
71923
72257
|
to: Scalars['ID']['input'];
|
|
71924
72258
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
71925
72259
|
};
|
|
71926
|
-
export declare type
|
|
71927
|
-
aliases: Array<
|
|
72260
|
+
export declare type GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderInput = {
|
|
72261
|
+
aliases: Array<GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderAliasInput>;
|
|
71928
72262
|
};
|
|
71929
|
-
export declare type
|
|
71930
|
-
__typename?: '
|
|
72263
|
+
export declare type GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderPayload = {
|
|
72264
|
+
__typename?: 'GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderPayload';
|
|
71931
72265
|
errors?: Maybe<Array<MutationError>>;
|
|
71932
72266
|
success: Scalars['Boolean']['output'];
|
|
71933
72267
|
};
|
|
71934
|
-
export declare type
|
|
72268
|
+
export declare type GraphStoreV2CreateAtlassianUserHasRelevantJiraSpaceAliasInput = {
|
|
71935
72269
|
from: Scalars['ID']['input'];
|
|
71936
72270
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
71937
72271
|
to: Scalars['ID']['input'];
|
|
71938
72272
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
71939
72273
|
};
|
|
71940
|
-
export declare type
|
|
71941
|
-
aliases: Array<
|
|
72274
|
+
export declare type GraphStoreV2CreateAtlassianUserHasRelevantJiraSpaceInput = {
|
|
72275
|
+
aliases: Array<GraphStoreV2CreateAtlassianUserHasRelevantJiraSpaceAliasInput>;
|
|
71942
72276
|
};
|
|
71943
|
-
export declare type
|
|
71944
|
-
__typename?: '
|
|
72277
|
+
export declare type GraphStoreV2CreateAtlassianUserHasRelevantJiraSpacePayload = {
|
|
72278
|
+
__typename?: 'GraphStoreV2CreateAtlassianUserHasRelevantJiraSpacePayload';
|
|
71945
72279
|
errors?: Maybe<Array<MutationError>>;
|
|
71946
72280
|
success: Scalars['Boolean']['output'];
|
|
71947
72281
|
};
|
|
71948
|
-
export declare type
|
|
72282
|
+
export declare type GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpaceAliasInput = {
|
|
71949
72283
|
from: Scalars['ID']['input'];
|
|
71950
72284
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
71951
72285
|
to: Scalars['ID']['input'];
|
|
71952
72286
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
71953
72287
|
};
|
|
71954
|
-
export declare type
|
|
71955
|
-
aliases: Array<
|
|
72288
|
+
export declare type GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpaceInput = {
|
|
72289
|
+
aliases: Array<GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpaceAliasInput>;
|
|
71956
72290
|
};
|
|
71957
|
-
export declare type
|
|
71958
|
-
__typename?: '
|
|
72291
|
+
export declare type GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpacePayload = {
|
|
72292
|
+
__typename?: 'GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpacePayload';
|
|
71959
72293
|
errors?: Maybe<Array<MutationError>>;
|
|
71960
72294
|
success: Scalars['Boolean']['output'];
|
|
71961
72295
|
};
|
|
@@ -72412,6 +72746,30 @@ export declare type GraphStoreV2DeleteAtlassianUserDismissedJiraForYouRecommenda
|
|
|
72412
72746
|
errors?: Maybe<Array<MutationError>>;
|
|
72413
72747
|
success: Scalars['Boolean']['output'];
|
|
72414
72748
|
};
|
|
72749
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalAliasInput = {
|
|
72750
|
+
from: Scalars['ID']['input'];
|
|
72751
|
+
to: Scalars['ID']['input'];
|
|
72752
|
+
};
|
|
72753
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalInput = {
|
|
72754
|
+
aliases: Array<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalAliasInput>;
|
|
72755
|
+
};
|
|
72756
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalPayload = {
|
|
72757
|
+
__typename?: 'GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalPayload';
|
|
72758
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72759
|
+
success: Scalars['Boolean']['output'];
|
|
72760
|
+
};
|
|
72761
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectAliasInput = {
|
|
72762
|
+
from: Scalars['ID']['input'];
|
|
72763
|
+
to: Scalars['ID']['input'];
|
|
72764
|
+
};
|
|
72765
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectInput = {
|
|
72766
|
+
aliases: Array<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectAliasInput>;
|
|
72767
|
+
};
|
|
72768
|
+
export declare type GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectPayload = {
|
|
72769
|
+
__typename?: 'GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectPayload';
|
|
72770
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72771
|
+
success: Scalars['Boolean']['output'];
|
|
72772
|
+
};
|
|
72415
72773
|
export declare type GraphStoreV2DeleteAtlassianUserHasConfluenceMeetingNotesFolderAliasInput = {
|
|
72416
72774
|
from: Scalars['ID']['input'];
|
|
72417
72775
|
to: Scalars['ID']['input'];
|
|
@@ -72448,30 +72806,6 @@ export declare type GraphStoreV2DeleteExternalMeetingRecurrenceHasJiraSpacePaylo
|
|
|
72448
72806
|
errors?: Maybe<Array<MutationError>>;
|
|
72449
72807
|
success: Scalars['Boolean']['output'];
|
|
72450
72808
|
};
|
|
72451
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalAliasInput = {
|
|
72452
|
-
from: Scalars['ID']['input'];
|
|
72453
|
-
to: Scalars['ID']['input'];
|
|
72454
|
-
};
|
|
72455
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalInput = {
|
|
72456
|
-
aliases: Array<GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalAliasInput>;
|
|
72457
|
-
};
|
|
72458
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalPayload = {
|
|
72459
|
-
__typename?: 'GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalPayload';
|
|
72460
|
-
errors?: Maybe<Array<MutationError>>;
|
|
72461
|
-
success: Scalars['Boolean']['output'];
|
|
72462
|
-
};
|
|
72463
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectAliasInput = {
|
|
72464
|
-
from: Scalars['ID']['input'];
|
|
72465
|
-
to: Scalars['ID']['input'];
|
|
72466
|
-
};
|
|
72467
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectInput = {
|
|
72468
|
-
aliases: Array<GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectAliasInput>;
|
|
72469
|
-
};
|
|
72470
|
-
export declare type GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectPayload = {
|
|
72471
|
-
__typename?: 'GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectPayload';
|
|
72472
|
-
errors?: Maybe<Array<MutationError>>;
|
|
72473
|
-
success: Scalars['Boolean']['output'];
|
|
72474
|
-
};
|
|
72475
72809
|
export declare type GraphStoreV2DeleteJiraSpaceHasJiraReleaseVersionAliasInput = {
|
|
72476
72810
|
from: Scalars['ID']['input'];
|
|
72477
72811
|
to: Scalars['ID']['input'];
|
|
@@ -72745,9 +73079,6 @@ export declare type GraphStoreV2ExternalDocumentLinksThirdPartyDocumentSortInput
|
|
|
72745
73079
|
export declare type GraphStoreV2ExternalEntityIsThirdPartyEntitySortInput = {
|
|
72746
73080
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72747
73081
|
};
|
|
72748
|
-
export declare type GraphStoreV2ExternalMeetingHasExternalMeetingNotesPageSortInput = {
|
|
72749
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72750
|
-
};
|
|
72751
73082
|
export declare type GraphStoreV2ExternalMeetingRecurrenceHasJiraSpaceSortInput = {
|
|
72752
73083
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72753
73084
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -72951,18 +73282,6 @@ export declare type GraphStoreV2ExternalUserCreatedExternalTestSortInput = {
|
|
|
72951
73282
|
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemSortInput = {
|
|
72952
73283
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72953
73284
|
};
|
|
72954
|
-
export declare type GraphStoreV2ExternalUserFavoritedAtlassianGoalSortInput = {
|
|
72955
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72956
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
72957
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72958
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
72959
|
-
};
|
|
72960
|
-
export declare type GraphStoreV2ExternalUserFavoritedAtlassianProjectSortInput = {
|
|
72961
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
72962
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
72963
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72964
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
72965
|
-
};
|
|
72966
73285
|
export declare type GraphStoreV2ExternalUserLastUpdatedExternalDesignSortInput = {
|
|
72967
73286
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72968
73287
|
};
|
|
@@ -74033,6 +74352,9 @@ export declare type GraphStoreV2JiraWorkItemHasJiraPrioritySortInput = {
|
|
|
74033
74352
|
export declare type GraphStoreV2JiraWorkItemHasJiraWorkItemCommentSortInput = {
|
|
74034
74353
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74035
74354
|
};
|
|
74355
|
+
export declare type GraphStoreV2JiraWorkItemLinksAssetObjectSortInput = {
|
|
74356
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74357
|
+
};
|
|
74036
74358
|
export declare type GraphStoreV2JiraWorkItemLinksConfluenceWhiteboardConditionalFilterInput = {
|
|
74037
74359
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
74038
74360
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -74289,6 +74611,9 @@ export declare type GraphStoreV2JsmSpaceLinksExternalServiceSortInput = {
|
|
|
74289
74611
|
export declare type GraphStoreV2JsmSpaceLinksKnowledgeBaseEntitySortInput = {
|
|
74290
74612
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74291
74613
|
};
|
|
74614
|
+
export declare type GraphStoreV2LoomMeetingHasConfluenceMeetingNotesPageSortInput = {
|
|
74615
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74616
|
+
};
|
|
74292
74617
|
export declare type GraphStoreV2LoomMeetingHasJiraSpaceSortInput = {
|
|
74293
74618
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
74294
74619
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -74325,11 +74650,11 @@ export declare type GraphStoreV2Mutation = {
|
|
|
74325
74650
|
createAtlassianTeamHasChildAtlassianTeam?: Maybe<GraphStoreV2CreateAtlassianTeamHasChildAtlassianTeamPayload>;
|
|
74326
74651
|
createAtlassianTeamLinksSpaceEntity?: Maybe<GraphStoreV2CreateAtlassianTeamLinksSpaceEntityPayload>;
|
|
74327
74652
|
createAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
|
|
74653
|
+
createAtlassianUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalPayload>;
|
|
74654
|
+
createAtlassianUserFavoritedAtlassianProject?: Maybe<GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectPayload>;
|
|
74328
74655
|
createAtlassianUserHasConfluenceMeetingNotesFolder?: Maybe<GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderPayload>;
|
|
74329
74656
|
createAtlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2CreateAtlassianUserHasRelevantJiraSpacePayload>;
|
|
74330
74657
|
createExternalMeetingRecurrenceHasJiraSpace?: Maybe<GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpacePayload>;
|
|
74331
|
-
createExternalUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2CreateExternalUserFavoritedAtlassianGoalPayload>;
|
|
74332
|
-
createExternalUserFavoritedAtlassianProject?: Maybe<GraphStoreV2CreateExternalUserFavoritedAtlassianProjectPayload>;
|
|
74333
74658
|
createJiraSpaceHasJiraReleaseVersion?: Maybe<GraphStoreV2CreateJiraSpaceHasJiraReleaseVersionPayload>;
|
|
74334
74659
|
createJiraSpaceLinksDocumentEntity?: Maybe<GraphStoreV2CreateJiraSpaceLinksDocumentEntityPayload>;
|
|
74335
74660
|
createJiraSpaceLinksExternalSecurityContainer?: Maybe<GraphStoreV2CreateJiraSpaceLinksExternalSecurityContainerPayload>;
|
|
@@ -74353,11 +74678,11 @@ export declare type GraphStoreV2Mutation = {
|
|
|
74353
74678
|
deleteAtlassianTeamHasChildAtlassianTeam?: Maybe<GraphStoreV2DeleteAtlassianTeamHasChildAtlassianTeamPayload>;
|
|
74354
74679
|
deleteAtlassianTeamLinksSpaceEntity?: Maybe<GraphStoreV2DeleteAtlassianTeamLinksSpaceEntityPayload>;
|
|
74355
74680
|
deleteAtlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreV2DeleteAtlassianUserDismissedJiraForYouRecommendationEntityPayload>;
|
|
74681
|
+
deleteAtlassianUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalPayload>;
|
|
74682
|
+
deleteAtlassianUserFavoritedAtlassianProject?: Maybe<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectPayload>;
|
|
74356
74683
|
deleteAtlassianUserHasConfluenceMeetingNotesFolder?: Maybe<GraphStoreV2DeleteAtlassianUserHasConfluenceMeetingNotesFolderPayload>;
|
|
74357
74684
|
deleteAtlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2DeleteAtlassianUserHasRelevantJiraSpacePayload>;
|
|
74358
74685
|
deleteExternalMeetingRecurrenceHasJiraSpace?: Maybe<GraphStoreV2DeleteExternalMeetingRecurrenceHasJiraSpacePayload>;
|
|
74359
|
-
deleteExternalUserFavoritedAtlassianGoal?: Maybe<GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalPayload>;
|
|
74360
|
-
deleteExternalUserFavoritedAtlassianProject?: Maybe<GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectPayload>;
|
|
74361
74686
|
deleteJiraSpaceHasJiraReleaseVersion?: Maybe<GraphStoreV2DeleteJiraSpaceHasJiraReleaseVersionPayload>;
|
|
74362
74687
|
deleteJiraSpaceLinksDocumentEntity?: Maybe<GraphStoreV2DeleteJiraSpaceLinksDocumentEntityPayload>;
|
|
74363
74688
|
deleteJiraSpaceLinksExternalSecurityContainer?: Maybe<GraphStoreV2DeleteJiraSpaceLinksExternalSecurityContainerPayload>;
|
|
@@ -74390,6 +74715,12 @@ export declare type GraphStoreV2MutationCreateAtlassianTeamLinksSpaceEntityArgs
|
|
|
74390
74715
|
export declare type GraphStoreV2MutationCreateAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
74391
74716
|
input?: InputMaybe<GraphStoreV2CreateAtlassianUserDismissedJiraForYouRecommendationEntityInput>;
|
|
74392
74717
|
};
|
|
74718
|
+
export declare type GraphStoreV2MutationCreateAtlassianUserFavoritedAtlassianGoalArgs = {
|
|
74719
|
+
input?: InputMaybe<GraphStoreV2CreateAtlassianUserFavoritedAtlassianGoalInput>;
|
|
74720
|
+
};
|
|
74721
|
+
export declare type GraphStoreV2MutationCreateAtlassianUserFavoritedAtlassianProjectArgs = {
|
|
74722
|
+
input?: InputMaybe<GraphStoreV2CreateAtlassianUserFavoritedAtlassianProjectInput>;
|
|
74723
|
+
};
|
|
74393
74724
|
export declare type GraphStoreV2MutationCreateAtlassianUserHasConfluenceMeetingNotesFolderArgs = {
|
|
74394
74725
|
input?: InputMaybe<GraphStoreV2CreateAtlassianUserHasConfluenceMeetingNotesFolderInput>;
|
|
74395
74726
|
};
|
|
@@ -74399,12 +74730,6 @@ export declare type GraphStoreV2MutationCreateAtlassianUserHasRelevantJiraSpaceA
|
|
|
74399
74730
|
export declare type GraphStoreV2MutationCreateExternalMeetingRecurrenceHasJiraSpaceArgs = {
|
|
74400
74731
|
input?: InputMaybe<GraphStoreV2CreateExternalMeetingRecurrenceHasJiraSpaceInput>;
|
|
74401
74732
|
};
|
|
74402
|
-
export declare type GraphStoreV2MutationCreateExternalUserFavoritedAtlassianGoalArgs = {
|
|
74403
|
-
input?: InputMaybe<GraphStoreV2CreateExternalUserFavoritedAtlassianGoalInput>;
|
|
74404
|
-
};
|
|
74405
|
-
export declare type GraphStoreV2MutationCreateExternalUserFavoritedAtlassianProjectArgs = {
|
|
74406
|
-
input?: InputMaybe<GraphStoreV2CreateExternalUserFavoritedAtlassianProjectInput>;
|
|
74407
|
-
};
|
|
74408
74733
|
export declare type GraphStoreV2MutationCreateJiraSpaceHasJiraReleaseVersionArgs = {
|
|
74409
74734
|
input?: InputMaybe<GraphStoreV2CreateJiraSpaceHasJiraReleaseVersionInput>;
|
|
74410
74735
|
};
|
|
@@ -74474,6 +74799,12 @@ export declare type GraphStoreV2MutationDeleteAtlassianTeamLinksSpaceEntityArgs
|
|
|
74474
74799
|
export declare type GraphStoreV2MutationDeleteAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
74475
74800
|
input?: InputMaybe<GraphStoreV2DeleteAtlassianUserDismissedJiraForYouRecommendationEntityInput>;
|
|
74476
74801
|
};
|
|
74802
|
+
export declare type GraphStoreV2MutationDeleteAtlassianUserFavoritedAtlassianGoalArgs = {
|
|
74803
|
+
input?: InputMaybe<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianGoalInput>;
|
|
74804
|
+
};
|
|
74805
|
+
export declare type GraphStoreV2MutationDeleteAtlassianUserFavoritedAtlassianProjectArgs = {
|
|
74806
|
+
input?: InputMaybe<GraphStoreV2DeleteAtlassianUserFavoritedAtlassianProjectInput>;
|
|
74807
|
+
};
|
|
74477
74808
|
export declare type GraphStoreV2MutationDeleteAtlassianUserHasConfluenceMeetingNotesFolderArgs = {
|
|
74478
74809
|
input?: InputMaybe<GraphStoreV2DeleteAtlassianUserHasConfluenceMeetingNotesFolderInput>;
|
|
74479
74810
|
};
|
|
@@ -74483,12 +74814,6 @@ export declare type GraphStoreV2MutationDeleteAtlassianUserHasRelevantJiraSpaceA
|
|
|
74483
74814
|
export declare type GraphStoreV2MutationDeleteExternalMeetingRecurrenceHasJiraSpaceArgs = {
|
|
74484
74815
|
input?: InputMaybe<GraphStoreV2DeleteExternalMeetingRecurrenceHasJiraSpaceInput>;
|
|
74485
74816
|
};
|
|
74486
|
-
export declare type GraphStoreV2MutationDeleteExternalUserFavoritedAtlassianGoalArgs = {
|
|
74487
|
-
input?: InputMaybe<GraphStoreV2DeleteExternalUserFavoritedAtlassianGoalInput>;
|
|
74488
|
-
};
|
|
74489
|
-
export declare type GraphStoreV2MutationDeleteExternalUserFavoritedAtlassianProjectArgs = {
|
|
74490
|
-
input?: InputMaybe<GraphStoreV2DeleteExternalUserFavoritedAtlassianProjectInput>;
|
|
74491
|
-
};
|
|
74492
74817
|
export declare type GraphStoreV2MutationDeleteJiraSpaceHasJiraReleaseVersionArgs = {
|
|
74493
74818
|
input?: InputMaybe<GraphStoreV2DeleteJiraSpaceHasJiraReleaseVersionInput>;
|
|
74494
74819
|
};
|
|
@@ -75951,6 +76276,70 @@ export declare type GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecomm
|
|
|
75951
76276
|
};
|
|
75952
76277
|
export declare type GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
75953
76278
|
export declare type GraphStoreV2SimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityUnion = DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraProject | JiraServiceManagementComment | TeamV2;
|
|
76279
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalConnection = HasPageInfo & HasTotal & {
|
|
76280
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalConnection';
|
|
76281
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalEdge>>>;
|
|
76282
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
76283
|
+
pageInfo: PageInfo;
|
|
76284
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76285
|
+
};
|
|
76286
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalEdge = {
|
|
76287
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalEdge';
|
|
76288
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76289
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76290
|
+
id: Scalars['ID']['output'];
|
|
76291
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76292
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalUnion>;
|
|
76293
|
+
};
|
|
76294
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseConnection = HasPageInfo & HasTotal & {
|
|
76295
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseConnection';
|
|
76296
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseEdge>>>;
|
|
76297
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
76298
|
+
pageInfo: PageInfo;
|
|
76299
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76300
|
+
};
|
|
76301
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseEdge = {
|
|
76302
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseEdge';
|
|
76303
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76304
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76305
|
+
id: Scalars['ID']['output'];
|
|
76306
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76307
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseUnion>;
|
|
76308
|
+
};
|
|
76309
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76310
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianGoalUnion = TownsquareGoal;
|
|
76311
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectConnection = HasPageInfo & HasTotal & {
|
|
76312
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectConnection';
|
|
76313
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectEdge>>>;
|
|
76314
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
76315
|
+
pageInfo: PageInfo;
|
|
76316
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76317
|
+
};
|
|
76318
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectEdge = {
|
|
76319
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectEdge';
|
|
76320
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76321
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76322
|
+
id: Scalars['ID']['output'];
|
|
76323
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76324
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectUnion>;
|
|
76325
|
+
};
|
|
76326
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
76327
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseConnection';
|
|
76328
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseEdge>>>;
|
|
76329
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
76330
|
+
pageInfo: PageInfo;
|
|
76331
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
76332
|
+
};
|
|
76333
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseEdge = {
|
|
76334
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseEdge';
|
|
76335
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76336
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76337
|
+
id: Scalars['ID']['output'];
|
|
76338
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76339
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseUnion>;
|
|
76340
|
+
};
|
|
76341
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76342
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedAtlassianProjectUnion = TownsquareProject;
|
|
75954
76343
|
export declare type GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceBlogpostConnection = HasPageInfo & {
|
|
75955
76344
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceBlogpostConnection';
|
|
75956
76345
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserFavoritedConfluenceBlogpostEdge>>>;
|
|
@@ -76495,6 +76884,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCo
|
|
|
76495
76884
|
};
|
|
76496
76885
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76497
76886
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
76887
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemConnection = HasPageInfo & {
|
|
76888
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemConnection';
|
|
76889
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemEdge>>>;
|
|
76890
|
+
pageInfo: PageInfo;
|
|
76891
|
+
};
|
|
76892
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemEdge = {
|
|
76893
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemEdge';
|
|
76894
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76895
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76896
|
+
id: Scalars['ID']['output'];
|
|
76897
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76898
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemUnion>;
|
|
76899
|
+
};
|
|
76900
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseConnection = HasPageInfo & {
|
|
76901
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseConnection';
|
|
76902
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseEdge>>>;
|
|
76903
|
+
pageInfo: PageInfo;
|
|
76904
|
+
};
|
|
76905
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseEdge = {
|
|
76906
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseEdge';
|
|
76907
|
+
createdAt: Scalars['DateTime']['output'];
|
|
76908
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
76909
|
+
id: Scalars['ID']['output'];
|
|
76910
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
76911
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseUnion>;
|
|
76912
|
+
};
|
|
76913
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
76914
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInJiraWorkItemUnion = JiraIssue;
|
|
76498
76915
|
export declare type GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentConnection = HasPageInfo & {
|
|
76499
76916
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentConnection';
|
|
76500
76917
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserMentionedInLoomVideoCommentEdge>>>;
|
|
@@ -78097,7 +78514,7 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
78097
78514
|
lastUpdated: Scalars['DateTime']['output'];
|
|
78098
78515
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
78099
78516
|
};
|
|
78100
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
78517
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
78101
78518
|
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | 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 | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
78102
78519
|
export declare type GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection = HasPageInfo & {
|
|
78103
78520
|
__typename?: 'GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection';
|
|
@@ -78547,34 +78964,6 @@ export declare type GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInvers
|
|
|
78547
78964
|
node?: Maybe<GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseUnion>;
|
|
78548
78965
|
};
|
|
78549
78966
|
export declare type GraphStoreV2SimplifiedExternalEntityIsThirdPartyEntityInverseUnion = DeploymentSummary | DevOpsDocument | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDocument | ExternalMessage | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
78550
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageConnection = HasPageInfo & {
|
|
78551
|
-
__typename?: 'GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageConnection';
|
|
78552
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageEdge>>>;
|
|
78553
|
-
pageInfo: PageInfo;
|
|
78554
|
-
};
|
|
78555
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageEdge = {
|
|
78556
|
-
__typename?: 'GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageEdge';
|
|
78557
|
-
createdAt: Scalars['DateTime']['output'];
|
|
78558
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
78559
|
-
id: Scalars['ID']['output'];
|
|
78560
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
78561
|
-
node?: Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageUnion>;
|
|
78562
|
-
};
|
|
78563
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseConnection = HasPageInfo & {
|
|
78564
|
-
__typename?: 'GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseConnection';
|
|
78565
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseEdge>>>;
|
|
78566
|
-
pageInfo: PageInfo;
|
|
78567
|
-
};
|
|
78568
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseEdge = {
|
|
78569
|
-
__typename?: 'GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseEdge';
|
|
78570
|
-
createdAt: Scalars['DateTime']['output'];
|
|
78571
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
78572
|
-
id: Scalars['ID']['output'];
|
|
78573
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
78574
|
-
node?: Maybe<GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseUnion>;
|
|
78575
|
-
};
|
|
78576
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageInverseUnion = LoomMeeting;
|
|
78577
|
-
export declare type GraphStoreV2SimplifiedExternalMeetingHasExternalMeetingNotesPageUnion = ConfluencePage;
|
|
78578
78967
|
export declare type GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceConnection = HasPageInfo & HasTotal & {
|
|
78579
78968
|
__typename?: 'GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceConnection';
|
|
78580
78969
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalMeetingRecurrenceHasJiraSpaceEdge>>>;
|
|
@@ -79947,70 +80336,6 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInv
|
|
|
79947
80336
|
};
|
|
79948
80337
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
79949
80338
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemUnion = ExternalWorkItem;
|
|
79950
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalConnection = HasPageInfo & HasTotal & {
|
|
79951
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalConnection';
|
|
79952
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalEdge>>>;
|
|
79953
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
79954
|
-
pageInfo: PageInfo;
|
|
79955
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79956
|
-
};
|
|
79957
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalEdge = {
|
|
79958
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalEdge';
|
|
79959
|
-
createdAt: Scalars['DateTime']['output'];
|
|
79960
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
79961
|
-
id: Scalars['ID']['output'];
|
|
79962
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
79963
|
-
node?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalUnion>;
|
|
79964
|
-
};
|
|
79965
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseConnection = HasPageInfo & HasTotal & {
|
|
79966
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseConnection';
|
|
79967
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseEdge>>>;
|
|
79968
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
79969
|
-
pageInfo: PageInfo;
|
|
79970
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79971
|
-
};
|
|
79972
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseEdge = {
|
|
79973
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseEdge';
|
|
79974
|
-
createdAt: Scalars['DateTime']['output'];
|
|
79975
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
79976
|
-
id: Scalars['ID']['output'];
|
|
79977
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
79978
|
-
node?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseUnion>;
|
|
79979
|
-
};
|
|
79980
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
79981
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianGoalUnion = TownsquareGoal;
|
|
79982
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectConnection = HasPageInfo & HasTotal & {
|
|
79983
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectConnection';
|
|
79984
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectEdge>>>;
|
|
79985
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
79986
|
-
pageInfo: PageInfo;
|
|
79987
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79988
|
-
};
|
|
79989
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectEdge = {
|
|
79990
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectEdge';
|
|
79991
|
-
createdAt: Scalars['DateTime']['output'];
|
|
79992
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
79993
|
-
id: Scalars['ID']['output'];
|
|
79994
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
79995
|
-
node?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectUnion>;
|
|
79996
|
-
};
|
|
79997
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
79998
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectInverseConnection';
|
|
79999
|
-
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectInverseEdge>>>;
|
|
80000
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
80001
|
-
pageInfo: PageInfo;
|
|
80002
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
80003
|
-
};
|
|
80004
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectInverseEdge = {
|
|
80005
|
-
__typename?: 'GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectInverseEdge';
|
|
80006
|
-
createdAt: Scalars['DateTime']['output'];
|
|
80007
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
80008
|
-
id: Scalars['ID']['output'];
|
|
80009
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
80010
|
-
node?: Maybe<GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectInverseUnion>;
|
|
80011
|
-
};
|
|
80012
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
80013
|
-
export declare type GraphStoreV2SimplifiedExternalUserFavoritedAtlassianProjectUnion = TownsquareProject;
|
|
80014
80339
|
export declare type GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignConnection = HasPageInfo & {
|
|
80015
80340
|
__typename?: 'GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignConnection';
|
|
80016
80341
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignEdge>>>;
|
|
@@ -82631,6 +82956,34 @@ export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInve
|
|
|
82631
82956
|
};
|
|
82632
82957
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentInverseUnion = JiraIssue;
|
|
82633
82958
|
export declare type GraphStoreV2SimplifiedJiraWorkItemHasJiraWorkItemCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
82959
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectConnection = HasPageInfo & {
|
|
82960
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectConnection';
|
|
82961
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectEdge>>>;
|
|
82962
|
+
pageInfo: PageInfo;
|
|
82963
|
+
};
|
|
82964
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectEdge = {
|
|
82965
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectEdge';
|
|
82966
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82967
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82968
|
+
id: Scalars['ID']['output'];
|
|
82969
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82970
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectUnion>;
|
|
82971
|
+
};
|
|
82972
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseConnection = HasPageInfo & {
|
|
82973
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseConnection';
|
|
82974
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseEdge>>>;
|
|
82975
|
+
pageInfo: PageInfo;
|
|
82976
|
+
};
|
|
82977
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseEdge = {
|
|
82978
|
+
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseEdge';
|
|
82979
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82980
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82981
|
+
id: Scalars['ID']['output'];
|
|
82982
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82983
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseUnion>;
|
|
82984
|
+
};
|
|
82985
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectInverseUnion = JiraIssue;
|
|
82986
|
+
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksAssetObjectUnion = AssetsObject;
|
|
82634
82987
|
export declare type GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
82635
82988
|
__typename?: 'GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardConnection';
|
|
82636
82989
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksConfluenceWhiteboardEdge>>>;
|
|
@@ -83261,6 +83614,34 @@ export declare type GraphStoreV2SimplifiedJsmSpaceLinksKnowledgeBaseEntityInvers
|
|
|
83261
83614
|
};
|
|
83262
83615
|
export declare type GraphStoreV2SimplifiedJsmSpaceLinksKnowledgeBaseEntityInverseUnion = JiraProject;
|
|
83263
83616
|
export declare type GraphStoreV2SimplifiedJsmSpaceLinksKnowledgeBaseEntityUnion = ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
83617
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageConnection = HasPageInfo & {
|
|
83618
|
+
__typename?: 'GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageConnection';
|
|
83619
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageEdge>>>;
|
|
83620
|
+
pageInfo: PageInfo;
|
|
83621
|
+
};
|
|
83622
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageEdge = {
|
|
83623
|
+
__typename?: 'GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageEdge';
|
|
83624
|
+
createdAt: Scalars['DateTime']['output'];
|
|
83625
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
83626
|
+
id: Scalars['ID']['output'];
|
|
83627
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
83628
|
+
node?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageUnion>;
|
|
83629
|
+
};
|
|
83630
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseConnection = HasPageInfo & {
|
|
83631
|
+
__typename?: 'GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseConnection';
|
|
83632
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseEdge>>>;
|
|
83633
|
+
pageInfo: PageInfo;
|
|
83634
|
+
};
|
|
83635
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseEdge = {
|
|
83636
|
+
__typename?: 'GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseEdge';
|
|
83637
|
+
createdAt: Scalars['DateTime']['output'];
|
|
83638
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
83639
|
+
id: Scalars['ID']['output'];
|
|
83640
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
83641
|
+
node?: Maybe<GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseUnion>;
|
|
83642
|
+
};
|
|
83643
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageInverseUnion = LoomMeeting;
|
|
83644
|
+
export declare type GraphStoreV2SimplifiedLoomMeetingHasConfluenceMeetingNotesPageUnion = ConfluencePage;
|
|
83264
83645
|
export declare type GraphStoreV2SimplifiedLoomMeetingHasJiraSpaceConnection = HasPageInfo & HasTotal & {
|
|
83265
83646
|
__typename?: 'GraphStoreV2SimplifiedLoomMeetingHasJiraSpaceConnection';
|
|
83266
83647
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedLoomMeetingHasJiraSpaceEdge>>>;
|
|
@@ -88170,6 +88551,7 @@ export declare type JiraAiAgentSession = {
|
|
|
88170
88551
|
__typename?: 'JiraAiAgentSession';
|
|
88171
88552
|
agent?: Maybe<User>;
|
|
88172
88553
|
conversationId: Scalars['ID']['output'];
|
|
88554
|
+
convoAiSession?: Maybe<ConvoAiAgentSession>;
|
|
88173
88555
|
};
|
|
88174
88556
|
export declare type JiraAiAgentSessionConnection = {
|
|
88175
88557
|
__typename?: 'JiraAiAgentSessionConnection';
|
|
@@ -89778,6 +90160,9 @@ export declare type JiraBoardViewIsEmptyArgs = {
|
|
|
89778
90160
|
export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
89779
90161
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
89780
90162
|
};
|
|
90163
|
+
export declare type JiraBoardViewLayoutArgs = {
|
|
90164
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
90165
|
+
};
|
|
89781
90166
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
89782
90167
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
89783
90168
|
};
|
|
@@ -89889,12 +90274,25 @@ export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
|
89889
90274
|
field?: Maybe<JiraField>;
|
|
89890
90275
|
id: Scalars['ID']['output'];
|
|
89891
90276
|
};
|
|
90277
|
+
export declare type JiraBoardViewFieldSwimlane = JiraBoardViewSwimlane & Node & {
|
|
90278
|
+
__typename?: 'JiraBoardViewFieldSwimlane';
|
|
90279
|
+
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
90280
|
+
field?: Maybe<JiraField>;
|
|
90281
|
+
id: Scalars['ID']['output'];
|
|
90282
|
+
value?: Maybe<JiraBoardViewFieldSwimlaneValue>;
|
|
90283
|
+
};
|
|
90284
|
+
export declare type JiraBoardViewFieldSwimlaneCellsArgs = {
|
|
90285
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90286
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90287
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
90288
|
+
};
|
|
90289
|
+
export declare type JiraBoardViewFieldSwimlaneValue = JiraOption | JiraPriority;
|
|
89892
90290
|
export declare type JiraBoardViewInput = {
|
|
89893
90291
|
jiraBoardViewQueryInput?: InputMaybe<JiraBoardViewQueryInput>;
|
|
89894
90292
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
89895
90293
|
viewQueryInput?: InputMaybe<JiraViewQueryInput>;
|
|
89896
90294
|
};
|
|
89897
|
-
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout;
|
|
90295
|
+
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
89898
90296
|
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
89899
90297
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
89900
90298
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -89934,6 +90332,7 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
89934
90332
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
89935
90333
|
name?: Maybe<Scalars['String']['output']>;
|
|
89936
90334
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
90335
|
+
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
89937
90336
|
};
|
|
89938
90337
|
export declare type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
89939
90338
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89955,6 +90354,35 @@ export declare type JiraBoardViewStatusEdge = {
|
|
|
89955
90354
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
89956
90355
|
node?: Maybe<JiraBoardViewStatus>;
|
|
89957
90356
|
};
|
|
90357
|
+
export declare type JiraBoardViewSwimlane = {
|
|
90358
|
+
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
90359
|
+
id: Scalars['ID']['output'];
|
|
90360
|
+
};
|
|
90361
|
+
export declare type JiraBoardViewSwimlaneCellsArgs = {
|
|
90362
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90363
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90364
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
90365
|
+
};
|
|
90366
|
+
export declare type JiraBoardViewSwimlaneConnection = {
|
|
90367
|
+
__typename?: 'JiraBoardViewSwimlaneConnection';
|
|
90368
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewSwimlaneEdge>>>;
|
|
90369
|
+
errors?: Maybe<Array<QueryError>>;
|
|
90370
|
+
pageInfo?: Maybe<PageInfo>;
|
|
90371
|
+
};
|
|
90372
|
+
export declare type JiraBoardViewSwimlaneEdge = {
|
|
90373
|
+
__typename?: 'JiraBoardViewSwimlaneEdge';
|
|
90374
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
90375
|
+
node?: Maybe<JiraBoardViewSwimlane>;
|
|
90376
|
+
};
|
|
90377
|
+
export declare type JiraBoardViewSwimlaneLayout = Node & {
|
|
90378
|
+
__typename?: 'JiraBoardViewSwimlaneLayout';
|
|
90379
|
+
id: Scalars['ID']['output'];
|
|
90380
|
+
swimlanes?: Maybe<JiraBoardViewSwimlaneConnection>;
|
|
90381
|
+
};
|
|
90382
|
+
export declare type JiraBoardViewSwimlaneLayoutSwimlanesArgs = {
|
|
90383
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90384
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90385
|
+
};
|
|
89958
90386
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
89959
90387
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
89960
90388
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -94601,6 +95029,9 @@ export declare type JiraFormulaReferencedFieldType = {
|
|
|
94601
95029
|
__typename?: 'JiraFormulaReferencedFieldType';
|
|
94602
95030
|
key: Scalars['String']['output'];
|
|
94603
95031
|
};
|
|
95032
|
+
export declare type JiraGenerateIssueAiSummaryInput = {
|
|
95033
|
+
issueId: Scalars['ID']['input'];
|
|
95034
|
+
};
|
|
94604
95035
|
export declare type JiraGeneratedJqlInvalidError = {
|
|
94605
95036
|
__typename?: 'JiraGeneratedJqlInvalidError';
|
|
94606
95037
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -98029,6 +98460,15 @@ export declare type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
|
|
|
98029
98460
|
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
98030
98461
|
jqlTerm: Scalars['String']['output'];
|
|
98031
98462
|
};
|
|
98463
|
+
export declare type JiraJqlDateBucketFieldValue = JiraJqlFieldValue & {
|
|
98464
|
+
__typename?: 'JiraJqlDateBucketFieldValue';
|
|
98465
|
+
displayName: Scalars['String']['output'];
|
|
98466
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
98467
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
98468
|
+
jqlTerm: Scalars['String']['output'];
|
|
98469
|
+
rangeEnd?: Maybe<Scalars['String']['output']>;
|
|
98470
|
+
rangeStart?: Maybe<Scalars['String']['output']>;
|
|
98471
|
+
};
|
|
98032
98472
|
export declare type JiraJqlEmptyFieldValue = JiraJqlFieldValue & {
|
|
98033
98473
|
__typename?: 'JiraJqlEmptyFieldValue';
|
|
98034
98474
|
displayName: Scalars['String']['output'];
|
|
@@ -99247,6 +99687,7 @@ export declare type JiraMutation = {
|
|
|
99247
99687
|
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
99248
99688
|
forge: JiraForgeMutation;
|
|
99249
99689
|
generateCFORecommendations?: Maybe<JiraCfoCreateRecommendationsPayload>;
|
|
99690
|
+
generateIssueAISummary?: Maybe<JiraIssueAiSummaryResult>;
|
|
99250
99691
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
99251
99692
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
99252
99693
|
issueRemoteLinkMutation?: Maybe<JiraIssueRemoteIssueLinkPayload>;
|
|
@@ -99650,6 +100091,9 @@ export declare type JiraMutationEditCustomFieldArgs = {
|
|
|
99650
100091
|
export declare type JiraMutationGenerateCfoRecommendationsArgs = {
|
|
99651
100092
|
cloudId: Scalars['ID']['input'];
|
|
99652
100093
|
};
|
|
100094
|
+
export declare type JiraMutationGenerateIssueAiSummaryArgs = {
|
|
100095
|
+
input: JiraGenerateIssueAiSummaryInput;
|
|
100096
|
+
};
|
|
99653
100097
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
99654
100098
|
cloudId: Scalars['ID']['input'];
|
|
99655
100099
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
@@ -100451,11 +100895,15 @@ export declare type JiraNumberFieldOperationInput = {
|
|
|
100451
100895
|
number?: InputMaybe<Scalars['Float']['input']>;
|
|
100452
100896
|
operation: JiraSingleValueFieldOperations;
|
|
100453
100897
|
};
|
|
100454
|
-
export declare type JiraNumberFieldPayload = Payload & {
|
|
100898
|
+
export declare type JiraNumberFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
100455
100899
|
__typename?: 'JiraNumberFieldPayload';
|
|
100456
100900
|
errors?: Maybe<Array<MutationError>>;
|
|
100457
100901
|
field?: Maybe<JiraNumberField>;
|
|
100458
100902
|
success: Scalars['Boolean']['output'];
|
|
100903
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
100904
|
+
};
|
|
100905
|
+
export declare type JiraNumberFieldPayloadUpdatedDependentFieldsArgs = {
|
|
100906
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
100459
100907
|
};
|
|
100460
100908
|
export declare type JiraNumberFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
100461
100909
|
__typename?: 'JiraNumberFormulaField';
|
|
@@ -101892,6 +102340,8 @@ export declare type JiraProjectAssignableUsersArgs = {
|
|
|
101892
102340
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
101893
102341
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101894
102342
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
102343
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
102344
|
+
recommend?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101895
102345
|
};
|
|
101896
102346
|
export declare type JiraProjectAssociatedComponentsArgs = {
|
|
101897
102347
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -102078,6 +102528,7 @@ export declare type JiraProjectAccessRequestDetails = {
|
|
|
102078
102528
|
accessUrl?: Maybe<Scalars['String']['output']>;
|
|
102079
102529
|
createdAt: Scalars['Long']['output'];
|
|
102080
102530
|
id: Scalars['ID']['output'];
|
|
102531
|
+
isPending?: Maybe<Scalars['Boolean']['output']>;
|
|
102081
102532
|
note?: Maybe<Scalars['String']['output']>;
|
|
102082
102533
|
requester?: Maybe<User>;
|
|
102083
102534
|
user?: Maybe<User>;
|
|
@@ -106755,6 +107206,15 @@ export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payloa
|
|
|
106755
107206
|
errors?: Maybe<Array<MutationError>>;
|
|
106756
107207
|
success: Scalars['Boolean']['output'];
|
|
106757
107208
|
};
|
|
107209
|
+
export declare type JiraSetTimelineViewRangeModeInput = {
|
|
107210
|
+
rangeMode: JiraTimelineViewRangeMode;
|
|
107211
|
+
viewId: Scalars['ID']['input'];
|
|
107212
|
+
};
|
|
107213
|
+
export declare type JiraSetTimelineViewRangeModePayload = Payload & {
|
|
107214
|
+
__typename?: 'JiraSetTimelineViewRangeModePayload';
|
|
107215
|
+
errors?: Maybe<Array<MutationError>>;
|
|
107216
|
+
success: Scalars['Boolean']['output'];
|
|
107217
|
+
};
|
|
106758
107218
|
export declare type JiraSetViewFilterInput = {
|
|
106759
107219
|
jql: Scalars['String']['input'];
|
|
106760
107220
|
viewId: Scalars['ID']['input'];
|
|
@@ -107537,11 +107997,15 @@ export declare type JiraStoryPointEstimateFieldOperationInput = {
|
|
|
107537
107997
|
operation: JiraSingleValueFieldOperations;
|
|
107538
107998
|
storyPoint?: InputMaybe<Scalars['Float']['input']>;
|
|
107539
107999
|
};
|
|
107540
|
-
export declare type JiraStoryPointEstimateFieldPayload = Payload & {
|
|
108000
|
+
export declare type JiraStoryPointEstimateFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
107541
108001
|
__typename?: 'JiraStoryPointEstimateFieldPayload';
|
|
107542
108002
|
errors?: Maybe<Array<MutationError>>;
|
|
107543
108003
|
field?: Maybe<JiraNumberField>;
|
|
107544
108004
|
success: Scalars['Boolean']['output'];
|
|
108005
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
108006
|
+
};
|
|
108007
|
+
export declare type JiraStoryPointEstimateFieldPayloadUpdatedDependentFieldsArgs = {
|
|
108008
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107545
108009
|
};
|
|
107546
108010
|
export declare type JiraStreamHubResourceIdentifier = {
|
|
107547
108011
|
__typename?: 'JiraStreamHubResourceIdentifier';
|
|
@@ -107899,6 +108363,13 @@ export declare type JiraSuggestionsConnection = HasPageInfo & {
|
|
|
107899
108363
|
errors?: Maybe<Array<QueryError>>;
|
|
107900
108364
|
pageInfo: PageInfo;
|
|
107901
108365
|
};
|
|
108366
|
+
export declare type JiraSupportsUpdatedDependentFields = {
|
|
108367
|
+
field?: Maybe<JiraIssueField>;
|
|
108368
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
108369
|
+
};
|
|
108370
|
+
export declare type JiraSupportsUpdatedDependentFieldsUpdatedDependentFieldsArgs = {
|
|
108371
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108372
|
+
};
|
|
107902
108373
|
export declare enum JiraSyntheticFieldCardOptionType {
|
|
107903
108374
|
CardCover = "CARD_COVER",
|
|
107904
108375
|
Pages = "PAGES"
|
|
@@ -108233,6 +108704,11 @@ export declare type JiraTimelineViewViewSettingsArgs = {
|
|
|
108233
108704
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
108234
108705
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
108235
108706
|
};
|
|
108707
|
+
export declare enum JiraTimelineViewRangeMode {
|
|
108708
|
+
Months = "MONTHS",
|
|
108709
|
+
Quarters = "QUARTERS",
|
|
108710
|
+
Weeks = "WEEKS"
|
|
108711
|
+
}
|
|
108236
108712
|
export declare type JiraTimelineVirtualField = {
|
|
108237
108713
|
issue?: Maybe<JiraIssue>;
|
|
108238
108714
|
};
|
|
@@ -108309,6 +108785,11 @@ export declare type JiraTransition = Node & {
|
|
|
108309
108785
|
to?: Maybe<JiraStatus>;
|
|
108310
108786
|
transitionId?: Maybe<Scalars['Int']['output']>;
|
|
108311
108787
|
};
|
|
108788
|
+
export declare type JiraTransitionAgent = {
|
|
108789
|
+
__typename?: 'JiraTransitionAgent';
|
|
108790
|
+
accountId: Scalars['ID']['output'];
|
|
108791
|
+
agent?: Maybe<User>;
|
|
108792
|
+
};
|
|
108312
108793
|
export declare type JiraTransitionConnection = {
|
|
108313
108794
|
__typename?: 'JiraTransitionConnection';
|
|
108314
108795
|
edges?: Maybe<Array<Maybe<JiraTransitionEdge>>>;
|
|
@@ -112041,9 +112522,9 @@ export declare type KitsuneSourceInput = {
|
|
|
112041
112522
|
export declare type KitsuneSourceInputWeb = {
|
|
112042
112523
|
url: Scalars['String']['input'];
|
|
112043
112524
|
};
|
|
112044
|
-
export declare type KitsuneSpace =
|
|
112525
|
+
export declare type KitsuneSpace = Node & {
|
|
112045
112526
|
__typename?: 'KitsuneSpace';
|
|
112046
|
-
|
|
112527
|
+
id: Scalars['ID']['output'];
|
|
112047
112528
|
name?: Maybe<Scalars['String']['output']>;
|
|
112048
112529
|
};
|
|
112049
112530
|
export declare type KnowledgeBaseAccessibleLinkedSourceResult = {
|
|
@@ -113560,18 +114041,21 @@ export declare type LogDetails = {
|
|
|
113560
114041
|
export declare type LogQueryInput = {
|
|
113561
114042
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
113562
114043
|
appVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
114044
|
+
container?: InputMaybe<Scalars['String']['input']>;
|
|
113563
114045
|
contexts?: InputMaybe<Array<InputMaybe<Context>>>;
|
|
113564
114046
|
dates?: InputMaybe<DateSearchInput>;
|
|
113565
114047
|
editions?: InputMaybe<Array<InputMaybe<EditionValue>>>;
|
|
113566
114048
|
functionKey?: InputMaybe<Scalars['String']['input']>;
|
|
113567
114049
|
functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
113568
114050
|
installationContexts?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
114051
|
+
instance?: InputMaybe<Scalars['String']['input']>;
|
|
113569
114052
|
invocationId?: InputMaybe<Scalars['String']['input']>;
|
|
113570
114053
|
licenseStates?: InputMaybe<Array<InputMaybe<LicenseValue>>>;
|
|
113571
114054
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
113572
114055
|
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
113573
114056
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
113574
114057
|
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
114058
|
+
service?: InputMaybe<Scalars['String']['input']>;
|
|
113575
114059
|
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
113576
114060
|
};
|
|
113577
114061
|
export declare type LookAndFeel = {
|
|
@@ -117805,6 +118289,7 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
117805
118289
|
};
|
|
117806
118290
|
export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
117807
118291
|
dateField?: InputMaybe<MercuryCreateDateCustomFieldDefinitionInput>;
|
|
118292
|
+
multiSelectField?: InputMaybe<MercuryCreateMultiSelectCustomFieldDefinitionInput>;
|
|
117808
118293
|
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
117809
118294
|
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
117810
118295
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
@@ -117913,6 +118398,9 @@ export declare type MercuryCreateInvestmentCategorySetPayload = Payload & {
|
|
|
117913
118398
|
errors?: Maybe<Array<MutationError>>;
|
|
117914
118399
|
success: Scalars['Boolean']['output'];
|
|
117915
118400
|
};
|
|
118401
|
+
export declare type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
|
|
118402
|
+
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
118403
|
+
};
|
|
117916
118404
|
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
117917
118405
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
117918
118406
|
};
|
|
@@ -117929,7 +118417,7 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
117929
118417
|
success: Scalars['Boolean']['output'];
|
|
117930
118418
|
};
|
|
117931
118419
|
export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
117932
|
-
options: Array<
|
|
118420
|
+
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
117933
118421
|
};
|
|
117934
118422
|
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
117935
118423
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -117999,15 +118487,33 @@ export declare enum MercuryCustomFieldDefinitionSortField {
|
|
|
117999
118487
|
}
|
|
118000
118488
|
export declare type MercuryCustomFieldInput = {
|
|
118001
118489
|
dateField?: InputMaybe<MercuryDateCustomFieldInput>;
|
|
118490
|
+
multiSelectField?: InputMaybe<MercuryMultiSelectCustomFieldInput>;
|
|
118002
118491
|
numberField?: InputMaybe<MercuryNumberCustomFieldInput>;
|
|
118003
118492
|
singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
|
|
118004
118493
|
textField?: InputMaybe<MercuryTextCustomFieldInput>;
|
|
118005
118494
|
};
|
|
118495
|
+
export declare type MercuryCustomFieldSelectionOptionSetting = {
|
|
118496
|
+
__typename?: 'MercuryCustomFieldSelectionOptionSetting';
|
|
118497
|
+
key: MercuryCustomFieldSelectionOptionSettingKey;
|
|
118498
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
118499
|
+
};
|
|
118500
|
+
export declare type MercuryCustomFieldSelectionOptionSettingInput = {
|
|
118501
|
+
key: MercuryCustomFieldSelectionOptionSettingKey;
|
|
118502
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
118503
|
+
};
|
|
118504
|
+
export declare enum MercuryCustomFieldSelectionOptionSettingKey {
|
|
118505
|
+
Color = "COLOR"
|
|
118506
|
+
}
|
|
118006
118507
|
export declare type MercuryCustomSelectFieldOption = {
|
|
118007
118508
|
__typename?: 'MercuryCustomSelectFieldOption';
|
|
118008
118509
|
id: Scalars['ID']['output'];
|
|
118510
|
+
settings?: Maybe<Array<MercuryCustomFieldSelectionOptionSetting>>;
|
|
118009
118511
|
value: Scalars['String']['output'];
|
|
118010
118512
|
};
|
|
118513
|
+
export declare type MercuryCustomSelectFieldOptionInput = {
|
|
118514
|
+
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
118515
|
+
value: Scalars['String']['input'];
|
|
118516
|
+
};
|
|
118011
118517
|
export declare type MercuryDateCustomField = MercuryCustomField & {
|
|
118012
118518
|
__typename?: 'MercuryDateCustomField';
|
|
118013
118519
|
createdBy?: Maybe<User>;
|
|
@@ -118100,6 +118606,16 @@ export declare type MercuryDeleteCostSubtypePayload = Payload & {
|
|
|
118100
118606
|
export declare type MercuryDeleteCustomFieldDefinitionInput = {
|
|
118101
118607
|
id: Scalars['ID']['input'];
|
|
118102
118608
|
};
|
|
118609
|
+
export declare type MercuryDeleteCustomFieldDefinitionOptionsInput = {
|
|
118610
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
118611
|
+
optionIds: Array<Scalars['ID']['input']>;
|
|
118612
|
+
};
|
|
118613
|
+
export declare type MercuryDeleteCustomFieldDefinitionOptionsPayload = Payload & {
|
|
118614
|
+
__typename?: 'MercuryDeleteCustomFieldDefinitionOptionsPayload';
|
|
118615
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
118616
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118617
|
+
success: Scalars['Boolean']['output'];
|
|
118618
|
+
};
|
|
118103
118619
|
export declare type MercuryDeleteCustomFieldDefinitionPayload = {
|
|
118104
118620
|
__typename?: 'MercuryDeleteCustomFieldDefinitionPayload';
|
|
118105
118621
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -118724,6 +119240,7 @@ export declare type MercuryFundsMonthlySummary = {
|
|
|
118724
119240
|
__typename?: 'MercuryFundsMonthlySummary';
|
|
118725
119241
|
amountSummary?: Maybe<MercuryFundsAmountSummary>;
|
|
118726
119242
|
costSubtype?: Maybe<MercuryCostSubtype>;
|
|
119243
|
+
fiscalQuarter?: Maybe<Scalars['Int']['output']>;
|
|
118727
119244
|
fundsType?: Maybe<MercuryFundsType>;
|
|
118728
119245
|
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
118729
119246
|
investmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
@@ -119195,6 +119712,31 @@ export declare type MercuryMovedPositionSummaryByChangeProposalStatus = {
|
|
|
119195
119712
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
119196
119713
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
119197
119714
|
};
|
|
119715
|
+
export declare type MercuryMultiSelectCustomField = MercuryCustomField & {
|
|
119716
|
+
__typename?: 'MercuryMultiSelectCustomField';
|
|
119717
|
+
createdBy?: Maybe<User>;
|
|
119718
|
+
createdDate: Scalars['DateTime']['output'];
|
|
119719
|
+
definition?: Maybe<MercuryMultiSelectCustomFieldDefinition>;
|
|
119720
|
+
selectedOptions?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
119721
|
+
updatedBy?: Maybe<User>;
|
|
119722
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
119723
|
+
};
|
|
119724
|
+
export declare type MercuryMultiSelectCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
119725
|
+
__typename?: 'MercuryMultiSelectCustomFieldDefinition';
|
|
119726
|
+
createdBy?: Maybe<User>;
|
|
119727
|
+
createdDate: Scalars['DateTime']['output'];
|
|
119728
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
119729
|
+
id: Scalars['ID']['output'];
|
|
119730
|
+
name: Scalars['String']['output'];
|
|
119731
|
+
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
119732
|
+
scope: MercuryCustomFieldDefinitionScope;
|
|
119733
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
119734
|
+
updatedBy?: Maybe<User>;
|
|
119735
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
119736
|
+
};
|
|
119737
|
+
export declare type MercuryMultiSelectCustomFieldInput = {
|
|
119738
|
+
options?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
119739
|
+
};
|
|
119198
119740
|
export declare type MercuryMutationApi = {
|
|
119199
119741
|
__typename?: 'MercuryMutationApi';
|
|
119200
119742
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
@@ -119209,6 +119751,7 @@ export declare type MercuryMutationApi = {
|
|
|
119209
119751
|
deleteComment?: Maybe<MercuryDeleteCommentPayload>;
|
|
119210
119752
|
deleteFocusArea?: Maybe<MercuryDeleteFocusAreaPayload>;
|
|
119211
119753
|
deleteFocusAreaCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
119754
|
+
deleteFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
119212
119755
|
deleteFocusAreaGoalLink?: Maybe<MercuryDeleteFocusAreaGoalLinkPayload>;
|
|
119213
119756
|
deleteFocusAreaGoalLinks?: Maybe<MercuryDeleteFocusAreaGoalLinksPayload>;
|
|
119214
119757
|
deleteFocusAreaLink?: Maybe<MercuryDeleteFocusAreaLinkPayload>;
|
|
@@ -119224,6 +119767,8 @@ export declare type MercuryMutationApi = {
|
|
|
119224
119767
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
119225
119768
|
removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
|
|
119226
119769
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
119770
|
+
reorderFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
119771
|
+
setFocusAreaCustomFieldDefinitionOptions?: Maybe<MercurySetCustomFieldDefinitionOptionsPayload>;
|
|
119227
119772
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
119228
119773
|
setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
|
|
119229
119774
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -119233,6 +119778,7 @@ export declare type MercuryMutationApi = {
|
|
|
119233
119778
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
119234
119779
|
updateFocusAreaCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
119235
119780
|
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
119781
|
+
updateFocusAreaCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
119236
119782
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
119237
119783
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
119238
119784
|
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
@@ -119277,6 +119823,9 @@ export declare type MercuryMutationApiDeleteFocusAreaArgs = {
|
|
|
119277
119823
|
export declare type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionArgs = {
|
|
119278
119824
|
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
119279
119825
|
};
|
|
119826
|
+
export declare type MercuryMutationApiDeleteFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
119827
|
+
input: MercuryDeleteCustomFieldDefinitionOptionsInput;
|
|
119828
|
+
};
|
|
119280
119829
|
export declare type MercuryMutationApiDeleteFocusAreaGoalLinkArgs = {
|
|
119281
119830
|
input: MercuryDeleteFocusAreaGoalLinkInput;
|
|
119282
119831
|
};
|
|
@@ -119322,6 +119871,12 @@ export declare type MercuryMutationApiRemoveUserAccessToFocusAreaArgs = {
|
|
|
119322
119871
|
export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
119323
119872
|
input: MercuryRemoveWatcherFromFocusAreaInput;
|
|
119324
119873
|
};
|
|
119874
|
+
export declare type MercuryMutationApiReorderFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
119875
|
+
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
119876
|
+
};
|
|
119877
|
+
export declare type MercuryMutationApiSetFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
119878
|
+
input: MercurySetCustomFieldDefinitionOptionsInput;
|
|
119879
|
+
};
|
|
119325
119880
|
export declare type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
|
|
119326
119881
|
input: MercurySetFocusAreaCustomFieldInput;
|
|
119327
119882
|
};
|
|
@@ -119349,6 +119904,9 @@ export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionDescri
|
|
|
119349
119904
|
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameArgs = {
|
|
119350
119905
|
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
119351
119906
|
};
|
|
119907
|
+
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionOptionArgs = {
|
|
119908
|
+
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
119909
|
+
};
|
|
119352
119910
|
export declare type MercuryMutationApiUpdateFocusAreaNameArgs = {
|
|
119353
119911
|
input: MercuryUpdateFocusAreaNameInput;
|
|
119354
119912
|
};
|
|
@@ -119993,6 +120551,16 @@ export declare type MercuryRenameFocusAreaChangeInput = {
|
|
|
119993
120551
|
newFocusAreaName: Scalars['String']['input'];
|
|
119994
120552
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
119995
120553
|
};
|
|
120554
|
+
export declare type MercuryReorderCustomFieldDefinitionOptionsInput = {
|
|
120555
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
120556
|
+
optionIds: Array<Scalars['ID']['input']>;
|
|
120557
|
+
};
|
|
120558
|
+
export declare type MercuryReorderCustomFieldDefinitionOptionsPayload = Payload & {
|
|
120559
|
+
__typename?: 'MercuryReorderCustomFieldDefinitionOptionsPayload';
|
|
120560
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
120561
|
+
errors?: Maybe<Array<MutationError>>;
|
|
120562
|
+
success: Scalars['Boolean']['output'];
|
|
120563
|
+
};
|
|
119996
120564
|
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
119997
120565
|
__typename?: 'MercuryRequestFundsChange';
|
|
119998
120566
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -120070,6 +120638,16 @@ export declare type MercurySetChangeProposalCustomFieldPayload = Payload & {
|
|
|
120070
120638
|
errors?: Maybe<Array<MutationError>>;
|
|
120071
120639
|
success: Scalars['Boolean']['output'];
|
|
120072
120640
|
};
|
|
120641
|
+
export declare type MercurySetCustomFieldDefinitionOptionsInput = {
|
|
120642
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
120643
|
+
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
120644
|
+
};
|
|
120645
|
+
export declare type MercurySetCustomFieldDefinitionOptionsPayload = Payload & {
|
|
120646
|
+
__typename?: 'MercurySetCustomFieldDefinitionOptionsPayload';
|
|
120647
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
120648
|
+
errors?: Maybe<Array<MutationError>>;
|
|
120649
|
+
success: Scalars['Boolean']['output'];
|
|
120650
|
+
};
|
|
120073
120651
|
export declare type MercurySetFocusAreaCustomFieldInput = {
|
|
120074
120652
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
120075
120653
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
@@ -120228,6 +120806,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
120228
120806
|
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
120229
120807
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
120230
120808
|
deleteChangeProposalCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
120809
|
+
deleteChangeProposalCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
120231
120810
|
deleteChangeProposalsView?: Maybe<MercuryDeleteChangeProposalsViewPayload>;
|
|
120232
120811
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
120233
120812
|
deleteStrategicEvent?: Maybe<MercuryDeleteStrategicEventPayload>;
|
|
@@ -120236,6 +120815,8 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
120236
120815
|
moveChanges?: Maybe<MercuryMoveChangesPayload>;
|
|
120237
120816
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
120238
120817
|
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
120818
|
+
reorderChangeProposalCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
120819
|
+
setChangeProposalCustomFieldDefinitionOptions?: Maybe<MercurySetCustomFieldDefinitionOptionsPayload>;
|
|
120239
120820
|
setChangeProposalCustomFieldValue?: Maybe<MercurySetChangeProposalCustomFieldPayload>;
|
|
120240
120821
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
120241
120822
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
@@ -120244,6 +120825,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
120244
120825
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
120245
120826
|
updateChangeProposalCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
120246
120827
|
updateChangeProposalCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
120828
|
+
updateChangeProposalCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
120247
120829
|
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
120248
120830
|
updateChangeProposalFocusArea?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
120249
120831
|
updateChangeProposalImpact?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
@@ -120293,6 +120875,9 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalComment
|
|
|
120293
120875
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCustomFieldDefinitionArgs = {
|
|
120294
120876
|
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
120295
120877
|
};
|
|
120878
|
+
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
120879
|
+
input: MercuryDeleteCustomFieldDefinitionOptionsInput;
|
|
120880
|
+
};
|
|
120296
120881
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalsViewArgs = {
|
|
120297
120882
|
input: MercuryDeleteChangeProposalsViewInput;
|
|
120298
120883
|
};
|
|
@@ -120317,6 +120902,12 @@ export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
|
|
|
120317
120902
|
export declare type MercuryStrategicEventsMutationApiRemoveTagsFromChangeProposalArgs = {
|
|
120318
120903
|
input: MercuryRemoveTagsFromProposalInput;
|
|
120319
120904
|
};
|
|
120905
|
+
export declare type MercuryStrategicEventsMutationApiReorderChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
120906
|
+
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
120907
|
+
};
|
|
120908
|
+
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
120909
|
+
input: MercurySetCustomFieldDefinitionOptionsInput;
|
|
120910
|
+
};
|
|
120320
120911
|
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldValueArgs = {
|
|
120321
120912
|
input: MercurySetChangeProposalCustomFieldInput;
|
|
120322
120913
|
};
|
|
@@ -120341,6 +120932,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCustomF
|
|
|
120341
120932
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCustomFieldDefinitionNameArgs = {
|
|
120342
120933
|
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
120343
120934
|
};
|
|
120935
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCustomFieldDefinitionOptionArgs = {
|
|
120936
|
+
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
120937
|
+
};
|
|
120344
120938
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
|
|
120345
120939
|
input: MercuryUpdateChangeProposalDescriptionInput;
|
|
120346
120940
|
};
|
|
@@ -120778,6 +121372,18 @@ export declare type MercuryUpdateCustomFieldDefinitionNamePayload = {
|
|
|
120778
121372
|
errors?: Maybe<Array<MutationError>>;
|
|
120779
121373
|
success: Scalars['Boolean']['output'];
|
|
120780
121374
|
};
|
|
121375
|
+
export declare type MercuryUpdateCustomFieldDefinitionOptionInput = {
|
|
121376
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
121377
|
+
optionId: Scalars['ID']['input'];
|
|
121378
|
+
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
121379
|
+
value: Scalars['String']['input'];
|
|
121380
|
+
};
|
|
121381
|
+
export declare type MercuryUpdateCustomFieldDefinitionOptionPayload = Payload & {
|
|
121382
|
+
__typename?: 'MercuryUpdateCustomFieldDefinitionOptionPayload';
|
|
121383
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
121384
|
+
errors?: Maybe<Array<MutationError>>;
|
|
121385
|
+
success: Scalars['Boolean']['output'];
|
|
121386
|
+
};
|
|
120781
121387
|
export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
120782
121388
|
aboutContent: Scalars['String']['input'];
|
|
120783
121389
|
cloudId: Scalars['ID']['input'];
|
|
@@ -121291,12 +121897,12 @@ export declare type Mutation = {
|
|
|
121291
121897
|
assetsDM_addDefaultAttributeMapping?: Maybe<AssetsDmAddDefaultAttributeMappingResponse>;
|
|
121292
121898
|
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
121293
121899
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
121900
|
+
assetsDM_batchCreateComputeDictionaryValues?: Maybe<AssetsDmBatchCreateComputeDictionaryValuesResponse>;
|
|
121294
121901
|
assetsDM_changeDataSourceStatus?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
121295
121902
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
121296
121903
|
assetsDM_configureDefaultDataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
121297
121904
|
assetsDM_createAttributePriority?: Maybe<AssetsDmCreateAttributePriorityPayload>;
|
|
121298
121905
|
assetsDM_createCleansingReason?: Maybe<AssetsDmCreateCleansingReasonResponse>;
|
|
121299
|
-
assetsDM_createComputeDictionaryValue?: Maybe<AssetsDmCreateComputeDictionaryValueResponse>;
|
|
121300
121906
|
assetsDM_createDataDictionaryGroup?: Maybe<AssetsDmCreateDataDictionaryGroupResponse>;
|
|
121301
121907
|
assetsDM_createDataDictionaryGroupValue?: Maybe<AssetsDmCreateDataDictionaryGroupValueResponse>;
|
|
121302
121908
|
assetsDM_createDataSource?: Maybe<AssetsDmCreateDataSourcePayload>;
|
|
@@ -121368,6 +121974,7 @@ export declare type Mutation = {
|
|
|
121368
121974
|
avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
|
|
121369
121975
|
blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
|
|
121370
121976
|
blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
|
|
121977
|
+
blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
|
|
121371
121978
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
121372
121979
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
121373
121980
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -121378,6 +121985,8 @@ export declare type Mutation = {
|
|
|
121378
121985
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
121379
121986
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
121380
121987
|
ccp?: Maybe<CcpMutationApi>;
|
|
121988
|
+
changeManagement_recordLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
121989
|
+
changeManagement_updateGlobalRiskAssessmentSettings: Scalars['Boolean']['output'];
|
|
121381
121990
|
changeManagement_updateRovoRiskAssessmentSettings: Scalars['Boolean']['output'];
|
|
121382
121991
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
121383
121992
|
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
@@ -121395,7 +122004,9 @@ export declare type Mutation = {
|
|
|
121395
122004
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
121396
122005
|
confluence_addTrack?: Maybe<ConfluenceAddTrackPayload>;
|
|
121397
122006
|
confluence_batchFollowTeammates?: Maybe<ConfluenceBatchFollowTeammatesPayload>;
|
|
122007
|
+
confluence_bulkAssignRolesForCombinationId?: Maybe<ConfluencePermissionTransitionBulkAssignRolesPayload>;
|
|
121398
122008
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
122009
|
+
confluence_bulkRemoveAccess?: Maybe<ConfluencePermissionTransitionBulkRemoveAccessPayload>;
|
|
121399
122010
|
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
121400
122011
|
confluence_convertToBlogpost?: Maybe<ConfluenceConvertContentToBlogpostPayload>;
|
|
121401
122012
|
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
@@ -121466,6 +122077,7 @@ export declare type Mutation = {
|
|
|
121466
122077
|
confluence_updateCalendarSandboxEventTypeReminder?: Maybe<ConfluenceUpdateCalendarSandboxEventTypeReminderPayload>;
|
|
121467
122078
|
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
121468
122079
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
122080
|
+
confluence_updateContentAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
121469
122081
|
confluence_updateContentAppearance?: Maybe<ConfluenceUpdateContentAppearancePayload>;
|
|
121470
122082
|
confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
|
|
121471
122083
|
confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
|
|
@@ -121479,6 +122091,7 @@ export declare type Mutation = {
|
|
|
121479
122091
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
121480
122092
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
121481
122093
|
confluence_updateShareableLink?: Maybe<ConfluenceUpdateShareableLinksPayload>;
|
|
122094
|
+
confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
121482
122095
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
121483
122096
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
121484
122097
|
confluence_updateTitleEmoji?: Maybe<ConfluenceUpdateTitleEmojiPayload>;
|
|
@@ -121627,6 +122240,7 @@ export declare type Mutation = {
|
|
|
121627
122240
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
121628
122241
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
121629
122242
|
devai_createFlow?: Maybe<DevAiFlowSessionCreatePayload>;
|
|
122243
|
+
devai_createPullRequest?: Maybe<DevAiRovoDevCreatePullRequestPayload>;
|
|
121630
122244
|
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
121631
122245
|
devai_flowCreate?: Maybe<DevAiFlowSession>;
|
|
121632
122246
|
devai_flowSessionComplete?: Maybe<DevAiFlowSession>;
|
|
@@ -121707,6 +122321,7 @@ export declare type Mutation = {
|
|
|
121707
122321
|
goals_setWatchingTeam?: Maybe<TownsquareGoalsSetWatchingTeamPayload>;
|
|
121708
122322
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
121709
122323
|
goals_shareUpdate?: Maybe<TownsquareGoalsShareUpdatePayload>;
|
|
122324
|
+
goals_unlinkJiraAlignProject?: Maybe<TownsquareGoalsUnlinkJiraAlignProjectPayload>;
|
|
121710
122325
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
121711
122326
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
121712
122327
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
@@ -121825,6 +122440,7 @@ export declare type Mutation = {
|
|
|
121825
122440
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
121826
122441
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
121827
122442
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
122443
|
+
jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
|
|
121828
122444
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
121829
122445
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
121830
122446
|
jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
|
|
@@ -121853,6 +122469,7 @@ export declare type Mutation = {
|
|
|
121853
122469
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
121854
122470
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
121855
122471
|
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
122472
|
+
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
121856
122473
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
121857
122474
|
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
|
|
121858
122475
|
knowledgeBase_linkSources?: Maybe<KnowledgeBaseLinkSourcesResponse>;
|
|
@@ -122095,6 +122712,7 @@ export declare type Mutation = {
|
|
|
122095
122712
|
stakeholderComms_issueSsl?: Maybe<StakeholderCommsIssueSslResponse>;
|
|
122096
122713
|
stakeholderComms_permanentlyDeletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
122097
122714
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
122715
|
+
stakeholderComms_removeCustomDomain?: Maybe<StakeholderCommsRemoveCustomDomainResponse>;
|
|
122098
122716
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
122099
122717
|
stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
122100
122718
|
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
@@ -122442,10 +123060,15 @@ export declare type MutationAssetsDm_AssociateObjectTagArgs = {
|
|
|
122442
123060
|
workspaceId: Scalars['ID']['input'];
|
|
122443
123061
|
};
|
|
122444
123062
|
export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
122445
|
-
autoColumnMappingInput
|
|
123063
|
+
autoColumnMappingInput: AssetsDmAutoColumnMappingInput;
|
|
122446
123064
|
cloudId: Scalars['ID']['input'];
|
|
122447
123065
|
workspaceId: Scalars['ID']['input'];
|
|
122448
123066
|
};
|
|
123067
|
+
export declare type MutationAssetsDm_BatchCreateComputeDictionaryValuesArgs = {
|
|
123068
|
+
cloudId: Scalars['ID']['input'];
|
|
123069
|
+
inputs: Array<AssetsDmCreateComputeDictionaryValueInput>;
|
|
123070
|
+
workspaceId: Scalars['ID']['input'];
|
|
123071
|
+
};
|
|
122449
123072
|
export declare type MutationAssetsDm_ChangeDataSourceStatusArgs = {
|
|
122450
123073
|
cloudId: Scalars['ID']['input'];
|
|
122451
123074
|
input: AssetsDmChangeDataSourceStatusInput;
|
|
@@ -122474,11 +123097,6 @@ export declare type MutationAssetsDm_CreateCleansingReasonArgs = {
|
|
|
122474
123097
|
input: AssetsDmCreateCleansingReasonInput;
|
|
122475
123098
|
workspaceId: Scalars['ID']['input'];
|
|
122476
123099
|
};
|
|
122477
|
-
export declare type MutationAssetsDm_CreateComputeDictionaryValueArgs = {
|
|
122478
|
-
cloudId: Scalars['ID']['input'];
|
|
122479
|
-
input: AssetsDmCreateComputeDictionaryValueInput;
|
|
122480
|
-
workspaceId: Scalars['ID']['input'];
|
|
122481
|
-
};
|
|
122482
123100
|
export declare type MutationAssetsDm_CreateDataDictionaryGroupArgs = {
|
|
122483
123101
|
cloudId: Scalars['ID']['input'];
|
|
122484
123102
|
input: AssetsDmCreateDataDictionaryGroupInput;
|
|
@@ -122780,6 +123398,9 @@ export declare type MutationBlockService_CreateBlockArgs = {
|
|
|
122780
123398
|
export declare type MutationBlockService_DeleteBlockArgs = {
|
|
122781
123399
|
input: BlockServiceDeleteBlockInput;
|
|
122782
123400
|
};
|
|
123401
|
+
export declare type MutationBlockService_UpdateBlockArgs = {
|
|
123402
|
+
input: BlockServiceUpdateBlockInput;
|
|
123403
|
+
};
|
|
122783
123404
|
export declare type MutationBoardCardMoveArgs = {
|
|
122784
123405
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
122785
123406
|
};
|
|
@@ -122810,6 +123431,12 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
|
|
|
122810
123431
|
input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
|
|
122811
123432
|
spaceKey: Scalars['String']['input'];
|
|
122812
123433
|
};
|
|
123434
|
+
export declare type MutationChangeManagement_RecordLastRovoRiskAssessmentArgs = {
|
|
123435
|
+
input: ChangeManagementUpdateLastRovoRiskAssessmentInput;
|
|
123436
|
+
};
|
|
123437
|
+
export declare type MutationChangeManagement_UpdateGlobalRiskAssessmentSettingsArgs = {
|
|
123438
|
+
input: ChangeManagementUpdateGlobalRiskAssessmentSettingsInput;
|
|
123439
|
+
};
|
|
122813
123440
|
export declare type MutationChangeManagement_UpdateRovoRiskAssessmentSettingsArgs = {
|
|
122814
123441
|
input: ChangeManagementUpdateRovoRiskAssessmentSettingsInput;
|
|
122815
123442
|
};
|
|
@@ -122867,10 +123494,18 @@ export declare type MutationConfluence_BatchFollowTeammatesArgs = {
|
|
|
122867
123494
|
cloudId: Scalars['ID']['input'];
|
|
122868
123495
|
input: ConfluenceBatchFollowTeammatesInput;
|
|
122869
123496
|
};
|
|
123497
|
+
export declare type MutationConfluence_BulkAssignRolesForCombinationIdArgs = {
|
|
123498
|
+
cloudId: Scalars['ID']['input'];
|
|
123499
|
+
input: ConfluencePermissionTransitionBulkAssignRolesInput;
|
|
123500
|
+
};
|
|
122870
123501
|
export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
122871
123502
|
cloudId: Scalars['ID']['input'];
|
|
122872
123503
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
122873
123504
|
};
|
|
123505
|
+
export declare type MutationConfluence_BulkRemoveAccessArgs = {
|
|
123506
|
+
cloudId: Scalars['ID']['input'];
|
|
123507
|
+
input: ConfluencePermissionTransitionBulkRemoveAccessInput;
|
|
123508
|
+
};
|
|
122874
123509
|
export declare type MutationConfluence_ConvertNoteArgs = {
|
|
122875
123510
|
input: ConfluenceConvertNoteInput;
|
|
122876
123511
|
};
|
|
@@ -123149,6 +123784,10 @@ export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
|
123149
123784
|
cloudId: Scalars['ID']['input'];
|
|
123150
123785
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
123151
123786
|
};
|
|
123787
|
+
export declare type MutationConfluence_UpdateContentAccessRequestSettingsArgs = {
|
|
123788
|
+
cloudId: Scalars['ID']['input'];
|
|
123789
|
+
input: ConfluenceUpdateAccessRequestSettingsInput;
|
|
123790
|
+
};
|
|
123152
123791
|
export declare type MutationConfluence_UpdateContentAppearanceArgs = {
|
|
123153
123792
|
cloudId: Scalars['ID']['input'];
|
|
123154
123793
|
input: ConfluenceUpdateContentAppearanceInput;
|
|
@@ -123203,6 +123842,10 @@ export declare type MutationConfluence_UpdateShareableLinkArgs = {
|
|
|
123203
123842
|
cloudId: Scalars['ID']['input'];
|
|
123204
123843
|
input: ConfluenceUpdateShareableLinksInput;
|
|
123205
123844
|
};
|
|
123845
|
+
export declare type MutationConfluence_UpdateSpaceAccessRequestSettingsArgs = {
|
|
123846
|
+
cloudId: Scalars['ID']['input'];
|
|
123847
|
+
input: ConfluenceUpdateAccessRequestSettingsInput;
|
|
123848
|
+
};
|
|
123206
123849
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
123207
123850
|
cloudId: Scalars['ID']['input'];
|
|
123208
123851
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -123741,6 +124384,9 @@ export declare type MutationDevai_CreateFlowArgs = {
|
|
|
123741
124384
|
jiraIssueJSON?: InputMaybe<Scalars['String']['input']>;
|
|
123742
124385
|
repoUrl: Scalars['URL']['input'];
|
|
123743
124386
|
};
|
|
124387
|
+
export declare type MutationDevai_CreatePullRequestArgs = {
|
|
124388
|
+
input: DevAiRovoDevCreatePullRequestInput;
|
|
124389
|
+
};
|
|
123744
124390
|
export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
123745
124391
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
123746
124392
|
issueAri: Scalars['ID']['input'];
|
|
@@ -123985,6 +124631,9 @@ export declare type MutationGoals_ShareGoalArgs = {
|
|
|
123985
124631
|
export declare type MutationGoals_ShareUpdateArgs = {
|
|
123986
124632
|
input: TownsquareGoalsShareUpdateInput;
|
|
123987
124633
|
};
|
|
124634
|
+
export declare type MutationGoals_UnlinkJiraAlignProjectArgs = {
|
|
124635
|
+
input: TownsquareGoalsUnlinkJiraAlignProjectInput;
|
|
124636
|
+
};
|
|
123988
124637
|
export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
123989
124638
|
input?: InputMaybe<TownsquareGoalsUnlinkWorkItemInput>;
|
|
123990
124639
|
};
|
|
@@ -124337,6 +124986,9 @@ export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
|
124337
124986
|
cloudId: Scalars['ID']['input'];
|
|
124338
124987
|
show: Scalars['Boolean']['input'];
|
|
124339
124988
|
};
|
|
124989
|
+
export declare type MutationJira_SetTimelineViewRangeModeArgs = {
|
|
124990
|
+
input: JiraSetTimelineViewRangeModeInput;
|
|
124991
|
+
};
|
|
124340
124992
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
124341
124993
|
input: JiraSetViewFilterInput;
|
|
124342
124994
|
};
|
|
@@ -124428,11 +125080,15 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
124428
125080
|
workspaceAri: Scalars['ID']['input'];
|
|
124429
125081
|
};
|
|
124430
125082
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
124431
|
-
|
|
125083
|
+
feedbackAri: Scalars['ID']['input'];
|
|
124432
125084
|
};
|
|
124433
125085
|
export declare type MutationKitsune_SuggestSnippetsArgs = {
|
|
124434
|
-
projectAri: Scalars['ID']['input'];
|
|
124435
125086
|
title: Scalars['String']['input'];
|
|
125087
|
+
workspaceAri: Scalars['ID']['input'];
|
|
125088
|
+
};
|
|
125089
|
+
export declare type MutationKitsune_UpdateSpaceArgs = {
|
|
125090
|
+
id: Scalars['ID']['input'];
|
|
125091
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
124436
125092
|
};
|
|
124437
125093
|
export declare type MutationKnowledgeBaseArgs = {
|
|
124438
125094
|
cloudId: Scalars['ID']['input'];
|
|
@@ -125174,6 +125830,9 @@ export declare type MutationStakeholderComms_PermanentlyDeletePageArgs = {
|
|
|
125174
125830
|
export declare type MutationStakeholderComms_PublishPageArgs = {
|
|
125175
125831
|
draftPageId: Scalars['String']['input'];
|
|
125176
125832
|
};
|
|
125833
|
+
export declare type MutationStakeholderComms_RemoveCustomDomainArgs = {
|
|
125834
|
+
input: StakeholderCommsRemoveCustomDomainInput;
|
|
125835
|
+
};
|
|
125177
125836
|
export declare type MutationStakeholderComms_RemoveStakeholderAssignmentArgs = {
|
|
125178
125837
|
stakeholderAssignmentInput: StakeholderCommsStakeholderAssignmentIdInput;
|
|
125179
125838
|
};
|
|
@@ -128362,6 +129021,7 @@ export declare type Query = {
|
|
|
128362
129021
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
128363
129022
|
admin_auditAuditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
128364
129023
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
129024
|
+
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
128365
129025
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
128366
129026
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
128367
129027
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
@@ -128400,6 +129060,7 @@ export declare type Query = {
|
|
|
128400
129060
|
agentStudio_batchEvalConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
128401
129061
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
128402
129062
|
agentStudio_batchEvaluationJobList?: Maybe<AgentStudioBatchEvaluationJobsResult>;
|
|
129063
|
+
agentStudio_batchEvaluationResultByConversationId?: Maybe<AgentStudioEvaluationResult>;
|
|
128403
129064
|
agentStudio_batchEvaluationSummary?: Maybe<AgentStudioEvaluationSummary>;
|
|
128404
129065
|
agentStudio_canAddMcpServer?: Maybe<AgentStudioCanAddMcpServerResult>;
|
|
128405
129066
|
agentStudio_conversationReportByAgentId?: Maybe<AgentStudioConversationReportByAgentIdResult>;
|
|
@@ -128561,6 +129222,8 @@ export declare type Query = {
|
|
|
128561
129222
|
ccp_transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
128562
129223
|
ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
128563
129224
|
cfo_analytics?: Maybe<CfoAnalyticsResult>;
|
|
129225
|
+
changeManagement_globalRiskAssessmentSettings: ChangeManagementGlobalRiskAssessmentSettingsPayload;
|
|
129226
|
+
changeManagement_lastRovoRiskAssessment: ChangeManagementLastRovoRiskAssessmentPayload;
|
|
128564
129227
|
changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
|
|
128565
129228
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
128566
129229
|
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
@@ -128637,6 +129300,8 @@ export declare type Query = {
|
|
|
128637
129300
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
128638
129301
|
confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
|
|
128639
129302
|
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
129303
|
+
confluence_getSmartContentFeatures?: Maybe<Array<Maybe<SmartPageFeatures>>>;
|
|
129304
|
+
confluence_getTotalPendingContentAccessRequestsCount?: Maybe<Scalars['Int']['output']>;
|
|
128640
129305
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
128641
129306
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
128642
129307
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -128666,6 +129331,7 @@ export declare type Query = {
|
|
|
128666
129331
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
128667
129332
|
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
128668
129333
|
confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
|
|
129334
|
+
confluence_principalsByCombinationId?: Maybe<ConfluencePermissionTransitionPrincipalsConnection>;
|
|
128669
129335
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
128670
129336
|
confluence_question?: Maybe<ConfluenceQuestion>;
|
|
128671
129337
|
confluence_questions?: Maybe<Array<Maybe<ConfluenceQuestion>>>;
|
|
@@ -128685,6 +129351,7 @@ export declare type Query = {
|
|
|
128685
129351
|
confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
|
|
128686
129352
|
confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
|
|
128687
129353
|
confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
129354
|
+
confluence_spacesByCombinationId?: Maybe<ConfluencePermissionTransitionSpaceConnection>;
|
|
128688
129355
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
128689
129356
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
128690
129357
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
@@ -128731,6 +129398,8 @@ export declare type Query = {
|
|
|
128731
129398
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
128732
129399
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
128733
129400
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
129401
|
+
convoAiAgentSession_getById?: Maybe<ConvoAiAgentSession>;
|
|
129402
|
+
convoAiAgentSession_getByIds?: Maybe<Array<Maybe<ConvoAiAgentSession>>>;
|
|
128734
129403
|
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
128735
129404
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
128736
129405
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
@@ -128886,6 +129555,7 @@ export declare type Query = {
|
|
|
128886
129555
|
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
128887
129556
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
128888
129557
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
129558
|
+
goals_byKey?: Maybe<TownsquareGoal>;
|
|
128889
129559
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
128890
129560
|
goals_goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
128891
129561
|
goals_goalTypesByIds?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
@@ -129011,6 +129681,7 @@ export declare type Query = {
|
|
|
129011
129681
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
129012
129682
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
129013
129683
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
129684
|
+
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
129014
129685
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
129015
129686
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
129016
129687
|
knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
|
|
@@ -129411,6 +130082,14 @@ export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
|
129411
130082
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129412
130083
|
orgId: Scalars['ID']['input'];
|
|
129413
130084
|
};
|
|
130085
|
+
export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
130086
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
130087
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
130088
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
130089
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130090
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
130091
|
+
orgId: Scalars['ID']['input'];
|
|
130092
|
+
};
|
|
129414
130093
|
export declare type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
129415
130094
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129416
130095
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -129633,6 +130312,13 @@ export declare type QueryAgentStudio_BatchEvaluationJobListArgs = {
|
|
|
129633
130312
|
productType: AgentStudioProductType;
|
|
129634
130313
|
projectContainerAri: Scalars['ID']['input'];
|
|
129635
130314
|
};
|
|
130315
|
+
export declare type QueryAgentStudio_BatchEvaluationResultByConversationIdArgs = {
|
|
130316
|
+
cloudId: Scalars['String']['input'];
|
|
130317
|
+
conversationId: Scalars['ID']['input'];
|
|
130318
|
+
productType: AgentStudioProductType;
|
|
130319
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
130320
|
+
runId: Scalars['ID']['input'];
|
|
130321
|
+
};
|
|
129636
130322
|
export declare type QueryAgentStudio_BatchEvaluationSummaryArgs = {
|
|
129637
130323
|
cloudId: Scalars['String']['input'];
|
|
129638
130324
|
productType: AgentStudioProductType;
|
|
@@ -130084,6 +130770,7 @@ export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
|
130084
130770
|
export declare type QueryAssetsDm_DefaultAttributeMappingArgs = {
|
|
130085
130771
|
cloudId: Scalars['ID']['input'];
|
|
130086
130772
|
filterBy?: InputMaybe<AssetsDmDefaultAttributeMappingFilterBy>;
|
|
130773
|
+
objectClassId?: InputMaybe<Scalars['ID']['input']>;
|
|
130087
130774
|
pageInfo?: InputMaybe<AssetsDmDefaultAttributeMappingPageInfoInput>;
|
|
130088
130775
|
sortBy?: InputMaybe<AssetsDmDefaultAttributeMappingSortBy>;
|
|
130089
130776
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -130310,6 +130997,7 @@ export declare type QueryBlockService_BatchRetrieveBlocksArgs = {
|
|
|
130310
130997
|
};
|
|
130311
130998
|
export declare type QueryBlockService_GetBlockArgs = {
|
|
130312
130999
|
blockAri: Scalars['String']['input'];
|
|
131000
|
+
documentAri?: InputMaybe<Scalars['String']['input']>;
|
|
130313
131001
|
};
|
|
130314
131002
|
export declare type QueryBlockService_GetDocumentReferenceBlocksArgs = {
|
|
130315
131003
|
documentAri: Scalars['String']['input'];
|
|
@@ -130424,6 +131112,14 @@ export declare type QueryCfo_AnalyticsArgs = {
|
|
|
130424
131112
|
endDate: Scalars['String']['input'];
|
|
130425
131113
|
startDate: Scalars['String']['input'];
|
|
130426
131114
|
};
|
|
131115
|
+
export declare type QueryChangeManagement_GlobalRiskAssessmentSettingsArgs = {
|
|
131116
|
+
cloudId: Scalars['ID']['input'];
|
|
131117
|
+
projectId: Scalars['String']['input'];
|
|
131118
|
+
};
|
|
131119
|
+
export declare type QueryChangeManagement_LastRovoRiskAssessmentArgs = {
|
|
131120
|
+
cloudId: Scalars['ID']['input'];
|
|
131121
|
+
issueId: Scalars['String']['input'];
|
|
131122
|
+
};
|
|
130427
131123
|
export declare type QueryChangeManagement_RovoRiskAssessmentSettingsArgs = {
|
|
130428
131124
|
cloudId: Scalars['ID']['input'];
|
|
130429
131125
|
projectId: Scalars['String']['input'];
|
|
@@ -130760,6 +131456,12 @@ export declare type QueryConfluence_GetPlaylistArgs = {
|
|
|
130760
131456
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130761
131457
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
130762
131458
|
};
|
|
131459
|
+
export declare type QueryConfluence_GetSmartContentFeaturesArgs = {
|
|
131460
|
+
contentAris: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
131461
|
+
};
|
|
131462
|
+
export declare type QueryConfluence_GetTotalPendingContentAccessRequestsCountArgs = {
|
|
131463
|
+
cloudId: Scalars['ID']['input'];
|
|
131464
|
+
};
|
|
130763
131465
|
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
130764
131466
|
cloudId: Scalars['ID']['input'];
|
|
130765
131467
|
};
|
|
@@ -130892,6 +131594,13 @@ export declare type QueryConfluence_PopularCalendarsArgs = {
|
|
|
130892
131594
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
130893
131595
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
130894
131596
|
};
|
|
131597
|
+
export declare type QueryConfluence_PrincipalsByCombinationIdArgs = {
|
|
131598
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131599
|
+
cloudId: Scalars['ID']['input'];
|
|
131600
|
+
combinationId: Scalars['String']['input'];
|
|
131601
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131602
|
+
principalTypes?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionPrincipalType>>>;
|
|
131603
|
+
};
|
|
130895
131604
|
export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
130896
131605
|
cloudId: Scalars['ID']['input'];
|
|
130897
131606
|
spaceKey: Scalars['String']['input'];
|
|
@@ -131000,6 +131709,14 @@ export declare type QueryConfluence_SpaceWatchersUnfilteredArgs = {
|
|
|
131000
131709
|
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
131001
131710
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
131002
131711
|
};
|
|
131712
|
+
export declare type QueryConfluence_SpacesByCombinationIdArgs = {
|
|
131713
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131714
|
+
cloudId: Scalars['ID']['input'];
|
|
131715
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131716
|
+
permissionCombinationId: Scalars['String']['input'];
|
|
131717
|
+
spaceSelection?: InputMaybe<ConfluencePermissionTransitionSpaceTargetSelectionInput>;
|
|
131718
|
+
spaceTypeFilters?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionSpaceTypeFilter>>>;
|
|
131719
|
+
};
|
|
131003
131720
|
export declare type QueryConfluence_StorageArgs = {
|
|
131004
131721
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
131005
131722
|
};
|
|
@@ -131248,6 +131965,13 @@ export declare type QueryContributorsLinkedToConfluencePageV2Args = {
|
|
|
131248
131965
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131249
131966
|
pageId: Scalars['ID']['input'];
|
|
131250
131967
|
};
|
|
131968
|
+
export declare type QueryConvoAiAgentSession_GetByIdArgs = {
|
|
131969
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
131970
|
+
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
131971
|
+
};
|
|
131972
|
+
export declare type QueryConvoAiAgentSession_GetByIdsArgs = {
|
|
131973
|
+
ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
|
|
131974
|
+
};
|
|
131251
131975
|
export declare type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
|
|
131252
131976
|
cloudId: Scalars['ID']['input'];
|
|
131253
131977
|
pageTitle: Scalars['String']['input'];
|
|
@@ -131889,6 +132613,10 @@ export declare type QueryGoals_ByIdArgs = {
|
|
|
131889
132613
|
export declare type QueryGoals_ByIdsArgs = {
|
|
131890
132614
|
goalIds: Array<Scalars['ID']['input']>;
|
|
131891
132615
|
};
|
|
132616
|
+
export declare type QueryGoals_ByKeyArgs = {
|
|
132617
|
+
containerId: Scalars['ID']['input'];
|
|
132618
|
+
goalKey: Scalars['String']['input'];
|
|
132619
|
+
};
|
|
131892
132620
|
export declare type QueryGoals_GoalTypeByIdArgs = {
|
|
131893
132621
|
goalTypeId: Scalars['ID']['input'];
|
|
131894
132622
|
};
|
|
@@ -132362,6 +133090,9 @@ export declare type QueryKitsune_FeedbacksArgs = {
|
|
|
132362
133090
|
export declare type QueryKitsune_NodeArgs = {
|
|
132363
133091
|
id: Scalars['ID']['input'];
|
|
132364
133092
|
};
|
|
133093
|
+
export declare type QueryKitsune_SpacesArgs = {
|
|
133094
|
+
ids: Array<Scalars['ID']['input']>;
|
|
133095
|
+
};
|
|
132365
133096
|
export declare type QueryKnowledgeBaseArgs = {
|
|
132366
133097
|
cloudId: Scalars['ID']['input'];
|
|
132367
133098
|
};
|
|
@@ -154777,6 +155508,7 @@ export declare type ShepherdActorActivity = {
|
|
|
154777
155508
|
eventType: Scalars['String']['output'];
|
|
154778
155509
|
id: Scalars['String']['output'];
|
|
154779
155510
|
message?: Maybe<Scalars['JSON']['output']>;
|
|
155511
|
+
resourceAri?: Maybe<Scalars['String']['output']>;
|
|
154780
155512
|
time: Scalars['DateTime']['output'];
|
|
154781
155513
|
};
|
|
154782
155514
|
export declare type ShepherdActorInput = {
|
|
@@ -155172,6 +155904,12 @@ export declare type ShepherdBulkRedactionInput = {
|
|
|
155172
155904
|
redactions: Array<ShepherdBulkRedactionItemInput>;
|
|
155173
155905
|
workspaceId: Scalars['ID']['input'];
|
|
155174
155906
|
};
|
|
155907
|
+
export declare type ShepherdBulkRedactionItemErrorPayload = {
|
|
155908
|
+
__typename?: 'ShepherdBulkRedactionItemErrorPayload';
|
|
155909
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
155910
|
+
id: Scalars['ID']['output'];
|
|
155911
|
+
status?: Maybe<ShepherdBulkRedactionItemStatus>;
|
|
155912
|
+
};
|
|
155175
155913
|
export declare type ShepherdBulkRedactionItemInput = {
|
|
155176
155914
|
contentHash?: InputMaybe<Scalars['String']['input']>;
|
|
155177
155915
|
detection: Scalars['String']['input'];
|
|
@@ -155184,15 +155922,15 @@ export declare type ShepherdBulkRedactionItemInput = {
|
|
|
155184
155922
|
};
|
|
155185
155923
|
export declare enum ShepherdBulkRedactionItemStatus {
|
|
155186
155924
|
Failed = "FAILED",
|
|
155187
|
-
|
|
155925
|
+
InProgress = "IN_PROGRESS",
|
|
155926
|
+
Succeeded = "SUCCEEDED"
|
|
155927
|
+
}
|
|
155928
|
+
export declare enum ShepherdBulkRedactionJobStatus {
|
|
155929
|
+
Failed = "FAILED",
|
|
155930
|
+
InProgress = "IN_PROGRESS",
|
|
155931
|
+
PartiallySucceeded = "PARTIALLY_SUCCEEDED",
|
|
155188
155932
|
Succeeded = "SUCCEEDED"
|
|
155189
155933
|
}
|
|
155190
|
-
export declare type ShepherdBulkRedactionItemStatusPayload = {
|
|
155191
|
-
__typename?: 'ShepherdBulkRedactionItemStatusPayload';
|
|
155192
|
-
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
155193
|
-
id: Scalars['ID']['output'];
|
|
155194
|
-
status?: Maybe<ShepherdBulkRedactionItemStatus>;
|
|
155195
|
-
};
|
|
155196
155934
|
export declare type ShepherdBulkRedactionPayload = {
|
|
155197
155935
|
__typename?: 'ShepherdBulkRedactionPayload';
|
|
155198
155936
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -155202,7 +155940,8 @@ export declare type ShepherdBulkRedactionPayload = {
|
|
|
155202
155940
|
};
|
|
155203
155941
|
export declare type ShepherdBulkRedactionStatusPayload = {
|
|
155204
155942
|
__typename?: 'ShepherdBulkRedactionStatusPayload';
|
|
155205
|
-
|
|
155943
|
+
jobStatus?: Maybe<ShepherdBulkRedactionJobStatus>;
|
|
155944
|
+
redactionErrors: Array<ShepherdBulkRedactionItemErrorPayload>;
|
|
155206
155945
|
};
|
|
155207
155946
|
export declare type ShepherdCategorizedAlertMetadata = {
|
|
155208
155947
|
__typename?: 'ShepherdCategorizedAlertMetadata';
|
|
@@ -157364,6 +158103,8 @@ export declare type SpfAsk = Node & {
|
|
|
157364
158103
|
owner?: Maybe<User>;
|
|
157365
158104
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
157366
158105
|
priority: SpfAskPriority;
|
|
158106
|
+
proposedBy?: Maybe<User>;
|
|
158107
|
+
proposedDate?: Maybe<SpfAskTargetDate>;
|
|
157367
158108
|
receivingTeam?: Maybe<TeamV2>;
|
|
157368
158109
|
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
157369
158110
|
status: SpfAskStatus;
|
|
@@ -157623,8 +158364,12 @@ export declare type SpfAskUpdate = {
|
|
|
157623
158364
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
157624
158365
|
description?: Maybe<Scalars['String']['output']>;
|
|
157625
158366
|
id: Scalars['ID']['output'];
|
|
158367
|
+
newProposedBy?: Maybe<Scalars['String']['output']>;
|
|
158368
|
+
newProposedDate?: Maybe<SpfAskTargetDate>;
|
|
157626
158369
|
newStatus?: Maybe<SpfAskStatus>;
|
|
157627
158370
|
newTargetDate?: Maybe<SpfAskTargetDate>;
|
|
158371
|
+
oldProposedBy?: Maybe<Scalars['String']['output']>;
|
|
158372
|
+
oldProposedDate?: Maybe<SpfAskTargetDate>;
|
|
157628
158373
|
oldStatus?: Maybe<SpfAskStatus>;
|
|
157629
158374
|
oldTargetDate?: Maybe<SpfAskTargetDate>;
|
|
157630
158375
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -157688,6 +158433,7 @@ export declare type SpfCreateAskInput = {
|
|
|
157688
158433
|
export declare type SpfCreateAskUpdateInput = {
|
|
157689
158434
|
askId: Scalars['String']['input'];
|
|
157690
158435
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
158436
|
+
proposedDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
157691
158437
|
status?: InputMaybe<SpfAskStatus>;
|
|
157692
158438
|
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
157693
158439
|
};
|
|
@@ -159049,6 +159795,17 @@ export declare type StakeholderCommsPublicCommunicationResponse = {
|
|
|
159049
159795
|
message?: Maybe<Scalars['String']['output']>;
|
|
159050
159796
|
title?: Maybe<Scalars['String']['output']>;
|
|
159051
159797
|
};
|
|
159798
|
+
export declare type StakeholderCommsRemoveCustomDomainInput = {
|
|
159799
|
+
domain: Scalars['String']['input'];
|
|
159800
|
+
pageId: Scalars['String']['input'];
|
|
159801
|
+
};
|
|
159802
|
+
export declare type StakeholderCommsRemoveCustomDomainResponse = {
|
|
159803
|
+
__typename?: 'StakeholderCommsRemoveCustomDomainResponse';
|
|
159804
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
159805
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
159806
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
159807
|
+
success: Scalars['Boolean']['output'];
|
|
159808
|
+
};
|
|
159052
159809
|
export declare type StakeholderCommsResendInviteInput = {
|
|
159053
159810
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
159054
159811
|
emailId: Scalars['String']['input'];
|
|
@@ -162555,6 +163312,17 @@ export declare type TownsquareGoalsShareUpdatePayload = {
|
|
|
162555
163312
|
isShared: Scalars['Boolean']['output'];
|
|
162556
163313
|
success: Scalars['Boolean']['output'];
|
|
162557
163314
|
};
|
|
163315
|
+
export declare type TownsquareGoalsUnlinkJiraAlignProjectInput = {
|
|
163316
|
+
goalId: Scalars['ID']['input'];
|
|
163317
|
+
jiraAlignProjectId: Scalars['ID']['input'];
|
|
163318
|
+
};
|
|
163319
|
+
export declare type TownsquareGoalsUnlinkJiraAlignProjectPayload = {
|
|
163320
|
+
__typename?: 'TownsquareGoalsUnlinkJiraAlignProjectPayload';
|
|
163321
|
+
errors?: Maybe<Array<MutationError>>;
|
|
163322
|
+
goalId?: Maybe<Scalars['ID']['output']>;
|
|
163323
|
+
jiraAlignProjectId?: Maybe<Scalars['ID']['output']>;
|
|
163324
|
+
success: Scalars['Boolean']['output'];
|
|
163325
|
+
};
|
|
162558
163326
|
export declare type TownsquareGoalsUnlinkWorkItemInput = {
|
|
162559
163327
|
goalId: Scalars['ID']['input'];
|
|
162560
163328
|
workItemId: Scalars['ID']['input'];
|
|
@@ -166637,6 +167405,8 @@ export declare type TrelloMemberPlannerEventCardsUpdated = {
|
|
|
166637
167405
|
__typename?: 'TrelloMemberPlannerEventCardsUpdated';
|
|
166638
167406
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
166639
167407
|
boardOrInboxUpdated?: Maybe<TrelloBaseBoardUpdated>;
|
|
167408
|
+
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
167409
|
+
id: Scalars['ID']['output'];
|
|
166640
167410
|
};
|
|
166641
167411
|
export declare type TrelloMemberPrefs = {
|
|
166642
167412
|
__typename?: 'TrelloMemberPrefs';
|