@forge/cli-shared 8.19.1-next.0 → 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 +6 -0
- package/out/graphql/graphql-types.d.ts +988 -44
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +134 -43
- package/package.json +1 -1
|
@@ -356,6 +356,7 @@ export declare enum AvpAnalyticsColumnType {
|
|
|
356
356
|
Time = "TIME"
|
|
357
357
|
}
|
|
358
358
|
export declare type AvpAnalyticsCreateModelInput = {
|
|
359
|
+
modelCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
359
360
|
modelDefinition?: InputMaybe<AvpAnalyticsModelDefinitionInput>;
|
|
360
361
|
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
361
362
|
modelName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -456,6 +457,7 @@ export declare enum AvpAnalyticsFilterOperator {
|
|
|
456
457
|
Range = "RANGE"
|
|
457
458
|
}
|
|
458
459
|
export declare enum AvpAnalyticsFilterType {
|
|
460
|
+
ModelCloudId = "MODEL_CLOUD_ID",
|
|
459
461
|
ModelCreatedBy = "MODEL_CREATED_BY",
|
|
460
462
|
ModelLabel = "MODEL_LABEL",
|
|
461
463
|
ModelStatus = "MODEL_STATUS"
|
|
@@ -627,6 +629,7 @@ export declare type AvpAnalyticsMetric = {
|
|
|
627
629
|
};
|
|
628
630
|
export declare type AvpAnalyticsModel = {
|
|
629
631
|
__typename?: 'AVPAnalyticsModel';
|
|
632
|
+
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
630
633
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
631
634
|
data?: Maybe<AvpAnalyticsModelDataConnection>;
|
|
632
635
|
definition?: Maybe<AvpAnalyticsModelDefinition>;
|
|
@@ -712,13 +715,11 @@ export declare type AvpAnalyticsModelFilter = {
|
|
|
712
715
|
__typename?: 'AVPAnalyticsModelFilter';
|
|
713
716
|
columnName: Scalars['String']['output'];
|
|
714
717
|
errors?: Maybe<Array<AvpAnalyticsError>>;
|
|
715
|
-
name: Scalars['String']['output'];
|
|
716
718
|
operator: AvpAnalyticsFilterOperator;
|
|
717
719
|
value?: Maybe<AvpAnalyticsFilterValue>;
|
|
718
720
|
};
|
|
719
721
|
export declare type AvpAnalyticsModelFilterInput = {
|
|
720
722
|
columnName: Scalars['String']['input'];
|
|
721
|
-
name: Scalars['String']['input'];
|
|
722
723
|
operator: AvpAnalyticsFilterOperator;
|
|
723
724
|
value?: InputMaybe<AvpAnalyticsFilterValueInput>;
|
|
724
725
|
};
|
|
@@ -833,6 +834,7 @@ export declare enum AvpAnalyticsSortType {
|
|
|
833
834
|
}
|
|
834
835
|
export declare type AvpAnalyticsUpdateModelInput = {
|
|
835
836
|
forceUpdate: Scalars['Boolean']['input'];
|
|
837
|
+
modelCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
836
838
|
modelDefinition: AvpAnalyticsModelDefinitionInput;
|
|
837
839
|
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
838
840
|
modelId: Scalars['ID']['input'];
|
|
@@ -1241,6 +1243,11 @@ export declare type AvpDashboardCanvasLayoutRow = {
|
|
|
1241
1243
|
height?: Maybe<AvpCanvasRowHeight>;
|
|
1242
1244
|
id?: Maybe<Scalars['ID']['output']>;
|
|
1243
1245
|
};
|
|
1246
|
+
export declare type AvpDashboardEdge = {
|
|
1247
|
+
__typename?: 'AVPDashboardEdge';
|
|
1248
|
+
cursor: Scalars['String']['output'];
|
|
1249
|
+
node: AvpDashboard;
|
|
1250
|
+
};
|
|
1244
1251
|
export declare type AvpDashboardFilterInput = {
|
|
1245
1252
|
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
1246
1253
|
defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -1307,6 +1314,11 @@ export declare type AvpDashboardTemplateInput = {
|
|
|
1307
1314
|
templatePlaceholderReplacements?: InputMaybe<Array<AvpTemplatePlaceholderReplacement>>;
|
|
1308
1315
|
templateVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
1309
1316
|
};
|
|
1317
|
+
export declare type AvpDashboardsConnection = HasPageInfo & {
|
|
1318
|
+
__typename?: 'AVPDashboardsConnection';
|
|
1319
|
+
edges: Array<AvpDashboardEdge>;
|
|
1320
|
+
pageInfo: PageInfo;
|
|
1321
|
+
};
|
|
1310
1322
|
export declare enum AvpDataFetchStrategy {
|
|
1311
1323
|
Dynamic = "DYNAMIC",
|
|
1312
1324
|
Static = "STATIC"
|
|
@@ -2844,8 +2856,16 @@ export declare type AdminAuditLogEventEdge = {
|
|
|
2844
2856
|
node: AdminAuditLogEvent;
|
|
2845
2857
|
};
|
|
2846
2858
|
export declare type AdminAuditLogEventExportInput = {
|
|
2859
|
+
action?: InputMaybe<Scalars['String']['input']>;
|
|
2860
|
+
actor?: InputMaybe<Scalars['String']['input']>;
|
|
2861
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
2847
2862
|
format?: InputMaybe<AdminAuditLogEventMessageFormat>;
|
|
2848
|
-
|
|
2863
|
+
ip?: InputMaybe<Scalars['String']['input']>;
|
|
2864
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
2865
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
2866
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
2867
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
2868
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
2849
2869
|
};
|
|
2850
2870
|
export declare type AdminAuditLogEventExportResponsePayload = Payload & {
|
|
2851
2871
|
__typename?: 'AdminAuditLogEventExportResponsePayload';
|
|
@@ -4252,8 +4272,13 @@ export declare type AgentAiSummary = {
|
|
|
4252
4272
|
export declare type AgentSession = AgentSessionNode & {
|
|
4253
4273
|
__typename?: 'AgentSession';
|
|
4254
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']>;
|
|
4255
4279
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
4256
4280
|
id?: Maybe<Scalars['ID']['output']>;
|
|
4281
|
+
isRovo?: Maybe<Scalars['Boolean']['output']>;
|
|
4257
4282
|
state?: Maybe<Scalars['String']['output']>;
|
|
4258
4283
|
version?: Maybe<Scalars['Long']['output']>;
|
|
4259
4284
|
};
|
|
@@ -4498,6 +4523,7 @@ export declare type AgentStudioApp = {
|
|
|
4498
4523
|
displayName: Scalars['String']['output'];
|
|
4499
4524
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
4500
4525
|
integrationKey: Scalars['String']['output'];
|
|
4526
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
4501
4527
|
};
|
|
4502
4528
|
export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseConfiguration & Node & {
|
|
4503
4529
|
__typename?: 'AgentStudioAssistant';
|
|
@@ -4775,6 +4801,7 @@ export declare type AgentStudioConversationStarterSuggestions = {
|
|
|
4775
4801
|
export declare type AgentStudioCreateAgentInput = {
|
|
4776
4802
|
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
4777
4803
|
agentType: AgentStudioAgentType;
|
|
4804
|
+
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
4778
4805
|
authoringTeam?: InputMaybe<AgentStudioAuthoringTeamInput>;
|
|
4779
4806
|
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
4780
4807
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -4986,6 +5013,7 @@ export declare type AgentStudioFirstPartyApp = AgentStudioApp & {
|
|
|
4986
5013
|
displayName: Scalars['String']['output'];
|
|
4987
5014
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
4988
5015
|
integrationKey: Scalars['String']['output'];
|
|
5016
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
4989
5017
|
};
|
|
4990
5018
|
export declare type AgentStudioHasVersionCapability = {
|
|
4991
5019
|
__typename?: 'AgentStudioHasVersionCapability';
|
|
@@ -5443,6 +5471,7 @@ export declare type AgentStudioThirdPartyApp = AgentStudioApp & {
|
|
|
5443
5471
|
displayName: Scalars['String']['output'];
|
|
5444
5472
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
5445
5473
|
integrationKey: Scalars['String']['output'];
|
|
5474
|
+
tools?: Maybe<Array<AgentStudioTool>>;
|
|
5446
5475
|
};
|
|
5447
5476
|
export declare enum AgentStudioThirdPartyAuthConsentStatus {
|
|
5448
5477
|
Connected = "CONNECTED",
|
|
@@ -5659,6 +5688,7 @@ export declare type AgentStudioUpdateAgentAsFavouritePayload = Payload & {
|
|
|
5659
5688
|
success: Scalars['Boolean']['output'];
|
|
5660
5689
|
};
|
|
5661
5690
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
5691
|
+
agenticSkills?: InputMaybe<Array<AgentStudioSkillInput>>;
|
|
5662
5692
|
authoringTeam?: InputMaybe<AgentStudioAuthoringTeamInput>;
|
|
5663
5693
|
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
5664
5694
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -8932,6 +8962,7 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
8932
8962
|
};
|
|
8933
8963
|
export declare type AssetsAriAttribute = AssetsObjectTypeAttribute & {
|
|
8934
8964
|
__typename?: 'AssetsARIAttribute';
|
|
8965
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
8935
8966
|
id: Scalars['ID']['output'];
|
|
8936
8967
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
8937
8968
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -8967,6 +8998,7 @@ export declare type AssetsAvatar = {
|
|
|
8967
8998
|
};
|
|
8968
8999
|
export declare type AssetsBooleanAttribute = AssetsObjectTypeAttribute & {
|
|
8969
9000
|
__typename?: 'AssetsBooleanAttribute';
|
|
9001
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
8970
9002
|
id: Scalars['ID']['output'];
|
|
8971
9003
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
8972
9004
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -9392,6 +9424,7 @@ export declare type AssetsDmDataSource = {
|
|
|
9392
9424
|
jobId?: Maybe<Scalars['String']['output']>;
|
|
9393
9425
|
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
9394
9426
|
lastExecutionName?: Maybe<Scalars['String']['output']>;
|
|
9427
|
+
machineName?: Maybe<Scalars['String']['output']>;
|
|
9395
9428
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
9396
9429
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
9397
9430
|
};
|
|
@@ -11077,6 +11110,7 @@ export declare enum AssetsDmSortByInputOrder {
|
|
|
11077
11110
|
export declare type AssetsDmStep = {
|
|
11078
11111
|
__typename?: 'AssetsDMStep';
|
|
11079
11112
|
lastFetched: Scalars['String']['output'];
|
|
11113
|
+
machineName?: Maybe<Scalars['String']['output']>;
|
|
11080
11114
|
status: AssetsDmStepStatus;
|
|
11081
11115
|
};
|
|
11082
11116
|
export declare enum AssetsDmStepStatus {
|
|
@@ -11222,6 +11256,7 @@ export declare type AssetsDmUpdateDefaultCleansingRuleResponse = {
|
|
|
11222
11256
|
};
|
|
11223
11257
|
export declare type AssetsDateAttribute = AssetsObjectTypeAttribute & {
|
|
11224
11258
|
__typename?: 'AssetsDateAttribute';
|
|
11259
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11225
11260
|
id: Scalars['ID']['output'];
|
|
11226
11261
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11227
11262
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11240,6 +11275,7 @@ export declare type AssetsDateAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
11240
11275
|
};
|
|
11241
11276
|
export declare type AssetsDatetimeAttribute = AssetsObjectTypeAttribute & {
|
|
11242
11277
|
__typename?: 'AssetsDatetimeAttribute';
|
|
11278
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11243
11279
|
id: Scalars['ID']['output'];
|
|
11244
11280
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11245
11281
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11258,6 +11294,7 @@ export declare type AssetsDatetimeAttributeOnObject = AssetsAttributeOnObject &
|
|
|
11258
11294
|
};
|
|
11259
11295
|
export declare type AssetsEmailAttribute = AssetsObjectTypeAttribute & {
|
|
11260
11296
|
__typename?: 'AssetsEmailAttribute';
|
|
11297
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11261
11298
|
id: Scalars['ID']['output'];
|
|
11262
11299
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11263
11300
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11292,6 +11329,7 @@ export declare type AssetsExternalReferenceInput = {
|
|
|
11292
11329
|
};
|
|
11293
11330
|
export declare type AssetsExternalReferenceTypeAttribute = AssetsObjectTypeAttribute & {
|
|
11294
11331
|
__typename?: 'AssetsExternalReferenceTypeAttribute';
|
|
11332
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11295
11333
|
id: Scalars['ID']['output'];
|
|
11296
11334
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11297
11335
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11310,6 +11348,7 @@ export declare type AssetsExternalReferenceTypeAttributeOnObject = AssetsAttribu
|
|
|
11310
11348
|
};
|
|
11311
11349
|
export declare type AssetsFloatAttribute = AssetsObjectTypeAttribute & {
|
|
11312
11350
|
__typename?: 'AssetsFloatAttribute';
|
|
11351
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11313
11352
|
id: Scalars['ID']['output'];
|
|
11314
11353
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11315
11354
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11329,6 +11368,7 @@ export declare type AssetsFloatAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
11329
11368
|
};
|
|
11330
11369
|
export declare type AssetsGroupAttribute = AssetsObjectTypeAttribute & {
|
|
11331
11370
|
__typename?: 'AssetsGroupAttribute';
|
|
11371
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11332
11372
|
id: Scalars['ID']['output'];
|
|
11333
11373
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11334
11374
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11352,6 +11392,7 @@ export declare type AssetsGroupAttributeValue = {
|
|
|
11352
11392
|
};
|
|
11353
11393
|
export declare type AssetsIpAddressAttribute = AssetsObjectTypeAttribute & {
|
|
11354
11394
|
__typename?: 'AssetsIPAddressAttribute';
|
|
11395
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11355
11396
|
id: Scalars['ID']['output'];
|
|
11356
11397
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11357
11398
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11376,6 +11417,7 @@ export declare type AssetsIcon = {
|
|
|
11376
11417
|
};
|
|
11377
11418
|
export declare type AssetsIntegerAttribute = AssetsObjectTypeAttribute & {
|
|
11378
11419
|
__typename?: 'AssetsIntegerAttribute';
|
|
11420
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11379
11421
|
id: Scalars['ID']['output'];
|
|
11380
11422
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11381
11423
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11427,6 +11469,7 @@ export declare type AssetsObjectAqlResult = {
|
|
|
11427
11469
|
};
|
|
11428
11470
|
export declare type AssetsObjectAttribute = AssetsObjectTypeAttribute & {
|
|
11429
11471
|
__typename?: 'AssetsObjectAttribute';
|
|
11472
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11430
11473
|
id: Scalars['ID']['output'];
|
|
11431
11474
|
includeChildObjectTypes?: Maybe<Scalars['Boolean']['output']>;
|
|
11432
11475
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -11474,6 +11517,7 @@ export declare type AssetsObjectType = Node & {
|
|
|
11474
11517
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
11475
11518
|
};
|
|
11476
11519
|
export declare type AssetsObjectTypeAttribute = {
|
|
11520
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11477
11521
|
id: Scalars['ID']['output'];
|
|
11478
11522
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11479
11523
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11510,6 +11554,7 @@ export declare type AssetsSchema = Node & {
|
|
|
11510
11554
|
};
|
|
11511
11555
|
export declare type AssetsSelectAttribute = AssetsObjectTypeAttribute & {
|
|
11512
11556
|
__typename?: 'AssetsSelectAttribute';
|
|
11557
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11513
11558
|
id: Scalars['ID']['output'];
|
|
11514
11559
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11515
11560
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11554,6 +11599,7 @@ export declare type AssetsServiceObjectAttributesArgs = {
|
|
|
11554
11599
|
};
|
|
11555
11600
|
export declare type AssetsSpaceAttribute = AssetsObjectTypeAttribute & {
|
|
11556
11601
|
__typename?: 'AssetsSpaceAttribute';
|
|
11602
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11557
11603
|
id: Scalars['ID']['output'];
|
|
11558
11604
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11559
11605
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11580,6 +11626,7 @@ export declare type AssetsSpaceAttributeValue = {
|
|
|
11580
11626
|
export declare type AssetsStatusAttribute = AssetsObjectTypeAttribute & {
|
|
11581
11627
|
__typename?: 'AssetsStatusAttribute';
|
|
11582
11628
|
allowedStatusTypes?: Maybe<Array<AssetsStatusType>>;
|
|
11629
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11583
11630
|
id: Scalars['ID']['output'];
|
|
11584
11631
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11585
11632
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11610,6 +11657,7 @@ export declare type AssetsStatusType = {
|
|
|
11610
11657
|
};
|
|
11611
11658
|
export declare type AssetsTagAttribute = AssetsObjectTypeAttribute & {
|
|
11612
11659
|
__typename?: 'AssetsTagAttribute';
|
|
11660
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11613
11661
|
id: Scalars['ID']['output'];
|
|
11614
11662
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11615
11663
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11628,6 +11676,7 @@ export declare type AssetsTagAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
11628
11676
|
};
|
|
11629
11677
|
export declare type AssetsTextAttribute = AssetsObjectTypeAttribute & {
|
|
11630
11678
|
__typename?: 'AssetsTextAttribute';
|
|
11679
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11631
11680
|
id: Scalars['ID']['output'];
|
|
11632
11681
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11633
11682
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11646,6 +11695,7 @@ export declare type AssetsTextAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
11646
11695
|
};
|
|
11647
11696
|
export declare type AssetsTextareaAttribute = AssetsObjectTypeAttribute & {
|
|
11648
11697
|
__typename?: 'AssetsTextareaAttribute';
|
|
11698
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11649
11699
|
id: Scalars['ID']['output'];
|
|
11650
11700
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11651
11701
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11664,6 +11714,7 @@ export declare type AssetsTextareaAttributeOnObject = AssetsAttributeOnObject &
|
|
|
11664
11714
|
};
|
|
11665
11715
|
export declare type AssetsUrlAttribute = AssetsObjectTypeAttribute & {
|
|
11666
11716
|
__typename?: 'AssetsURLAttribute';
|
|
11717
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11667
11718
|
id: Scalars['ID']['output'];
|
|
11668
11719
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11669
11720
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11682,6 +11733,7 @@ export declare type AssetsUrlAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
11682
11733
|
};
|
|
11683
11734
|
export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
|
|
11684
11735
|
__typename?: 'AssetsUserAttribute';
|
|
11736
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
11685
11737
|
id: Scalars['ID']['output'];
|
|
11686
11738
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
11687
11739
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
@@ -11830,6 +11882,7 @@ export declare type AssetsVerticalBundleInstantiationResult = AssetsVerticalBund
|
|
|
11830
11882
|
export declare type AssetsVerticalBundleResult = AssetsVerticalBundle | QueryError;
|
|
11831
11883
|
export declare enum AssetsVerticalBundleType {
|
|
11832
11884
|
Cdm = "CDM",
|
|
11885
|
+
Ham = "HAM",
|
|
11833
11886
|
Osc = "OSC"
|
|
11834
11887
|
}
|
|
11835
11888
|
export declare type AssetsVerticalCountByStatus = {
|
|
@@ -12000,6 +12053,10 @@ export declare type AssetsVerticalDepreciationRuleQueryErrorExtension = QueryErr
|
|
|
12000
12053
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
12001
12054
|
};
|
|
12002
12055
|
export declare type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
|
|
12056
|
+
export declare enum AssetsVerticalFlowType {
|
|
12057
|
+
Existing = "EXISTING",
|
|
12058
|
+
New = "NEW"
|
|
12059
|
+
}
|
|
12003
12060
|
export declare type AssetsVerticalGenerateInsightsInput = {
|
|
12004
12061
|
cloudId: Scalars['ID']['input'];
|
|
12005
12062
|
};
|
|
@@ -12251,6 +12308,7 @@ export declare type AssetsVerticalVerticalInstantiationCategoriesArgs = {
|
|
|
12251
12308
|
export declare type AssetsVerticalVerticalInstantiationDepreciationRulesArgs = {
|
|
12252
12309
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
12253
12310
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12311
|
+
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
12254
12312
|
};
|
|
12255
12313
|
export declare type AssetsVerticalVerticalInstantiationCategory = {
|
|
12256
12314
|
__typename?: 'AssetsVerticalVerticalInstantiationCategory';
|
|
@@ -12321,8 +12379,10 @@ export declare enum AssetsVerticalVerticalInstantiationCategoryStatus {
|
|
|
12321
12379
|
InProgress = "IN_PROGRESS"
|
|
12322
12380
|
}
|
|
12323
12381
|
export declare enum AssetsVerticalVerticalInstantiationCategoryType {
|
|
12382
|
+
Cdm = "CDM",
|
|
12324
12383
|
HardwareAssetTypesSelection = "HARDWARE_ASSET_TYPES_SELECTION",
|
|
12325
12384
|
ItemSelection = "ITEM_SELECTION",
|
|
12385
|
+
SpaceCreation = "SPACE_CREATION",
|
|
12326
12386
|
UserRolesAssignment = "USER_ROLES_ASSIGNMENT"
|
|
12327
12387
|
}
|
|
12328
12388
|
export declare type AssetsVerticalVerticalInstantiationCategoryWithSelectionsInput = {
|
|
@@ -12376,6 +12436,41 @@ export declare enum AssetsVerticalVerticalInstantiationStatus {
|
|
|
12376
12436
|
Failed = "FAILED",
|
|
12377
12437
|
InProgress = "IN_PROGRESS"
|
|
12378
12438
|
}
|
|
12439
|
+
export declare type AssetsVerticalVerticalTemplate = {
|
|
12440
|
+
__typename?: 'AssetsVerticalVerticalTemplate';
|
|
12441
|
+
content: AssetsVerticalVerticalTemplateContent;
|
|
12442
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
12443
|
+
id: Scalars['ID']['output'];
|
|
12444
|
+
type: AssetsVerticalVerticalType;
|
|
12445
|
+
version: Scalars['String']['output'];
|
|
12446
|
+
};
|
|
12447
|
+
export declare type AssetsVerticalVerticalTemplateComponent = {
|
|
12448
|
+
__typename?: 'AssetsVerticalVerticalTemplateComponent';
|
|
12449
|
+
bundleType?: Maybe<AssetsVerticalBundleType>;
|
|
12450
|
+
category: AssetsVerticalVerticalInstantiationCategoryType;
|
|
12451
|
+
cdmTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
12452
|
+
};
|
|
12453
|
+
export declare type AssetsVerticalVerticalTemplateContent = {
|
|
12454
|
+
__typename?: 'AssetsVerticalVerticalTemplateContent';
|
|
12455
|
+
flows: Array<AssetsVerticalVerticalTemplateFlow>;
|
|
12456
|
+
};
|
|
12457
|
+
export declare type AssetsVerticalVerticalTemplateFlow = {
|
|
12458
|
+
__typename?: 'AssetsVerticalVerticalTemplateFlow';
|
|
12459
|
+
components: Array<AssetsVerticalVerticalTemplateComponent>;
|
|
12460
|
+
type: AssetsVerticalFlowType;
|
|
12461
|
+
};
|
|
12462
|
+
export declare enum AssetsVerticalVerticalTemplateQueryErrorCode {
|
|
12463
|
+
InvalidVersion = "INVALID_VERSION",
|
|
12464
|
+
NotFound = "NOT_FOUND",
|
|
12465
|
+
UnknownError = "UNKNOWN_ERROR"
|
|
12466
|
+
}
|
|
12467
|
+
export declare type AssetsVerticalVerticalTemplateQueryErrorExtension = QueryErrorExtension & {
|
|
12468
|
+
__typename?: 'AssetsVerticalVerticalTemplateQueryErrorExtension';
|
|
12469
|
+
code?: Maybe<AssetsVerticalVerticalTemplateQueryErrorCode>;
|
|
12470
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
12471
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
12472
|
+
};
|
|
12473
|
+
export declare type AssetsVerticalVerticalTemplateResult = AssetsVerticalVerticalTemplate | QueryError;
|
|
12379
12474
|
export declare enum AssetsVerticalVerticalType {
|
|
12380
12475
|
Ham = "HAM"
|
|
12381
12476
|
}
|
|
@@ -25699,6 +25794,11 @@ export declare type ConfluenceAccessRequestSettings = {
|
|
|
25699
25794
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
25700
25795
|
messageContent?: Maybe<Scalars['String']['output']>;
|
|
25701
25796
|
};
|
|
25797
|
+
export declare type ConfluenceActiveInlineData = {
|
|
25798
|
+
__typename?: 'ConfluenceActiveInlineData';
|
|
25799
|
+
comments: Array<Maybe<ConfluenceInlineMarker>>;
|
|
25800
|
+
reactions: Array<Maybe<ConfluenceInlineMarker>>;
|
|
25801
|
+
};
|
|
25702
25802
|
export declare type ConfluenceAddCustomApplicationLinkInput = {
|
|
25703
25803
|
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
25704
25804
|
displayName: Scalars['String']['input'];
|
|
@@ -25711,6 +25811,14 @@ export declare type ConfluenceAddCustomApplicationLinkPayload = Payload & {
|
|
|
25711
25811
|
errors?: Maybe<Array<MutationError>>;
|
|
25712
25812
|
success: Scalars['Boolean']['output'];
|
|
25713
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
|
+
};
|
|
25714
25822
|
export declare type ConfluenceAddTopLinkInput = {
|
|
25715
25823
|
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25716
25824
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26665,6 +26773,9 @@ export declare type ConfluenceContentModified = {
|
|
|
26665
26773
|
inlineCommentResolved?: Maybe<ConfluenceInlineCommentResolved>;
|
|
26666
26774
|
inlineCommentUnresolved?: Maybe<ConfluenceInlineCommentUpdated>;
|
|
26667
26775
|
inlineCommentUpdated?: Maybe<ConfluenceInlineCommentUpdated>;
|
|
26776
|
+
inlineReactionAdded?: Maybe<ConfluenceInlineReactionAdded>;
|
|
26777
|
+
inlineReactionHighlightDeleted?: Maybe<ConfluenceInlineReactionHighlightDeleted>;
|
|
26778
|
+
inlineReactionRemoved?: Maybe<ConfluenceInlineReactionRemoved>;
|
|
26668
26779
|
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
26669
26780
|
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
26670
26781
|
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
@@ -27356,6 +27467,16 @@ export declare type ConfluenceCustomPageSpaceSettings = {
|
|
|
27356
27467
|
footerText?: Maybe<Scalars['String']['output']>;
|
|
27357
27468
|
headerText?: Maybe<Scalars['String']['output']>;
|
|
27358
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
|
+
};
|
|
27359
27480
|
export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
27360
27481
|
__typename?: 'ConfluenceDataLifecycleManagementPolicy';
|
|
27361
27482
|
dataRetentionPolicyDetailsForWorkspace: ConfluenceDataRetentionPolicyStatus;
|
|
@@ -28203,6 +28324,43 @@ export declare type ConfluenceInlineCommentUpdated = {
|
|
|
28203
28324
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
28204
28325
|
markerRef?: Maybe<Scalars['String']['output']>;
|
|
28205
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
|
+
};
|
|
28206
28364
|
export declare type ConfluenceInlineTask = Node & {
|
|
28207
28365
|
__typename?: 'ConfluenceInlineTask';
|
|
28208
28366
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -29235,13 +29393,26 @@ export declare type ConfluenceNcsPdfExportConfiguration = {
|
|
|
29235
29393
|
bodyFontSize: Scalars['Int']['output'];
|
|
29236
29394
|
font?: Maybe<ConfluencePdfExportFontConfiguration>;
|
|
29237
29395
|
footer: ConfluencePdfExportFooterInclusionConfiguration;
|
|
29396
|
+
footerCenter?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29397
|
+
footerLeft?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29398
|
+
footerRight?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29238
29399
|
header: ConfluencePdfExportHeaderInclusionConfiguration;
|
|
29400
|
+
headerCenter?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29401
|
+
headerLeft?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29402
|
+
headerRight?: Maybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfiguration>;
|
|
29239
29403
|
lineSpacing: Scalars['Float']['output'];
|
|
29240
29404
|
pageMargins: ConfluencePdfExportPageMargins;
|
|
29405
|
+
pageNumberConfig?: Maybe<ConfluencePdfExportPageNumberConfiguration>;
|
|
29241
29406
|
pageOrientation: ConfluencePdfExportPageOrientation;
|
|
29242
29407
|
pageSize: ConfluencePdfExportPageSize;
|
|
29243
29408
|
shouldIncludePageNumbers: Scalars['Boolean']['output'];
|
|
29244
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>;
|
|
29245
29416
|
titlePage: ConfluencePdfExportTitlePageInclusionConfiguration;
|
|
29246
29417
|
};
|
|
29247
29418
|
export declare type ConfluenceNewCodeMacro = {
|
|
@@ -29516,6 +29687,42 @@ export declare enum ConfluencePdfExportHeaderFooterAlignmentInput {
|
|
|
29516
29687
|
Center = "CENTER",
|
|
29517
29688
|
Left = "LEFT"
|
|
29518
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
|
+
};
|
|
29519
29726
|
export declare type ConfluencePdfExportHeaderInclusionConfiguration = {
|
|
29520
29727
|
__typename?: 'ConfluencePdfExportHeaderInclusionConfiguration';
|
|
29521
29728
|
configuration: ConfluencePdfExportHeaderConfiguration;
|
|
@@ -29558,6 +29765,33 @@ export declare enum ConfluencePdfExportPageMarginsUnitInput {
|
|
|
29558
29765
|
Centimeters = "CENTIMETERS",
|
|
29559
29766
|
Inches = "INCHES"
|
|
29560
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
|
+
}
|
|
29561
29795
|
export declare enum ConfluencePdfExportPageOrientation {
|
|
29562
29796
|
Landscape = "LANDSCAPE",
|
|
29563
29797
|
Portrait = "PORTRAIT"
|
|
@@ -29582,6 +29816,16 @@ export declare enum ConfluencePdfExportPageSizeInput {
|
|
|
29582
29816
|
Tabloid = "TABLOID",
|
|
29583
29817
|
UsLetter = "US_LETTER"
|
|
29584
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
|
+
}
|
|
29585
29829
|
export declare type ConfluencePdfExportSettings = {
|
|
29586
29830
|
__typename?: 'ConfluencePdfExportSettings';
|
|
29587
29831
|
footer?: Maybe<Scalars['String']['output']>;
|
|
@@ -29652,6 +29896,34 @@ export declare enum ConfluencePdfExportTitlePageVerticalAlignmentInput {
|
|
|
29652
29896
|
Middle = "MIDDLE",
|
|
29653
29897
|
Top = "TOP"
|
|
29654
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
|
+
};
|
|
29655
29927
|
export declare type ConfluencePendingAccessRequest = {
|
|
29656
29928
|
__typename?: 'ConfluencePendingAccessRequest';
|
|
29657
29929
|
isPendingAccessRequestExists?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -29754,6 +30026,7 @@ export declare type ConfluencePermissionTransitionRecommendation = {
|
|
|
29754
30026
|
__typename?: 'ConfluencePermissionTransitionRecommendation';
|
|
29755
30027
|
action: ConfluenceRoleRecommendation;
|
|
29756
30028
|
justification: ConfluenceRecommendationJustification;
|
|
30029
|
+
type: ConfluenceRecommendationType;
|
|
29757
30030
|
};
|
|
29758
30031
|
export declare type ConfluencePermissionTransitionSpace = {
|
|
29759
30032
|
__typename?: 'ConfluencePermissionTransitionSpace';
|
|
@@ -30265,6 +30538,11 @@ export declare type ConfluenceRecommendationJustification = {
|
|
|
30265
30538
|
description: Scalars['String']['output'];
|
|
30266
30539
|
name: Scalars['String']['output'];
|
|
30267
30540
|
};
|
|
30541
|
+
export declare enum ConfluenceRecommendationType {
|
|
30542
|
+
AdminEquivalent = "ADMIN_EQUIVALENT",
|
|
30543
|
+
ExactMatch = "EXACT_MATCH",
|
|
30544
|
+
NearExactMatch = "NEAR_EXACT_MATCH"
|
|
30545
|
+
}
|
|
30268
30546
|
export declare enum ConfluenceRecommendedAction {
|
|
30269
30547
|
ConvertToRole = "CONVERT_TO_ROLE"
|
|
30270
30548
|
}
|
|
@@ -30287,12 +30565,26 @@ export declare type ConfluenceRedactionMetadataEdge = {
|
|
|
30287
30565
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
30288
30566
|
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
30289
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
|
+
};
|
|
30290
30575
|
export declare type ConfluenceRemoveContentApprovalReviewerInput = {
|
|
30291
30576
|
contentApprovalReviewId: Scalars['ID']['input'];
|
|
30292
30577
|
principalId: Scalars['ID']['input'];
|
|
30293
30578
|
principalType: ConfluencePrincipalType;
|
|
30294
30579
|
workflowApplicationId: Scalars['ID']['input'];
|
|
30295
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
|
+
};
|
|
30296
30588
|
export declare type ConfluenceRemoveTopLinkInput = {
|
|
30297
30589
|
url: Scalars['String']['input'];
|
|
30298
30590
|
};
|
|
@@ -30656,13 +30948,9 @@ export declare enum ConfluenceShareableLinkSpaceStatus {
|
|
|
30656
30948
|
On = "ON"
|
|
30657
30949
|
}
|
|
30658
30950
|
export declare enum ConfluenceShareableLinkSpaceStatusFilter {
|
|
30659
|
-
ExternalBlockedByContainerPolicy = "EXTERNAL_BLOCKED_BY_CONTAINER_POLICY",
|
|
30660
|
-
ExternalBlockedByOrg = "EXTERNAL_BLOCKED_BY_ORG",
|
|
30661
30951
|
ExternalBlockedByProduct = "EXTERNAL_BLOCKED_BY_PRODUCT",
|
|
30662
30952
|
ExternalOff = "EXTERNAL_OFF",
|
|
30663
30953
|
ExternalOn = "EXTERNAL_ON",
|
|
30664
|
-
InternalLicensedBlockedByContainerPolicy = "INTERNAL_LICENSED_BLOCKED_BY_CONTAINER_POLICY",
|
|
30665
|
-
InternalLicensedBlockedByOrg = "INTERNAL_LICENSED_BLOCKED_BY_ORG",
|
|
30666
30954
|
InternalLicensedBlockedByProduct = "INTERNAL_LICENSED_BLOCKED_BY_PRODUCT",
|
|
30667
30955
|
InternalLicensedOff = "INTERNAL_LICENSED_OFF",
|
|
30668
30956
|
InternalLicensedOn = "INTERNAL_LICENSED_ON"
|
|
@@ -31797,13 +32085,26 @@ export declare type ConfluenceUpdatePdfExportNoCodeStylingConfigInput = {
|
|
|
31797
32085
|
bodyFontSize: Scalars['Int']['input'];
|
|
31798
32086
|
font: ConfluencePdfExportFontInput;
|
|
31799
32087
|
footer: ConfluencePdfExportFooterInclusionConfigurationInput;
|
|
32088
|
+
footerCenter?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
32089
|
+
footerLeft?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
32090
|
+
footerRight?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
31800
32091
|
header: ConfluencePdfExportHeaderInclusionConfigurationInput;
|
|
32092
|
+
headerCenter?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
32093
|
+
headerLeft?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
32094
|
+
headerRight?: InputMaybe<ConfluencePdfExportHeaderFooterWithImageInclusionConfigurationInput>;
|
|
31801
32095
|
lineSpacing: Scalars['Float']['input'];
|
|
31802
32096
|
pageMargins: ConfluencePdfExportPageMarginsInput;
|
|
32097
|
+
pageNumberConfig?: InputMaybe<ConfluencePdfExportPageNumberConfigurationInput>;
|
|
31803
32098
|
pageOrientation: ConfluencePdfExportPageOrientationInput;
|
|
31804
32099
|
pageSize: ConfluencePdfExportPageSizeInput;
|
|
31805
32100
|
shouldIncludePageNumbers: Scalars['Boolean']['input'];
|
|
31806
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>;
|
|
31807
32108
|
titlePage: ConfluencePdfExportTitlePageInclusionConfigurationInput;
|
|
31808
32109
|
};
|
|
31809
32110
|
export declare type ConfluenceUpdatePdfExportSpaceConfigurationInput = {
|
|
@@ -33303,6 +33604,7 @@ export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
|
33303
33604
|
ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
|
|
33304
33605
|
ConfluenceTaggedPageRule = "CONFLUENCE_TAGGED_PAGE_RULE",
|
|
33305
33606
|
ConfluenceUpdatedPageRule = "CONFLUENCE_UPDATED_PAGE_RULE",
|
|
33607
|
+
ConfluenceWatchedPageRule = "CONFLUENCE_WATCHED_PAGE_RULE",
|
|
33306
33608
|
JiraIssueRule = "JIRA_ISSUE_RULE",
|
|
33307
33609
|
Llm = "LLM",
|
|
33308
33610
|
LoomVideoRule = "LOOM_VIDEO_RULE",
|
|
@@ -37874,7 +38176,7 @@ export declare type DevAiAutodevNextProject = {
|
|
|
37874
38176
|
__typename?: 'DevAiAutodevNextProject';
|
|
37875
38177
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37876
38178
|
id: Scalars['ID']['output'];
|
|
37877
|
-
|
|
38179
|
+
jiraProject?: Maybe<JiraProject>;
|
|
37878
38180
|
projectAri: Scalars['ID']['output'];
|
|
37879
38181
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37880
38182
|
workspaceId: Scalars['ID']['output'];
|
|
@@ -37892,7 +38194,6 @@ export declare type DevAiAutodevNextProjectEdge = {
|
|
|
37892
38194
|
node: DevAiAutodevNextProject;
|
|
37893
38195
|
};
|
|
37894
38196
|
export declare type DevAiAutodevNextProjectItemInput = {
|
|
37895
|
-
jiraProjectKey: Scalars['String']['input'];
|
|
37896
38197
|
projectAri: Scalars['ID']['input'];
|
|
37897
38198
|
};
|
|
37898
38199
|
export declare type DevAiAutodevNextRemoveMembersInput = {
|
|
@@ -37962,6 +38263,7 @@ export declare type DevAiAutodevNextWorkstreamMember = {
|
|
|
37962
38263
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
37963
38264
|
id: Scalars['ID']['output'];
|
|
37964
38265
|
role: DevAiAutodevNextWorkstreamMemberRole;
|
|
38266
|
+
user?: Maybe<User>;
|
|
37965
38267
|
userId: Scalars['ID']['output'];
|
|
37966
38268
|
workspaceId: Scalars['ID']['output'];
|
|
37967
38269
|
workstreamId: Scalars['ID']['output'];
|
|
@@ -37972,12 +38274,12 @@ export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
|
37972
38274
|
}
|
|
37973
38275
|
export declare type DevAiAutodevNextWorkstreamSettings = {
|
|
37974
38276
|
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
37975
|
-
|
|
38277
|
+
defaultJiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
37976
38278
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
37977
38279
|
wipLimit?: Maybe<Scalars['Int']['output']>;
|
|
37978
38280
|
};
|
|
37979
38281
|
export declare type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
37980
|
-
|
|
38282
|
+
defaultJiraProjectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
37981
38283
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
37982
38284
|
wipLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
37983
38285
|
};
|
|
@@ -41694,6 +41996,7 @@ export declare type Extension = {
|
|
|
41694
41996
|
installation?: Maybe<AppInstallationSummary>;
|
|
41695
41997
|
installationConfig?: Maybe<Array<EcosystemAppInstallationConfigExtension>>;
|
|
41696
41998
|
installationId: Scalars['String']['output'];
|
|
41999
|
+
installationTarget?: Maybe<InstallationTarget>;
|
|
41697
42000
|
key: Scalars['String']['output'];
|
|
41698
42001
|
license?: Maybe<AppInstallationLicense>;
|
|
41699
42002
|
manuallyAddedReadMeScope?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -41913,6 +42216,8 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
41913
42216
|
attachments?: Maybe<Array<Maybe<ExternalCalendarEventAttachment>>>;
|
|
41914
42217
|
attendeeCount?: Maybe<Scalars['Long']['output']>;
|
|
41915
42218
|
attendees?: Maybe<Array<Maybe<ExternalAttendee>>>;
|
|
42219
|
+
container?: Maybe<ExternalEntity>;
|
|
42220
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
41916
42221
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
41917
42222
|
createdBy?: Maybe<ExternalUser>;
|
|
41918
42223
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -41928,12 +42233,14 @@ export declare type ExternalCalendarEvent = Node & {
|
|
|
41928
42233
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
41929
42234
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
41930
42235
|
location?: Maybe<ExternalLocation>;
|
|
42236
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
41931
42237
|
parent?: Maybe<ExternalEntity>;
|
|
41932
42238
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
41933
42239
|
provider?: Maybe<ExternalProvider>;
|
|
41934
42240
|
recordingUrl?: Maybe<Scalars['String']['output']>;
|
|
41935
42241
|
recurringEventId?: Maybe<Scalars['String']['output']>;
|
|
41936
42242
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
42243
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
41937
42244
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
41938
42245
|
url?: Maybe<Scalars['String']['output']>;
|
|
41939
42246
|
videoMeetingProvider?: Maybe<Scalars['String']['output']>;
|
|
@@ -42948,10 +43255,19 @@ export declare type ExternalProjectAttachment = {
|
|
|
42948
43255
|
};
|
|
42949
43256
|
export declare type ExternalProvider = {
|
|
42950
43257
|
__typename?: 'ExternalProvider';
|
|
43258
|
+
actions?: Maybe<Array<Maybe<ExternalProviderAction>>>;
|
|
43259
|
+
documentationUrl?: Maybe<Scalars['String']['output']>;
|
|
43260
|
+
homeUrl?: Maybe<Scalars['String']['output']>;
|
|
42951
43261
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
42952
43262
|
name?: Maybe<Scalars['String']['output']>;
|
|
42953
43263
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
42954
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
|
+
};
|
|
42955
43271
|
export declare type ExternalPullRequest = Node & {
|
|
42956
43272
|
__typename?: 'ExternalPullRequest';
|
|
42957
43273
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -45011,6 +45327,31 @@ export declare type GlanceUserInsights = {
|
|
|
45011
45327
|
type?: Maybe<Scalars['String']['output']>;
|
|
45012
45328
|
updated_at?: Maybe<Scalars['String']['output']>;
|
|
45013
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
|
+
};
|
|
45014
45355
|
export declare type GlobalCardCreateAdditionalFields = {
|
|
45015
45356
|
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
45016
45357
|
boardIssueListKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -59611,7 +59952,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
59611
59952
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
59612
59953
|
id: Scalars['ID']['output'];
|
|
59613
59954
|
};
|
|
59614
|
-
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 | 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;
|
|
59615
59956
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
59616
59957
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
59617
59958
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -59636,7 +59977,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
59636
59977
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
59637
59978
|
id: Scalars['ID']['output'];
|
|
59638
59979
|
};
|
|
59639
|
-
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 | 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;
|
|
59640
59981
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
59641
59982
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
59642
59983
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -60511,7 +60852,7 @@ export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
|
60511
60852
|
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
60512
60853
|
id: Scalars['ID']['output'];
|
|
60513
60854
|
};
|
|
60514
|
-
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 | 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;
|
|
60515
60856
|
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
60516
60857
|
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
60517
60858
|
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
@@ -61672,7 +62013,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
61672
62013
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
61673
62014
|
id: Scalars['ID']['output'];
|
|
61674
62015
|
};
|
|
61675
|
-
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 | 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;
|
|
61676
62017
|
export declare type GraphStoreCypherQueryStringListObject = {
|
|
61677
62018
|
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
61678
62019
|
values: Array<Scalars['String']['output']>;
|
|
@@ -61694,13 +62035,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
61694
62035
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
61695
62036
|
id: Scalars['ID']['output'];
|
|
61696
62037
|
};
|
|
61697
|
-
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 | 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;
|
|
61698
62039
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
61699
62040
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
61700
62041
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
61701
62042
|
id: Scalars['ID']['output'];
|
|
61702
62043
|
};
|
|
61703
|
-
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 | 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;
|
|
61704
62045
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
61705
62046
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
61706
62047
|
value: Scalars['Boolean']['output'];
|
|
@@ -61845,7 +62186,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
61845
62186
|
V2 = "V2",
|
|
61846
62187
|
V3 = "V3"
|
|
61847
62188
|
}
|
|
61848
|
-
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 | 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;
|
|
61849
62190
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
61850
62191
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
61851
62192
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -62742,7 +63083,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
62742
63083
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
62743
63084
|
id: Scalars['ID']['output'];
|
|
62744
63085
|
};
|
|
62745
|
-
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 | 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;
|
|
62746
63087
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
62747
63088
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
62748
63089
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -62756,7 +63097,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
62756
63097
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
62757
63098
|
id: Scalars['ID']['output'];
|
|
62758
63099
|
};
|
|
62759
|
-
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 | 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;
|
|
62760
63101
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
62761
63102
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
62762
63103
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -69238,7 +69579,7 @@ export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseEd
|
|
|
69238
69579
|
node?: Maybe<GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseUnion>;
|
|
69239
69580
|
};
|
|
69240
69581
|
export declare type GraphStoreSimplifiedCompassComponentLinkLinksEntityInverseUnion = CompassLinkNode;
|
|
69241
|
-
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 | 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;
|
|
69242
69583
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
69243
69584
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentConnection';
|
|
69244
69585
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentEdge>>>;
|
|
@@ -69745,8 +70086,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
69745
70086
|
lastUpdated: Scalars['DateTime']['output'];
|
|
69746
70087
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
69747
70088
|
};
|
|
69748
|
-
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 | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
69749
|
-
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 | 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;
|
|
69750
70091
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
69751
70092
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
69752
70093
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -74334,7 +74675,7 @@ export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
|
74334
74675
|
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
74335
74676
|
};
|
|
74336
74677
|
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
74337
|
-
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 | 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;
|
|
74338
74679
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
74339
74680
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
74340
74681
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -88215,7 +88556,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
88215
88556
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
88216
88557
|
id: Scalars['ID']['output'];
|
|
88217
88558
|
};
|
|
88218
|
-
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 | 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;
|
|
88219
88560
|
export declare type GraphStoreV2CypherQueryV2BoolListObject = {
|
|
88220
88561
|
__typename?: 'GraphStoreV2CypherQueryV2BoolListObject';
|
|
88221
88562
|
values: Array<Scalars['Boolean']['output']>;
|
|
@@ -91091,7 +91432,7 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseEdge
|
|
|
91091
91432
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion>;
|
|
91092
91433
|
};
|
|
91093
91434
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksEntityInverseUnion = TownsquareProject;
|
|
91094
|
-
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 | 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;
|
|
91095
91436
|
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
91096
91437
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
|
|
91097
91438
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
|
|
@@ -94527,7 +94868,7 @@ export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverse
|
|
|
94527
94868
|
node?: Maybe<GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseUnion>;
|
|
94528
94869
|
};
|
|
94529
94870
|
export declare type GraphStoreV2SimplifiedCompassComponentLinkLinksEntityInverseUnion = CompassLinkNode;
|
|
94530
|
-
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 | 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;
|
|
94531
94872
|
export declare type GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection = HasPageInfo & {
|
|
94532
94873
|
__typename?: 'GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalConnection';
|
|
94533
94874
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCompassScorecardHasAtlassianGoalEdge>>>;
|
|
@@ -94974,8 +95315,8 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
94974
95315
|
lastUpdated: Scalars['DateTime']['output'];
|
|
94975
95316
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
94976
95317
|
};
|
|
94977
|
-
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 | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
94978
|
-
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 | 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;
|
|
94979
95320
|
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
94980
95321
|
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
94981
95322
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
@@ -99851,7 +100192,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseEdge = {
|
|
|
99851
100192
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion>;
|
|
99852
100193
|
};
|
|
99853
100194
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityInverseUnion = TownsquareProject;
|
|
99854
|
-
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 | 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;
|
|
99855
100196
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection = HasPageInfo & HasTotal & {
|
|
99856
100197
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchConnection';
|
|
99857
100198
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksExternalBranchEdge>>>;
|
|
@@ -102262,6 +102603,7 @@ export declare type GravityCreateViewFromTemplateInput = {
|
|
|
102262
102603
|
projectId: Scalars['ID']['input'];
|
|
102263
102604
|
refMappings?: InputMaybe<GravityRefMappingsInput>;
|
|
102264
102605
|
refResolutionStrategy?: InputMaybe<GravityRefResolutionStrategy>;
|
|
102606
|
+
sectionId?: InputMaybe<Scalars['String']['input']>;
|
|
102265
102607
|
templateId: Scalars['ID']['input'];
|
|
102266
102608
|
};
|
|
102267
102609
|
export declare type GravityCreateViewFromTemplatePayload = Payload & {
|
|
@@ -105565,6 +105907,7 @@ export declare type HelpObjectStoreQueryApi = {
|
|
|
105565
105907
|
portalGroups?: Maybe<HelpObjectStorePortalGroupsResult>;
|
|
105566
105908
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
105567
105909
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
105910
|
+
suggestedRequestTypes?: Maybe<HelpObjectStoreSuggestedRequestTypesResult>;
|
|
105568
105911
|
};
|
|
105569
105912
|
export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
105570
105913
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -105591,6 +105934,9 @@ export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
|
105591
105934
|
export declare type HelpObjectStoreQueryApiSearchHelpObjectsArgs = {
|
|
105592
105935
|
searchInput: HelpObjectStoreSearchInput;
|
|
105593
105936
|
};
|
|
105937
|
+
export declare type HelpObjectStoreQueryApiSuggestedRequestTypesArgs = {
|
|
105938
|
+
helpCenterId: Scalars['ID']['input'];
|
|
105939
|
+
};
|
|
105594
105940
|
export declare type HelpObjectStoreQueryError = {
|
|
105595
105941
|
__typename?: 'HelpObjectStoreQueryError';
|
|
105596
105942
|
ari: Scalars['ID']['output'];
|
|
@@ -105709,6 +106055,18 @@ export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
|
105709
106055
|
entityId: Scalars['String']['output'];
|
|
105710
106056
|
entityKey?: Maybe<Scalars['String']['output']>;
|
|
105711
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;
|
|
105712
106070
|
export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
105713
106071
|
articleIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105714
106072
|
contentTypes?: InputMaybe<Array<HelpObjectStoreArticleContentType>>;
|
|
@@ -107167,6 +107525,7 @@ export declare enum JiraAgentCreatorType {
|
|
|
107167
107525
|
Customer = "CUSTOMER",
|
|
107168
107526
|
Forge = "FORGE",
|
|
107169
107527
|
Ootb = "OOTB",
|
|
107528
|
+
RemoteA2A = "REMOTE_A2A",
|
|
107170
107529
|
System = "SYSTEM",
|
|
107171
107530
|
ThirdParty = "THIRD_PARTY"
|
|
107172
107531
|
}
|
|
@@ -107970,6 +108329,7 @@ export declare type JiraAttachmentResource = JiraConsolidatedResource & {
|
|
|
107970
108329
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
107971
108330
|
parent?: Maybe<JiraAttachmentParentName>;
|
|
107972
108331
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
108332
|
+
parentName?: Maybe<Scalars['String']['output']>;
|
|
107973
108333
|
};
|
|
107974
108334
|
export declare type JiraAttachmentSearchViewContext = {
|
|
107975
108335
|
__typename?: 'JiraAttachmentSearchViewContext';
|
|
@@ -108503,6 +108863,34 @@ export declare type JiraBacklogIssueEpicLinkField = {
|
|
|
108503
108863
|
text?: Maybe<Scalars['String']['output']>;
|
|
108504
108864
|
type?: Maybe<Scalars['String']['output']>;
|
|
108505
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
|
+
};
|
|
108506
108894
|
export declare type JiraBacklogLocation = {
|
|
108507
108895
|
__typename?: 'JiraBacklogLocation';
|
|
108508
108896
|
id: Scalars['ID']['output'];
|
|
@@ -108697,6 +109085,7 @@ export declare type JiraBacklogView = JiraView & Node & {
|
|
|
108697
109085
|
globalConfig?: Maybe<JiraBacklogViewGlobalConfig>;
|
|
108698
109086
|
id: Scalars['ID']['output'];
|
|
108699
109087
|
issueTypeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
109088
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
108700
109089
|
labelFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
108701
109090
|
permissions?: Maybe<JiraBacklogViewPermissions>;
|
|
108702
109091
|
projects?: Maybe<JiraProjectConnection>;
|
|
@@ -108730,6 +109119,13 @@ export declare type JiraBacklogViewIssueTypeFiltersArgs = {
|
|
|
108730
109119
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
108731
109120
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108732
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
|
+
};
|
|
108733
109129
|
export declare type JiraBacklogViewLabelFiltersArgs = {
|
|
108734
109130
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
108735
109131
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -115176,6 +115572,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
115176
115572
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
115177
115573
|
attachmentsWithFilters?: Maybe<JiraAttachmentWithFiltersResult>;
|
|
115178
115574
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
115575
|
+
backlogIssueValues?: Maybe<JiraBacklogIssueValues>;
|
|
115179
115576
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
115180
115577
|
canCreateSubtask?: Maybe<Scalars['Boolean']['output']>;
|
|
115181
115578
|
canDownloadAttachment?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -118312,6 +118709,7 @@ export declare type JiraJqlBuilder = {
|
|
|
118312
118709
|
hydrateJqlQueryForFilter?: Maybe<JiraJqlHydratedQueryResult>;
|
|
118313
118710
|
issueTypes?: Maybe<JiraJqlIssueTypes>;
|
|
118314
118711
|
myFilterFields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
118712
|
+
myFilterFieldsWithIds?: Maybe<JiraMyFilterFieldConnectionResult>;
|
|
118315
118713
|
recentFields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
118316
118714
|
recentlyUsedProjects?: Maybe<JiraJqlProjectFieldValueConnection>;
|
|
118317
118715
|
recentlyUsedSprints?: Maybe<JiraJqlSprintFieldValueConnection>;
|
|
@@ -118372,6 +118770,9 @@ export declare type JiraJqlBuilderIssueTypesArgs = {
|
|
|
118372
118770
|
export declare type JiraJqlBuilderMyFilterFieldsArgs = {
|
|
118373
118771
|
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
118374
118772
|
};
|
|
118773
|
+
export declare type JiraJqlBuilderMyFilterFieldsWithIdsArgs = {
|
|
118774
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
118775
|
+
};
|
|
118375
118776
|
export declare type JiraJqlBuilderRecentFieldsArgs = {
|
|
118376
118777
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
118377
118778
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -120877,6 +121278,23 @@ export declare type JiraMutationUpdateWorklogArgs = {
|
|
|
120877
121278
|
export declare type JiraMutationUserPreferencesArgs = {
|
|
120878
121279
|
cloudId: Scalars['ID']['input'];
|
|
120879
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
|
+
};
|
|
120880
121298
|
export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload = Payload & {
|
|
120881
121299
|
__typename?: 'JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload';
|
|
120882
121300
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -123884,7 +124302,6 @@ export declare type JiraQuery = {
|
|
|
123884
124302
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
123885
124303
|
searchViewContexts?: Maybe<JiraIssueSearchBulkViewContextsConnection>;
|
|
123886
124304
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
123887
|
-
shouldShowInviteButton?: Maybe<Scalars['Boolean']['output']>;
|
|
123888
124305
|
sprintById?: Maybe<JiraSprint>;
|
|
123889
124306
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
123890
124307
|
startDateField?: Maybe<JiraJqlField>;
|
|
@@ -124078,8 +124495,14 @@ export declare type JiraQueryChildWorkItemsArgs = {
|
|
|
124078
124495
|
cloudId: Scalars['ID']['input'];
|
|
124079
124496
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
124080
124497
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124498
|
+
isInitialLoadQuery?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124081
124499
|
issueSearchInput: JiraIssueSearchInput;
|
|
124082
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>;
|
|
124083
124506
|
};
|
|
124084
124507
|
export declare type JiraQueryCmdbSelectedObjectAttributesArgs = {
|
|
124085
124508
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125031,9 +125454,6 @@ export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
|
125031
125454
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
125032
125455
|
cloudId: Scalars['ID']['input'];
|
|
125033
125456
|
};
|
|
125034
|
-
export declare type JiraQueryShouldShowInviteButtonArgs = {
|
|
125035
|
-
cloudId: Scalars['ID']['input'];
|
|
125036
|
-
};
|
|
125037
125457
|
export declare type JiraQuerySprintByIdArgs = {
|
|
125038
125458
|
id: Scalars['ID']['input'];
|
|
125039
125459
|
};
|
|
@@ -126049,6 +126469,7 @@ export declare type JiraResource = {
|
|
|
126049
126469
|
isExternallyLinked?: Maybe<Scalars['Boolean']['output']>;
|
|
126050
126470
|
parent?: Maybe<JiraResourceParentName>;
|
|
126051
126471
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
126472
|
+
parentName?: Maybe<Scalars['String']['output']>;
|
|
126052
126473
|
};
|
|
126053
126474
|
export declare enum JiraResourceIntegration {
|
|
126054
126475
|
Attachment = "ATTACHMENT",
|
|
@@ -127838,6 +128259,12 @@ export declare type JiraServiceManagementWorkflowTemplatesMetadataEdge = {
|
|
|
127838
128259
|
cursor: Scalars['String']['output'];
|
|
127839
128260
|
node?: Maybe<JiraServiceManagementWorkflowTemplateMetadata>;
|
|
127840
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
|
+
};
|
|
127841
128268
|
export declare type JiraSetApplicationPropertiesPayload = Payload & {
|
|
127842
128269
|
__typename?: 'JiraSetApplicationPropertiesPayload';
|
|
127843
128270
|
applicationProperties: Array<JiraApplicationProperty>;
|
|
@@ -128229,6 +128656,7 @@ export declare type JiraSetMyFilterFieldsPayload = Payload & {
|
|
|
128229
128656
|
__typename?: 'JiraSetMyFilterFieldsPayload';
|
|
128230
128657
|
errors?: Maybe<Array<MutationError>>;
|
|
128231
128658
|
fields: Array<Scalars['String']['output']>;
|
|
128659
|
+
myFilterFieldsWithIds: JiraMyFilterFieldConnectionResult;
|
|
128232
128660
|
success: Scalars['Boolean']['output'];
|
|
128233
128661
|
};
|
|
128234
128662
|
export declare type JiraSetProjectAccessRequestAllowedPropertyInput = {
|
|
@@ -132588,6 +133016,9 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
132588
133016
|
fieldOptions: Array<JpdViewsServiceOptionInput>;
|
|
132589
133017
|
reversed: Scalars['Boolean']['input'];
|
|
132590
133018
|
};
|
|
133019
|
+
export declare type JpdViewsServiceCloneGlobalViewInput = {
|
|
133020
|
+
id: Scalars['ID']['input'];
|
|
133021
|
+
};
|
|
132591
133022
|
export declare type JpdViewsServiceCloneViewIntoGlobalInput = {
|
|
132592
133023
|
id: Scalars['ID']['input'];
|
|
132593
133024
|
};
|
|
@@ -134530,6 +134961,7 @@ export declare type KitsuneCustomer = {
|
|
|
134530
134961
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
134531
134962
|
email: Scalars['String']['output'];
|
|
134532
134963
|
id: Scalars['ID']['output'];
|
|
134964
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
134533
134965
|
organizations?: Maybe<Array<KitsuneOrganization>>;
|
|
134534
134966
|
};
|
|
134535
134967
|
export declare type KitsuneCustomerConnection = KitsuneConnection & {
|
|
@@ -136057,9 +136489,11 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
136057
136489
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
136058
136490
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
136059
136491
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
136492
|
+
singleUser?: Maybe<KnowledgeDiscoverySingleUserResult>;
|
|
136060
136493
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
136061
136494
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
136062
136495
|
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
136496
|
+
userSearchV2?: Maybe<KnowledgeDiscoverySearchUsersResult>;
|
|
136063
136497
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
136064
136498
|
zeroQueriesV1?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
136065
136499
|
};
|
|
@@ -136174,6 +136608,11 @@ export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
|
136174
136608
|
siteId: Scalars['String']['input'];
|
|
136175
136609
|
userQuery: Scalars['String']['input'];
|
|
136176
136610
|
};
|
|
136611
|
+
export declare type KnowledgeDiscoveryQueryApiSingleUserArgs = {
|
|
136612
|
+
accountId: Scalars['String']['input'];
|
|
136613
|
+
requestingUserId: Scalars['String']['input'];
|
|
136614
|
+
tenantId: Scalars['String']['input'];
|
|
136615
|
+
};
|
|
136177
136616
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
136178
136617
|
locale: Scalars['String']['input'];
|
|
136179
136618
|
metadata?: InputMaybe<KnowledgeDiscoveryMetadata>;
|
|
@@ -136189,6 +136628,11 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
136189
136628
|
export declare type KnowledgeDiscoveryQueryApiTopicsByArisArgs = {
|
|
136190
136629
|
ids: Array<Scalars['ID']['input']>;
|
|
136191
136630
|
};
|
|
136631
|
+
export declare type KnowledgeDiscoveryQueryApiUserSearchV2Args = {
|
|
136632
|
+
accountIds: Array<Scalars['String']['input']>;
|
|
136633
|
+
requestingUserId: Scalars['String']['input'];
|
|
136634
|
+
tenantId: Scalars['String']['input'];
|
|
136635
|
+
};
|
|
136192
136636
|
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
136193
136637
|
cloudId: Scalars['String']['input'];
|
|
136194
136638
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
@@ -136326,6 +136770,22 @@ export declare type KnowledgeDiscoverySearchUser = {
|
|
|
136326
136770
|
title?: Maybe<Scalars['String']['output']>;
|
|
136327
136771
|
zoneInfo?: Maybe<Scalars['String']['output']>;
|
|
136328
136772
|
};
|
|
136773
|
+
export declare type KnowledgeDiscoverySearchUserCard = {
|
|
136774
|
+
__typename?: 'KnowledgeDiscoverySearchUserCard';
|
|
136775
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
136776
|
+
id: Scalars['String']['output'];
|
|
136777
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
136778
|
+
name: Scalars['String']['output'];
|
|
136779
|
+
thirdPartyIntegrations?: Maybe<Array<KnowledgeDiscoveryThirdPartyIntegration>>;
|
|
136780
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
136781
|
+
zoneInfo?: Maybe<Scalars['String']['output']>;
|
|
136782
|
+
};
|
|
136783
|
+
export declare type KnowledgeDiscoverySearchUsers = {
|
|
136784
|
+
__typename?: 'KnowledgeDiscoverySearchUsers';
|
|
136785
|
+
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUserCard>>>;
|
|
136786
|
+
};
|
|
136787
|
+
export declare type KnowledgeDiscoverySearchUsersResult = KnowledgeDiscoverySearchUsers | QueryError;
|
|
136788
|
+
export declare type KnowledgeDiscoverySingleUserResult = KnowledgeDiscoveryUserPayload | QueryError;
|
|
136329
136789
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
136330
136790
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
136331
136791
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -136345,6 +136805,12 @@ export declare type KnowledgeDiscoveryTeamIntent = KnowledgeDiscoveryIntent & {
|
|
|
136345
136805
|
transformedQuery: Scalars['String']['output'];
|
|
136346
136806
|
};
|
|
136347
136807
|
export declare type KnowledgeDiscoveryTeamSearchResult = KnowledgeDiscoveryTeam | QueryError;
|
|
136808
|
+
export declare type KnowledgeDiscoveryThirdPartyIntegration = {
|
|
136809
|
+
__typename?: 'KnowledgeDiscoveryThirdPartyIntegration';
|
|
136810
|
+
externalId: Scalars['String']['output'];
|
|
136811
|
+
integrationId: Scalars['String']['output'];
|
|
136812
|
+
product: Scalars['String']['output'];
|
|
136813
|
+
};
|
|
136348
136814
|
export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
136349
136815
|
__typename?: 'KnowledgeDiscoveryTopic';
|
|
136350
136816
|
description: Scalars['String']['output'];
|
|
@@ -136428,6 +136894,31 @@ export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
|
136428
136894
|
id: Scalars['ID']['output'];
|
|
136429
136895
|
user?: Maybe<User>;
|
|
136430
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
|
+
};
|
|
136431
136922
|
export declare type KnowledgeDiscoveryUserSearchResult = KnowledgeDiscoveryUsers | QueryError;
|
|
136432
136923
|
export declare type KnowledgeDiscoveryUsers = {
|
|
136433
136924
|
__typename?: 'KnowledgeDiscoveryUsers';
|
|
@@ -139763,6 +140254,11 @@ export declare enum MarketplaceStoreAppNetworkPermissionType {
|
|
|
139763
140254
|
Scripts = "SCRIPTS",
|
|
139764
140255
|
Styles = "STYLES"
|
|
139765
140256
|
}
|
|
140257
|
+
export declare enum MarketplaceStoreAppRequestStatus {
|
|
140258
|
+
Installed = "INSTALLED",
|
|
140259
|
+
Open = "OPEN",
|
|
140260
|
+
Rejected = "REJECTED"
|
|
140261
|
+
}
|
|
139766
140262
|
export declare type MarketplaceStoreAppReview = {
|
|
139767
140263
|
author?: Maybe<MarketplaceStoreReviewAuthor>;
|
|
139768
140264
|
date?: Maybe<Scalars['String']['output']>;
|
|
@@ -140278,6 +140774,14 @@ export declare type MarketplaceStoreImageMediaAsset = {
|
|
|
140278
140774
|
uri: Scalars['String']['output'];
|
|
140279
140775
|
width: Scalars['Int']['output'];
|
|
140280
140776
|
};
|
|
140777
|
+
export declare type MarketplaceStoreInstallAppByProductIdInput = {
|
|
140778
|
+
chargeQuantity?: InputMaybe<Scalars['Int']['input']>;
|
|
140779
|
+
installationId?: InputMaybe<Scalars['String']['input']>;
|
|
140780
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
140781
|
+
productId: Scalars['ID']['input'];
|
|
140782
|
+
secondaryTargetProducts?: InputMaybe<Array<MarketplaceStoreInstallationTargetProduct>>;
|
|
140783
|
+
target: MarketplaceStoreInstallAppTargetInput;
|
|
140784
|
+
};
|
|
140281
140785
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
140282
140786
|
appKey: Scalars['String']['input'];
|
|
140283
140787
|
chargeQuantity?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -140289,6 +140793,7 @@ export declare type MarketplaceStoreInstallAppInput = {
|
|
|
140289
140793
|
export declare type MarketplaceStoreInstallAppResponse = {
|
|
140290
140794
|
__typename?: 'MarketplaceStoreInstallAppResponse';
|
|
140291
140795
|
id: Scalars['ID']['output'];
|
|
140796
|
+
isUpmInstall?: Maybe<Scalars['Boolean']['output']>;
|
|
140292
140797
|
orderId?: Maybe<Scalars['ID']['output']>;
|
|
140293
140798
|
status: MarketplaceStoreInstallAppStatus;
|
|
140294
140799
|
txaAccountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -140454,6 +140959,8 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
140454
140959
|
deleteReview: MarketplaceStoreDeleteReviewResponse;
|
|
140455
140960
|
deleteReviewResponse: MarketplaceStoreDeleteReviewResponse;
|
|
140456
140961
|
installApp: MarketplaceStoreInstallAppResponse;
|
|
140962
|
+
installAppByProductId?: Maybe<MarketplaceStoreInstallAppResponse>;
|
|
140963
|
+
updateAppRequestStatus?: Maybe<MarketplaceStoreUpdateAppRequestStatusResponse>;
|
|
140457
140964
|
updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
140458
140965
|
updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
|
|
140459
140966
|
updateReviewUpvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
@@ -140474,6 +140981,12 @@ export declare type MarketplaceStoreMutationApiDeleteReviewResponseArgs = {
|
|
|
140474
140981
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
140475
140982
|
input: MarketplaceStoreInstallAppInput;
|
|
140476
140983
|
};
|
|
140984
|
+
export declare type MarketplaceStoreMutationApiInstallAppByProductIdArgs = {
|
|
140985
|
+
input: MarketplaceStoreInstallAppByProductIdInput;
|
|
140986
|
+
};
|
|
140987
|
+
export declare type MarketplaceStoreMutationApiUpdateAppRequestStatusArgs = {
|
|
140988
|
+
input: MarketplaceStoreUpdateAppRequestStatusInput;
|
|
140989
|
+
};
|
|
140477
140990
|
export declare type MarketplaceStoreMutationApiUpdateReviewDownvoteArgs = {
|
|
140478
140991
|
input: MarketplaceStoreUpdateReviewVoteInput;
|
|
140479
140992
|
};
|
|
@@ -140793,6 +141306,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
140793
141306
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
140794
141307
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
140795
141308
|
installedAppDetails: MarketplaceStoreInstalledAppDetailsResponse;
|
|
141309
|
+
installedAppDetailsByProductId?: Maybe<MarketplaceStoreInstalledAppDetailsResponse>;
|
|
140796
141310
|
multiInstanceEntitlementForApp: MarketplaceStoreMultiInstanceEntitlementForAppResponse;
|
|
140797
141311
|
multiInstanceEntitlementsForUser: MarketplaceStoreMultiInstanceEntitlementsForUserResponse;
|
|
140798
141312
|
myReview?: Maybe<MarketplaceStoreCurrentUserReviewResponse>;
|
|
@@ -140882,12 +141396,17 @@ export declare type MarketplaceStoreQueryApiHostStatusArgs = {
|
|
|
140882
141396
|
};
|
|
140883
141397
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
140884
141398
|
id: Scalars['ID']['input'];
|
|
141399
|
+
isUpmInstall?: InputMaybe<Scalars['Boolean']['input']>;
|
|
140885
141400
|
orderId?: InputMaybe<Scalars['ID']['input']>;
|
|
141401
|
+
target?: InputMaybe<MarketplaceStoreInstallAppTargetInput>;
|
|
140886
141402
|
txaAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
140887
141403
|
};
|
|
140888
141404
|
export declare type MarketplaceStoreQueryApiInstalledAppDetailsArgs = {
|
|
140889
141405
|
input: MarketplaceStoreInstallAppInput;
|
|
140890
141406
|
};
|
|
141407
|
+
export declare type MarketplaceStoreQueryApiInstalledAppDetailsByProductIdArgs = {
|
|
141408
|
+
input: MarketplaceStoreInstallAppByProductIdInput;
|
|
141409
|
+
};
|
|
140891
141410
|
export declare type MarketplaceStoreQueryApiMultiInstanceEntitlementForAppArgs = {
|
|
140892
141411
|
input: MarketplaceStoreMultiInstanceEntitlementForAppInput;
|
|
140893
141412
|
};
|
|
@@ -141081,6 +141600,25 @@ export declare type MarketplaceStoreTrustSignalDataRules = {
|
|
|
141081
141600
|
name: Scalars['String']['output'];
|
|
141082
141601
|
value: Scalars['Boolean']['output'];
|
|
141083
141602
|
};
|
|
141603
|
+
export declare type MarketplaceStoreUpdateAppRequestStatusError = {
|
|
141604
|
+
__typename?: 'MarketplaceStoreUpdateAppRequestStatusError';
|
|
141605
|
+
id: Scalars['ID']['output'];
|
|
141606
|
+
message: Scalars['String']['output'];
|
|
141607
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
141608
|
+
};
|
|
141609
|
+
export declare type MarketplaceStoreUpdateAppRequestStatusInput = {
|
|
141610
|
+
appRequestStatus: MarketplaceStoreAppRequestStatus;
|
|
141611
|
+
cloudId: Scalars['String']['input'];
|
|
141612
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
141613
|
+
edition?: InputMaybe<Scalars['String']['input']>;
|
|
141614
|
+
productId: Scalars['ID']['input'];
|
|
141615
|
+
productName: Scalars['String']['input'];
|
|
141616
|
+
};
|
|
141617
|
+
export declare type MarketplaceStoreUpdateAppRequestStatusResponse = MarketplaceStoreUpdateAppRequestStatusError | MarketplaceStoreUpdateAppRequestStatusSuccess;
|
|
141618
|
+
export declare type MarketplaceStoreUpdateAppRequestStatusSuccess = {
|
|
141619
|
+
__typename?: 'MarketplaceStoreUpdateAppRequestStatusSuccess';
|
|
141620
|
+
success: Scalars['Boolean']['output'];
|
|
141621
|
+
};
|
|
141084
141622
|
export declare type MarketplaceStoreUpdateReviewFlagInput = {
|
|
141085
141623
|
appKey: Scalars['String']['input'];
|
|
141086
141624
|
reviewId: Scalars['ID']['input'];
|
|
@@ -143360,6 +143898,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
143360
143898
|
unsetCostBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
143361
143899
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
143362
143900
|
updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
|
|
143901
|
+
updateBenefitItemName?: Maybe<MercuryUpdateBenefitItemPayload>;
|
|
143363
143902
|
updateBenefitPeriodValueAmount?: Maybe<MercuryUpdateBenefitPeriodValueAmountPayload>;
|
|
143364
143903
|
updateBenefitTypeName?: Maybe<MercuryUpdateBenefitTypePayload>;
|
|
143365
143904
|
updateCostItemClassification?: Maybe<MercuryUpdateCostItemClassificationPayload>;
|
|
@@ -143446,6 +143985,9 @@ export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
|
143446
143985
|
export declare type MercuryFundsMutationApiUpdateBenefitItemBenefitTypeArgs = {
|
|
143447
143986
|
input: MercuryUpdateBenefitItemBenefitTypeInput;
|
|
143448
143987
|
};
|
|
143988
|
+
export declare type MercuryFundsMutationApiUpdateBenefitItemNameArgs = {
|
|
143989
|
+
input: MercuryUpdateBenefitItemNameInput;
|
|
143990
|
+
};
|
|
143449
143991
|
export declare type MercuryFundsMutationApiUpdateBenefitPeriodValueAmountArgs = {
|
|
143450
143992
|
input: MercuryUpdateBenefitPeriodValueAmountInput;
|
|
143451
143993
|
};
|
|
@@ -143480,6 +144022,7 @@ export declare enum MercuryFundsPermission {
|
|
|
143480
144022
|
CreateCostItem = "CREATE_COST_ITEM",
|
|
143481
144023
|
EditBaseline = "EDIT_BASELINE",
|
|
143482
144024
|
EditBudget = "EDIT_BUDGET",
|
|
144025
|
+
EditFundItem = "EDIT_FUND_ITEM",
|
|
143483
144026
|
ExportFunds = "EXPORT_FUNDS",
|
|
143484
144027
|
ViewFund = "VIEW_FUND"
|
|
143485
144028
|
}
|
|
@@ -144421,6 +144964,7 @@ export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
|
|
|
144421
144964
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
144422
144965
|
externalOwner?: Maybe<MercuryExternalOwner>;
|
|
144423
144966
|
id: Scalars['ID']['output'];
|
|
144967
|
+
mercuryCustomFields?: Maybe<Array<MercuryCustomField>>;
|
|
144424
144968
|
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
144425
144969
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
144426
144970
|
mercuryProjectKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -145303,12 +145847,17 @@ export declare type MercuryRisk = Node & {
|
|
|
145303
145847
|
name: Scalars['String']['output'];
|
|
145304
145848
|
owner?: Maybe<User>;
|
|
145305
145849
|
riskLinks?: Maybe<Array<MercuryRiskLink>>;
|
|
145850
|
+
riskStatusUpdates?: Maybe<MercuryRiskStatusUpdateConnection>;
|
|
145306
145851
|
status?: Maybe<MercuryRiskStatus>;
|
|
145307
145852
|
statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
|
|
145308
145853
|
submitter?: Maybe<User>;
|
|
145309
145854
|
targetDate?: Maybe<MercuryRiskTargetDate>;
|
|
145310
145855
|
updatedDate: Scalars['String']['output'];
|
|
145311
145856
|
};
|
|
145857
|
+
export declare type MercuryRiskRiskStatusUpdatesArgs = {
|
|
145858
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
145859
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145860
|
+
};
|
|
145312
145861
|
export declare type MercuryRiskConnection = {
|
|
145313
145862
|
__typename?: 'MercuryRiskConnection';
|
|
145314
145863
|
edges?: Maybe<Array<Maybe<MercuryRiskEdge>>>;
|
|
@@ -145376,6 +145925,28 @@ export declare type MercuryRiskStatusTransitions = {
|
|
|
145376
145925
|
__typename?: 'MercuryRiskStatusTransitions';
|
|
145377
145926
|
available: Array<MercuryRiskStatusTransition>;
|
|
145378
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
|
+
};
|
|
145379
145950
|
export declare type MercuryRiskTargetDate = {
|
|
145380
145951
|
__typename?: 'MercuryRiskTargetDate';
|
|
145381
145952
|
targetDate: Scalars['String']['output'];
|
|
@@ -145458,6 +146029,7 @@ export declare type MercuryRisksQueryApi = {
|
|
|
145458
146029
|
risk?: Maybe<MercuryRisk>;
|
|
145459
146030
|
riskImpactValues: Array<MercuryRiskImpact>;
|
|
145460
146031
|
riskLikelihoodValues: Array<MercuryRiskLikelihood>;
|
|
146032
|
+
riskStatusUpdatesByIds?: Maybe<Array<Maybe<MercuryRiskStatusUpdate>>>;
|
|
145461
146033
|
riskStatuses: Array<MercuryRiskStatus>;
|
|
145462
146034
|
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
145463
146035
|
risksSearch?: Maybe<MercuryRiskConnection>;
|
|
@@ -145471,6 +146043,9 @@ export declare type MercuryRisksQueryApiRiskImpactValuesArgs = {
|
|
|
145471
146043
|
export declare type MercuryRisksQueryApiRiskLikelihoodValuesArgs = {
|
|
145472
146044
|
cloudId: Scalars['ID']['input'];
|
|
145473
146045
|
};
|
|
146046
|
+
export declare type MercuryRisksQueryApiRiskStatusUpdatesByIdsArgs = {
|
|
146047
|
+
ids: Array<Scalars['ID']['input']>;
|
|
146048
|
+
};
|
|
145474
146049
|
export declare type MercuryRisksQueryApiRiskStatusesArgs = {
|
|
145475
146050
|
cloudId: Scalars['ID']['input'];
|
|
145476
146051
|
};
|
|
@@ -146238,6 +146813,16 @@ export declare type MercuryUpdateBenefitItemBenefitTypePayload = Payload & {
|
|
|
146238
146813
|
success: Scalars['Boolean']['output'];
|
|
146239
146814
|
updatedBenefitItem?: Maybe<MercuryBenefitItem>;
|
|
146240
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
|
+
};
|
|
146241
146826
|
export declare type MercuryUpdateBenefitPeriodValueAmountInput = {
|
|
146242
146827
|
amount: Scalars['String']['input'];
|
|
146243
146828
|
id: Scalars['ID']['input'];
|
|
@@ -147258,6 +147843,7 @@ export declare type Mutation = {
|
|
|
147258
147843
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
147259
147844
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
147260
147845
|
confluence_acceptAnswer?: Maybe<ConfluenceAcceptAnswerPayload>;
|
|
147846
|
+
confluence_addInlineReaction?: Maybe<ConfluenceInlineReactionPayload>;
|
|
147261
147847
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
147262
147848
|
confluence_addTrack?: Maybe<ConfluenceAddTrackPayload>;
|
|
147263
147849
|
confluence_bulkAssignRolesForCombinationId?: Maybe<ConfluencePermissionTransitionBulkAssignRolesPayload>;
|
|
@@ -147324,7 +147910,9 @@ export declare type Mutation = {
|
|
|
147324
147910
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
147325
147911
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
147326
147912
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
147913
|
+
confluence_refreshSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
|
|
147327
147914
|
confluence_removeContentApprovalReviewer?: Maybe<ConfluenceContentApprovalPayload>;
|
|
147915
|
+
confluence_removeInlineReaction?: Maybe<ConfluenceInlineReactionPayload>;
|
|
147328
147916
|
confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
|
|
147329
147917
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
147330
147918
|
confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
|
|
@@ -147571,6 +148159,7 @@ export declare type Mutation = {
|
|
|
147571
148159
|
followUser?: Maybe<FollowUserPayload>;
|
|
147572
148160
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
147573
148161
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
148162
|
+
globalApp_signForgeContextTokens?: Maybe<GlobalAppSignForgeContextTokensResponse>;
|
|
147574
148163
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
147575
148164
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
147576
148165
|
goals_addView?: Maybe<TownsquareGoalsAddViewPayload>;
|
|
@@ -147714,6 +148303,7 @@ export declare type Mutation = {
|
|
|
147714
148303
|
jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
|
|
147715
148304
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
147716
148305
|
jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
148306
|
+
jira_setAgentSessionsIsPlanModeEnabled?: Maybe<JiraSetAgentSessionIsPlanModeEnabledResponsePayload>;
|
|
147717
148307
|
jira_setBacklogViewAssigneeFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
147718
148308
|
jira_setBacklogViewBoardNameToggle?: Maybe<JiraSetBacklogViewPayload>;
|
|
147719
148309
|
jira_setBacklogViewCardDensity?: Maybe<JiraSetBacklogViewPayload>;
|
|
@@ -147789,6 +148379,7 @@ export declare type Mutation = {
|
|
|
147789
148379
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
147790
148380
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
147791
148381
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
148382
|
+
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
147792
148383
|
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
147793
148384
|
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
147794
148385
|
jpdViewsService_createGlobalViewV2?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
@@ -148057,6 +148648,8 @@ export declare type Mutation = {
|
|
|
148057
148648
|
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
148058
148649
|
spf_removePlanOwner?: Maybe<SpfRemovePlanOwnerPayload>;
|
|
148059
148650
|
spf_revokeEntityPermission?: Maybe<SpfRevokeEntityPermissionPayload>;
|
|
148651
|
+
spf_starItem?: Maybe<SpfStarItemPayload>;
|
|
148652
|
+
spf_unstarItem?: Maybe<SpfUnstarItemPayload>;
|
|
148060
148653
|
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
148061
148654
|
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
148062
148655
|
spf_updateAskImpactedWork?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -148241,8 +148834,9 @@ export declare type MutationAdmin_AssignRoleArgs = {
|
|
|
148241
148834
|
orgId: Scalars['ID']['input'];
|
|
148242
148835
|
};
|
|
148243
148836
|
export declare type MutationAdmin_AuditLogEventExportArgs = {
|
|
148244
|
-
container
|
|
148245
|
-
input
|
|
148837
|
+
container?: InputMaybe<AdminAuditLogContainer>;
|
|
148838
|
+
input?: InputMaybe<AdminAuditLogEventExportInput>;
|
|
148839
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
148246
148840
|
};
|
|
148247
148841
|
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
148248
148842
|
resourceAri: Scalars['ID']['input'];
|
|
@@ -149227,6 +149821,10 @@ export declare type MutationConfluence_AcceptAnswerArgs = {
|
|
|
149227
149821
|
cloudId: Scalars['ID']['input'];
|
|
149228
149822
|
input: ConfluenceAcceptAnswerInput;
|
|
149229
149823
|
};
|
|
149824
|
+
export declare type MutationConfluence_AddInlineReactionArgs = {
|
|
149825
|
+
cloudId: Scalars['ID']['input'];
|
|
149826
|
+
input: ConfluenceAddInlineReactionInput;
|
|
149827
|
+
};
|
|
149230
149828
|
export declare type MutationConfluence_AddReactionArgs = {
|
|
149231
149829
|
cloudId: Scalars['ID']['input'];
|
|
149232
149830
|
input: ConfluenceReactionInput;
|
|
@@ -149489,10 +150087,18 @@ export declare type MutationConfluence_PublishDraftWithApprovalReviewTransferArg
|
|
|
149489
150087
|
contentId: Scalars['ID']['input'];
|
|
149490
150088
|
contentStatus: GraphQlContentStatus;
|
|
149491
150089
|
};
|
|
150090
|
+
export declare type MutationConfluence_RefreshSmartSpaceOverviewArgs = {
|
|
150091
|
+
cloudId: Scalars['ID']['input'];
|
|
150092
|
+
input: ConfluenceRefreshSmartSpaceOverviewInput;
|
|
150093
|
+
};
|
|
149492
150094
|
export declare type MutationConfluence_RemoveContentApprovalReviewerArgs = {
|
|
149493
150095
|
cloudId: Scalars['ID']['input'];
|
|
149494
150096
|
removeContentApprovalReviewerInput: ConfluenceRemoveContentApprovalReviewerInput;
|
|
149495
150097
|
};
|
|
150098
|
+
export declare type MutationConfluence_RemoveInlineReactionArgs = {
|
|
150099
|
+
cloudId: Scalars['ID']['input'];
|
|
150100
|
+
input: ConfluenceRemoveInlineReactionInput;
|
|
150101
|
+
};
|
|
149496
150102
|
export declare type MutationConfluence_RemoveTrackArgs = {
|
|
149497
150103
|
cloudId: Scalars['ID']['input'];
|
|
149498
150104
|
input: ConfluenceTrackInput;
|
|
@@ -150365,6 +150971,9 @@ export declare type MutationGeneratePermsReportArgs = {
|
|
|
150365
150971
|
id: Scalars['ID']['input'];
|
|
150366
150972
|
targetType: PermsReportTargetType;
|
|
150367
150973
|
};
|
|
150974
|
+
export declare type MutationGlobalApp_SignForgeContextTokensArgs = {
|
|
150975
|
+
input: GlobalAppSignForgeContextTokensInput;
|
|
150976
|
+
};
|
|
150368
150977
|
export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
150369
150978
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
150370
150979
|
};
|
|
@@ -150795,6 +151404,10 @@ export declare type MutationJira_ScheduleTimelineItemArgs = {
|
|
|
150795
151404
|
cloudId: Scalars['ID']['input'];
|
|
150796
151405
|
input: JiraScheduleTimelineItemInput;
|
|
150797
151406
|
};
|
|
151407
|
+
export declare type MutationJira_SetAgentSessionsIsPlanModeEnabledArgs = {
|
|
151408
|
+
cloudId: Scalars['ID']['input'];
|
|
151409
|
+
isPlanModeEnabled: Scalars['Boolean']['input'];
|
|
151410
|
+
};
|
|
150798
151411
|
export declare type MutationJira_SetBacklogViewAssigneeFiltersArgs = {
|
|
150799
151412
|
input: JiraSetBacklogViewStringFiltersInput;
|
|
150800
151413
|
};
|
|
@@ -151034,6 +151647,9 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
151034
151647
|
export declare type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
151035
151648
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
151036
151649
|
};
|
|
151650
|
+
export declare type MutationJpdViewsService_CloneGlobalViewArgs = {
|
|
151651
|
+
input: JpdViewsServiceCloneGlobalViewInput;
|
|
151652
|
+
};
|
|
151037
151653
|
export declare type MutationJpdViewsService_CloneViewIntoGlobalArgs = {
|
|
151038
151654
|
input: JpdViewsServiceCloneViewIntoGlobalInput;
|
|
151039
151655
|
};
|
|
@@ -151116,6 +151732,7 @@ export declare type MutationJsmConversation_UpdateSettingsArgs = {
|
|
|
151116
151732
|
export declare type MutationKitsune_CreateCustomerArgs = {
|
|
151117
151733
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
151118
151734
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
151735
|
+
organizationAri?: InputMaybe<Scalars['ID']['input']>;
|
|
151119
151736
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
151120
151737
|
workspaceAri: Scalars['ID']['input'];
|
|
151121
151738
|
};
|
|
@@ -151222,8 +151839,9 @@ export declare type MutationKitsune_UpdateInsightArgs = {
|
|
|
151222
151839
|
};
|
|
151223
151840
|
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
151224
151841
|
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
151225
|
-
id
|
|
151842
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
151226
151843
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
151844
|
+
organizationAri?: InputMaybe<Scalars['ID']['input']>;
|
|
151227
151845
|
workspaceAri: Scalars['ID']['input'];
|
|
151228
151846
|
};
|
|
151229
151847
|
export declare type MutationKitsune_UpdateSectionArgs = {
|
|
@@ -151916,6 +152534,12 @@ export declare type MutationSpf_RemovePlanOwnerArgs = {
|
|
|
151916
152534
|
export declare type MutationSpf_RevokeEntityPermissionArgs = {
|
|
151917
152535
|
input: SpfEntityPermissionInput;
|
|
151918
152536
|
};
|
|
152537
|
+
export declare type MutationSpf_StarItemArgs = {
|
|
152538
|
+
input: SpfStarItemInput;
|
|
152539
|
+
};
|
|
152540
|
+
export declare type MutationSpf_UnstarItemArgs = {
|
|
152541
|
+
input: SpfUnstarItemInput;
|
|
152542
|
+
};
|
|
151919
152543
|
export declare type MutationSpf_UpdateAskCommentArgs = {
|
|
151920
152544
|
input: SpfUpdateAskCommentDataInput;
|
|
151921
152545
|
};
|
|
@@ -154914,6 +155538,7 @@ export declare type PostOfficeContextInput = {
|
|
|
154914
155538
|
isSiteAdmin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
154915
155539
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
154916
155540
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
155541
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
154917
155542
|
productEdition?: InputMaybe<Scalars['String']['input']>;
|
|
154918
155543
|
scopes?: InputMaybe<PostOfficeActiveScopesInput>;
|
|
154919
155544
|
subproduct?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -155621,6 +156246,7 @@ export declare type Query = {
|
|
|
155621
156246
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
155622
156247
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
155623
156248
|
assetsVertical_verticalInstantiations: AssetsVerticalVerticalInstantiationConnection;
|
|
156249
|
+
assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
|
|
155624
156250
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
155625
156251
|
assets_objectTypeAttributeValuesByID?: Maybe<Array<Maybe<AssetsObjectTypeAttributeValue>>>;
|
|
155626
156252
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -155648,6 +156274,7 @@ export declare type Query = {
|
|
|
155648
156274
|
avp_getDashboardIdBySlug?: Maybe<AvpGetDashboardIdBySlugPayload>;
|
|
155649
156275
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
155650
156276
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
156277
|
+
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
155651
156278
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
155652
156279
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
155653
156280
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
@@ -155746,6 +156373,7 @@ export declare type Query = {
|
|
|
155746
156373
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
155747
156374
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
155748
156375
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
156376
|
+
confluence_activeInlineData?: Maybe<ConfluenceActiveInlineData>;
|
|
155749
156377
|
confluence_analyticsTimeseries?: Maybe<ConfluenceAnalyticsTimeseriesResult>;
|
|
155750
156378
|
confluence_answer?: Maybe<ConfluenceAnswer>;
|
|
155751
156379
|
confluence_answers?: Maybe<Array<Maybe<ConfluenceAnswer>>>;
|
|
@@ -155796,6 +156424,7 @@ export declare type Query = {
|
|
|
155796
156424
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
155797
156425
|
confluence_getAudioPreference?: Maybe<ConfluenceAudioPreference>;
|
|
155798
156426
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
156427
|
+
confluence_getCutoverRoleConfig?: Maybe<ConfluenceCutoverRoleConfig>;
|
|
155799
156428
|
confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
|
|
155800
156429
|
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
155801
156430
|
confluence_getSmartContentFeatures?: Maybe<Array<Maybe<SmartPageFeatures>>>;
|
|
@@ -155805,6 +156434,7 @@ export declare type Query = {
|
|
|
155805
156434
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
155806
156435
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
155807
156436
|
confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
|
|
156437
|
+
confluence_isGlobalAnonymousEnforcedForAllSpaces?: Maybe<Scalars['Boolean']['output']>;
|
|
155808
156438
|
confluence_isGlobalAnonymousEnforcementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
155809
156439
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
155810
156440
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
@@ -156164,6 +156794,7 @@ export declare type Query = {
|
|
|
156164
156794
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
156165
156795
|
jiraReleases?: Maybe<JiraReleases>;
|
|
156166
156796
|
jiraServers?: Maybe<JiraServersResult>;
|
|
156797
|
+
jira_agentSessionsIsPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
156167
156798
|
jira_backlog?: Maybe<JiraBacklog>;
|
|
156168
156799
|
jira_backlogView?: Maybe<JiraBacklogView>;
|
|
156169
156800
|
jira_backlogViewCardListsByIds?: Maybe<Array<JiraBacklogViewCardList>>;
|
|
@@ -156440,7 +157071,7 @@ export declare type Query = {
|
|
|
156440
157071
|
radar_viewsSearch?: Maybe<RadarViewConnection>;
|
|
156441
157072
|
radar_workerByAri?: Maybe<RadarWorker>;
|
|
156442
157073
|
radar_workersByAris?: Maybe<Array<RadarWorker>>;
|
|
156443
|
-
radar_workspace
|
|
157074
|
+
radar_workspace?: Maybe<RadarWorkspace>;
|
|
156444
157075
|
radar_worktypeAllocations?: Maybe<Array<Maybe<RadarWorktypeAllocation>>>;
|
|
156445
157076
|
radar_worktypeAllocationsAveragesByEntity?: Maybe<Array<RadarWorkAllocationUnit>>;
|
|
156446
157077
|
reactedUsers?: Maybe<ReactedUsersResponse>;
|
|
@@ -156517,6 +157148,9 @@ export declare type Query = {
|
|
|
156517
157148
|
spf_plans?: Maybe<SpfPlanConnection>;
|
|
156518
157149
|
spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
|
|
156519
157150
|
spf_starredItems?: Maybe<SpfStarredItemConnection>;
|
|
157151
|
+
spf_view?: Maybe<SpfViewResult>;
|
|
157152
|
+
spf_views?: Maybe<SpfViewConnection>;
|
|
157153
|
+
spf_viewsByIds?: Maybe<Array<Maybe<SpfView>>>;
|
|
156520
157154
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
156521
157155
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
156522
157156
|
stakeholderComms_customDomainStatus?: Maybe<StakeholderCommsCustomDomainStatusResponse>;
|
|
@@ -157886,6 +158520,7 @@ export declare type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
157886
158520
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
157887
158521
|
cloudId: Scalars['ID']['input'];
|
|
157888
158522
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158523
|
+
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
157889
158524
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
157890
158525
|
};
|
|
157891
158526
|
export declare type QueryAssetsVertical_InsightDetailsArgs = {
|
|
@@ -157936,6 +158571,11 @@ export declare type QueryAssetsVertical_VerticalInstantiationsArgs = {
|
|
|
157936
158571
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157937
158572
|
type?: InputMaybe<AssetsVerticalVerticalType>;
|
|
157938
158573
|
};
|
|
158574
|
+
export declare type QueryAssetsVertical_VerticalTemplateArgs = {
|
|
158575
|
+
cloudId: Scalars['ID']['input'];
|
|
158576
|
+
type: AssetsVerticalVerticalType;
|
|
158577
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
158578
|
+
};
|
|
157939
158579
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
157940
158580
|
id: Scalars['ID']['input'];
|
|
157941
158581
|
};
|
|
@@ -158040,6 +158680,14 @@ export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
|
158040
158680
|
export declare type QueryAvp_GetDashboardsByArisArgs = {
|
|
158041
158681
|
ids: Array<Scalars['ID']['input']>;
|
|
158042
158682
|
};
|
|
158683
|
+
export declare type QueryAvp_GetDashboardsByStatusArgs = {
|
|
158684
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
158685
|
+
cloudId: Scalars['ID']['input'];
|
|
158686
|
+
creatorAri?: InputMaybe<Scalars['String']['input']>;
|
|
158687
|
+
first: Scalars['Int']['input'];
|
|
158688
|
+
status: AvpDashboardStatus;
|
|
158689
|
+
workspaceAri: Scalars['ID']['input'];
|
|
158690
|
+
};
|
|
158043
158691
|
export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
158044
158692
|
dashboardAri: Scalars['ID']['input'];
|
|
158045
158693
|
};
|
|
@@ -158382,6 +159030,10 @@ export declare type QueryConfluenceUsersArgs = {
|
|
|
158382
159030
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
158383
159031
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
158384
159032
|
};
|
|
159033
|
+
export declare type QueryConfluence_ActiveInlineDataArgs = {
|
|
159034
|
+
cloudId: Scalars['ID']['input'];
|
|
159035
|
+
contentId: Scalars['ID']['input'];
|
|
159036
|
+
};
|
|
158385
159037
|
export declare type QueryConfluence_AnalyticsTimeseriesArgs = {
|
|
158386
159038
|
cloudId: Scalars['ID']['input'];
|
|
158387
159039
|
endTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158641,6 +159293,9 @@ export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs =
|
|
|
158641
159293
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158642
159294
|
spaceId: Scalars['ID']['input'];
|
|
158643
159295
|
};
|
|
159296
|
+
export declare type QueryConfluence_GetCutoverRoleConfigArgs = {
|
|
159297
|
+
cloudId: Scalars['ID']['input'];
|
|
159298
|
+
};
|
|
158644
159299
|
export declare type QueryConfluence_GetLatestPendingRequestsArgs = {
|
|
158645
159300
|
cloudId: Scalars['ID']['input'];
|
|
158646
159301
|
contentId: Scalars['ID']['input'];
|
|
@@ -158679,6 +159334,9 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
|
|
|
158679
159334
|
export declare type QueryConfluence_ImportsAllArgs = {
|
|
158680
159335
|
cloudID: Scalars['ID']['input'];
|
|
158681
159336
|
};
|
|
159337
|
+
export declare type QueryConfluence_IsGlobalAnonymousEnforcedForAllSpacesArgs = {
|
|
159338
|
+
cloudId: Scalars['ID']['input'];
|
|
159339
|
+
};
|
|
158682
159340
|
export declare type QueryConfluence_IsGlobalAnonymousEnforcementEnabledArgs = {
|
|
158683
159341
|
cloudId: Scalars['ID']['input'];
|
|
158684
159342
|
};
|
|
@@ -160239,6 +160897,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
160239
160897
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160240
160898
|
id: Scalars['ID']['input'];
|
|
160241
160899
|
};
|
|
160900
|
+
export declare type QueryJira_AgentSessionsIsPlanModeEnabledArgs = {
|
|
160901
|
+
cloudId: Scalars['ID']['input'];
|
|
160902
|
+
};
|
|
160242
160903
|
export declare type QueryJira_BacklogArgs = {
|
|
160243
160904
|
activeQuickFilters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
160244
160905
|
boardId: Scalars['ID']['input'];
|
|
@@ -160575,6 +161236,7 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
160575
161236
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
160576
161237
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
160577
161238
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
161239
|
+
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
160578
161240
|
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
160579
161241
|
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
160580
161242
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -161555,6 +162217,18 @@ export declare type QuerySpf_StarredItemsArgs = {
|
|
|
161555
162217
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161556
162218
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
161557
162219
|
};
|
|
162220
|
+
export declare type QuerySpf_ViewArgs = {
|
|
162221
|
+
id: Scalars['ID']['input'];
|
|
162222
|
+
};
|
|
162223
|
+
export declare type QuerySpf_ViewsArgs = {
|
|
162224
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
162225
|
+
cloudId: Scalars['ID']['input'];
|
|
162226
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162227
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
162228
|
+
};
|
|
162229
|
+
export declare type QuerySpf_ViewsByIdsArgs = {
|
|
162230
|
+
ids: Array<Scalars['ID']['input']>;
|
|
162231
|
+
};
|
|
161558
162232
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
161559
162233
|
appId: Scalars['ID']['input'];
|
|
161560
162234
|
installationId: Scalars['ID']['input'];
|
|
@@ -162970,6 +163644,11 @@ export declare enum RateLimitingCurrency {
|
|
|
162970
163644
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
162971
163645
|
JpdContainerQueryCurrency = "JPD_CONTAINER_QUERY_CURRENCY",
|
|
162972
163646
|
JpdContainerWriteCurrency = "JPD_CONTAINER_WRITE_CURRENCY",
|
|
163647
|
+
KitsuneCsv = "KITSUNE_CSV",
|
|
163648
|
+
KitsuneCustomer = "KITSUNE_CUSTOMER",
|
|
163649
|
+
KitsuneFeedback = "KITSUNE_FEEDBACK",
|
|
163650
|
+
KitsuneFeedbackList = "KITSUNE_FEEDBACK_LIST",
|
|
163651
|
+
KitsuneInsight = "KITSUNE_INSIGHT",
|
|
162973
163652
|
KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
|
|
162974
163653
|
PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
|
|
162975
163654
|
PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
|
|
@@ -164481,6 +165160,7 @@ export declare enum Scope {
|
|
|
164481
165160
|
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
164482
165161
|
ReadConfluencePage = "READ_CONFLUENCE_PAGE",
|
|
164483
165162
|
ReadConfluenceRelation = "READ_CONFLUENCE_RELATION",
|
|
165163
|
+
ReadConfluenceSlide = "READ_CONFLUENCE_SLIDE",
|
|
164484
165164
|
ReadConfluenceSpace = "READ_CONFLUENCE_SPACE",
|
|
164485
165165
|
ReadConfluenceSpacePermission = "READ_CONFLUENCE_SPACE_PERMISSION",
|
|
164486
165166
|
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
@@ -164995,10 +165675,15 @@ export declare type SearchGraphQlConfigurationResponse = {
|
|
|
164995
165675
|
siteMetadata: SearchConfigurationSiteMetadata;
|
|
164996
165676
|
thirdPartyFilterOptions?: Maybe<SearchThirdPartyDynamicFilterOptions>;
|
|
164997
165677
|
thirdPartyProducts: Array<SearchThirdPartyMetadata>;
|
|
165678
|
+
thirdPartySlackChannels?: Maybe<SearchThirdPartySlackChannelOptions>;
|
|
164998
165679
|
};
|
|
164999
165680
|
export declare type SearchGraphQlConfigurationResponseThirdPartyFilterOptionsArgs = {
|
|
165000
165681
|
datasourceId: Scalars['String']['input'];
|
|
165001
165682
|
};
|
|
165683
|
+
export declare type SearchGraphQlConfigurationResponseThirdPartySlackChannelsArgs = {
|
|
165684
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
165685
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
165686
|
+
};
|
|
165002
165687
|
export declare type SearchInput = {
|
|
165003
165688
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165004
165689
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
@@ -165506,6 +166191,10 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
165506
166191
|
connectorProduct?: Maybe<Scalars['String']['output']>;
|
|
165507
166192
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
165508
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']>;
|
|
165509
166198
|
description: Scalars['String']['output'];
|
|
165510
166199
|
entity?: Maybe<SearchResultEntity>;
|
|
165511
166200
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
@@ -165528,11 +166217,13 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
165528
166217
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
165529
166218
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
165530
166219
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
166220
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
165531
166221
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
165532
166222
|
tabs?: Maybe<Array<SearchResultGraphTab>>;
|
|
165533
166223
|
title: Scalars['String']['output'];
|
|
165534
166224
|
type: SearchResultType;
|
|
165535
166225
|
url: Scalars['String']['output'];
|
|
166226
|
+
workspaceName?: Maybe<Scalars['String']['output']>;
|
|
165536
166227
|
};
|
|
165537
166228
|
export declare type SearchResultGraphTab = {
|
|
165538
166229
|
__typename?: 'SearchResultGraphTab';
|
|
@@ -165857,6 +166548,8 @@ export declare enum SearchResultType {
|
|
|
165857
166548
|
Whiteboard = "whiteboard"
|
|
165858
166549
|
}
|
|
165859
166550
|
export declare type SearchSalesforceFilters = {
|
|
166551
|
+
campaignStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
166552
|
+
caseStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
165860
166553
|
closeDate?: InputMaybe<Scalars['String']['input']>;
|
|
165861
166554
|
isClosed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
165862
166555
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -165938,6 +166631,7 @@ export declare type SearchThirdPartyMetadata = {
|
|
|
165938
166631
|
workspaceUrl?: Maybe<Scalars['String']['output']>;
|
|
165939
166632
|
};
|
|
165940
166633
|
export declare type SearchThirdPartyProduct = {
|
|
166634
|
+
channels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
165941
166635
|
connectionIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
165942
166636
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
165943
166637
|
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -165959,6 +166653,20 @@ export declare type SearchThirdPartyRangeFilter = {
|
|
|
165959
166653
|
gt?: InputMaybe<Scalars['String']['input']>;
|
|
165960
166654
|
lt?: InputMaybe<Scalars['String']['input']>;
|
|
165961
166655
|
};
|
|
166656
|
+
export declare type SearchThirdPartySlackChannel = {
|
|
166657
|
+
__typename?: 'SearchThirdPartySlackChannel';
|
|
166658
|
+
id: Scalars['String']['output'];
|
|
166659
|
+
isPrivate: Scalars['Boolean']['output'];
|
|
166660
|
+
name: Scalars['String']['output'];
|
|
166661
|
+
numMembers?: Maybe<Scalars['Int']['output']>;
|
|
166662
|
+
purpose?: Maybe<Scalars['String']['output']>;
|
|
166663
|
+
topic?: Maybe<Scalars['String']['output']>;
|
|
166664
|
+
};
|
|
166665
|
+
export declare type SearchThirdPartySlackChannelOptions = {
|
|
166666
|
+
__typename?: 'SearchThirdPartySlackChannelOptions';
|
|
166667
|
+
channels: Array<SearchThirdPartySlackChannel>;
|
|
166668
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
166669
|
+
};
|
|
165962
166670
|
export declare type SearchTimeseriesCtr = {
|
|
165963
166671
|
__typename?: 'SearchTimeseriesCTR';
|
|
165964
166672
|
nodes: Array<SearchTimeseriesCtrItem>;
|
|
@@ -187024,6 +187732,16 @@ export declare type SpfRevokeEntityPermissionPayload = Payload & {
|
|
|
187024
187732
|
permission?: Maybe<SpfEntityPermissionEntry>;
|
|
187025
187733
|
success: Scalars['Boolean']['output'];
|
|
187026
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
|
+
};
|
|
187027
187745
|
export declare type SpfStarredItem = {
|
|
187028
187746
|
__typename?: 'SpfStarredItem';
|
|
187029
187747
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -187051,6 +187769,16 @@ export declare type SpfStarredItemEdge = {
|
|
|
187051
187769
|
};
|
|
187052
187770
|
export declare type SpfStarredItemResult = QueryError | SpfStarredItem;
|
|
187053
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
|
+
};
|
|
187054
187782
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
187055
187783
|
data: Scalars['String']['input'];
|
|
187056
187784
|
id: Scalars['ID']['input'];
|
|
@@ -187210,6 +187938,40 @@ export declare type SpfUpsertPlanScenarioPayload = Payload & {
|
|
|
187210
187938
|
planScenario?: Maybe<SpfPlanScenario>;
|
|
187211
187939
|
success: Scalars['Boolean']['output'];
|
|
187212
187940
|
};
|
|
187941
|
+
export declare type SpfView = Node & {
|
|
187942
|
+
__typename?: 'SpfView';
|
|
187943
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
187944
|
+
createdBy?: Maybe<User>;
|
|
187945
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
187946
|
+
entityType: Scalars['String']['output'];
|
|
187947
|
+
id: Scalars['ID']['output'];
|
|
187948
|
+
name: Scalars['String']['output'];
|
|
187949
|
+
settings: SpfViewSettings;
|
|
187950
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
187951
|
+
updatedBy?: Maybe<User>;
|
|
187952
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
187953
|
+
};
|
|
187954
|
+
export declare type SpfViewConnection = {
|
|
187955
|
+
__typename?: 'SpfViewConnection';
|
|
187956
|
+
edges?: Maybe<Array<Maybe<SpfViewEdge>>>;
|
|
187957
|
+
pageInfo: PageInfo;
|
|
187958
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
187959
|
+
};
|
|
187960
|
+
export declare type SpfViewEdge = {
|
|
187961
|
+
__typename?: 'SpfViewEdge';
|
|
187962
|
+
cursor: Scalars['String']['output'];
|
|
187963
|
+
node?: Maybe<SpfViewResult>;
|
|
187964
|
+
};
|
|
187965
|
+
export declare type SpfViewResult = QueryError | SpfView;
|
|
187966
|
+
export declare type SpfViewSettingValue = {
|
|
187967
|
+
__typename?: 'SpfViewSettingValue';
|
|
187968
|
+
key: Scalars['String']['output'];
|
|
187969
|
+
value: Scalars['String']['output'];
|
|
187970
|
+
};
|
|
187971
|
+
export declare type SpfViewSettings = {
|
|
187972
|
+
__typename?: 'SpfViewSettings';
|
|
187973
|
+
values: Array<SpfViewSettingValue>;
|
|
187974
|
+
};
|
|
187213
187975
|
export declare type SplitIssueInput = {
|
|
187214
187976
|
newIssues: Array<InputMaybe<NewSplitIssueRequest>>;
|
|
187215
187977
|
originalIssue: OriginalSplitIssue;
|
|
@@ -188237,6 +188999,7 @@ export declare type StakeholderCommsPublicCommunicationResponse = {
|
|
|
188237
188999
|
__typename?: 'StakeholderCommsPublicCommunicationResponse';
|
|
188238
189000
|
error?: Maybe<Scalars['String']['output']>;
|
|
188239
189001
|
message?: Maybe<Scalars['String']['output']>;
|
|
189002
|
+
suggestionsJson?: Maybe<Scalars['String']['output']>;
|
|
188240
189003
|
title?: Maybe<Scalars['String']['output']>;
|
|
188241
189004
|
};
|
|
188242
189005
|
export declare type StakeholderCommsRemoveCustomDomainInput = {
|
|
@@ -190115,6 +190878,7 @@ export declare enum TeamSearchField {
|
|
|
190115
190878
|
Name = "NAME"
|
|
190116
190879
|
}
|
|
190117
190880
|
export declare type TeamSearchFilter = {
|
|
190881
|
+
customFieldValues?: InputMaybe<TeamCustomFieldValuesFilter>;
|
|
190118
190882
|
membership?: InputMaybe<TeamMembershipFilter>;
|
|
190119
190883
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
190120
190884
|
teamTypes?: InputMaybe<TeamTypeFilter>;
|
|
@@ -190236,8 +191000,9 @@ export declare type TeamTypeEdge = {
|
|
|
190236
191000
|
export declare type TeamTypeFilter = {
|
|
190237
191001
|
teamTypeIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
190238
191002
|
};
|
|
190239
|
-
export declare type TeamTypeLevelDefaultPermissionEntity = {
|
|
191003
|
+
export declare type TeamTypeLevelDefaultPermissionEntity = TeamTypePermissionAssignedEntity & {
|
|
190240
191004
|
__typename?: 'TeamTypeLevelDefaultPermissionEntity';
|
|
191005
|
+
id: Scalars['ID']['output'];
|
|
190241
191006
|
type: TeamTypeDefaultPermissionEntity;
|
|
190242
191007
|
};
|
|
190243
191008
|
export declare enum TeamTypeLevelPermission {
|
|
@@ -190260,21 +191025,26 @@ export declare type TeamTypeLevelPermissionInput = {
|
|
|
190260
191025
|
granted: Scalars['Boolean']['input'];
|
|
190261
191026
|
permission: TeamTypeLevelPermission;
|
|
190262
191027
|
};
|
|
190263
|
-
export declare type TeamTypePermissionAssignedEntity =
|
|
191028
|
+
export declare type TeamTypePermissionAssignedEntity = {
|
|
191029
|
+
id: Scalars['ID']['output'];
|
|
191030
|
+
};
|
|
190264
191031
|
export declare type TeamTypePermissionAssignedEntityInput = {
|
|
190265
191032
|
entityId: Scalars['ID']['input'];
|
|
190266
191033
|
permissions: Array<TeamTypeLevelPermissionInput>;
|
|
190267
191034
|
};
|
|
190268
|
-
export declare type TeamTypePermissionAssignedGroup = {
|
|
191035
|
+
export declare type TeamTypePermissionAssignedGroup = TeamTypePermissionAssignedEntity & {
|
|
190269
191036
|
__typename?: 'TeamTypePermissionAssignedGroup';
|
|
190270
191037
|
group?: Maybe<IdentityGroup>;
|
|
191038
|
+
id: Scalars['ID']['output'];
|
|
190271
191039
|
};
|
|
190272
|
-
export declare type TeamTypePermissionAssignedTeam = {
|
|
191040
|
+
export declare type TeamTypePermissionAssignedTeam = TeamTypePermissionAssignedEntity & {
|
|
190273
191041
|
__typename?: 'TeamTypePermissionAssignedTeam';
|
|
191042
|
+
id: Scalars['ID']['output'];
|
|
190274
191043
|
team?: Maybe<TeamV2>;
|
|
190275
191044
|
};
|
|
190276
|
-
export declare type TeamTypePermissionAssignedUser = {
|
|
191045
|
+
export declare type TeamTypePermissionAssignedUser = TeamTypePermissionAssignedEntity & {
|
|
190277
191046
|
__typename?: 'TeamTypePermissionAssignedUser';
|
|
191047
|
+
id: Scalars['ID']['output'];
|
|
190278
191048
|
user?: Maybe<User>;
|
|
190279
191049
|
};
|
|
190280
191050
|
export declare type TeamTypePermissionDelegationConnection = {
|
|
@@ -190588,7 +191358,6 @@ export declare type ThirdPartyUser = LocalizationContext & {
|
|
|
190588
191358
|
__typename?: 'ThirdPartyUser';
|
|
190589
191359
|
accountId: Scalars['ID']['output'];
|
|
190590
191360
|
accountStatus: AccountStatus;
|
|
190591
|
-
atlassianUser?: Maybe<User>;
|
|
190592
191361
|
canonicalAccountId: Scalars['ID']['output'];
|
|
190593
191362
|
createdAt: Scalars['DateTime']['output'];
|
|
190594
191363
|
email?: Maybe<Scalars['String']['output']>;
|
|
@@ -191142,6 +191911,7 @@ export declare type TownsquareCreateGoalHasJiraAlignProjectPayload = {
|
|
|
191142
191911
|
success: Scalars['Boolean']['output'];
|
|
191143
191912
|
};
|
|
191144
191913
|
export declare type TownsquareCreateGoalInput = {
|
|
191914
|
+
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
191145
191915
|
containerId: Scalars['String']['input'];
|
|
191146
191916
|
goalTypeAri?: InputMaybe<Scalars['String']['input']>;
|
|
191147
191917
|
name: Scalars['String']['input'];
|
|
@@ -191741,16 +192511,28 @@ export declare enum TownsquareGoalIconKey {
|
|
|
191741
192511
|
KeyResult = "KEY_RESULT",
|
|
191742
192512
|
Objective = "OBJECTIVE"
|
|
191743
192513
|
}
|
|
192514
|
+
export declare type TownsquareGoalManageAccessAddedInput = {
|
|
192515
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192516
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
192517
|
+
role: TownsquareGoalAccessRoleInput;
|
|
192518
|
+
};
|
|
191744
192519
|
export declare type TownsquareGoalManageAccessInput = {
|
|
191745
192520
|
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
192521
|
+
added?: InputMaybe<TownsquareGoalManageAccessAddedInput>;
|
|
191746
192522
|
goalId: Scalars['ID']['input'];
|
|
192523
|
+
revoked?: InputMaybe<TownsquareGoalManageAccessRevokedInput>;
|
|
191747
192524
|
};
|
|
191748
192525
|
export declare type TownsquareGoalManageAccessPayload = {
|
|
191749
192526
|
__typename?: 'TownsquareGoalManageAccessPayload';
|
|
192527
|
+
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
|
|
191750
192528
|
errors?: Maybe<Array<MutationError>>;
|
|
191751
192529
|
goal?: Maybe<TownsquareGoal>;
|
|
192530
|
+
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
191752
192531
|
success: Scalars['Boolean']['output'];
|
|
191753
192532
|
};
|
|
192533
|
+
export declare type TownsquareGoalManageAccessRevokedInput = {
|
|
192534
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
192535
|
+
};
|
|
191754
192536
|
export declare type TownsquareGoalMetricUpdate = {
|
|
191755
192537
|
__typename?: 'TownsquareGoalMetricUpdate';
|
|
191756
192538
|
metric?: Maybe<TownsquareMetric>;
|
|
@@ -192146,6 +192928,7 @@ export declare type TownsquareGoalsCreateGoalTypePairInput = {
|
|
|
192146
192928
|
successMeasureType?: InputMaybe<TownsquareCreateOrEditSuccessMeasureInput>;
|
|
192147
192929
|
};
|
|
192148
192930
|
export declare type TownsquareGoalsCreateInput = {
|
|
192931
|
+
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
192149
192932
|
containerId: Scalars['ID']['input'];
|
|
192150
192933
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
192151
192934
|
goalTypeId: Scalars['ID']['input'];
|
|
@@ -193263,16 +194046,29 @@ export declare type TownsquareProjectGrantAccessPayload = {
|
|
|
193263
194046
|
project?: Maybe<TownsquareProject>;
|
|
193264
194047
|
success: Scalars['Boolean']['output'];
|
|
193265
194048
|
};
|
|
194049
|
+
export declare type TownsquareProjectManageAccessAddedInput = {
|
|
194050
|
+
addAsContributor?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194051
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194052
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
194053
|
+
role: TownsquareProjectAccessRoleInput;
|
|
194054
|
+
};
|
|
193266
194055
|
export declare type TownsquareProjectManageAccessInput = {
|
|
193267
194056
|
accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
|
|
194057
|
+
added?: InputMaybe<TownsquareProjectManageAccessAddedInput>;
|
|
193268
194058
|
projectId: Scalars['ID']['input'];
|
|
194059
|
+
revoked?: InputMaybe<TownsquareProjectManageAccessRevokedInput>;
|
|
193269
194060
|
};
|
|
193270
194061
|
export declare type TownsquareProjectManageAccessPayload = {
|
|
193271
194062
|
__typename?: 'TownsquareProjectManageAccessPayload';
|
|
194063
|
+
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
193272
194064
|
errors?: Maybe<Array<MutationError>>;
|
|
193273
194065
|
project?: Maybe<TownsquareProject>;
|
|
194066
|
+
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
193274
194067
|
success: Scalars['Boolean']['output'];
|
|
193275
194068
|
};
|
|
194069
|
+
export declare type TownsquareProjectManageAccessRevokedInput = {
|
|
194070
|
+
principalIds: Array<Scalars['ID']['input']>;
|
|
194071
|
+
};
|
|
193276
194072
|
export declare enum TownsquareProjectPhase {
|
|
193277
194073
|
Done = "done",
|
|
193278
194074
|
InProgress = "in_progress",
|
|
@@ -195467,6 +196263,11 @@ export declare type TrelloBoardRestrictions = {
|
|
|
195467
196263
|
private?: Maybe<Scalars['String']['output']>;
|
|
195468
196264
|
public?: Maybe<Scalars['String']['output']>;
|
|
195469
196265
|
};
|
|
196266
|
+
export declare type TrelloBoardSearchResult = {
|
|
196267
|
+
__typename?: 'TrelloBoardSearchResult';
|
|
196268
|
+
options?: Maybe<TrelloSearchOptions>;
|
|
196269
|
+
results?: Maybe<TrelloSearchBoardConnection>;
|
|
196270
|
+
};
|
|
195470
196271
|
export declare type TrelloBoardStarConnectionUpdated = {
|
|
195471
196272
|
__typename?: 'TrelloBoardStarConnectionUpdated';
|
|
195472
196273
|
edges?: Maybe<Array<TrelloBoardStarUpdatedEdge>>;
|
|
@@ -197330,6 +198131,7 @@ export declare type TrelloMemberBoardStarsArgs = {
|
|
|
197330
198131
|
};
|
|
197331
198132
|
export declare type TrelloMemberBoardsArgs = {
|
|
197332
198133
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
198134
|
+
filter?: InputMaybe<TrelloMemberBoardFilter>;
|
|
197333
198135
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197334
198136
|
};
|
|
197335
198137
|
export declare type TrelloMemberNotificationsArgs = {
|
|
@@ -197378,6 +198180,12 @@ export declare type TrelloMemberBoardEdge = {
|
|
|
197378
198180
|
cursor: Scalars['String']['output'];
|
|
197379
198181
|
node?: Maybe<TrelloBoard>;
|
|
197380
198182
|
};
|
|
198183
|
+
export declare type TrelloMemberBoardFilter = {
|
|
198184
|
+
filterValue?: InputMaybe<TrelloMemberBoardFilterValue>;
|
|
198185
|
+
};
|
|
198186
|
+
export declare enum TrelloMemberBoardFilterValue {
|
|
198187
|
+
All = "ALL"
|
|
198188
|
+
}
|
|
197381
198189
|
export declare type TrelloMemberBoardStarConnection = {
|
|
197382
198190
|
__typename?: 'TrelloMemberBoardStarConnection';
|
|
197383
198191
|
edges?: Maybe<Array<TrelloMemberBoardStarEdge>>;
|
|
@@ -197691,6 +198499,7 @@ export declare type TrelloMutationApi = {
|
|
|
197691
198499
|
sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
197692
198500
|
sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
197693
198501
|
setBoardBackgroundFromImageUrl?: Maybe<TrelloSetBoardBackgroundFromImageUrlPayload>;
|
|
198502
|
+
setPlannerBoardOverride?: Maybe<TrelloSetPlannerBoardOverridePayload>;
|
|
197694
198503
|
showCardCoversOnCardFront?: Maybe<TrelloShowCardCoversOnCardFrontPayload>;
|
|
197695
198504
|
showVotesOnBoard?: Maybe<TrelloShowVotesOnBoardPayload>;
|
|
197696
198505
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
@@ -197925,6 +198734,9 @@ export declare type TrelloMutationApiSendBoardEmailKeyMessageArgs = {
|
|
|
197925
198734
|
export declare type TrelloMutationApiSetBoardBackgroundFromImageUrlArgs = {
|
|
197926
198735
|
input: TrelloSetBoardBackgroundFromImageUrlInput;
|
|
197927
198736
|
};
|
|
198737
|
+
export declare type TrelloMutationApiSetPlannerBoardOverrideArgs = {
|
|
198738
|
+
input: TrelloSetPlannerBoardOverrideInput;
|
|
198739
|
+
};
|
|
197928
198740
|
export declare type TrelloMutationApiShowCardCoversOnCardFrontArgs = {
|
|
197929
198741
|
input: TrelloShowCardCoversOnCardFrontInput;
|
|
197930
198742
|
};
|
|
@@ -198738,6 +199550,7 @@ export declare type TrelloPlannerUpdated = {
|
|
|
198738
199550
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
|
|
198739
199551
|
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnectionUpdated>;
|
|
198740
199552
|
dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
|
|
199553
|
+
forceUpdateCardsDueTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
198741
199554
|
id: Scalars['ID']['output'];
|
|
198742
199555
|
onBoardWithCardDueDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateBoardDeleted>>;
|
|
198743
199556
|
onCardWithDueDateDeleted?: Maybe<Array<TrelloPlannerCardWithDueDateDeleted>>;
|
|
@@ -198947,6 +199760,7 @@ export declare type TrelloQueryApi = {
|
|
|
198947
199760
|
providerCalendarById?: Maybe<TrelloPlannerProviderCalendar>;
|
|
198948
199761
|
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
198949
199762
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
199763
|
+
searchBoards?: Maybe<TrelloBoardSearchResult>;
|
|
198950
199764
|
searchCards?: Maybe<TrelloCardSearchResult>;
|
|
198951
199765
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
198952
199766
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
@@ -199065,6 +199879,13 @@ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
|
199065
199879
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
199066
199880
|
ids: Array<Scalars['ID']['input']>;
|
|
199067
199881
|
};
|
|
199882
|
+
export declare type TrelloQueryApiSearchBoardsArgs = {
|
|
199883
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
199884
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199885
|
+
partial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
199886
|
+
query: Scalars['String']['input'];
|
|
199887
|
+
workspaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
199888
|
+
};
|
|
199068
199889
|
export declare type TrelloQueryApiSearchCardsArgs = {
|
|
199069
199890
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
199070
199891
|
boardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -199293,6 +200114,17 @@ export declare type TrelloScaleProps = {
|
|
|
199293
200114
|
url?: Maybe<Scalars['URL']['output']>;
|
|
199294
200115
|
width?: Maybe<Scalars['Int']['output']>;
|
|
199295
200116
|
};
|
|
200117
|
+
export declare type TrelloSearchBoardConnection = {
|
|
200118
|
+
__typename?: 'TrelloSearchBoardConnection';
|
|
200119
|
+
edges?: Maybe<Array<TrelloSearchBoardEdge>>;
|
|
200120
|
+
nodes?: Maybe<Array<Maybe<TrelloBaseBoard>>>;
|
|
200121
|
+
pageInfo: PageInfo;
|
|
200122
|
+
};
|
|
200123
|
+
export declare type TrelloSearchBoardEdge = {
|
|
200124
|
+
__typename?: 'TrelloSearchBoardEdge';
|
|
200125
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
200126
|
+
node?: Maybe<TrelloBaseBoard>;
|
|
200127
|
+
};
|
|
199296
200128
|
export declare type TrelloSearchCardConnection = {
|
|
199297
200129
|
__typename?: 'TrelloSearchCardConnection';
|
|
199298
200130
|
edges?: Maybe<Array<TrelloSearchCardEdge>>;
|
|
@@ -199329,6 +200161,16 @@ export declare type TrelloSetBoardBackgroundFromImageUrlPayload = Payload & {
|
|
|
199329
200161
|
errors?: Maybe<Array<MutationError>>;
|
|
199330
200162
|
success: Scalars['Boolean']['output'];
|
|
199331
200163
|
};
|
|
200164
|
+
export declare type TrelloSetPlannerBoardOverrideInput = {
|
|
200165
|
+
boardId: Scalars['ID']['input'];
|
|
200166
|
+
mode: TrelloPlannerBoardFilterMode;
|
|
200167
|
+
};
|
|
200168
|
+
export declare type TrelloSetPlannerBoardOverridePayload = Payload & {
|
|
200169
|
+
__typename?: 'TrelloSetPlannerBoardOverridePayload';
|
|
200170
|
+
errors?: Maybe<Array<MutationError>>;
|
|
200171
|
+
planner?: Maybe<TrelloPlanner>;
|
|
200172
|
+
success: Scalars['Boolean']['output'];
|
|
200173
|
+
};
|
|
199332
200174
|
export declare type TrelloShowCardCoversOnCardFrontInput = {
|
|
199333
200175
|
boardId: Scalars['ID']['input'];
|
|
199334
200176
|
};
|
|
@@ -200339,6 +201181,16 @@ export declare type UnifiedAiCategoryPayload = {
|
|
|
200339
201181
|
errors?: Maybe<Array<Maybe<UnifiedAiError>>>;
|
|
200340
201182
|
success: Scalars['Boolean']['output'];
|
|
200341
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
|
+
};
|
|
200342
201194
|
export declare type UnifiedAiEditHistory = {
|
|
200343
201195
|
__typename?: 'UnifiedAiEditHistory';
|
|
200344
201196
|
edit_reason?: Maybe<Scalars['String']['output']>;
|
|
@@ -200489,12 +201341,23 @@ export declare type UnifiedAiPostsResult = {
|
|
|
200489
201341
|
};
|
|
200490
201342
|
export declare type UnifiedAiQuery = {
|
|
200491
201343
|
__typename?: 'UnifiedAiQuery';
|
|
201344
|
+
chat?: Maybe<UnifiedAiChatResult>;
|
|
201345
|
+
clearChatHistory?: Maybe<UnifiedAiClearChatResult>;
|
|
200492
201346
|
getForumCategories?: Maybe<UnifiedUAiCategoriesResult>;
|
|
200493
201347
|
getPostById?: Maybe<UnifiedUAiPostResult>;
|
|
200494
201348
|
getPostSummarizer?: Maybe<UnifiedUAiPostSummarizerResult>;
|
|
200495
201349
|
getPosts?: Maybe<UnifiedUAiPostsConnectionResult>;
|
|
200496
201350
|
getPostsByAuthorId?: Maybe<UnifiedUAiPostsResult>;
|
|
200497
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'];
|
|
200498
201361
|
};
|
|
200499
201362
|
export declare type UnifiedAiQueryGetPostByIdArgs = {
|
|
200500
201363
|
id: Scalars['String']['input'];
|
|
@@ -200522,6 +201385,10 @@ export declare type UnifiedAiQueryGetTagSuggestionsArgs = {
|
|
|
200522
201385
|
content: Scalars['String']['input'];
|
|
200523
201386
|
title: Scalars['String']['input'];
|
|
200524
201387
|
};
|
|
201388
|
+
export declare type UnifiedAiQuerySummarizePostArgs = {
|
|
201389
|
+
post: UnifiedPostSummarizerInput;
|
|
201390
|
+
prompt?: InputMaybe<UnifiedPostSummarizerPromptInput>;
|
|
201391
|
+
};
|
|
200525
201392
|
export declare type UnifiedAiResponse = UnifiedINode & {
|
|
200526
201393
|
__typename?: 'UnifiedAiResponse';
|
|
200527
201394
|
author?: Maybe<UnifiedAiAccount>;
|
|
@@ -200663,6 +201530,33 @@ export declare type UnifiedAtlassianProductEdge = UnifiedIEdge & {
|
|
|
200663
201530
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
200664
201531
|
node?: Maybe<UnifiedAtlassianProduct>;
|
|
200665
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;
|
|
200666
201560
|
export declare type UnifiedCacheFieldKey = {
|
|
200667
201561
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
200668
201562
|
requiresHashing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -201411,6 +202305,40 @@ export declare type UnifiedPayload = {
|
|
|
201411
202305
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
201412
202306
|
success: Scalars['Boolean']['output'];
|
|
201413
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
|
+
};
|
|
201414
202342
|
export declare type UnifiedProfile = UnifiedINode & {
|
|
201415
202343
|
__typename?: 'UnifiedProfile';
|
|
201416
202344
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -201501,10 +202429,12 @@ export declare type UnifiedQuery = {
|
|
|
201501
202429
|
ai?: Maybe<UnifiedAiQuery>;
|
|
201502
202430
|
atlassianOneUser?: Maybe<UnifiedAtlassianOneUserQuery>;
|
|
201503
202431
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
202432
|
+
bitbucket?: Maybe<UnifiedBitbucketQuery>;
|
|
201504
202433
|
caching?: Maybe<UnifiedCachingQuery>;
|
|
201505
202434
|
consent?: Maybe<UnifiedConsentQuery>;
|
|
201506
202435
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
201507
202436
|
node?: Maybe<UnifiedINode>;
|
|
202437
|
+
uct?: Maybe<UnifiedUctQuery>;
|
|
201508
202438
|
unifiedProfile?: Maybe<UnifiedUProfileResult>;
|
|
201509
202439
|
unifiedProfiles?: Maybe<Array<Maybe<UnifiedUProfileResult>>>;
|
|
201510
202440
|
};
|
|
@@ -201600,9 +202530,23 @@ export declare type UnifiedULinkAuthenticationPayload = UnifiedLinkAuthenticatio
|
|
|
201600
202530
|
export declare type UnifiedULinkInitiationPayload = UnifiedLinkInitiationPayload | UnifiedLinkingStatusPayload;
|
|
201601
202531
|
export declare type UnifiedULinkedAccountBasicsResult = UnifiedLinkedAccountBasicsConnection | UnifiedQueryError;
|
|
201602
202532
|
export declare type UnifiedULinkedAccountResult = UnifiedLinkedAccountConnection | UnifiedQueryError;
|
|
202533
|
+
export declare type UnifiedUPostSummarizerResult = UnifiedPostSummarizerResult | UnifiedQueryError;
|
|
201603
202534
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
201604
202535
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
201605
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
|
+
};
|
|
201606
202550
|
export declare type UnknownUser = Person & {
|
|
201607
202551
|
__typename?: 'UnknownUser';
|
|
201608
202552
|
accountId?: Maybe<Scalars['String']['output']>;
|