@forge/cli-shared 8.19.1-next.0-experimental-5b726e6 → 8.20.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 +3 -5
- package/out/graphql/graphql-types.d.ts +778 -39
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +120 -45
- package/package.json +2 -2
|
@@ -4272,8 +4272,13 @@ export declare type AgentAiSummary = {
|
|
|
4272
4272
|
export declare type AgentSession = AgentSessionNode & {
|
|
4273
4273
|
__typename?: 'AgentSession';
|
|
4274
4274
|
_type?: Maybe<Scalars['String']['output']>;
|
|
4275
|
+
agent?: Maybe<User>;
|
|
4276
|
+
agentAccountId?: Maybe<Scalars['String']['output']>;
|
|
4277
|
+
author?: Maybe<User>;
|
|
4278
|
+
convoAiAgentId?: Maybe<Scalars['String']['output']>;
|
|
4275
4279
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
4276
4280
|
id?: Maybe<Scalars['ID']['output']>;
|
|
4281
|
+
isRovo?: Maybe<Scalars['Boolean']['output']>;
|
|
4277
4282
|
state?: Maybe<Scalars['String']['output']>;
|
|
4278
4283
|
version?: Maybe<Scalars['Long']['output']>;
|
|
4279
4284
|
};
|
|
@@ -4518,6 +4523,7 @@ export declare type AgentStudioApp = {
|
|
|
4518
4523
|
displayName: Scalars['String']['output'];
|
|
4519
4524
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
4520
4525
|
integrationKey: Scalars['String']['output'];
|
|
4526
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
4521
4527
|
};
|
|
4522
4528
|
export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseConfiguration & Node & {
|
|
4523
4529
|
__typename?: 'AgentStudioAssistant';
|
|
@@ -4626,6 +4632,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioBaseConfiguration
|
|
|
4626
4632
|
export declare type AgentStudioAuthReadinessResult = {
|
|
4627
4633
|
__typename?: 'AgentStudioAuthReadinessResult';
|
|
4628
4634
|
firstPartyApps: Array<AgentStudioFirstPartyApp>;
|
|
4635
|
+
thirdPartyApps: Array<AgentStudioThirdPartyApp>;
|
|
4629
4636
|
};
|
|
4630
4637
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
4631
4638
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4794,6 +4801,7 @@ export declare type AgentStudioConversationStarterSuggestions = {
|
|
|
4794
4801
|
export declare type AgentStudioCreateAgentInput = {
|
|
4795
4802
|
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
4796
4803
|
agentType: AgentStudioAgentType;
|
|
4804
|
+
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
4797
4805
|
authoringTeam?: InputMaybe<AgentStudioAuthoringTeamInput>;
|
|
4798
4806
|
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
4799
4807
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -5005,6 +5013,7 @@ export declare type AgentStudioFirstPartyApp = AgentStudioApp & {
|
|
|
5005
5013
|
displayName: Scalars['String']['output'];
|
|
5006
5014
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
5007
5015
|
integrationKey: Scalars['String']['output'];
|
|
5016
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
5008
5017
|
};
|
|
5009
5018
|
export declare type AgentStudioHasVersionCapability = {
|
|
5010
5019
|
__typename?: 'AgentStudioHasVersionCapability';
|
|
@@ -5174,6 +5183,7 @@ export declare type AgentStudioKnowledgeGapUploadJob = {
|
|
|
5174
5183
|
startedAt?: Maybe<Scalars['String']['output']>;
|
|
5175
5184
|
status?: Maybe<AgentStudioKnowledgeGapUploadJobStatus>;
|
|
5176
5185
|
triggeredBy?: Maybe<Scalars['String']['output']>;
|
|
5186
|
+
type?: Maybe<AgentStudioKnowledgeGapUploadJobType>;
|
|
5177
5187
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
5178
5188
|
};
|
|
5179
5189
|
export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
@@ -5186,6 +5196,10 @@ export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
|
5186
5196
|
Postprocessing = "POSTPROCESSING",
|
|
5187
5197
|
Processing = "PROCESSING"
|
|
5188
5198
|
}
|
|
5199
|
+
export declare enum AgentStudioKnowledgeGapUploadJobType {
|
|
5200
|
+
AdhocCsm = "ADHOC_CSM",
|
|
5201
|
+
FileUpload = "FILE_UPLOAD"
|
|
5202
|
+
}
|
|
5189
5203
|
export declare type AgentStudioKnowledgeSource = {
|
|
5190
5204
|
__typename?: 'AgentStudioKnowledgeSource';
|
|
5191
5205
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -5450,6 +5464,19 @@ export declare type AgentStudioTeamsChannelDetails = {
|
|
|
5450
5464
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
5451
5465
|
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
5452
5466
|
};
|
|
5467
|
+
export declare type AgentStudioThirdPartyApp = AgentStudioApp & {
|
|
5468
|
+
__typename?: 'AgentStudioThirdPartyApp';
|
|
5469
|
+
authConsentStatus: AgentStudioThirdPartyAuthConsentStatus;
|
|
5470
|
+
authConsentUrl?: Maybe<Scalars['String']['output']>;
|
|
5471
|
+
displayName: Scalars['String']['output'];
|
|
5472
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
5473
|
+
integrationKey: Scalars['String']['output'];
|
|
5474
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
5475
|
+
};
|
|
5476
|
+
export declare enum AgentStudioThirdPartyAuthConsentStatus {
|
|
5477
|
+
Connected = "CONNECTED",
|
|
5478
|
+
Unavailable = "UNAVAILABLE"
|
|
5479
|
+
}
|
|
5453
5480
|
export declare type AgentStudioTool = {
|
|
5454
5481
|
__typename?: 'AgentStudioTool';
|
|
5455
5482
|
configuration?: Maybe<AgentStudioToolConfiguration>;
|
|
@@ -5661,6 +5688,7 @@ export declare type AgentStudioUpdateAgentAsFavouritePayload = Payload & {
|
|
|
5661
5688
|
success: Scalars['Boolean']['output'];
|
|
5662
5689
|
};
|
|
5663
5690
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
5691
|
+
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
5664
5692
|
authoringTeam?: InputMaybe<AgentStudioAuthoringTeamInput>;
|
|
5665
5693
|
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
5666
5694
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -8934,6 +8962,7 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
8934
8962
|
};
|
|
8935
8963
|
export declare type AssetsAriAttribute = AssetsObjectTypeAttribute & {
|
|
8936
8964
|
__typename?: 'AssetsARIAttribute';
|
|
8965
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
8937
8966
|
id: Scalars['ID']['output'];
|
|
8938
8967
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
8939
8968
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -8969,6 +8998,7 @@ export declare type AssetsAvatar = {
|
|
|
8969
8998
|
};
|
|
8970
8999
|
export declare type AssetsBooleanAttribute = AssetsObjectTypeAttribute & {
|
|
8971
9000
|
__typename?: 'AssetsBooleanAttribute';
|
|
9001
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
8972
9002
|
id: Scalars['ID']['output'];
|
|
8973
9003
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
8974
9004
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -8991,6 +9021,7 @@ export declare type AssetsDmAdapter = {
|
|
|
8991
9021
|
dataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
8992
9022
|
icon?: Maybe<Scalars['String']['output']>;
|
|
8993
9023
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
9024
|
+
isCloudFetchSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
8994
9025
|
name?: Maybe<Scalars['String']['output']>;
|
|
8995
9026
|
vendor?: Maybe<Scalars['String']['output']>;
|
|
8996
9027
|
};
|
|
@@ -9393,6 +9424,7 @@ export declare type AssetsDmDataSource = {
|
|
|
9393
9424
|
jobId?: Maybe<Scalars['String']['output']>;
|
|
9394
9425
|
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
9395
9426
|
lastExecutionName?: Maybe<Scalars['String']['output']>;
|
|
9427
|
+
machineName?: Maybe<Scalars['String']['output']>;
|
|
9396
9428
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
9397
9429
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
9398
9430
|
};
|
|
@@ -9582,6 +9614,7 @@ export declare type AssetsDmDataSourceConfig = {
|
|
|
9582
9614
|
__typename?: 'AssetsDMDataSourceConfig';
|
|
9583
9615
|
adapterType?: Maybe<Scalars['String']['output']>;
|
|
9584
9616
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
9617
|
+
isCloudFetchSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
9585
9618
|
objectClassType?: Maybe<AssetsDmObjectClassEnum>;
|
|
9586
9619
|
};
|
|
9587
9620
|
export declare type AssetsDmDataSourceConfigureMappingInput = {
|
|
@@ -9666,6 +9699,7 @@ export declare type AssetsDmDataSourceDetails = {
|
|
|
9666
9699
|
__typename?: 'AssetsDMDataSourceDetails';
|
|
9667
9700
|
dataSourceId?: Maybe<Scalars['ID']['output']>;
|
|
9668
9701
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
9702
|
+
isCloudFetchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
9669
9703
|
isTemplate: Scalars['Boolean']['output'];
|
|
9670
9704
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
9671
9705
|
name: Scalars['String']['output'];
|
|
@@ -9854,8 +9888,10 @@ export declare enum AssetsDmDataSourceOperationEnum {
|
|
|
9854
9888
|
export declare type AssetsDmDataSourceResponse = {
|
|
9855
9889
|
__typename?: 'AssetsDMDataSourceResponse';
|
|
9856
9890
|
error?: Maybe<Scalars['String']['output']>;
|
|
9891
|
+
isTestConnectionSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
9857
9892
|
message?: Maybe<Scalars['String']['output']>;
|
|
9858
9893
|
success: Scalars['Boolean']['output'];
|
|
9894
|
+
testConnectionErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
9859
9895
|
};
|
|
9860
9896
|
export declare type AssetsDmDataSourceRunMergeResponse = {
|
|
9861
9897
|
__typename?: 'AssetsDMDataSourceRunMergeResponse';
|
|
@@ -11074,6 +11110,7 @@ export declare enum AssetsDmSortByInputOrder {
|
|
|
11074
11110
|
export declare type AssetsDmStep = {
|
|
11075
11111
|
__typename?: 'AssetsDMStep';
|
|
11076
11112
|
lastFetched: Scalars['String']['output'];
|
|
11113
|
+
machineName?: Maybe<Scalars['String']['output']>;
|
|
11077
11114
|
status: AssetsDmStepStatus;
|
|
11078
11115
|
};
|
|
11079
11116
|
export declare enum AssetsDmStepStatus {
|
|
@@ -11122,6 +11159,11 @@ export declare type AssetsDmTransformedDataResponse = {
|
|
|
11122
11159
|
filters: Array<AssetsDmTransformedDataFilter>;
|
|
11123
11160
|
pagination: AssetsDmPaginationInfo;
|
|
11124
11161
|
};
|
|
11162
|
+
export declare type AssetsDmTriggerCloudFetchResponse = {
|
|
11163
|
+
__typename?: 'AssetsDMTriggerCloudFetchResponse';
|
|
11164
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
11165
|
+
message: Scalars['String']['output'];
|
|
11166
|
+
};
|
|
11125
11167
|
export declare type AssetsDmUnverifiedAttribute = {
|
|
11126
11168
|
__typename?: 'AssetsDMUnverifiedAttribute';
|
|
11127
11169
|
issue: Scalars['String']['output'];
|
|
@@ -11214,6 +11256,7 @@ export declare type AssetsDmUpdateDefaultCleansingRuleResponse = {
|
|
|
11214
11256
|
};
|
|
11215
11257
|
export declare type AssetsDateAttribute = AssetsObjectTypeAttribute & {
|
|
11216
11258
|
__typename?: 'AssetsDateAttribute';
|
|
11259
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11217
11260
|
id: Scalars['ID']['output'];
|
|
11218
11261
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11219
11262
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11232,6 +11275,7 @@ export declare type AssetsDateAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
11232
11275
|
};
|
|
11233
11276
|
export declare type AssetsDatetimeAttribute = AssetsObjectTypeAttribute & {
|
|
11234
11277
|
__typename?: 'AssetsDatetimeAttribute';
|
|
11278
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11235
11279
|
id: Scalars['ID']['output'];
|
|
11236
11280
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11237
11281
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11250,6 +11294,7 @@ export declare type AssetsDatetimeAttributeOnObject = AssetsAttributeOnObject &
|
|
|
11250
11294
|
};
|
|
11251
11295
|
export declare type AssetsEmailAttribute = AssetsObjectTypeAttribute & {
|
|
11252
11296
|
__typename?: 'AssetsEmailAttribute';
|
|
11297
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11253
11298
|
id: Scalars['ID']['output'];
|
|
11254
11299
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11255
11300
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11284,6 +11329,7 @@ export declare type AssetsExternalReferenceInput = {
|
|
|
11284
11329
|
};
|
|
11285
11330
|
export declare type AssetsExternalReferenceTypeAttribute = AssetsObjectTypeAttribute & {
|
|
11286
11331
|
__typename?: 'AssetsExternalReferenceTypeAttribute';
|
|
11332
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11287
11333
|
id: Scalars['ID']['output'];
|
|
11288
11334
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11289
11335
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11302,6 +11348,7 @@ export declare type AssetsExternalReferenceTypeAttributeOnObject = AssetsAttribu
|
|
|
11302
11348
|
};
|
|
11303
11349
|
export declare type AssetsFloatAttribute = AssetsObjectTypeAttribute & {
|
|
11304
11350
|
__typename?: 'AssetsFloatAttribute';
|
|
11351
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11305
11352
|
id: Scalars['ID']['output'];
|
|
11306
11353
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11307
11354
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11321,6 +11368,7 @@ export declare type AssetsFloatAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
11321
11368
|
};
|
|
11322
11369
|
export declare type AssetsGroupAttribute = AssetsObjectTypeAttribute & {
|
|
11323
11370
|
__typename?: 'AssetsGroupAttribute';
|
|
11371
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11324
11372
|
id: Scalars['ID']['output'];
|
|
11325
11373
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11326
11374
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11344,6 +11392,7 @@ export declare type AssetsGroupAttributeValue = {
|
|
|
11344
11392
|
};
|
|
11345
11393
|
export declare type AssetsIpAddressAttribute = AssetsObjectTypeAttribute & {
|
|
11346
11394
|
__typename?: 'AssetsIPAddressAttribute';
|
|
11395
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11347
11396
|
id: Scalars['ID']['output'];
|
|
11348
11397
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11349
11398
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11368,6 +11417,7 @@ export declare type AssetsIcon = {
|
|
|
11368
11417
|
};
|
|
11369
11418
|
export declare type AssetsIntegerAttribute = AssetsObjectTypeAttribute & {
|
|
11370
11419
|
__typename?: 'AssetsIntegerAttribute';
|
|
11420
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11371
11421
|
id: Scalars['ID']['output'];
|
|
11372
11422
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11373
11423
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11419,6 +11469,7 @@ export declare type AssetsObjectAqlResult = {
|
|
|
11419
11469
|
};
|
|
11420
11470
|
export declare type AssetsObjectAttribute = AssetsObjectTypeAttribute & {
|
|
11421
11471
|
__typename?: 'AssetsObjectAttribute';
|
|
11472
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11422
11473
|
id: Scalars['ID']['output'];
|
|
11423
11474
|
includeChildObjectTypes?: Maybe<Scalars['Boolean']['output']>;
|
|
11424
11475
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -11466,6 +11517,7 @@ export declare type AssetsObjectType = Node & {
|
|
|
11466
11517
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
11467
11518
|
};
|
|
11468
11519
|
export declare type AssetsObjectTypeAttribute = {
|
|
11520
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11469
11521
|
id: Scalars['ID']['output'];
|
|
11470
11522
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11471
11523
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11502,6 +11554,7 @@ export declare type AssetsSchema = Node & {
|
|
|
11502
11554
|
};
|
|
11503
11555
|
export declare type AssetsSelectAttribute = AssetsObjectTypeAttribute & {
|
|
11504
11556
|
__typename?: 'AssetsSelectAttribute';
|
|
11557
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11505
11558
|
id: Scalars['ID']['output'];
|
|
11506
11559
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11507
11560
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11546,6 +11599,7 @@ export declare type AssetsServiceObjectAttributesArgs = {
|
|
|
11546
11599
|
};
|
|
11547
11600
|
export declare type AssetsSpaceAttribute = AssetsObjectTypeAttribute & {
|
|
11548
11601
|
__typename?: 'AssetsSpaceAttribute';
|
|
11602
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11549
11603
|
id: Scalars['ID']['output'];
|
|
11550
11604
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11551
11605
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11572,6 +11626,7 @@ export declare type AssetsSpaceAttributeValue = {
|
|
|
11572
11626
|
export declare type AssetsStatusAttribute = AssetsObjectTypeAttribute & {
|
|
11573
11627
|
__typename?: 'AssetsStatusAttribute';
|
|
11574
11628
|
allowedStatusTypes?: Maybe<Array<AssetsStatusType>>;
|
|
11629
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11575
11630
|
id: Scalars['ID']['output'];
|
|
11576
11631
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11577
11632
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11602,6 +11657,7 @@ export declare type AssetsStatusType = {
|
|
|
11602
11657
|
};
|
|
11603
11658
|
export declare type AssetsTagAttribute = AssetsObjectTypeAttribute & {
|
|
11604
11659
|
__typename?: 'AssetsTagAttribute';
|
|
11660
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11605
11661
|
id: Scalars['ID']['output'];
|
|
11606
11662
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11607
11663
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11620,6 +11676,7 @@ export declare type AssetsTagAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
11620
11676
|
};
|
|
11621
11677
|
export declare type AssetsTextAttribute = AssetsObjectTypeAttribute & {
|
|
11622
11678
|
__typename?: 'AssetsTextAttribute';
|
|
11679
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11623
11680
|
id: Scalars['ID']['output'];
|
|
11624
11681
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11625
11682
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11638,6 +11695,7 @@ export declare type AssetsTextAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
11638
11695
|
};
|
|
11639
11696
|
export declare type AssetsTextareaAttribute = AssetsObjectTypeAttribute & {
|
|
11640
11697
|
__typename?: 'AssetsTextareaAttribute';
|
|
11698
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11641
11699
|
id: Scalars['ID']['output'];
|
|
11642
11700
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11643
11701
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11656,6 +11714,7 @@ export declare type AssetsTextareaAttributeOnObject = AssetsAttributeOnObject &
|
|
|
11656
11714
|
};
|
|
11657
11715
|
export declare type AssetsUrlAttribute = AssetsObjectTypeAttribute & {
|
|
11658
11716
|
__typename?: 'AssetsURLAttribute';
|
|
11717
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11659
11718
|
id: Scalars['ID']['output'];
|
|
11660
11719
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11661
11720
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11674,6 +11733,7 @@ export declare type AssetsUrlAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
11674
11733
|
};
|
|
11675
11734
|
export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
|
|
11676
11735
|
__typename?: 'AssetsUserAttribute';
|
|
11736
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11677
11737
|
id: Scalars['ID']['output'];
|
|
11678
11738
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11679
11739
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -12248,6 +12308,7 @@ export declare type AssetsVerticalVerticalInstantiationCategoriesArgs = {
|
|
|
12248
12308
|
export declare type AssetsVerticalVerticalInstantiationDepreciationRulesArgs = {
|
|
12249
12309
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
12250
12310
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12311
|
+
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
12251
12312
|
};
|
|
12252
12313
|
export declare type AssetsVerticalVerticalInstantiationCategory = {
|
|
12253
12314
|
__typename?: 'AssetsVerticalVerticalInstantiationCategory';
|
|
@@ -25733,6 +25794,11 @@ export declare type ConfluenceAccessRequestSettings = {
|
|
|
25733
25794
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
25734
25795
|
messageContent?: Maybe<Scalars['String']['output']>;
|
|
25735
25796
|
};
|
|
25797
|
+
export declare type ConfluenceActiveInlineData = {
|
|
25798
|
+
__typename?: 'ConfluenceActiveInlineData';
|
|
25799
|
+
comments: Array<Maybe<ConfluenceInlineMarker>>;
|
|
25800
|
+
reactions: Array<Maybe<ConfluenceInlineMarker>>;
|
|
25801
|
+
};
|
|
25736
25802
|
export declare type ConfluenceAddCustomApplicationLinkInput = {
|
|
25737
25803
|
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
25738
25804
|
displayName: Scalars['String']['input'];
|
|
@@ -25745,6 +25811,14 @@ export declare type ConfluenceAddCustomApplicationLinkPayload = Payload & {
|
|
|
25745
25811
|
errors?: Maybe<Array<MutationError>>;
|
|
25746
25812
|
success: Scalars['Boolean']['output'];
|
|
25747
25813
|
};
|
|
25814
|
+
export declare type ConfluenceAddInlineReactionInput = {
|
|
25815
|
+
commentId?: InputMaybe<Scalars['ID']['input']>;
|
|
25816
|
+
containerId: Scalars['ID']['input'];
|
|
25817
|
+
createdFrom: CommentCreationLocation;
|
|
25818
|
+
emojiId: Scalars['String']['input'];
|
|
25819
|
+
originalSelection?: InputMaybe<Scalars['String']['input']>;
|
|
25820
|
+
step?: InputMaybe<Step>;
|
|
25821
|
+
};
|
|
25748
25822
|
export declare type ConfluenceAddTopLinkInput = {
|
|
25749
25823
|
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25750
25824
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26699,6 +26773,9 @@ export declare type ConfluenceContentModified = {
|
|
|
26699
26773
|
inlineCommentResolved?: Maybe<ConfluenceInlineCommentResolved>;
|
|
26700
26774
|
inlineCommentUnresolved?: Maybe<ConfluenceInlineCommentUpdated>;
|
|
26701
26775
|
inlineCommentUpdated?: Maybe<ConfluenceInlineCommentUpdated>;
|
|
26776
|
+
inlineReactionAdded?: Maybe<ConfluenceInlineReactionAdded>;
|
|
26777
|
+
inlineReactionHighlightDeleted?: Maybe<ConfluenceInlineReactionHighlightDeleted>;
|
|
26778
|
+
inlineReactionRemoved?: Maybe<ConfluenceInlineReactionRemoved>;
|
|
26702
26779
|
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
26703
26780
|
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
26704
26781
|
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
@@ -27390,6 +27467,16 @@ export declare type ConfluenceCustomPageSpaceSettings = {
|
|
|
27390
27467
|
footerText?: Maybe<Scalars['String']['output']>;
|
|
27391
27468
|
headerText?: Maybe<Scalars['String']['output']>;
|
|
27392
27469
|
};
|
|
27470
|
+
export declare enum ConfluenceCutoverFallbackStrategy {
|
|
27471
|
+
AssignRole = "ASSIGN_ROLE",
|
|
27472
|
+
RemoveAccess = "REMOVE_ACCESS"
|
|
27473
|
+
}
|
|
27474
|
+
export declare type ConfluenceCutoverRoleConfig = {
|
|
27475
|
+
__typename?: 'ConfluenceCutoverRoleConfig';
|
|
27476
|
+
eligibleRoles: Array<Maybe<SpaceRole>>;
|
|
27477
|
+
fallbackRole?: Maybe<SpaceRole>;
|
|
27478
|
+
strategy: ConfluenceCutoverFallbackStrategy;
|
|
27479
|
+
};
|
|
27393
27480
|
export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
27394
27481
|
__typename?: 'ConfluenceDataLifecycleManagementPolicy';
|
|
27395
27482
|
dataRetentionPolicyDetailsForWorkspace: ConfluenceDataRetentionPolicyStatus;
|
|
@@ -28237,6 +28324,43 @@ export declare type ConfluenceInlineCommentUpdated = {
|
|
|
28237
28324
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
28238
28325
|
markerRef?: Maybe<Scalars['String']['output']>;
|
|
28239
28326
|
};
|
|
28327
|
+
export declare type ConfluenceInlineMarker = {
|
|
28328
|
+
__typename?: 'ConfluenceInlineMarker';
|
|
28329
|
+
commentId: Scalars['ID']['output'];
|
|
28330
|
+
markerRef: Scalars['String']['output'];
|
|
28331
|
+
type: ConfluenceInlineMarkerType;
|
|
28332
|
+
};
|
|
28333
|
+
export declare enum ConfluenceInlineMarkerType {
|
|
28334
|
+
Comment = "COMMENT",
|
|
28335
|
+
Reaction = "REACTION"
|
|
28336
|
+
}
|
|
28337
|
+
export declare type ConfluenceInlineReactionAdded = {
|
|
28338
|
+
__typename?: 'ConfluenceInlineReactionAdded';
|
|
28339
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
28340
|
+
emojiId?: Maybe<Scalars['String']['output']>;
|
|
28341
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
28342
|
+
newHighlight?: Maybe<Scalars['Boolean']['output']>;
|
|
28343
|
+
};
|
|
28344
|
+
export declare type ConfluenceInlineReactionHighlightDeleted = {
|
|
28345
|
+
__typename?: 'ConfluenceInlineReactionHighlightDeleted';
|
|
28346
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
28347
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
28348
|
+
};
|
|
28349
|
+
export declare type ConfluenceInlineReactionPayload = Payload & {
|
|
28350
|
+
__typename?: 'ConfluenceInlineReactionPayload';
|
|
28351
|
+
commentDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
28352
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
28353
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28354
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
28355
|
+
reactionSummary?: Maybe<Array<Maybe<ConfluenceReactionsSummaryForEmoji>>>;
|
|
28356
|
+
success: Scalars['Boolean']['output'];
|
|
28357
|
+
};
|
|
28358
|
+
export declare type ConfluenceInlineReactionRemoved = {
|
|
28359
|
+
__typename?: 'ConfluenceInlineReactionRemoved';
|
|
28360
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
28361
|
+
emojiId?: Maybe<Scalars['String']['output']>;
|
|
28362
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
28363
|
+
};
|
|
28240
28364
|
export declare type ConfluenceInlineTask = Node & {
|
|
28241
28365
|
__typename?: 'ConfluenceInlineTask';
|
|
28242
28366
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -28965,6 +29089,16 @@ export declare type ConfluenceNbmRetryScanLongTaskPayload = {
|
|
|
28965
29089
|
success: Scalars['Boolean']['output'];
|
|
28966
29090
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
28967
29091
|
};
|
|
29092
|
+
export declare type ConfluenceNbmRetryTransformationLongTaskInput = {
|
|
29093
|
+
transformationId: Scalars['ID']['input'];
|
|
29094
|
+
};
|
|
29095
|
+
export declare type ConfluenceNbmRetryTransformationLongTaskPayload = Payload & {
|
|
29096
|
+
__typename?: 'ConfluenceNbmRetryTransformationLongTaskPayload';
|
|
29097
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29098
|
+
scanId?: Maybe<Scalars['ID']['output']>;
|
|
29099
|
+
success: Scalars['Boolean']['output'];
|
|
29100
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
29101
|
+
};
|
|
28968
29102
|
export declare type ConfluenceNbmScanCategory = {
|
|
28969
29103
|
__typename?: 'ConfluenceNbmScanCategory';
|
|
28970
29104
|
totalChains?: Maybe<Scalars['Long']['output']>;
|
|
@@ -29259,13 +29393,26 @@ export declare type ConfluenceNcsPdfExportConfiguration = {
|
|
|
29259
29393
|
bodyFontSize: Scalars['Int']['output'];
|
|
29260
29394
|
font?: Maybe<ConfluencePdfExportFontConfiguration>;
|
|
29261
29395
|
footer: ConfluencePdfExportFooterInclusionConfiguration;
|
|
29396
|
+
footerCenter?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29397
|
+
footerLeft?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29398
|
+
footerRight?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29262
29399
|
header: ConfluencePdfExportHeaderInclusionConfiguration;
|
|
29400
|
+
headerCenter?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29401
|
+
headerLeft?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29402
|
+
headerRight?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29263
29403
|
lineSpacing: Scalars['Float']['output'];
|
|
29264
29404
|
pageMargins: ConfluencePdfExportPageMargins;
|
|
29405
|
+
pageNumberConfig?: Maybe<ConfluencePdfExportPageNumberConfiguration>;
|
|
29265
29406
|
pageOrientation: ConfluencePdfExportPageOrientation;
|
|
29266
29407
|
pageSize: ConfluencePdfExportPageSize;
|
|
29267
29408
|
shouldIncludePageNumbers: Scalars['Boolean']['output'];
|
|
29268
29409
|
shouldIncludeTableOfContents: Scalars['Boolean']['output'];
|
|
29410
|
+
titleFooterCenter?: Maybe<ConfluencePdfExportTitlePageWithImageInclusionConfiguration>;
|
|
29411
|
+
titleFooterLeft?: Maybe<ConfluencePdfExportTitlePageWithImageInclusionConfiguration>;
|
|
29412
|
+
titleFooterRight?: Maybe<ConfluencePdfExportTitlePageWithImageInclusionConfiguration>;
|
|
29413
|
+
titleHeaderCenter?: Maybe<ConfluencePdfExportTitlePageWithImageInclusionConfiguration>;
|
|
29414
|
+
titleHeaderLeft?: Maybe<ConfluencePdfExportTitlePageWithImageInclusionConfiguration>;
|
|
29415
|
+
titleHeaderRight?: Maybe<ConfluencePdfExportTitlePageWithImageInclusionConfiguration>;
|
|
29269
29416
|
titlePage: ConfluencePdfExportTitlePageInclusionConfiguration;
|
|
29270
29417
|
};
|
|
29271
29418
|
export declare type ConfluenceNewCodeMacro = {
|
|
@@ -29540,6 +29687,42 @@ export declare enum ConfluencePdfExportHeaderFooterAlignmentInput {
|
|
|
29540
29687
|
Center = "CENTER",
|
|
29541
29688
|
Left = "LEFT"
|
|
29542
29689
|
}
|
|
29690
|
+
export declare enum ConfluencePdfExportHeaderFooterType {
|
|
29691
|
+
Image = "IMAGE",
|
|
29692
|
+
Text = "TEXT"
|
|
29693
|
+
}
|
|
29694
|
+
export declare enum ConfluencePdfExportHeaderFooterTypeInput {
|
|
29695
|
+
Image = "IMAGE",
|
|
29696
|
+
Text = "TEXT"
|
|
29697
|
+
}
|
|
29698
|
+
export declare type ConfluencePdfExportHeaderFooterWithImageConfiguration = {
|
|
29699
|
+
__typename?: 'ConfluencePdfExportHeaderFooterWithImageConfiguration';
|
|
29700
|
+
fileId?: Maybe<Scalars['ID']['output']>;
|
|
29701
|
+
fontSize?: Maybe<Scalars['Int']['output']>;
|
|
29702
|
+
imageAlignment?: Maybe<ConfluencePdfExportQuadrantContentAlignment>;
|
|
29703
|
+
imageScale?: Maybe<Scalars['Float']['output']>;
|
|
29704
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
29705
|
+
textAlignment?: Maybe<ConfluencePdfExportQuadrantContentAlignment>;
|
|
29706
|
+
type?: Maybe<ConfluencePdfExportHeaderFooterType>;
|
|
29707
|
+
};
|
|
29708
|
+
export declare type ConfluencePdfExportHeaderFooterWithImageConfigurationInput = {
|
|
29709
|
+
fileId?: InputMaybe<Scalars['ID']['input']>;
|
|
29710
|
+
fontSize?: InputMaybe<Scalars['Int']['input']>;
|
|
29711
|
+
imageAlignment?: InputMaybe<ConfluencePdfExportQuadrantContentAlignmentInput>;
|
|
29712
|
+
imageScale?: InputMaybe<Scalars['Float']['input']>;
|
|
29713
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
29714
|
+
textAlignment?: InputMaybe<ConfluencePdfExportQuadrantContentAlignmentInput>;
|
|
29715
|
+
type?: InputMaybe<ConfluencePdfExportHeaderFooterTypeInput>;
|
|
29716
|
+
};
|
|
29717
|
+
export declare type ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration = {
|
|
29718
|
+
__typename?: 'ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration';
|
|
29719
|
+
configuration?: Maybe<ConfluencePdfExportHeaderFooterWithImageConfiguration>;
|
|
29720
|
+
isIncluded?: Maybe<Scalars['Boolean']['output']>;
|
|
29721
|
+
};
|
|
29722
|
+
export declare type ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput = {
|
|
29723
|
+
configuration?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageConfigurationInput>;
|
|
29724
|
+
isIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29725
|
+
};
|
|
29543
29726
|
export declare type ConfluencePdfExportHeaderInclusionConfiguration = {
|
|
29544
29727
|
__typename?: 'ConfluencePdfExportHeaderInclusionConfiguration';
|
|
29545
29728
|
configuration: ConfluencePdfExportHeaderConfiguration;
|
|
@@ -29582,6 +29765,33 @@ export declare enum ConfluencePdfExportPageMarginsUnitInput {
|
|
|
29582
29765
|
Centimeters = "CENTIMETERS",
|
|
29583
29766
|
Inches = "INCHES"
|
|
29584
29767
|
}
|
|
29768
|
+
export declare type ConfluencePdfExportPageNumberConfiguration = {
|
|
29769
|
+
__typename?: 'ConfluencePdfExportPageNumberConfiguration';
|
|
29770
|
+
horizontalAlignment?: Maybe<ConfluencePdfExportPageNumberHorizontalAlignment>;
|
|
29771
|
+
verticalAlignment?: Maybe<ConfluencePdfExportPageNumberVerticalAlignment>;
|
|
29772
|
+
};
|
|
29773
|
+
export declare type ConfluencePdfExportPageNumberConfigurationInput = {
|
|
29774
|
+
horizontalAlignment?: InputMaybe<ConfluencePdfExportPageNumberHorizontalAlignmentInput>;
|
|
29775
|
+
verticalAlignment?: InputMaybe<ConfluencePdfExportPageNumberVerticalAlignmentInput>;
|
|
29776
|
+
};
|
|
29777
|
+
export declare enum ConfluencePdfExportPageNumberHorizontalAlignment {
|
|
29778
|
+
Center = "CENTER",
|
|
29779
|
+
Left = "LEFT",
|
|
29780
|
+
Right = "RIGHT"
|
|
29781
|
+
}
|
|
29782
|
+
export declare enum ConfluencePdfExportPageNumberHorizontalAlignmentInput {
|
|
29783
|
+
Center = "CENTER",
|
|
29784
|
+
Left = "LEFT",
|
|
29785
|
+
Right = "RIGHT"
|
|
29786
|
+
}
|
|
29787
|
+
export declare enum ConfluencePdfExportPageNumberVerticalAlignment {
|
|
29788
|
+
Bottom = "BOTTOM",
|
|
29789
|
+
Top = "TOP"
|
|
29790
|
+
}
|
|
29791
|
+
export declare enum ConfluencePdfExportPageNumberVerticalAlignmentInput {
|
|
29792
|
+
Bottom = "BOTTOM",
|
|
29793
|
+
Top = "TOP"
|
|
29794
|
+
}
|
|
29585
29795
|
export declare enum ConfluencePdfExportPageOrientation {
|
|
29586
29796
|
Landscape = "LANDSCAPE",
|
|
29587
29797
|
Portrait = "PORTRAIT"
|
|
@@ -29606,6 +29816,16 @@ export declare enum ConfluencePdfExportPageSizeInput {
|
|
|
29606
29816
|
Tabloid = "TABLOID",
|
|
29607
29817
|
UsLetter = "US_LETTER"
|
|
29608
29818
|
}
|
|
29819
|
+
export declare enum ConfluencePdfExportQuadrantContentAlignment {
|
|
29820
|
+
Center = "CENTER",
|
|
29821
|
+
Left = "LEFT",
|
|
29822
|
+
Right = "RIGHT"
|
|
29823
|
+
}
|
|
29824
|
+
export declare enum ConfluencePdfExportQuadrantContentAlignmentInput {
|
|
29825
|
+
Center = "CENTER",
|
|
29826
|
+
Left = "LEFT",
|
|
29827
|
+
Right = "RIGHT"
|
|
29828
|
+
}
|
|
29609
29829
|
export declare type ConfluencePdfExportSettings = {
|
|
29610
29830
|
__typename?: 'ConfluencePdfExportSettings';
|
|
29611
29831
|
footer?: Maybe<Scalars['String']['output']>;
|
|
@@ -29676,6 +29896,34 @@ export declare enum ConfluencePdfExportTitlePageVerticalAlignmentInput {
|
|
|
29676
29896
|
Middle = "MIDDLE",
|
|
29677
29897
|
Top = "TOP"
|
|
29678
29898
|
}
|
|
29899
|
+
export declare type ConfluencePdfExportTitlePageWithImageConfiguration = {
|
|
29900
|
+
__typename?: 'ConfluencePdfExportTitlePageWithImageConfiguration';
|
|
29901
|
+
fileId?: Maybe<Scalars['ID']['output']>;
|
|
29902
|
+
fontSize?: Maybe<Scalars['Int']['output']>;
|
|
29903
|
+
imageAlignment?: Maybe<ConfluencePdfExportQuadrantContentAlignment>;
|
|
29904
|
+
imageScale?: Maybe<Scalars['Float']['output']>;
|
|
29905
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
29906
|
+
textAlignment?: Maybe<ConfluencePdfExportQuadrantContentAlignment>;
|
|
29907
|
+
type?: Maybe<ConfluencePdfExportHeaderFooterType>;
|
|
29908
|
+
};
|
|
29909
|
+
export declare type ConfluencePdfExportTitlePageWithImageConfigurationInput = {
|
|
29910
|
+
fileId?: InputMaybe<Scalars['ID']['input']>;
|
|
29911
|
+
fontSize?: InputMaybe<Scalars['Int']['input']>;
|
|
29912
|
+
imageAlignment?: InputMaybe<ConfluencePdfExportQuadrantContentAlignmentInput>;
|
|
29913
|
+
imageScale?: InputMaybe<Scalars['Float']['input']>;
|
|
29914
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
29915
|
+
textAlignment?: InputMaybe<ConfluencePdfExportQuadrantContentAlignmentInput>;
|
|
29916
|
+
type?: InputMaybe<ConfluencePdfExportHeaderFooterTypeInput>;
|
|
29917
|
+
};
|
|
29918
|
+
export declare type ConfluencePdfExportTitlePageWithImageInclusionConfiguration = {
|
|
29919
|
+
__typename?: 'ConfluencePdfExportTitlePageWithImageInclusionConfiguration';
|
|
29920
|
+
configuration?: Maybe<ConfluencePdfExportTitlePageWithImageConfiguration>;
|
|
29921
|
+
isIncluded?: Maybe<Scalars['Boolean']['output']>;
|
|
29922
|
+
};
|
|
29923
|
+
export declare type ConfluencePdfExportTitlePageWithImageInclusionConfigurationInput = {
|
|
29924
|
+
configuration?: InputMaybe<ConfluencePdfExportTitlePageWithImageConfigurationInput>;
|
|
29925
|
+
isIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29926
|
+
};
|
|
29679
29927
|
export declare type ConfluencePendingAccessRequest = {
|
|
29680
29928
|
__typename?: 'ConfluencePendingAccessRequest';
|
|
29681
29929
|
isPendingAccessRequestExists?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -29778,6 +30026,7 @@ export declare type ConfluencePermissionTransitionRecommendation = {
|
|
|
29778
30026
|
__typename?: 'ConfluencePermissionTransitionRecommendation';
|
|
29779
30027
|
action: ConfluenceRoleRecommendation;
|
|
29780
30028
|
justification: ConfluenceRecommendationJustification;
|
|
30029
|
+
type: ConfluenceRecommendationType;
|
|
29781
30030
|
};
|
|
29782
30031
|
export declare type ConfluencePermissionTransitionSpace = {
|
|
29783
30032
|
__typename?: 'ConfluencePermissionTransitionSpace';
|
|
@@ -30289,6 +30538,11 @@ export declare type ConfluenceRecommendationJustification = {
|
|
|
30289
30538
|
description: Scalars['String']['output'];
|
|
30290
30539
|
name: Scalars['String']['output'];
|
|
30291
30540
|
};
|
|
30541
|
+
export declare enum ConfluenceRecommendationType {
|
|
30542
|
+
AdminEquivalent = "ADMIN_EQUIVALENT",
|
|
30543
|
+
ExactMatch = "EXACT_MATCH",
|
|
30544
|
+
NearExactMatch = "NEAR_EXACT_MATCH"
|
|
30545
|
+
}
|
|
30292
30546
|
export declare enum ConfluenceRecommendedAction {
|
|
30293
30547
|
ConvertToRole = "CONVERT_TO_ROLE"
|
|
30294
30548
|
}
|
|
@@ -30311,12 +30565,26 @@ export declare type ConfluenceRedactionMetadataEdge = {
|
|
|
30311
30565
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
30312
30566
|
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
30313
30567
|
};
|
|
30568
|
+
export declare type ConfluenceRefreshSmartSpaceOverviewInput = {
|
|
30569
|
+
spaceKey: Scalars['String']['input'];
|
|
30570
|
+
topLinks?: InputMaybe<ConfluenceRefreshTopLinksInput>;
|
|
30571
|
+
};
|
|
30572
|
+
export declare type ConfluenceRefreshTopLinksInput = {
|
|
30573
|
+
overridePinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30574
|
+
};
|
|
30314
30575
|
export declare type ConfluenceRemoveContentApprovalReviewerInput = {
|
|
30315
30576
|
contentApprovalReviewId: Scalars['ID']['input'];
|
|
30316
30577
|
principalId: Scalars['ID']['input'];
|
|
30317
30578
|
principalType: ConfluencePrincipalType;
|
|
30318
30579
|
workflowApplicationId: Scalars['ID']['input'];
|
|
30319
30580
|
};
|
|
30581
|
+
export declare type ConfluenceRemoveInlineReactionInput = {
|
|
30582
|
+
commentId: Scalars['ID']['input'];
|
|
30583
|
+
containerId: Scalars['ID']['input'];
|
|
30584
|
+
createdFrom: CommentCreationLocation;
|
|
30585
|
+
emojiId: Scalars['String']['input'];
|
|
30586
|
+
step?: InputMaybe<Step>;
|
|
30587
|
+
};
|
|
30320
30588
|
export declare type ConfluenceRemoveTopLinkInput = {
|
|
30321
30589
|
url: Scalars['String']['input'];
|
|
30322
30590
|
};
|
|
@@ -30680,13 +30948,9 @@ export declare enum ConfluenceShareableLinkSpaceStatus {
|
|
|
30680
30948
|
On = "ON"
|
|
30681
30949
|
}
|
|
30682
30950
|
export declare enum ConfluenceShareableLinkSpaceStatusFilter {
|
|
30683
|
-
ExternalBlockedByContainerPolicy = "EXTERNAL_BLOCKED_BY_CONTAINER_POLICY",
|
|
30684
|
-
ExternalBlockedByOrg = "EXTERNAL_BLOCKED_BY_ORG",
|
|
30685
30951
|
ExternalBlockedByProduct = "EXTERNAL_BLOCKED_BY_PRODUCT",
|
|
30686
30952
|
ExternalOff = "EXTERNAL_OFF",
|
|
30687
30953
|
ExternalOn = "EXTERNAL_ON",
|
|
30688
|
-
InternalLicensedBlockedByContainerPolicy = "INTERNAL_LICENSED_BLOCKED_BY_CONTAINER_POLICY",
|
|
30689
|
-
InternalLicensedBlockedByOrg = "INTERNAL_LICENSED_BLOCKED_BY_ORG",
|
|
30690
30954
|
InternalLicensedBlockedByProduct = "INTERNAL_LICENSED_BLOCKED_BY_PRODUCT",
|
|
30691
30955
|
InternalLicensedOff = "INTERNAL_LICENSED_OFF",
|
|
30692
30956
|
InternalLicensedOn = "INTERNAL_LICENSED_ON"
|
|
@@ -31821,13 +32085,26 @@ export declare type ConfluenceUpdatePdfExportNoCodeStylingConfigInput = {
|
|
|
31821
32085
|
bodyFontSize: Scalars['Int']['input'];
|
|
31822
32086
|
font: ConfluencePdfExportFontInput;
|
|
31823
32087
|
footer: ConfluencePdfExportFooterInclusionConfigurationInput;
|
|
32088
|
+
footerCenter?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
32089
|
+
footerLeft?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
32090
|
+
footerRight?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
31824
32091
|
header: ConfluencePdfExportHeaderInclusionConfigurationInput;
|
|
32092
|
+
headerCenter?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
32093
|
+
headerLeft?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
32094
|
+
headerRight?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
31825
32095
|
lineSpacing: Scalars['Float']['input'];
|
|
31826
32096
|
pageMargins: ConfluencePdfExportPageMarginsInput;
|
|
32097
|
+
pageNumberConfig?: InputMaybe<ConfluencePdfExportPageNumberConfigurationInput>;
|
|
31827
32098
|
pageOrientation: ConfluencePdfExportPageOrientationInput;
|
|
31828
32099
|
pageSize: ConfluencePdfExportPageSizeInput;
|
|
31829
32100
|
shouldIncludePageNumbers: Scalars['Boolean']['input'];
|
|
31830
32101
|
shouldIncludeTableOfContents: Scalars['Boolean']['input'];
|
|
32102
|
+
titleFooterCenter?: InputMaybe<ConfluencePdfExportTitlePageWithImageInclusionConfigurationInput>;
|
|
32103
|
+
titleFooterLeft?: InputMaybe<ConfluencePdfExportTitlePageWithImageInclusionConfigurationInput>;
|
|
32104
|
+
titleFooterRight?: InputMaybe<ConfluencePdfExportTitlePageWithImageInclusionConfigurationInput>;
|
|
32105
|
+
titleHeaderCenter?: InputMaybe<ConfluencePdfExportTitlePageWithImageInclusionConfigurationInput>;
|
|
32106
|
+
titleHeaderLeft?: InputMaybe<ConfluencePdfExportTitlePageWithImageInclusionConfigurationInput>;
|
|
32107
|
+
titleHeaderRight?: InputMaybe<ConfluencePdfExportTitlePageWithImageInclusionConfigurationInput>;
|
|
31831
32108
|
titlePage: ConfluencePdfExportTitlePageInclusionConfigurationInput;
|
|
31832
32109
|
};
|
|
31833
32110
|
export declare type ConfluenceUpdatePdfExportSpaceConfigurationInput = {
|
|
@@ -33327,6 +33604,7 @@ export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
|
33327
33604
|
ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
|
|
33328
33605
|
ConfluenceTaggedPageRule = "CONFLUENCE_TAGGED_PAGE_RULE",
|
|
33329
33606
|
ConfluenceUpdatedPageRule = "CONFLUENCE_UPDATED_PAGE_RULE",
|
|
33607
|
+
ConfluenceWatchedPageRule = "CONFLUENCE_WATCHED_PAGE_RULE",
|
|
33330
33608
|
JiraIssueRule = "JIRA_ISSUE_RULE",
|
|
33331
33609
|
Llm = "LLM",
|
|
33332
33610
|
LoomVideoRule = "LOOM_VIDEO_RULE",
|
|
@@ -37899,7 +38177,6 @@ export declare type DevAiAutodevNextProject = {
|
|
|
37899
38177
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37900
38178
|
id: Scalars['ID']['output'];
|
|
37901
38179
|
jiraProject?: Maybe<JiraProject>;
|
|
37902
|
-
jiraProjectKey?: Maybe<Scalars['String']['output']>;
|
|
37903
38180
|
projectAri: Scalars['ID']['output'];
|
|
37904
38181
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37905
38182
|
workspaceId: Scalars['ID']['output'];
|
|
@@ -37917,7 +38194,6 @@ export declare type DevAiAutodevNextProjectEdge = {
|
|
|
37917
38194
|
node: DevAiAutodevNextProject;
|
|
37918
38195
|
};
|
|
37919
38196
|
export declare type DevAiAutodevNextProjectItemInput = {
|
|
37920
|
-
jiraProjectKey: Scalars['String']['input'];
|
|
37921
38197
|
projectAri: Scalars['ID']['input'];
|
|
37922
38198
|
};
|
|
37923
38199
|
export declare type DevAiAutodevNextRemoveMembersInput = {
|
|
@@ -37998,12 +38274,12 @@ export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
|
37998
38274
|
}
|
|
37999
38275
|
export declare type DevAiAutodevNextWorkstreamSettings = {
|
|
38000
38276
|
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
38001
|
-
|
|
38277
|
+
defaultJiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
38002
38278
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
38003
38279
|
wipLimit?: Maybe<Scalars['Int']['output']>;
|
|
38004
38280
|
};
|
|
38005
38281
|
export declare type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
38006
|
-
|
|
38282
|
+
defaultJiraProjectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
38007
38283
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
38008
38284
|
wipLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
38009
38285
|
};
|
|
@@ -41720,6 +41996,7 @@ export declare type Extension = {
|
|
|
41720
41996
|
installation?: Maybe<AppInstallationSummary>;
|
|
41721
41997
|
installationConfig?: Maybe<Array<EcosystemAppInstallationConfigExtension>>;
|
|
41722
41998
|
installationId: Scalars['String']['output'];
|
|
41999
|
+
installationTarget?: Maybe<InstallationTarget>;
|
|
41723
42000
|
key: Scalars['String']['output'];
|
|
41724
42001
|
license?: Maybe<AppInstallationLicense>;
|
|
41725
42002
|
manuallyAddedReadMeScope?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -41939,6 +42216,8 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
41939
42216
|
attachments?: Maybe<Array<Maybe<ExternalCalendarEventAttachment>>>;
|
|
41940
42217
|
attendeeCount?: Maybe<Scalars['Long']['output']>;
|
|
41941
42218
|
attendees?: Maybe<Array<Maybe<ExternalAttendee>>>;
|
|
42219
|
+
container?: Maybe<ExternalEntity>;
|
|
42220
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
41942
42221
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
41943
42222
|
createdBy?: Maybe<ExternalUser>;
|
|
41944
42223
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -41954,12 +42233,14 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
41954
42233
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
41955
42234
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
41956
42235
|
location?: Maybe<ExternalLocation>;
|
|
42236
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
41957
42237
|
parent?: Maybe<ExternalEntity>;
|
|
41958
42238
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
41959
42239
|
provider?: Maybe<ExternalProvider>;
|
|
41960
42240
|
recordingUrl?: Maybe<Scalars['String']['output']>;
|
|
41961
42241
|
recurringEventId?: Maybe<Scalars['String']['output']>;
|
|
41962
42242
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
42243
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
41963
42244
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
41964
42245
|
url?: Maybe<Scalars['String']['output']>;
|
|
41965
42246
|
videoMeetingProvider?: Maybe<Scalars['String']['output']>;
|
|
@@ -42974,10 +43255,19 @@ export declare type ExternalProjectAttachment = {
|
|
|
42974
43255
|
};
|
|
42975
43256
|
export declare type ExternalProvider = {
|
|
42976
43257
|
__typename?: 'ExternalProvider';
|
|
43258
|
+
actions?: Maybe<Array<Maybe<ExternalProviderAction>>>;
|
|
43259
|
+
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
43260
|
+
homeUrl?: Maybe<Scalars['String']['output']>;
|
|
42977
43261
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
42978
43262
|
name?: Maybe<Scalars['String']['output']>;
|
|
42979
43263
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
42980
43264
|
};
|
|
43265
|
+
export declare type ExternalProviderAction = {
|
|
43266
|
+
__typename?: 'ExternalProviderAction';
|
|
43267
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
43268
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
43269
|
+
urlTemplate?: Maybe<Scalars['String']['output']>;
|
|
43270
|
+
};
|
|
42981
43271
|
export declare type ExternalPullRequest = Node & {
|
|
42982
43272
|
__typename?: 'ExternalPullRequest';
|
|
42983
43273
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -45037,6 +45327,31 @@ export declare type GlanceUserInsights = {
|
|
|
45037
45327
|
type?: Maybe<Scalars['String']['output']>;
|
|
45038
45328
|
updated_at?: Maybe<Scalars['String']['output']>;
|
|
45039
45329
|
};
|
|
45330
|
+
export declare type GlobalAppExtensionContextInput = {
|
|
45331
|
+
appVersion: Scalars['String']['input'];
|
|
45332
|
+
context: Scalars['JSON']['input'];
|
|
45333
|
+
extensionId: Scalars['ID']['input'];
|
|
45334
|
+
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
45335
|
+
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
45336
|
+
};
|
|
45337
|
+
export declare type GlobalAppForgeContextToken = {
|
|
45338
|
+
__typename?: 'GlobalAppForgeContextToken';
|
|
45339
|
+
expiresAt: Scalars['String']['output'];
|
|
45340
|
+
extensionId: Scalars['ID']['output'];
|
|
45341
|
+
jwt: Scalars['String']['output'];
|
|
45342
|
+
};
|
|
45343
|
+
export declare type GlobalAppSignForgeContextTokensInput = {
|
|
45344
|
+
accountId: Scalars['ID']['input'];
|
|
45345
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
45346
|
+
extensionContexts: Array<GlobalAppExtensionContextInput>;
|
|
45347
|
+
unlicensed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45348
|
+
};
|
|
45349
|
+
export declare type GlobalAppSignForgeContextTokensResponse = Payload & {
|
|
45350
|
+
__typename?: 'GlobalAppSignForgeContextTokensResponse';
|
|
45351
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45352
|
+
success: Scalars['Boolean']['output'];
|
|
45353
|
+
tokens: Array<GlobalAppForgeContextToken>;
|
|
45354
|
+
};
|
|
45040
45355
|
export declare type GlobalCardCreateAdditionalFields = {
|
|
45041
45356
|
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
45042
45357
|
boardIssueListKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -59637,7 +59952,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
59637
59952
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
59638
59953
|
id: Scalars['ID']['output'];
|
|
59639
59954
|
};
|
|
59640
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59955
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59641
59956
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
59642
59957
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
59643
59958
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -59662,7 +59977,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
59662
59977
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
59663
59978
|
id: Scalars['ID']['output'];
|
|
59664
59979
|
};
|
|
59665
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59980
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
59666
59981
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
59667
59982
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
59668
59983
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -60537,7 +60852,7 @@ export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
|
60537
60852
|
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
60538
60853
|
id: Scalars['ID']['output'];
|
|
60539
60854
|
};
|
|
60540
|
-
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
60855
|
+
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
60541
60856
|
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
60542
60857
|
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
60543
60858
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
@@ -61698,7 +62013,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
61698
62013
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
61699
62014
|
id: Scalars['ID']['output'];
|
|
61700
62015
|
};
|
|
61701
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62016
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61702
62017
|
export declare type GraphStoreCypherQueryStringListObject = {
|
|
61703
62018
|
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
61704
62019
|
values: Array<Scalars['String']['output']>;
|
|
@@ -61720,13 +62035,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
61720
62035
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
61721
62036
|
id: Scalars['ID']['output'];
|
|
61722
62037
|
};
|
|
61723
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62038
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61724
62039
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
61725
62040
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
61726
62041
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
61727
62042
|
id: Scalars['ID']['output'];
|
|
61728
62043
|
};
|
|
61729
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62044
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61730
62045
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
61731
62046
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
61732
62047
|
value: Scalars['Boolean']['output'];
|
|
@@ -61871,7 +62186,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
61871
62186
|
V2 = "V2",
|
|
61872
62187
|
V3 = "V3"
|
|
61873
62188
|
}
|
|
61874
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62189
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
61875
62190
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
61876
62191
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
61877
62192
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -62768,7 +63083,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
62768
63083
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
62769
63084
|
id: Scalars['ID']['output'];
|
|
62770
63085
|
};
|
|
62771
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
63086
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62772
63087
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
62773
63088
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
62774
63089
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -62782,7 +63097,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
62782
63097
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
62783
63098
|
id: Scalars['ID']['output'];
|
|
62784
63099
|
};
|
|
62785
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
63100
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
62786
63101
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
62787
63102
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
62788
63103
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -69264,7 +69579,7 @@ export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseEd
|
|
|
69264
69579
|
node?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseUnion>;
|
|
69265
69580
|
};
|
|
69266
69581
|
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseUnion = CompassLinkNode;
|
|
69267
|
-
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
69582
|
+
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
69268
69583
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
69269
69584
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
69270
69585
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -69771,8 +70086,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
69771
70086
|
lastUpdated: Scalars['DateTime']['output'];
|
|
69772
70087
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
69773
70088
|
};
|
|
69774
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
69775
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
70089
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
70090
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
69776
70091
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
69777
70092
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
69778
70093
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -74360,7 +74675,7 @@ export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
|
74360
74675
|
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
74361
74676
|
};
|
|
74362
74677
|
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
74363
|
-
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
74678
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
74364
74679
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
74365
74680
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
74366
74681
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -88241,7 +88556,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
88241
88556
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
88242
88557
|
id: Scalars['ID']['output'];
|
|
88243
88558
|
};
|
|
88244
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
88559
|
+
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
88245
88560
|
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
88246
88561
|
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
88247
88562
|
values: Array<Scalars['Boolean']['output']>;
|
|
@@ -91117,7 +91432,7 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge
|
|
|
91117
91432
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion>;
|
|
91118
91433
|
};
|
|
91119
91434
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion = TownsquareProject;
|
|
91120
|
-
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
91435
|
+
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
91121
91436
|
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
91122
91437
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
|
|
91123
91438
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
|
|
@@ -94553,7 +94868,7 @@ export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverse
|
|
|
94553
94868
|
node?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseUnion>;
|
|
94554
94869
|
};
|
|
94555
94870
|
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseUnion = CompassLinkNode;
|
|
94556
|
-
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
94871
|
+
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
94557
94872
|
export declare type GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection = HasPageInfo & {
|
|
94558
94873
|
__typename?: 'GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection';
|
|
94559
94874
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalEdge>>>;
|
|
@@ -95000,8 +95315,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
95000
95315
|
lastUpdated: Scalars['DateTime']['output'];
|
|
95001
95316
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
95002
95317
|
};
|
|
95003
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
95004
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
95318
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
95319
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
95005
95320
|
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
95006
95321
|
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
95007
95322
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
@@ -99877,7 +100192,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseEdge = {
|
|
|
99877
100192
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion>;
|
|
99878
100193
|
};
|
|
99879
100194
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion = TownsquareProject;
|
|
99880
|
-
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
100195
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
99881
100196
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection = HasPageInfo & HasTotal & {
|
|
99882
100197
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection';
|
|
99883
100198
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchEdge>>>;
|
|
@@ -105592,6 +105907,7 @@ export declare type HelpObjectStoreQueryApi = {
|
|
|
105592
105907
|
portalGroups?: Maybe<HelpObjectStorePortalGroupsResult>;
|
|
105593
105908
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
105594
105909
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
105910
|
+
suggestedRequestTypes?: Maybe<HelpObjectStoreSuggestedRequestTypesResult>;
|
|
105595
105911
|
};
|
|
105596
105912
|
export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
105597
105913
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -105618,6 +105934,9 @@ export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
|
105618
105934
|
export declare type HelpObjectStoreQueryApiSearchHelpObjectsArgs = {
|
|
105619
105935
|
searchInput: HelpObjectStoreSearchInput;
|
|
105620
105936
|
};
|
|
105937
|
+
export declare type HelpObjectStoreQueryApiSuggestedRequestTypesArgs = {
|
|
105938
|
+
helpCenterId: Scalars['ID']['input'];
|
|
105939
|
+
};
|
|
105621
105940
|
export declare type HelpObjectStoreQueryError = {
|
|
105622
105941
|
__typename?: 'HelpObjectStoreQueryError';
|
|
105623
105942
|
ari: Scalars['ID']['output'];
|
|
@@ -105736,6 +106055,18 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
105736
106055
|
entityId: Scalars['String']['output'];
|
|
105737
106056
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
105738
106057
|
};
|
|
106058
|
+
export declare type HelpObjectStoreSuggestedRequestTypesConnection = {
|
|
106059
|
+
__typename?: 'HelpObjectStoreSuggestedRequestTypesConnection';
|
|
106060
|
+
edges?: Maybe<Array<HelpObjectStoreSuggestedRequestTypesEdge>>;
|
|
106061
|
+
pageInfo: PageInfo;
|
|
106062
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
106063
|
+
};
|
|
106064
|
+
export declare type HelpObjectStoreSuggestedRequestTypesEdge = {
|
|
106065
|
+
__typename?: 'HelpObjectStoreSuggestedRequestTypesEdge';
|
|
106066
|
+
cursor: Scalars['String']['output'];
|
|
106067
|
+
node?: Maybe<HelpObjectStoreRequestForm>;
|
|
106068
|
+
};
|
|
106069
|
+
export declare type HelpObjectStoreSuggestedRequestTypesResult = HelpObjectStoreSuggestedRequestTypesConnection | QueryError;
|
|
105739
106070
|
export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
105740
106071
|
articleIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105741
106072
|
contentTypes?: InputMaybe<Array<HelpObjectStoreArticleContentType>>;
|
|
@@ -107194,6 +107525,7 @@ export declare enum JiraAgentCreatorType {
|
|
|
107194
107525
|
Customer = "CUSTOMER",
|
|
107195
107526
|
Forge = "FORGE",
|
|
107196
107527
|
Ootb = "OOTB",
|
|
107528
|
+
RemoteA2A = "REMOTE_A2A",
|
|
107197
107529
|
System = "SYSTEM",
|
|
107198
107530
|
ThirdParty = "THIRD_PARTY"
|
|
107199
107531
|
}
|
|
@@ -107997,6 +108329,7 @@ export declare type JiraAttachmentResource = JiraConsolidatedResource & {
|
|
|
107997
108329
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
107998
108330
|
parent?: Maybe<JiraAttachmentParentName>;
|
|
107999
108331
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
108332
|
+
parentName?: Maybe<Scalars['String']['output']>;
|
|
108000
108333
|
};
|
|
108001
108334
|
export declare type JiraAttachmentSearchViewContext = {
|
|
108002
108335
|
__typename?: 'JiraAttachmentSearchViewContext';
|
|
@@ -108530,6 +108863,34 @@ export declare type JiraBacklogIssueEpicLinkField = {
|
|
|
108530
108863
|
text?: Maybe<Scalars['String']['output']>;
|
|
108531
108864
|
type?: Maybe<Scalars['String']['output']>;
|
|
108532
108865
|
};
|
|
108866
|
+
export declare type JiraBacklogIssueValues = {
|
|
108867
|
+
__typename?: 'JiraBacklogIssueValues';
|
|
108868
|
+
assignee?: Maybe<User>;
|
|
108869
|
+
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
108870
|
+
fixVersions?: Maybe<JiraVersionConnection>;
|
|
108871
|
+
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
108872
|
+
issueId?: Maybe<Scalars['ID']['output']>;
|
|
108873
|
+
issueType?: Maybe<JiraIssueType>;
|
|
108874
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
108875
|
+
labels?: Maybe<JiraLabelConnection>;
|
|
108876
|
+
priority?: Maybe<JiraPriority>;
|
|
108877
|
+
project?: Maybe<JiraProject>;
|
|
108878
|
+
status?: Maybe<JiraStatus>;
|
|
108879
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
108880
|
+
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
108881
|
+
};
|
|
108882
|
+
export declare type JiraBacklogIssueValuesFixVersionsArgs = {
|
|
108883
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
108884
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
108885
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108886
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
108887
|
+
};
|
|
108888
|
+
export declare type JiraBacklogIssueValuesLabelsArgs = {
|
|
108889
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
108890
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
108891
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108892
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
108893
|
+
};
|
|
108533
108894
|
export declare type JiraBacklogLocation = {
|
|
108534
108895
|
__typename?: 'JiraBacklogLocation';
|
|
108535
108896
|
id: Scalars['ID']['output'];
|
|
@@ -108724,6 +109085,7 @@ export declare type JiraBacklogView = JiraView & Node & {
|
|
|
108724
109085
|
globalConfig?: Maybe<JiraBacklogViewGlobalConfig>;
|
|
108725
109086
|
id: Scalars['ID']['output'];
|
|
108726
109087
|
issueTypeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
109088
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
108727
109089
|
labelFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
108728
109090
|
permissions?: Maybe<JiraBacklogViewPermissions>;
|
|
108729
109091
|
projects?: Maybe<JiraProjectConnection>;
|
|
@@ -108757,6 +109119,13 @@ export declare type JiraBacklogViewIssueTypeFiltersArgs = {
|
|
|
108757
109119
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
108758
109120
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108759
109121
|
};
|
|
109122
|
+
export declare type JiraBacklogViewIssuesArgs = {
|
|
109123
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
109124
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
109125
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
109126
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
109127
|
+
settings?: InputMaybe<JiraBacklogViewSettings>;
|
|
109128
|
+
};
|
|
108760
109129
|
export declare type JiraBacklogViewLabelFiltersArgs = {
|
|
108761
109130
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
108762
109131
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -113569,9 +113938,15 @@ export declare type JiraFieldSetPreferencesMutationInput = {
|
|
|
113569
113938
|
export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
|
|
113570
113939
|
__typename?: 'JiraFieldSetPreferencesUpdatePayload';
|
|
113571
113940
|
errors?: Maybe<Array<MutationError>>;
|
|
113941
|
+
fieldSetView?: Maybe<JiraFieldSetViewResult>;
|
|
113572
113942
|
success: Scalars['Boolean']['output'];
|
|
113573
113943
|
view?: Maybe<JiraView>;
|
|
113574
113944
|
};
|
|
113945
|
+
export declare type JiraFieldSetPreferencesUpdatePayloadFieldSetViewArgs = {
|
|
113946
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
113947
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
113948
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
113949
|
+
};
|
|
113575
113950
|
export declare type JiraFieldSetView = JiraFieldSetsViewMetadata & Node & {
|
|
113576
113951
|
__typename?: 'JiraFieldSetView';
|
|
113577
113952
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -115197,6 +115572,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
115197
115572
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
115198
115573
|
attachmentsWithFilters?: Maybe<JiraAttachmentWithFiltersResult>;
|
|
115199
115574
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
115575
|
+
backlogIssueValues?: Maybe<JiraBacklogIssueValues>;
|
|
115200
115576
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
115201
115577
|
canCreateSubtask?: Maybe<Scalars['Boolean']['output']>;
|
|
115202
115578
|
canDownloadAttachment?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -115225,6 +115601,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
115225
115601
|
defaultAssignee?: Maybe<User>;
|
|
115226
115602
|
delegator?: Maybe<User>;
|
|
115227
115603
|
deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
|
|
115604
|
+
deployments?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalDeploymentConnection>;
|
|
115228
115605
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
115229
115606
|
descriptionField?: Maybe<JiraRichTextField>;
|
|
115230
115607
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -115241,6 +115618,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
115241
115618
|
estimationForView?: Maybe<JiraEstimationValue>;
|
|
115242
115619
|
exceededChildIssueLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
115243
115620
|
extraFieldsForView?: Maybe<JiraExtraFieldForViewConnection>;
|
|
115621
|
+
featureFlags?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalFeatureFlagConnection>;
|
|
115244
115622
|
fieldByIdOrAlias?: Maybe<JiraIssueField>;
|
|
115245
115623
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
115246
115624
|
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
@@ -115326,6 +115704,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
115326
115704
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
115327
115705
|
redactedFields?: Maybe<JiraFieldConnection>;
|
|
115328
115706
|
redactions?: Maybe<JiraRedactionConnection>;
|
|
115707
|
+
remoteLinks?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalRemoteLinkConnection>;
|
|
115329
115708
|
reporter?: Maybe<User>;
|
|
115330
115709
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
115331
115710
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
@@ -115476,6 +115855,14 @@ export declare type JiraIssueCreateBranchTargetsArgs = {
|
|
|
115476
115855
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
115477
115856
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
115478
115857
|
};
|
|
115858
|
+
export declare type JiraIssueDeploymentsArgs = {
|
|
115859
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
115860
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
115861
|
+
filter?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalDeploymentFilterInput>;
|
|
115862
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
115863
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
115864
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalDeploymentSortInput>;
|
|
115865
|
+
};
|
|
115479
115866
|
export declare type JiraIssueDesignsArgs = {
|
|
115480
115867
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
115481
115868
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -115492,6 +115879,13 @@ export declare type JiraIssueExtraFieldsForViewArgs = {
|
|
|
115492
115879
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
115493
115880
|
view: JiraViewQueryInput;
|
|
115494
115881
|
};
|
|
115882
|
+
export declare type JiraIssueFeatureFlagsArgs = {
|
|
115883
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
115884
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
115885
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
115886
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
115887
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalFeatureFlagSortInput>;
|
|
115888
|
+
};
|
|
115495
115889
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
115496
115890
|
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
115497
115891
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -115656,6 +116050,13 @@ export declare type JiraIssueRedactionsArgs = {
|
|
|
115656
116050
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
115657
116051
|
sortBy?: InputMaybe<JiraRedactionSortInput>;
|
|
115658
116052
|
};
|
|
116053
|
+
export declare type JiraIssueRemoteLinksArgs = {
|
|
116054
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
116055
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
116056
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
116057
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
116058
|
+
sort?: InputMaybe<GraphStoreV2JiraWorkItemLinksExternalRemoteLinkSortInput>;
|
|
116059
|
+
};
|
|
115659
116060
|
export declare type JiraIssueSearchViewContextArgs = {
|
|
115660
116061
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
115661
116062
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -118308,6 +118709,7 @@ export declare type JiraJqlBuilder = {
|
|
|
118308
118709
|
hydrateJqlQueryForFilter?: Maybe<JiraJqlHydratedQueryResult>;
|
|
118309
118710
|
issueTypes?: Maybe<JiraJqlIssueTypes>;
|
|
118310
118711
|
myFilterFields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
118712
|
+
myFilterFieldsWithIds?: Maybe<JiraMyFilterFieldConnectionResult>;
|
|
118311
118713
|
recentFields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
118312
118714
|
recentlyUsedProjects?: Maybe<JiraJqlProjectFieldValueConnection>;
|
|
118313
118715
|
recentlyUsedSprints?: Maybe<JiraJqlSprintFieldValueConnection>;
|
|
@@ -118368,6 +118770,9 @@ export declare type JiraJqlBuilderIssueTypesArgs = {
|
|
|
118368
118770
|
export declare type JiraJqlBuilderMyFilterFieldsArgs = {
|
|
118369
118771
|
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
118370
118772
|
};
|
|
118773
|
+
export declare type JiraJqlBuilderMyFilterFieldsWithIdsArgs = {
|
|
118774
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
118775
|
+
};
|
|
118371
118776
|
export declare type JiraJqlBuilderRecentFieldsArgs = {
|
|
118372
118777
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
118373
118778
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -120873,6 +121278,23 @@ export declare type JiraMutationUpdateWorklogArgs = {
|
|
|
120873
121278
|
export declare type JiraMutationUserPreferencesArgs = {
|
|
120874
121279
|
cloudId: Scalars['ID']['input'];
|
|
120875
121280
|
};
|
|
121281
|
+
export declare type JiraMyFilterField = {
|
|
121282
|
+
__typename?: 'JiraMyFilterField';
|
|
121283
|
+
field: JiraJqlField;
|
|
121284
|
+
id: Scalars['ID']['output'];
|
|
121285
|
+
};
|
|
121286
|
+
export declare type JiraMyFilterFieldConnection = {
|
|
121287
|
+
__typename?: 'JiraMyFilterFieldConnection';
|
|
121288
|
+
edges?: Maybe<Array<Maybe<JiraMyFilterFieldEdge>>>;
|
|
121289
|
+
pageInfo: PageInfo;
|
|
121290
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
121291
|
+
};
|
|
121292
|
+
export declare type JiraMyFilterFieldConnectionResult = JiraMyFilterFieldConnection | QueryError;
|
|
121293
|
+
export declare type JiraMyFilterFieldEdge = {
|
|
121294
|
+
__typename?: 'JiraMyFilterFieldEdge';
|
|
121295
|
+
cursor: Scalars['String']['output'];
|
|
121296
|
+
node: JiraMyFilterField;
|
|
121297
|
+
};
|
|
120876
121298
|
export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload = Payload & {
|
|
120877
121299
|
__typename?: 'JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload';
|
|
120878
121300
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -123880,7 +124302,6 @@ export declare type JiraQuery = {
|
|
|
123880
124302
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
123881
124303
|
searchViewContexts?: Maybe<JiraIssueSearchBulkViewContextsConnection>;
|
|
123882
124304
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
123883
|
-
shouldShowInviteButton?: Maybe<Scalars['Boolean']['output']>;
|
|
123884
124305
|
sprintById?: Maybe<JiraSprint>;
|
|
123885
124306
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
123886
124307
|
startDateField?: Maybe<JiraJqlField>;
|
|
@@ -124074,8 +124495,14 @@ export declare type JiraQueryChildWorkItemsArgs = {
|
|
|
124074
124495
|
cloudId: Scalars['ID']['input'];
|
|
124075
124496
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
124076
124497
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124498
|
+
isInitialLoadQuery?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124077
124499
|
issueSearchInput: JiraIssueSearchInput;
|
|
124078
124500
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
124501
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
124502
|
+
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
124503
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124504
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
124505
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
124079
124506
|
};
|
|
124080
124507
|
export declare type JiraQueryCmdbSelectedObjectAttributesArgs = {
|
|
124081
124508
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125027,9 +125454,6 @@ export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
|
125027
125454
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
125028
125455
|
cloudId: Scalars['ID']['input'];
|
|
125029
125456
|
};
|
|
125030
|
-
export declare type JiraQueryShouldShowInviteButtonArgs = {
|
|
125031
|
-
cloudId: Scalars['ID']['input'];
|
|
125032
|
-
};
|
|
125033
125457
|
export declare type JiraQuerySprintByIdArgs = {
|
|
125034
125458
|
id: Scalars['ID']['input'];
|
|
125035
125459
|
};
|
|
@@ -126045,6 +126469,7 @@ export declare type JiraResource = {
|
|
|
126045
126469
|
isExternallyLinked?: Maybe<Scalars['Boolean']['output']>;
|
|
126046
126470
|
parent?: Maybe<JiraResourceParentName>;
|
|
126047
126471
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
126472
|
+
parentName?: Maybe<Scalars['String']['output']>;
|
|
126048
126473
|
};
|
|
126049
126474
|
export declare enum JiraResourceIntegration {
|
|
126050
126475
|
Attachment = "ATTACHMENT",
|
|
@@ -127834,6 +128259,12 @@ export declare type JiraServiceManagementWorkflowTemplatesMetadataEdge = {
|
|
|
127834
128259
|
cursor: Scalars['String']['output'];
|
|
127835
128260
|
node?: Maybe<JiraServiceManagementWorkflowTemplateMetadata>;
|
|
127836
128261
|
};
|
|
128262
|
+
export declare type JiraSetAgentSessionIsPlanModeEnabledResponsePayload = {
|
|
128263
|
+
__typename?: 'JiraSetAgentSessionIsPlanModeEnabledResponsePayload';
|
|
128264
|
+
errors?: Maybe<Array<MutationError>>;
|
|
128265
|
+
isPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
128266
|
+
success: Scalars['Boolean']['output'];
|
|
128267
|
+
};
|
|
127837
128268
|
export declare type JiraSetApplicationPropertiesPayload = Payload & {
|
|
127838
128269
|
__typename?: 'JiraSetApplicationPropertiesPayload';
|
|
127839
128270
|
applicationProperties: Array<JiraApplicationProperty>;
|
|
@@ -128225,6 +128656,7 @@ export declare type JiraSetMyFilterFieldsPayload = Payload & {
|
|
|
128225
128656
|
__typename?: 'JiraSetMyFilterFieldsPayload';
|
|
128226
128657
|
errors?: Maybe<Array<MutationError>>;
|
|
128227
128658
|
fields: Array<Scalars['String']['output']>;
|
|
128659
|
+
myFilterFieldsWithIds: JiraMyFilterFieldConnectionResult;
|
|
128228
128660
|
success: Scalars['Boolean']['output'];
|
|
128229
128661
|
};
|
|
128230
128662
|
export declare type JiraSetProjectAccessRequestAllowedPropertyInput = {
|
|
@@ -129228,6 +129660,8 @@ export declare type JiraSubscription = {
|
|
|
129228
129660
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
129229
129661
|
onIssueMutatedByIssueIdFromDiffUserNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
129230
129662
|
onIssueMutatedByIssueIdNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
129663
|
+
onIssueMutatedByProjectNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
129664
|
+
onIssueMutatedByProjectsNoEnrichment?: Maybe<JiraIssueMutatedStreamHubPayload>;
|
|
129231
129665
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
129232
129666
|
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
129233
129667
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
@@ -129346,6 +129780,14 @@ export declare type JiraSubscriptionOnIssueMutatedByIssueIdFromDiffUserNoEnrichm
|
|
|
129346
129780
|
export declare type JiraSubscriptionOnIssueMutatedByIssueIdNoEnrichmentArgs = {
|
|
129347
129781
|
issueId: Scalars['ID']['input'];
|
|
129348
129782
|
};
|
|
129783
|
+
export declare type JiraSubscriptionOnIssueMutatedByProjectNoEnrichmentArgs = {
|
|
129784
|
+
cloudId: Scalars['ID']['input'];
|
|
129785
|
+
projectId: Scalars['String']['input'];
|
|
129786
|
+
};
|
|
129787
|
+
export declare type JiraSubscriptionOnIssueMutatedByProjectsNoEnrichmentArgs = {
|
|
129788
|
+
cloudId: Scalars['ID']['input'];
|
|
129789
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
129790
|
+
};
|
|
129349
129791
|
export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
|
|
129350
129792
|
cloudId: Scalars['ID']['input'];
|
|
129351
129793
|
projectId: Scalars['String']['input'];
|
|
@@ -132574,6 +133016,9 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
132574
133016
|
fieldOptions: Array<JpdViewsServiceOptionInput>;
|
|
132575
133017
|
reversed: Scalars['Boolean']['input'];
|
|
132576
133018
|
};
|
|
133019
|
+
export declare type JpdViewsServiceCloneGlobalViewInput = {
|
|
133020
|
+
id: Scalars['ID']['input'];
|
|
133021
|
+
};
|
|
132577
133022
|
export declare type JpdViewsServiceCloneViewIntoGlobalInput = {
|
|
132578
133023
|
id: Scalars['ID']['input'];
|
|
132579
133024
|
};
|
|
@@ -134516,6 +134961,7 @@ export declare type KitsuneCustomer = {
|
|
|
134516
134961
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
134517
134962
|
email: Scalars['String']['output'];
|
|
134518
134963
|
id: Scalars['ID']['output'];
|
|
134964
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
134519
134965
|
organizations?: Maybe<Array<KitsuneOrganization>>;
|
|
134520
134966
|
};
|
|
134521
134967
|
export declare type KitsuneCustomerConnection = KitsuneConnection & {
|
|
@@ -136043,6 +136489,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
136043
136489
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
136044
136490
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
136045
136491
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
136492
|
+
singleUser?: Maybe<KnowledgeDiscoverySingleUserResult>;
|
|
136046
136493
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
136047
136494
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
136048
136495
|
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
@@ -136161,6 +136608,11 @@ export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
|
136161
136608
|
siteId: Scalars['String']['input'];
|
|
136162
136609
|
userQuery: Scalars['String']['input'];
|
|
136163
136610
|
};
|
|
136611
|
+
export declare type KnowledgeDiscoveryQueryApiSingleUserArgs = {
|
|
136612
|
+
accountId: Scalars['String']['input'];
|
|
136613
|
+
requestingUserId: Scalars['String']['input'];
|
|
136614
|
+
tenantId: Scalars['String']['input'];
|
|
136615
|
+
};
|
|
136164
136616
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
136165
136617
|
locale: Scalars['String']['input'];
|
|
136166
136618
|
metadata?: InputMaybe<KnowledgeDiscoveryMetadata>;
|
|
@@ -136333,6 +136785,7 @@ export declare type KnowledgeDiscoverySearchUsers = {
|
|
|
136333
136785
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUserCard>>>;
|
|
136334
136786
|
};
|
|
136335
136787
|
export declare type KnowledgeDiscoverySearchUsersResult = KnowledgeDiscoverySearchUsers | QueryError;
|
|
136788
|
+
export declare type KnowledgeDiscoverySingleUserResult = KnowledgeDiscoveryUserPayload | QueryError;
|
|
136336
136789
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
136337
136790
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
136338
136791
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -136441,6 +136894,31 @@ export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
|
136441
136894
|
id: Scalars['ID']['output'];
|
|
136442
136895
|
user?: Maybe<User>;
|
|
136443
136896
|
};
|
|
136897
|
+
export declare type KnowledgeDiscoveryUserManager = {
|
|
136898
|
+
__typename?: 'KnowledgeDiscoveryUserManager';
|
|
136899
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
136900
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
136901
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
136902
|
+
};
|
|
136903
|
+
export declare type KnowledgeDiscoveryUserPayload = {
|
|
136904
|
+
__typename?: 'KnowledgeDiscoveryUserPayload';
|
|
136905
|
+
user?: Maybe<KnowledgeDiscoveryUserProfile>;
|
|
136906
|
+
};
|
|
136907
|
+
export declare type KnowledgeDiscoveryUserProfile = {
|
|
136908
|
+
__typename?: 'KnowledgeDiscoveryUserProfile';
|
|
136909
|
+
accountStatus?: Maybe<Scalars['String']['output']>;
|
|
136910
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
136911
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
136912
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
136913
|
+
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
136914
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
136915
|
+
manager?: Maybe<KnowledgeDiscoveryUserManager>;
|
|
136916
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
136917
|
+
organization?: Maybe<Scalars['String']['output']>;
|
|
136918
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
136919
|
+
thirdPartyIntegrations?: Maybe<Array<KnowledgeDiscoveryThirdPartyIntegration>>;
|
|
136920
|
+
zoneInfo?: Maybe<Scalars['String']['output']>;
|
|
136921
|
+
};
|
|
136444
136922
|
export declare type KnowledgeDiscoveryUserSearchResult = KnowledgeDiscoveryUsers | QueryError;
|
|
136445
136923
|
export declare type KnowledgeDiscoveryUsers = {
|
|
136446
136924
|
__typename?: 'KnowledgeDiscoveryUsers';
|
|
@@ -143420,6 +143898,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
143420
143898
|
unsetCostBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
143421
143899
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
143422
143900
|
updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
|
|
143901
|
+
updateBenefitItemName?: Maybe<MercuryUpdateBenefitItemPayload>;
|
|
143423
143902
|
updateBenefitPeriodValueAmount?: Maybe<MercuryUpdateBenefitPeriodValueAmountPayload>;
|
|
143424
143903
|
updateBenefitTypeName?: Maybe<MercuryUpdateBenefitTypePayload>;
|
|
143425
143904
|
updateCostItemClassification?: Maybe<MercuryUpdateCostItemClassificationPayload>;
|
|
@@ -143506,6 +143985,9 @@ export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
|
143506
143985
|
export declare type MercuryFundsMutationApiUpdateBenefitItemBenefitTypeArgs = {
|
|
143507
143986
|
input: MercuryUpdateBenefitItemBenefitTypeInput;
|
|
143508
143987
|
};
|
|
143988
|
+
export declare type MercuryFundsMutationApiUpdateBenefitItemNameArgs = {
|
|
143989
|
+
input: MercuryUpdateBenefitItemNameInput;
|
|
143990
|
+
};
|
|
143509
143991
|
export declare type MercuryFundsMutationApiUpdateBenefitPeriodValueAmountArgs = {
|
|
143510
143992
|
input: MercuryUpdateBenefitPeriodValueAmountInput;
|
|
143511
143993
|
};
|
|
@@ -144482,6 +144964,7 @@ export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
|
|
|
144482
144964
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
144483
144965
|
externalOwner?: Maybe<MercuryExternalOwner>;
|
|
144484
144966
|
id: Scalars['ID']['output'];
|
|
144967
|
+
mercuryCustomFields?: Maybe<Array<MercuryCustomField>>;
|
|
144485
144968
|
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
144486
144969
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
144487
144970
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -145364,12 +145847,17 @@ export declare type MercuryRisk = Node & {
|
|
|
145364
145847
|
name: Scalars['String']['output'];
|
|
145365
145848
|
owner?: Maybe<User>;
|
|
145366
145849
|
riskLinks?: Maybe<Array<MercuryRiskLink>>;
|
|
145850
|
+
riskStatusUpdates?: Maybe<MercuryRiskStatusUpdateConnection>;
|
|
145367
145851
|
status?: Maybe<MercuryRiskStatus>;
|
|
145368
145852
|
statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
|
|
145369
145853
|
submitter?: Maybe<User>;
|
|
145370
145854
|
targetDate?: Maybe<MercuryRiskTargetDate>;
|
|
145371
145855
|
updatedDate: Scalars['String']['output'];
|
|
145372
145856
|
};
|
|
145857
|
+
export declare type MercuryRiskRiskStatusUpdatesArgs = {
|
|
145858
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
145859
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145860
|
+
};
|
|
145373
145861
|
export declare type MercuryRiskConnection = {
|
|
145374
145862
|
__typename?: 'MercuryRiskConnection';
|
|
145375
145863
|
edges?: Maybe<Array<Maybe<MercuryRiskEdge>>>;
|
|
@@ -145437,6 +145925,28 @@ export declare type MercuryRiskStatusTransitions = {
|
|
|
145437
145925
|
__typename?: 'MercuryRiskStatusTransitions';
|
|
145438
145926
|
available: Array<MercuryRiskStatusTransition>;
|
|
145439
145927
|
};
|
|
145928
|
+
export declare type MercuryRiskStatusUpdate = Node & {
|
|
145929
|
+
__typename?: 'MercuryRiskStatusUpdate';
|
|
145930
|
+
createdBy?: Maybe<User>;
|
|
145931
|
+
createdDate: Scalars['String']['output'];
|
|
145932
|
+
id: Scalars['ID']['output'];
|
|
145933
|
+
newStatus?: Maybe<MercuryRiskStatus>;
|
|
145934
|
+
previousStatus?: Maybe<MercuryRiskStatus>;
|
|
145935
|
+
riskId: Scalars['ID']['output'];
|
|
145936
|
+
updatedBy?: Maybe<User>;
|
|
145937
|
+
updatedDate: Scalars['String']['output'];
|
|
145938
|
+
};
|
|
145939
|
+
export declare type MercuryRiskStatusUpdateConnection = {
|
|
145940
|
+
__typename?: 'MercuryRiskStatusUpdateConnection';
|
|
145941
|
+
edges?: Maybe<Array<Maybe<MercuryRiskStatusUpdateEdge>>>;
|
|
145942
|
+
pageInfo: PageInfo;
|
|
145943
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
145944
|
+
};
|
|
145945
|
+
export declare type MercuryRiskStatusUpdateEdge = {
|
|
145946
|
+
__typename?: 'MercuryRiskStatusUpdateEdge';
|
|
145947
|
+
cursor: Scalars['String']['output'];
|
|
145948
|
+
node?: Maybe<MercuryRiskStatusUpdate>;
|
|
145949
|
+
};
|
|
145440
145950
|
export declare type MercuryRiskTargetDate = {
|
|
145441
145951
|
__typename?: 'MercuryRiskTargetDate';
|
|
145442
145952
|
targetDate: Scalars['String']['output'];
|
|
@@ -145519,6 +146029,7 @@ export declare type MercuryRisksQueryApi = {
|
|
|
145519
146029
|
risk?: Maybe<MercuryRisk>;
|
|
145520
146030
|
riskImpactValues: Array<MercuryRiskImpact>;
|
|
145521
146031
|
riskLikelihoodValues: Array<MercuryRiskLikelihood>;
|
|
146032
|
+
riskStatusUpdatesByIds?: Maybe<Array<Maybe<MercuryRiskStatusUpdate>>>;
|
|
145522
146033
|
riskStatuses: Array<MercuryRiskStatus>;
|
|
145523
146034
|
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
145524
146035
|
risksSearch?: Maybe<MercuryRiskConnection>;
|
|
@@ -145532,6 +146043,9 @@ export declare type MercuryRisksQueryApiRiskImpactValuesArgs = {
|
|
|
145532
146043
|
export declare type MercuryRisksQueryApiRiskLikelihoodValuesArgs = {
|
|
145533
146044
|
cloudId: Scalars['ID']['input'];
|
|
145534
146045
|
};
|
|
146046
|
+
export declare type MercuryRisksQueryApiRiskStatusUpdatesByIdsArgs = {
|
|
146047
|
+
ids: Array<Scalars['ID']['input']>;
|
|
146048
|
+
};
|
|
145535
146049
|
export declare type MercuryRisksQueryApiRiskStatusesArgs = {
|
|
145536
146050
|
cloudId: Scalars['ID']['input'];
|
|
145537
146051
|
};
|
|
@@ -146299,6 +146813,16 @@ export declare type MercuryUpdateBenefitItemBenefitTypePayload = Payload & {
|
|
|
146299
146813
|
success: Scalars['Boolean']['output'];
|
|
146300
146814
|
updatedBenefitItem?: Maybe<MercuryBenefitItem>;
|
|
146301
146815
|
};
|
|
146816
|
+
export declare type MercuryUpdateBenefitItemNameInput = {
|
|
146817
|
+
id: Scalars['ID']['input'];
|
|
146818
|
+
name: Scalars['String']['input'];
|
|
146819
|
+
};
|
|
146820
|
+
export declare type MercuryUpdateBenefitItemPayload = Payload & {
|
|
146821
|
+
__typename?: 'MercuryUpdateBenefitItemPayload';
|
|
146822
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146823
|
+
success: Scalars['Boolean']['output'];
|
|
146824
|
+
updatedBenefitItem?: Maybe<MercuryBenefitItem>;
|
|
146825
|
+
};
|
|
146302
146826
|
export declare type MercuryUpdateBenefitPeriodValueAmountInput = {
|
|
146303
146827
|
amount: Scalars['String']['input'];
|
|
146304
146828
|
id: Scalars['ID']['input'];
|
|
@@ -147204,6 +147728,7 @@ export declare type Mutation = {
|
|
|
147204
147728
|
assetsDM_objectAttributeDelete?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
147205
147729
|
assetsDM_objectAttributeUpdate?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
147206
147730
|
assetsDM_resetDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
147731
|
+
assetsDM_triggerCloudFetch?: Maybe<AssetsDmTriggerCloudFetchResponse>;
|
|
147207
147732
|
assetsDM_updateAttributePriority?: Maybe<AssetsDmUpdateAttributePriorityPayload>;
|
|
147208
147733
|
assetsDM_updateAttributePriorityOrder?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
147209
147734
|
assetsDM_updateCleansingReason?: Maybe<AssetsDmUpdateCleansingReasonResponse>;
|
|
@@ -147318,6 +147843,7 @@ export declare type Mutation = {
|
|
|
147318
147843
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
147319
147844
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
147320
147845
|
confluence_acceptAnswer?: Maybe<ConfluenceAcceptAnswerPayload>;
|
|
147846
|
+
confluence_addInlineReaction?: Maybe<ConfluenceInlineReactionPayload>;
|
|
147321
147847
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
147322
147848
|
confluence_addTrack?: Maybe<ConfluenceAddTrackPayload>;
|
|
147323
147849
|
confluence_bulkAssignRolesForCombinationId?: Maybe<ConfluencePermissionTransitionBulkAssignRolesPayload>;
|
|
@@ -147372,6 +147898,7 @@ export declare type Mutation = {
|
|
|
147372
147898
|
confluence_nbmRemoveTransformerFromConfig?: Maybe<ConfluenceNbmRemoveTransformerFromConfigPayload>;
|
|
147373
147899
|
confluence_nbmRetryPerfScanLongTask?: Maybe<ConfluenceNbmRetryPerfScanLongTaskPayload>;
|
|
147374
147900
|
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
147901
|
+
confluence_nbmRetryTransformationLongTask?: Maybe<ConfluenceNbmRetryTransformationLongTaskPayload>;
|
|
147375
147902
|
confluence_nbmSetChainReadyForTransformation?: Maybe<ConfluenceNbmSetChainReadyForTransformationPayload>;
|
|
147376
147903
|
confluence_nbmStartPerfScanLongTask?: Maybe<ConfluenceNbmStartPerfScanLongTaskPayload>;
|
|
147377
147904
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
@@ -147383,7 +147910,9 @@ export declare type Mutation = {
|
|
|
147383
147910
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
147384
147911
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
147385
147912
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
147913
|
+
confluence_refreshSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
|
|
147386
147914
|
confluence_removeContentApprovalReviewer?: Maybe<ConfluenceContentApprovalPayload>;
|
|
147915
|
+
confluence_removeInlineReaction?: Maybe<ConfluenceInlineReactionPayload>;
|
|
147387
147916
|
confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
|
|
147388
147917
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
147389
147918
|
confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
|
|
@@ -147630,6 +148159,7 @@ export declare type Mutation = {
|
|
|
147630
148159
|
followUser?: Maybe<FollowUserPayload>;
|
|
147631
148160
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
147632
148161
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
148162
|
+
globalApp_signForgeContextTokens?: Maybe<GlobalAppSignForgeContextTokensResponse>;
|
|
147633
148163
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
147634
148164
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
147635
148165
|
goals_addView?: Maybe<TownsquareGoalsAddViewPayload>;
|
|
@@ -147773,6 +148303,7 @@ export declare type Mutation = {
|
|
|
147773
148303
|
jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
|
|
147774
148304
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
147775
148305
|
jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
148306
|
+
jira_setAgentSessionsIsPlanModeEnabled?: Maybe<JiraSetAgentSessionIsPlanModeEnabledResponsePayload>;
|
|
147776
148307
|
jira_setBacklogViewAssigneeFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
147777
148308
|
jira_setBacklogViewBoardNameToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
147778
148309
|
jira_setBacklogViewCardDensity?: Maybe<JiraSetBacklogViewPayload>;
|
|
@@ -147848,6 +148379,7 @@ export declare type Mutation = {
|
|
|
147848
148379
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
147849
148380
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
147850
148381
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
148382
|
+
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
147851
148383
|
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
147852
148384
|
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
147853
148385
|
jpdViewsService_createGlobalViewV2?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
@@ -148116,6 +148648,8 @@ export declare type Mutation = {
|
|
|
148116
148648
|
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
148117
148649
|
spf_removePlanOwner?: Maybe<SpfRemovePlanOwnerPayload>;
|
|
148118
148650
|
spf_revokeEntityPermission?: Maybe<SpfRevokeEntityPermissionPayload>;
|
|
148651
|
+
spf_starItem?: Maybe<SpfStarItemPayload>;
|
|
148652
|
+
spf_unstarItem?: Maybe<SpfUnstarItemPayload>;
|
|
148119
148653
|
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
148120
148654
|
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
148121
148655
|
spf_updateAskImpactedWork?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -148772,6 +149306,7 @@ export declare type MutationAssetsDm_DataSourceArgs = {
|
|
|
148772
149306
|
cloudId: Scalars['ID']['input'];
|
|
148773
149307
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
148774
149308
|
input: AssetsDmDataSourceInput;
|
|
149309
|
+
isTestConnectionRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148775
149310
|
jobId?: InputMaybe<Scalars['String']['input']>;
|
|
148776
149311
|
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
148777
149312
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -148923,6 +149458,11 @@ export declare type MutationAssetsDm_ResetDataSourceMappingArgs = {
|
|
|
148923
149458
|
dataSourceId: Scalars['ID']['input'];
|
|
148924
149459
|
workspaceId: Scalars['ID']['input'];
|
|
148925
149460
|
};
|
|
149461
|
+
export declare type MutationAssetsDm_TriggerCloudFetchArgs = {
|
|
149462
|
+
cloudId: Scalars['ID']['input'];
|
|
149463
|
+
jobId: Scalars['ID']['input'];
|
|
149464
|
+
workspaceId: Scalars['ID']['input'];
|
|
149465
|
+
};
|
|
148926
149466
|
export declare type MutationAssetsDm_UpdateAttributePriorityArgs = {
|
|
148927
149467
|
cloudId: Scalars['ID']['input'];
|
|
148928
149468
|
input: AssetsDmUpdateAttributePriorityInput;
|
|
@@ -149281,6 +149821,10 @@ export declare type MutationConfluence_AcceptAnswerArgs = {
|
|
|
149281
149821
|
cloudId: Scalars['ID']['input'];
|
|
149282
149822
|
input: ConfluenceAcceptAnswerInput;
|
|
149283
149823
|
};
|
|
149824
|
+
export declare type MutationConfluence_AddInlineReactionArgs = {
|
|
149825
|
+
cloudId: Scalars['ID']['input'];
|
|
149826
|
+
input: ConfluenceAddInlineReactionInput;
|
|
149827
|
+
};
|
|
149284
149828
|
export declare type MutationConfluence_AddReactionArgs = {
|
|
149285
149829
|
cloudId: Scalars['ID']['input'];
|
|
149286
149830
|
input: ConfluenceReactionInput;
|
|
@@ -149494,6 +150038,10 @@ export declare type MutationConfluence_NbmRetryScanLongTaskArgs = {
|
|
|
149494
150038
|
cloudId: Scalars['ID']['input'];
|
|
149495
150039
|
input: ConfluenceNbmRetryScanLongTaskInput;
|
|
149496
150040
|
};
|
|
150041
|
+
export declare type MutationConfluence_NbmRetryTransformationLongTaskArgs = {
|
|
150042
|
+
cloudId: Scalars['ID']['input'];
|
|
150043
|
+
input: ConfluenceNbmRetryTransformationLongTaskInput;
|
|
150044
|
+
};
|
|
149497
150045
|
export declare type MutationConfluence_NbmSetChainReadyForTransformationArgs = {
|
|
149498
150046
|
cloudId: Scalars['ID']['input'];
|
|
149499
150047
|
input: ConfluenceNbmSetChainReadyForTransformationInput;
|
|
@@ -149539,10 +150087,18 @@ export declare type MutationConfluence_PublishDraftWithApprovalReviewTransferArg
|
|
|
149539
150087
|
contentId: Scalars['ID']['input'];
|
|
149540
150088
|
contentStatus: GraphQlContentStatus;
|
|
149541
150089
|
};
|
|
150090
|
+
export declare type MutationConfluence_RefreshSmartSpaceOverviewArgs = {
|
|
150091
|
+
cloudId: Scalars['ID']['input'];
|
|
150092
|
+
input: ConfluenceRefreshSmartSpaceOverviewInput;
|
|
150093
|
+
};
|
|
149542
150094
|
export declare type MutationConfluence_RemoveContentApprovalReviewerArgs = {
|
|
149543
150095
|
cloudId: Scalars['ID']['input'];
|
|
149544
150096
|
removeContentApprovalReviewerInput: ConfluenceRemoveContentApprovalReviewerInput;
|
|
149545
150097
|
};
|
|
150098
|
+
export declare type MutationConfluence_RemoveInlineReactionArgs = {
|
|
150099
|
+
cloudId: Scalars['ID']['input'];
|
|
150100
|
+
input: ConfluenceRemoveInlineReactionInput;
|
|
150101
|
+
};
|
|
149546
150102
|
export declare type MutationConfluence_RemoveTrackArgs = {
|
|
149547
150103
|
cloudId: Scalars['ID']['input'];
|
|
149548
150104
|
input: ConfluenceTrackInput;
|
|
@@ -150415,6 +150971,9 @@ export declare type MutationGeneratePermsReportArgs = {
|
|
|
150415
150971
|
id: Scalars['ID']['input'];
|
|
150416
150972
|
targetType: PermsReportTargetType;
|
|
150417
150973
|
};
|
|
150974
|
+
export declare type MutationGlobalApp_SignForgeContextTokensArgs = {
|
|
150975
|
+
input: GlobalAppSignForgeContextTokensInput;
|
|
150976
|
+
};
|
|
150418
150977
|
export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
150419
150978
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
150420
150979
|
};
|
|
@@ -150845,6 +151404,10 @@ export declare type MutationJira_ScheduleTimelineItemArgs = {
|
|
|
150845
151404
|
cloudId: Scalars['ID']['input'];
|
|
150846
151405
|
input: JiraScheduleTimelineItemInput;
|
|
150847
151406
|
};
|
|
151407
|
+
export declare type MutationJira_SetAgentSessionsIsPlanModeEnabledArgs = {
|
|
151408
|
+
cloudId: Scalars['ID']['input'];
|
|
151409
|
+
isPlanModeEnabled: Scalars['Boolean']['input'];
|
|
151410
|
+
};
|
|
150848
151411
|
export declare type MutationJira_SetBacklogViewAssigneeFiltersArgs = {
|
|
150849
151412
|
input: JiraSetBacklogViewStringFiltersInput;
|
|
150850
151413
|
};
|
|
@@ -151084,6 +151647,9 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
151084
151647
|
export declare type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
151085
151648
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
151086
151649
|
};
|
|
151650
|
+
export declare type MutationJpdViewsService_CloneGlobalViewArgs = {
|
|
151651
|
+
input: JpdViewsServiceCloneGlobalViewInput;
|
|
151652
|
+
};
|
|
151087
151653
|
export declare type MutationJpdViewsService_CloneViewIntoGlobalArgs = {
|
|
151088
151654
|
input: JpdViewsServiceCloneViewIntoGlobalInput;
|
|
151089
151655
|
};
|
|
@@ -151166,6 +151732,7 @@ export declare type MutationJsmConversation_UpdateSettingsArgs = {
|
|
|
151166
151732
|
export declare type MutationKitsune_CreateCustomerArgs = {
|
|
151167
151733
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
151168
151734
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
151735
|
+
organizationAri?: InputMaybe<Scalars['ID']['input']>;
|
|
151169
151736
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
151170
151737
|
workspaceAri: Scalars['ID']['input'];
|
|
151171
151738
|
};
|
|
@@ -151272,8 +151839,9 @@ export declare type MutationKitsune_UpdateInsightArgs = {
|
|
|
151272
151839
|
};
|
|
151273
151840
|
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
151274
151841
|
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
151275
|
-
id
|
|
151842
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
151276
151843
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
151844
|
+
organizationAri?: InputMaybe<Scalars['ID']['input']>;
|
|
151277
151845
|
workspaceAri: Scalars['ID']['input'];
|
|
151278
151846
|
};
|
|
151279
151847
|
export declare type MutationKitsune_UpdateSectionArgs = {
|
|
@@ -151966,6 +152534,12 @@ export declare type MutationSpf_RemovePlanOwnerArgs = {
|
|
|
151966
152534
|
export declare type MutationSpf_RevokeEntityPermissionArgs = {
|
|
151967
152535
|
input: SpfEntityPermissionInput;
|
|
151968
152536
|
};
|
|
152537
|
+
export declare type MutationSpf_StarItemArgs = {
|
|
152538
|
+
input: SpfStarItemInput;
|
|
152539
|
+
};
|
|
152540
|
+
export declare type MutationSpf_UnstarItemArgs = {
|
|
152541
|
+
input: SpfUnstarItemInput;
|
|
152542
|
+
};
|
|
151969
152543
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
151970
152544
|
input: SpfUpdateAskCommentDataInput;
|
|
151971
152545
|
};
|
|
@@ -155799,6 +156373,7 @@ export declare type Query = {
|
|
|
155799
156373
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
155800
156374
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
155801
156375
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
156376
|
+
confluence_activeInlineData?: Maybe<ConfluenceActiveInlineData>;
|
|
155802
156377
|
confluence_analyticsTimeseries?: Maybe<ConfluenceAnalyticsTimeseriesResult>;
|
|
155803
156378
|
confluence_answer?: Maybe<ConfluenceAnswer>;
|
|
155804
156379
|
confluence_answers?: Maybe<Array<Maybe<ConfluenceAnswer>>>;
|
|
@@ -155849,6 +156424,7 @@ export declare type Query = {
|
|
|
155849
156424
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
155850
156425
|
confluence_getAudioPreference?: Maybe<ConfluenceAudioPreference>;
|
|
155851
156426
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
156427
|
+
confluence_getCutoverRoleConfig?: Maybe<ConfluenceCutoverRoleConfig>;
|
|
155852
156428
|
confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
|
|
155853
156429
|
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
155854
156430
|
confluence_getSmartContentFeatures?: Maybe<Array<Maybe<SmartPageFeatures>>>;
|
|
@@ -155858,6 +156434,7 @@ export declare type Query = {
|
|
|
155858
156434
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
155859
156435
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
155860
156436
|
confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
|
|
156437
|
+
confluence_isGlobalAnonymousEnforcedForAllSpaces?: Maybe<Scalars['Boolean']['output']>;
|
|
155861
156438
|
confluence_isGlobalAnonymousEnforcementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155862
156439
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
155863
156440
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
@@ -156217,6 +156794,7 @@ export declare type Query = {
|
|
|
156217
156794
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
156218
156795
|
jiraReleases?: Maybe<JiraReleases>;
|
|
156219
156796
|
jiraServers?: Maybe<JiraServersResult>;
|
|
156797
|
+
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
156220
156798
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
156221
156799
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
156222
156800
|
jira_backlogViewCardListsByIds?: Maybe<Array<JiraBacklogViewCardList>>;
|
|
@@ -156493,7 +157071,7 @@ export declare type Query = {
|
|
|
156493
157071
|
radar_viewsSearch?: Maybe<RadarViewConnection>;
|
|
156494
157072
|
radar_workerByAri?: Maybe<RadarWorker>;
|
|
156495
157073
|
radar_workersByAris?: Maybe<Array<RadarWorker>>;
|
|
156496
|
-
radar_workspace
|
|
157074
|
+
radar_workspace?: Maybe<RadarWorkspace>;
|
|
156497
157075
|
radar_worktypeAllocations?: Maybe<Array<Maybe<RadarWorktypeAllocation>>>;
|
|
156498
157076
|
radar_worktypeAllocationsAveragesByEntity?: Maybe<Array<RadarWorkAllocationUnit>>;
|
|
156499
157077
|
reactedUsers?: Maybe<ReactedUsersResponse>;
|
|
@@ -157942,6 +158520,7 @@ export declare type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
157942
158520
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
157943
158521
|
cloudId: Scalars['ID']['input'];
|
|
157944
158522
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158523
|
+
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
157945
158524
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
157946
158525
|
};
|
|
157947
158526
|
export declare type QueryAssetsVertical_InsightDetailsArgs = {
|
|
@@ -158451,6 +159030,10 @@ export declare type QueryConfluenceUsersArgs = {
|
|
|
158451
159030
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
158452
159031
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
158453
159032
|
};
|
|
159033
|
+
export declare type QueryConfluence_ActiveInlineDataArgs = {
|
|
159034
|
+
cloudId: Scalars['ID']['input'];
|
|
159035
|
+
contentId: Scalars['ID']['input'];
|
|
159036
|
+
};
|
|
158454
159037
|
export declare type QueryConfluence_AnalyticsTimeseriesArgs = {
|
|
158455
159038
|
cloudId: Scalars['ID']['input'];
|
|
158456
159039
|
endTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158710,6 +159293,9 @@ export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs =
|
|
|
158710
159293
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158711
159294
|
spaceId: Scalars['ID']['input'];
|
|
158712
159295
|
};
|
|
159296
|
+
export declare type QueryConfluence_GetCutoverRoleConfigArgs = {
|
|
159297
|
+
cloudId: Scalars['ID']['input'];
|
|
159298
|
+
};
|
|
158713
159299
|
export declare type QueryConfluence_GetLatestPendingRequestsArgs = {
|
|
158714
159300
|
cloudId: Scalars['ID']['input'];
|
|
158715
159301
|
contentId: Scalars['ID']['input'];
|
|
@@ -158748,6 +159334,9 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
|
|
|
158748
159334
|
export declare type QueryConfluence_ImportsAllArgs = {
|
|
158749
159335
|
cloudID: Scalars['ID']['input'];
|
|
158750
159336
|
};
|
|
159337
|
+
export declare type QueryConfluence_IsGlobalAnonymousEnforcedForAllSpacesArgs = {
|
|
159338
|
+
cloudId: Scalars['ID']['input'];
|
|
159339
|
+
};
|
|
158751
159340
|
export declare type QueryConfluence_IsGlobalAnonymousEnforcementEnabledArgs = {
|
|
158752
159341
|
cloudId: Scalars['ID']['input'];
|
|
158753
159342
|
};
|
|
@@ -160308,6 +160897,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
160308
160897
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160309
160898
|
id: Scalars['ID']['input'];
|
|
160310
160899
|
};
|
|
160900
|
+
export declare type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
|
|
160901
|
+
cloudId: Scalars['ID']['input'];
|
|
160902
|
+
};
|
|
160311
160903
|
export declare type QueryJira_BacklogArgs = {
|
|
160312
160904
|
activeQuickFilters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
160313
160905
|
boardId: Scalars['ID']['input'];
|
|
@@ -163055,6 +163647,7 @@ export declare enum RateLimitingCurrency {
|
|
|
163055
163647
|
KitsuneCsv = "KITSUNE_CSV",
|
|
163056
163648
|
KitsuneCustomer = "KITSUNE_CUSTOMER",
|
|
163057
163649
|
KitsuneFeedback = "KITSUNE_FEEDBACK",
|
|
163650
|
+
KitsuneFeedbackList = "KITSUNE_FEEDBACK_LIST",
|
|
163058
163651
|
KitsuneInsight = "KITSUNE_INSIGHT",
|
|
163059
163652
|
KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
|
|
163060
163653
|
PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
|
|
@@ -164567,6 +165160,7 @@ export declare enum Scope {
|
|
|
164567
165160
|
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
164568
165161
|
ReadConfluencePage = "READ_CONFLUENCE_PAGE",
|
|
164569
165162
|
ReadConfluenceRelation = "READ_CONFLUENCE_RELATION",
|
|
165163
|
+
ReadConfluenceSlide = "READ_CONFLUENCE_SLIDE",
|
|
164570
165164
|
ReadConfluenceSpace = "READ_CONFLUENCE_SPACE",
|
|
164571
165165
|
ReadConfluenceSpacePermission = "READ_CONFLUENCE_SPACE_PERMISSION",
|
|
164572
165166
|
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
@@ -165597,6 +166191,10 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
165597
166191
|
connectorProduct?: Maybe<Scalars['String']['output']>;
|
|
165598
166192
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
165599
166193
|
containerName?: Maybe<Scalars['String']['output']>;
|
|
166194
|
+
customPropertiesDate?: Maybe<Scalars['String']['output']>;
|
|
166195
|
+
customPropertiesKeyword?: Maybe<Scalars['String']['output']>;
|
|
166196
|
+
customPropertiesNumber?: Maybe<Scalars['String']['output']>;
|
|
166197
|
+
customPropertiesTextSource?: Maybe<Scalars['String']['output']>;
|
|
165600
166198
|
description: Scalars['String']['output'];
|
|
165601
166199
|
entity?: Maybe<SearchResultEntity>;
|
|
165602
166200
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
@@ -165619,6 +166217,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
165619
166217
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
165620
166218
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
165621
166219
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
166220
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
165622
166221
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
165623
166222
|
tabs?: Maybe<Array<SearchResultGraphTab>>;
|
|
165624
166223
|
title: Scalars['String']['output'];
|
|
@@ -187133,6 +187732,16 @@ export declare type SpfRevokeEntityPermissionPayload = Payload & {
|
|
|
187133
187732
|
permission?: Maybe<SpfEntityPermissionEntry>;
|
|
187134
187733
|
success: Scalars['Boolean']['output'];
|
|
187135
187734
|
};
|
|
187735
|
+
export declare type SpfStarItemInput = {
|
|
187736
|
+
cloudId: Scalars['ID']['input'];
|
|
187737
|
+
id: Scalars['ID']['input'];
|
|
187738
|
+
};
|
|
187739
|
+
export declare type SpfStarItemPayload = Payload & {
|
|
187740
|
+
__typename?: 'SpfStarItemPayload';
|
|
187741
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187742
|
+
id: Scalars['ID']['output'];
|
|
187743
|
+
success: Scalars['Boolean']['output'];
|
|
187744
|
+
};
|
|
187136
187745
|
export declare type SpfStarredItem = {
|
|
187137
187746
|
__typename?: 'SpfStarredItem';
|
|
187138
187747
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -187160,6 +187769,16 @@ export declare type SpfStarredItemEdge = {
|
|
|
187160
187769
|
};
|
|
187161
187770
|
export declare type SpfStarredItemResult = QueryError | SpfStarredItem;
|
|
187162
187771
|
export declare type SpfStarredWork = SpfAsk | SpfPlan;
|
|
187772
|
+
export declare type SpfUnstarItemInput = {
|
|
187773
|
+
cloudId: Scalars['ID']['input'];
|
|
187774
|
+
id: Scalars['ID']['input'];
|
|
187775
|
+
};
|
|
187776
|
+
export declare type SpfUnstarItemPayload = Payload & {
|
|
187777
|
+
__typename?: 'SpfUnstarItemPayload';
|
|
187778
|
+
errors?: Maybe<Array<MutationError>>;
|
|
187779
|
+
id: Scalars['ID']['output'];
|
|
187780
|
+
success: Scalars['Boolean']['output'];
|
|
187781
|
+
};
|
|
187163
187782
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
187164
187783
|
data: Scalars['String']['input'];
|
|
187165
187784
|
id: Scalars['ID']['input'];
|
|
@@ -188318,6 +188937,7 @@ export declare type StakeholderCommsPageUptimeDailyAggregate = {
|
|
|
188318
188937
|
maintenanceTime?: Maybe<Scalars['Int']['output']>;
|
|
188319
188938
|
majorOutageTime?: Maybe<Scalars['Int']['output']>;
|
|
188320
188939
|
partialOutageTime?: Maybe<Scalars['Int']['output']>;
|
|
188940
|
+
relatedEvents?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
188321
188941
|
};
|
|
188322
188942
|
export declare type StakeholderCommsPageUptimePercentageResponse = {
|
|
188323
188943
|
__typename?: 'StakeholderCommsPageUptimePercentageResponse';
|
|
@@ -188379,6 +188999,7 @@ export declare type StakeholderCommsPublicCommunicationResponse = {
|
|
|
188379
188999
|
__typename?: 'StakeholderCommsPublicCommunicationResponse';
|
|
188380
189000
|
error?: Maybe<Scalars['String']['output']>;
|
|
188381
189001
|
message?: Maybe<Scalars['String']['output']>;
|
|
189002
|
+
suggestionsJson?: Maybe<Scalars['String']['output']>;
|
|
188382
189003
|
title?: Maybe<Scalars['String']['output']>;
|
|
188383
189004
|
};
|
|
188384
189005
|
export declare type StakeholderCommsRemoveCustomDomainInput = {
|
|
@@ -190257,6 +190878,7 @@ export declare enum TeamSearchField {
|
|
|
190257
190878
|
Name = "NAME"
|
|
190258
190879
|
}
|
|
190259
190880
|
export declare type TeamSearchFilter = {
|
|
190881
|
+
customFieldValues?: InputMaybe<TeamCustomFieldValuesFilter>;
|
|
190260
190882
|
membership?: InputMaybe<TeamMembershipFilter>;
|
|
190261
190883
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
190262
190884
|
teamTypes?: InputMaybe<TeamTypeFilter>;
|
|
@@ -190378,8 +191000,9 @@ export declare type TeamTypeEdge = {
|
|
|
190378
191000
|
export declare type TeamTypeFilter = {
|
|
190379
191001
|
teamTypeIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
190380
191002
|
};
|
|
190381
|
-
export declare type TeamTypeLevelDefaultPermissionEntity = {
|
|
191003
|
+
export declare type TeamTypeLevelDefaultPermissionEntity = TeamTypePermissionAssignedEntity & {
|
|
190382
191004
|
__typename?: 'TeamTypeLevelDefaultPermissionEntity';
|
|
191005
|
+
id: Scalars['ID']['output'];
|
|
190383
191006
|
type: TeamTypeDefaultPermissionEntity;
|
|
190384
191007
|
};
|
|
190385
191008
|
export declare enum TeamTypeLevelPermission {
|
|
@@ -190402,21 +191025,26 @@ export declare type TeamTypeLevelPermissionInput = {
|
|
|
190402
191025
|
granted: Scalars['Boolean']['input'];
|
|
190403
191026
|
permission: TeamTypeLevelPermission;
|
|
190404
191027
|
};
|
|
190405
|
-
export declare type TeamTypePermissionAssignedEntity =
|
|
191028
|
+
export declare type TeamTypePermissionAssignedEntity = {
|
|
191029
|
+
id: Scalars['ID']['output'];
|
|
191030
|
+
};
|
|
190406
191031
|
export declare type TeamTypePermissionAssignedEntityInput = {
|
|
190407
191032
|
entityId: Scalars['ID']['input'];
|
|
190408
191033
|
permissions: Array<TeamTypeLevelPermissionInput>;
|
|
190409
191034
|
};
|
|
190410
|
-
export declare type TeamTypePermissionAssignedGroup = {
|
|
191035
|
+
export declare type TeamTypePermissionAssignedGroup = TeamTypePermissionAssignedEntity & {
|
|
190411
191036
|
__typename?: 'TeamTypePermissionAssignedGroup';
|
|
190412
191037
|
group?: Maybe<IdentityGroup>;
|
|
191038
|
+
id: Scalars['ID']['output'];
|
|
190413
191039
|
};
|
|
190414
|
-
export declare type TeamTypePermissionAssignedTeam = {
|
|
191040
|
+
export declare type TeamTypePermissionAssignedTeam = TeamTypePermissionAssignedEntity & {
|
|
190415
191041
|
__typename?: 'TeamTypePermissionAssignedTeam';
|
|
191042
|
+
id: Scalars['ID']['output'];
|
|
190416
191043
|
team?: Maybe<TeamV2>;
|
|
190417
191044
|
};
|
|
190418
|
-
export declare type TeamTypePermissionAssignedUser = {
|
|
191045
|
+
export declare type TeamTypePermissionAssignedUser = TeamTypePermissionAssignedEntity & {
|
|
190419
191046
|
__typename?: 'TeamTypePermissionAssignedUser';
|
|
191047
|
+
id: Scalars['ID']['output'];
|
|
190420
191048
|
user?: Maybe<User>;
|
|
190421
191049
|
};
|
|
190422
191050
|
export declare type TeamTypePermissionDelegationConnection = {
|
|
@@ -190730,7 +191358,6 @@ export declare type ThirdPartyUser = LocalizationContext & {
|
|
|
190730
191358
|
__typename?: 'ThirdPartyUser';
|
|
190731
191359
|
accountId: Scalars['ID']['output'];
|
|
190732
191360
|
accountStatus: AccountStatus;
|
|
190733
|
-
atlassianUser?: Maybe<User>;
|
|
190734
191361
|
canonicalAccountId: Scalars['ID']['output'];
|
|
190735
191362
|
createdAt: Scalars['DateTime']['output'];
|
|
190736
191363
|
email?: Maybe<Scalars['String']['output']>;
|
|
@@ -191284,6 +191911,7 @@ export declare type TownsquareCreateGoalHasJiraAlignProjectPayload = {
|
|
|
191284
191911
|
success: Scalars['Boolean']['output'];
|
|
191285
191912
|
};
|
|
191286
191913
|
export declare type TownsquareCreateGoalInput = {
|
|
191914
|
+
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
191287
191915
|
containerId: Scalars['String']['input'];
|
|
191288
191916
|
goalTypeAri?: InputMaybe<Scalars['String']['input']>;
|
|
191289
191917
|
name: Scalars['String']['input'];
|
|
@@ -192300,6 +192928,7 @@ export declare type TownsquareGoalsCreateGoalTypePairInput = {
|
|
|
192300
192928
|
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
192301
192929
|
};
|
|
192302
192930
|
export declare type TownsquareGoalsCreateInput = {
|
|
192931
|
+
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
192303
192932
|
containerId: Scalars['ID']['input'];
|
|
192304
192933
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
192305
192934
|
goalTypeId: Scalars['ID']['input'];
|
|
@@ -197502,6 +198131,7 @@ export declare type TrelloMemberBoardStarsArgs = {
|
|
|
197502
198131
|
};
|
|
197503
198132
|
export declare type TrelloMemberBoardsArgs = {
|
|
197504
198133
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
198134
|
+
filter?: InputMaybe<TrelloMemberBoardFilter>;
|
|
197505
198135
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197506
198136
|
};
|
|
197507
198137
|
export declare type TrelloMemberNotificationsArgs = {
|
|
@@ -197550,6 +198180,12 @@ export declare type TrelloMemberBoardEdge = {
|
|
|
197550
198180
|
cursor: Scalars['String']['output'];
|
|
197551
198181
|
node?: Maybe<TrelloBoard>;
|
|
197552
198182
|
};
|
|
198183
|
+
export declare type TrelloMemberBoardFilter = {
|
|
198184
|
+
filterValue?: InputMaybe<TrelloMemberBoardFilterValue>;
|
|
198185
|
+
};
|
|
198186
|
+
export declare enum TrelloMemberBoardFilterValue {
|
|
198187
|
+
All = "ALL"
|
|
198188
|
+
}
|
|
197553
198189
|
export declare type TrelloMemberBoardStarConnection = {
|
|
197554
198190
|
__typename?: 'TrelloMemberBoardStarConnection';
|
|
197555
198191
|
edges?: Maybe<Array<TrelloMemberBoardStarEdge>>;
|
|
@@ -198914,6 +199550,7 @@ export declare type TrelloPlannerUpdated = {
|
|
|
198914
199550
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
198915
199551
|
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnectionUpdated>;
|
|
198916
199552
|
dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
|
|
199553
|
+
forceUpdateCardsDueTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
198917
199554
|
id: Scalars['ID']['output'];
|
|
198918
199555
|
onBoardWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateBoardDeleted>>;
|
|
198919
199556
|
onCardWithDueDateDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateDeleted>>;
|
|
@@ -200544,6 +201181,16 @@ export declare type UnifiedAiCategoryPayload = {
|
|
|
200544
201181
|
errors?: Maybe<Array<Maybe<UnifiedAiError>>>;
|
|
200545
201182
|
success: Scalars['Boolean']['output'];
|
|
200546
201183
|
};
|
|
201184
|
+
export declare type UnifiedAiChatResult = {
|
|
201185
|
+
__typename?: 'UnifiedAiChatResult';
|
|
201186
|
+
reply: Scalars['String']['output'];
|
|
201187
|
+
sessionId: Scalars['String']['output'];
|
|
201188
|
+
};
|
|
201189
|
+
export declare type UnifiedAiClearChatResult = {
|
|
201190
|
+
__typename?: 'UnifiedAiClearChatResult';
|
|
201191
|
+
sessionId: Scalars['String']['output'];
|
|
201192
|
+
success: Scalars['Boolean']['output'];
|
|
201193
|
+
};
|
|
200547
201194
|
export declare type UnifiedAiEditHistory = {
|
|
200548
201195
|
__typename?: 'UnifiedAiEditHistory';
|
|
200549
201196
|
edit_reason?: Maybe<Scalars['String']['output']>;
|
|
@@ -200694,12 +201341,23 @@ export declare type UnifiedAiPostsResult = {
|
|
|
200694
201341
|
};
|
|
200695
201342
|
export declare type UnifiedAiQuery = {
|
|
200696
201343
|
__typename?: 'UnifiedAiQuery';
|
|
201344
|
+
chat?: Maybe<UnifiedAiChatResult>;
|
|
201345
|
+
clearChatHistory?: Maybe<UnifiedAiClearChatResult>;
|
|
200697
201346
|
getForumCategories?: Maybe<UnifiedUAiCategoriesResult>;
|
|
200698
201347
|
getPostById?: Maybe<UnifiedUAiPostResult>;
|
|
200699
201348
|
getPostSummarizer?: Maybe<UnifiedUAiPostSummarizerResult>;
|
|
200700
201349
|
getPosts?: Maybe<UnifiedUAiPostsConnectionResult>;
|
|
200701
201350
|
getPostsByAuthorId?: Maybe<UnifiedUAiPostsResult>;
|
|
200702
201351
|
getTagSuggestions?: Maybe<UnifiedUAiTagSuggestionsConnectionResult>;
|
|
201352
|
+
summarizePost?: Maybe<UnifiedUPostSummarizerResult>;
|
|
201353
|
+
};
|
|
201354
|
+
export declare type UnifiedAiQueryChatArgs = {
|
|
201355
|
+
message: Scalars['String']['input'];
|
|
201356
|
+
sessionId: Scalars['String']['input'];
|
|
201357
|
+
systemPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
201358
|
+
};
|
|
201359
|
+
export declare type UnifiedAiQueryClearChatHistoryArgs = {
|
|
201360
|
+
sessionId: Scalars['String']['input'];
|
|
200703
201361
|
};
|
|
200704
201362
|
export declare type UnifiedAiQueryGetPostByIdArgs = {
|
|
200705
201363
|
id: Scalars['String']['input'];
|
|
@@ -200727,6 +201385,10 @@ export declare type UnifiedAiQueryGetTagSuggestionsArgs = {
|
|
|
200727
201385
|
content: Scalars['String']['input'];
|
|
200728
201386
|
title: Scalars['String']['input'];
|
|
200729
201387
|
};
|
|
201388
|
+
export declare type UnifiedAiQuerySummarizePostArgs = {
|
|
201389
|
+
post: UnifiedPostSummarizerInput;
|
|
201390
|
+
prompt?: InputMaybe<UnifiedPostSummarizerPromptInput>;
|
|
201391
|
+
};
|
|
200730
201392
|
export declare type UnifiedAiResponse = UnifiedINode & {
|
|
200731
201393
|
__typename?: 'UnifiedAiResponse';
|
|
200732
201394
|
author?: Maybe<UnifiedAiAccount>;
|
|
@@ -200868,6 +201530,33 @@ export declare type UnifiedAtlassianProductEdge = UnifiedIEdge & {
|
|
|
200868
201530
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
200869
201531
|
node?: Maybe<UnifiedAtlassianProduct>;
|
|
200870
201532
|
};
|
|
201533
|
+
export declare type UnifiedBitbucketPullRequestCount = UnifiedINode & {
|
|
201534
|
+
__typename?: 'UnifiedBitbucketPullRequestCount';
|
|
201535
|
+
count: Scalars['Int']['output'];
|
|
201536
|
+
id: Scalars['ID']['output'];
|
|
201537
|
+
};
|
|
201538
|
+
export declare type UnifiedBitbucketPullRequestCountResult = UnifiedBitbucketPullRequestCount | UnifiedQueryError;
|
|
201539
|
+
export declare type UnifiedBitbucketQuery = {
|
|
201540
|
+
__typename?: 'UnifiedBitbucketQuery';
|
|
201541
|
+
bitbucketPullRequestCount?: Maybe<UnifiedBitbucketPullRequestCountResult>;
|
|
201542
|
+
bitbucketUserInfo?: Maybe<UnifiedBitbucketUserInfoResult>;
|
|
201543
|
+
};
|
|
201544
|
+
export declare type UnifiedBitbucketQueryBitbucketPullRequestCountArgs = {
|
|
201545
|
+
aaid: Scalars['String']['input'];
|
|
201546
|
+
workspaceId: Scalars['String']['input'];
|
|
201547
|
+
};
|
|
201548
|
+
export declare type UnifiedBitbucketUserInfo = UnifiedINode & {
|
|
201549
|
+
__typename?: 'UnifiedBitbucketUserInfo';
|
|
201550
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
201551
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
201552
|
+
createdOn?: Maybe<Scalars['String']['output']>;
|
|
201553
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
201554
|
+
id: Scalars['ID']['output'];
|
|
201555
|
+
nickname?: Maybe<Scalars['String']['output']>;
|
|
201556
|
+
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
201557
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
201558
|
+
};
|
|
201559
|
+
export declare type UnifiedBitbucketUserInfoResult = UnifiedBitbucketUserInfo | UnifiedQueryError;
|
|
200871
201560
|
export declare type UnifiedCacheFieldKey = {
|
|
200872
201561
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
200873
201562
|
requiresHashing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -201616,6 +202305,40 @@ export declare type UnifiedPayload = {
|
|
|
201616
202305
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
201617
202306
|
success: Scalars['Boolean']['output'];
|
|
201618
202307
|
};
|
|
202308
|
+
export declare type UnifiedPostSummarizerCategoryInput = {
|
|
202309
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
202310
|
+
};
|
|
202311
|
+
export declare type UnifiedPostSummarizerInput = {
|
|
202312
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
|
202313
|
+
category?: InputMaybe<UnifiedPostSummarizerCategoryInput>;
|
|
202314
|
+
content?: InputMaybe<Scalars['String']['input']>;
|
|
202315
|
+
like_count?: InputMaybe<Scalars['Int']['input']>;
|
|
202316
|
+
responses?: InputMaybe<Array<InputMaybe<UnifiedPostSummarizerResponseInput>>>;
|
|
202317
|
+
tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
202318
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
202319
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
202320
|
+
};
|
|
202321
|
+
export declare type UnifiedPostSummarizerPromptInput = {
|
|
202322
|
+
systemMessage?: InputMaybe<Scalars['String']['input']>;
|
|
202323
|
+
userMessage?: InputMaybe<Scalars['String']['input']>;
|
|
202324
|
+
};
|
|
202325
|
+
export declare type UnifiedPostSummarizerResponseInput = {
|
|
202326
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
|
202327
|
+
content?: InputMaybe<Scalars['String']['input']>;
|
|
202328
|
+
is_solution?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202329
|
+
like_count?: InputMaybe<Scalars['Int']['input']>;
|
|
202330
|
+
responses?: InputMaybe<Array<InputMaybe<UnifiedPostSummarizerResponseInput>>>;
|
|
202331
|
+
};
|
|
202332
|
+
export declare type UnifiedPostSummarizerResult = {
|
|
202333
|
+
__typename?: 'UnifiedPostSummarizerResult';
|
|
202334
|
+
actionItems?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
202335
|
+
clarificationQuestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
202336
|
+
keyPoints?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
202337
|
+
sentiment?: Maybe<Scalars['String']['output']>;
|
|
202338
|
+
sessionId?: Maybe<Scalars['String']['output']>;
|
|
202339
|
+
solutionConfidence?: Maybe<Scalars['String']['output']>;
|
|
202340
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
202341
|
+
};
|
|
201619
202342
|
export declare type UnifiedProfile = UnifiedINode & {
|
|
201620
202343
|
__typename?: 'UnifiedProfile';
|
|
201621
202344
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -201706,10 +202429,12 @@ export declare type UnifiedQuery = {
|
|
|
201706
202429
|
ai?: Maybe<UnifiedAiQuery>;
|
|
201707
202430
|
atlassianOneUser?: Maybe<UnifiedAtlassianOneUserQuery>;
|
|
201708
202431
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
202432
|
+
bitbucket?: Maybe<UnifiedBitbucketQuery>;
|
|
201709
202433
|
caching?: Maybe<UnifiedCachingQuery>;
|
|
201710
202434
|
consent?: Maybe<UnifiedConsentQuery>;
|
|
201711
202435
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
201712
202436
|
node?: Maybe<UnifiedINode>;
|
|
202437
|
+
uct?: Maybe<UnifiedUctQuery>;
|
|
201713
202438
|
unifiedProfile?: Maybe<UnifiedUProfileResult>;
|
|
201714
202439
|
unifiedProfiles?: Maybe<Array<Maybe<UnifiedUProfileResult>>>;
|
|
201715
202440
|
};
|
|
@@ -201805,9 +202530,23 @@ export declare type UnifiedULinkAuthenticationPayload = UnifiedLinkAuthenticatio
|
|
|
201805
202530
|
export declare type UnifiedULinkInitiationPayload = UnifiedLinkInitiationPayload | UnifiedLinkingStatusPayload;
|
|
201806
202531
|
export declare type UnifiedULinkedAccountBasicsResult = UnifiedLinkedAccountBasicsConnection | UnifiedQueryError;
|
|
201807
202532
|
export declare type UnifiedULinkedAccountResult = UnifiedLinkedAccountConnection | UnifiedQueryError;
|
|
202533
|
+
export declare type UnifiedUPostSummarizerResult = UnifiedPostSummarizerResult | UnifiedQueryError;
|
|
201808
202534
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
201809
202535
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
201810
202536
|
export declare type UnifiedURecentCourseResult = UnifiedQueryError | UnifiedRecentCourseConnection;
|
|
202537
|
+
export declare type UnifiedUctQuery = {
|
|
202538
|
+
__typename?: 'UnifiedUctQuery';
|
|
202539
|
+
mintUct?: Maybe<UnifiedUctResult>;
|
|
202540
|
+
};
|
|
202541
|
+
export declare type UnifiedUctQueryMintUctArgs = {
|
|
202542
|
+
aaid: Scalars['String']['input'];
|
|
202543
|
+
};
|
|
202544
|
+
export declare type UnifiedUctResult = UnifiedQueryError | UnifiedUctToken;
|
|
202545
|
+
export declare type UnifiedUctToken = UnifiedINode & {
|
|
202546
|
+
__typename?: 'UnifiedUctToken';
|
|
202547
|
+
id: Scalars['ID']['output'];
|
|
202548
|
+
token: Scalars['String']['output'];
|
|
202549
|
+
};
|
|
201811
202550
|
export declare type UnknownUser = Person & {
|
|
201812
202551
|
__typename?: 'UnknownUser';
|
|
201813
202552
|
accountId?: Maybe<Scalars['String']['output']>;
|