@forge/cli-shared 6.5.1-next.0 → 6.5.1-next.2
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 +14 -0
- package/out/graphql/graphql-types.d.ts +1172 -345
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +62 -55
- package/package.json +2 -2
|
@@ -108,6 +108,10 @@ export declare type Scalars = {
|
|
|
108
108
|
input: any;
|
|
109
109
|
output: any;
|
|
110
110
|
};
|
|
111
|
+
UUID: {
|
|
112
|
+
input: any;
|
|
113
|
+
output: any;
|
|
114
|
+
};
|
|
111
115
|
};
|
|
112
116
|
export declare type AiConfigResponse = {
|
|
113
117
|
__typename?: 'AIConfigResponse';
|
|
@@ -695,6 +699,48 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
|
|
|
695
699
|
ScheduledStartDate = "SCHEDULED_START_DATE",
|
|
696
700
|
Visibility = "VISIBILITY"
|
|
697
701
|
}
|
|
702
|
+
export declare type AgentAiContextPanelResponse = {
|
|
703
|
+
__typename?: 'AgentAIContextPanelResponse';
|
|
704
|
+
nextSteps?: Maybe<Scalars['String']['output']>;
|
|
705
|
+
reporterDetails?: Maybe<Scalars['String']['output']>;
|
|
706
|
+
suggestedActions?: Maybe<Array<Maybe<AgentAiSuggestAction>>>;
|
|
707
|
+
suggestedEscalation?: Maybe<Scalars['String']['output']>;
|
|
708
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
709
|
+
};
|
|
710
|
+
export declare type AgentAiIssueSummary = {
|
|
711
|
+
__typename?: 'AgentAIIssueSummary';
|
|
712
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
713
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
714
|
+
summary?: Maybe<AgentAiSummary>;
|
|
715
|
+
};
|
|
716
|
+
export declare type AgentAiSuggestAction = {
|
|
717
|
+
__typename?: 'AgentAISuggestAction';
|
|
718
|
+
content?: Maybe<AgentAiSuggestedActionContent>;
|
|
719
|
+
context?: Maybe<AgentAiSuggestedActionContext>;
|
|
720
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
721
|
+
};
|
|
722
|
+
export declare type AgentAiSuggestActionContextForPriority = {
|
|
723
|
+
__typename?: 'AgentAISuggestActionContextForPriority';
|
|
724
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
725
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
726
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
727
|
+
};
|
|
728
|
+
export declare type AgentAiSuggestedActionContent = {
|
|
729
|
+
__typename?: 'AgentAISuggestedActionContent';
|
|
730
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
731
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
732
|
+
};
|
|
733
|
+
export declare type AgentAiSuggestedActionContext = {
|
|
734
|
+
__typename?: 'AgentAISuggestedActionContext';
|
|
735
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
736
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
737
|
+
suggestion?: Maybe<AgentAiSuggestActionContextForPriority>;
|
|
738
|
+
};
|
|
739
|
+
export declare type AgentAiSummary = {
|
|
740
|
+
__typename?: 'AgentAISummary';
|
|
741
|
+
adf?: Maybe<Scalars['String']['output']>;
|
|
742
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
743
|
+
};
|
|
698
744
|
export declare enum AlertEventStatus {
|
|
699
745
|
Acknowledged = "ACKNOWLEDGED",
|
|
700
746
|
Closed = "CLOSED",
|
|
@@ -879,6 +925,7 @@ export declare type App = {
|
|
|
879
925
|
storesPersonalData: Scalars['Boolean']['output'];
|
|
880
926
|
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
881
927
|
termsOfService?: Maybe<Scalars['String']['output']>;
|
|
928
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
882
929
|
vendorName?: Maybe<Scalars['String']['output']>;
|
|
883
930
|
};
|
|
884
931
|
export declare type AppDeploymentsArgs = {
|
|
@@ -1123,6 +1170,7 @@ export declare type AppInstallation = {
|
|
|
1123
1170
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
1124
1171
|
id: Scalars['ID']['output'];
|
|
1125
1172
|
installationContext: Scalars['ID']['output'];
|
|
1173
|
+
isRecoverable: Scalars['Boolean']['output'];
|
|
1126
1174
|
license?: Maybe<AppInstallationLicense>;
|
|
1127
1175
|
version?: Maybe<AppVersion>;
|
|
1128
1176
|
};
|
|
@@ -1180,6 +1228,7 @@ export declare type AppInstallationInput = {
|
|
|
1180
1228
|
licenseOverride?: InputMaybe<LicenseOverrideState>;
|
|
1181
1229
|
overrides?: InputMaybe<EcosystemAppInstallationOverridesInput>;
|
|
1182
1230
|
provisionRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
1231
|
+
recoveryMode?: InputMaybe<EcosystemInstallationRecoveryMode>;
|
|
1183
1232
|
versionId?: InputMaybe<Scalars['ID']['input']>;
|
|
1184
1233
|
};
|
|
1185
1234
|
export declare type AppInstallationLicense = {
|
|
@@ -1269,6 +1318,7 @@ export declare type AppInstallationsByAppFilter = {
|
|
|
1269
1318
|
export declare type AppInstallationsByContextFilter = {
|
|
1270
1319
|
appInstallations: InstallationsListFilterByAppInstallationsWithCompulsoryContexts;
|
|
1271
1320
|
apps?: InputMaybe<InstallationsListFilterByApps>;
|
|
1321
|
+
includeRecoverable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1272
1322
|
};
|
|
1273
1323
|
export declare type AppInstallationsFilter = {
|
|
1274
1324
|
appId: Scalars['ID']['input'];
|
|
@@ -1522,12 +1572,12 @@ export declare type AppStorageSqlDatabaseMigration = {
|
|
|
1522
1572
|
__typename?: 'AppStorageSqlDatabaseMigration';
|
|
1523
1573
|
id: Scalars['Int']['output'];
|
|
1524
1574
|
migratedAt: Scalars['String']['output'];
|
|
1525
|
-
name
|
|
1575
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1526
1576
|
};
|
|
1527
1577
|
export declare type AppStorageSqlDatabasePayload = {
|
|
1528
1578
|
__typename?: 'AppStorageSqlDatabasePayload';
|
|
1529
|
-
migrations: Array<
|
|
1530
|
-
tables: Array<
|
|
1579
|
+
migrations: Array<AppStorageSqlDatabaseMigration>;
|
|
1580
|
+
tables: Array<AppStorageSqlDatabaseTable>;
|
|
1531
1581
|
};
|
|
1532
1582
|
export declare type AppStorageSqlDatabaseTable = {
|
|
1533
1583
|
__typename?: 'AppStorageSqlDatabaseTable';
|
|
@@ -4087,8 +4137,10 @@ export declare type CompassCatalogMutationApi = {
|
|
|
4087
4137
|
removeScorecardFromComponent?: Maybe<RemoveCompassScorecardFromComponentPayload>;
|
|
4088
4138
|
removeTeamLabels?: Maybe<CompassRemoveTeamLabelsPayload>;
|
|
4089
4139
|
revokeJqlMetricSourceUser?: Maybe<CompassRevokeJqlMetricSourceUserPayload>;
|
|
4140
|
+
setEntityProperty?: Maybe<CompassSetEntityPropertyPayload>;
|
|
4090
4141
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
4091
4142
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
4143
|
+
unsetEntityProperty?: Maybe<CompassUnsetEntityPropertyPayload>;
|
|
4092
4144
|
updateAnnouncement?: Maybe<CompassUpdateAnnouncementPayload>;
|
|
4093
4145
|
updateCampaign?: Maybe<CompassUpdateCampaignPayload>;
|
|
4094
4146
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
@@ -4105,6 +4157,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
4105
4157
|
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
4106
4158
|
updateJqlMetricSourceUser?: Maybe<CompassUpdateJqlMetricSourceUserPayload>;
|
|
4107
4159
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
4160
|
+
updateMetricSource?: Maybe<CompassUpdateMetricSourcePayload>;
|
|
4108
4161
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
4109
4162
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
4110
4163
|
updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
|
|
@@ -4296,12 +4349,18 @@ export declare type CompassCatalogMutationApiRemoveTeamLabelsArgs = {
|
|
|
4296
4349
|
export declare type CompassCatalogMutationApiRevokeJqlMetricSourceUserArgs = {
|
|
4297
4350
|
input: CompassRevokeJqlMetricSourceUserInput;
|
|
4298
4351
|
};
|
|
4352
|
+
export declare type CompassCatalogMutationApiSetEntityPropertyArgs = {
|
|
4353
|
+
input: CompassSetEntityPropertyInput;
|
|
4354
|
+
};
|
|
4299
4355
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
4300
4356
|
input?: InputMaybe<CompassSynchronizeLinkAssociationsInput>;
|
|
4301
4357
|
};
|
|
4302
4358
|
export declare type CompassCatalogMutationApiUnlinkExternalSourceArgs = {
|
|
4303
4359
|
input: UnlinkExternalSourceInput;
|
|
4304
4360
|
};
|
|
4361
|
+
export declare type CompassCatalogMutationApiUnsetEntityPropertyArgs = {
|
|
4362
|
+
input: CompassUnsetEntityPropertyInput;
|
|
4363
|
+
};
|
|
4305
4364
|
export declare type CompassCatalogMutationApiUpdateAnnouncementArgs = {
|
|
4306
4365
|
input: CompassUpdateAnnouncementInput;
|
|
4307
4366
|
};
|
|
@@ -4353,6 +4412,9 @@ export declare type CompassCatalogMutationApiUpdateJqlMetricSourceUserArgs = {
|
|
|
4353
4412
|
export declare type CompassCatalogMutationApiUpdateMetricDefinitionArgs = {
|
|
4354
4413
|
input: CompassUpdateMetricDefinitionInput;
|
|
4355
4414
|
};
|
|
4415
|
+
export declare type CompassCatalogMutationApiUpdateMetricSourceArgs = {
|
|
4416
|
+
input: CompassUpdateMetricSourceInput;
|
|
4417
|
+
};
|
|
4356
4418
|
export declare type CompassCatalogMutationApiUpdateScorecardArgs = {
|
|
4357
4419
|
input: UpdateCompassScorecardInput;
|
|
4358
4420
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -4384,6 +4446,8 @@ export declare type CompassCatalogQueryApi = {
|
|
|
4384
4446
|
customPermissionConfigs?: Maybe<CompassCustomPermissionConfigsResult>;
|
|
4385
4447
|
documentationCategories?: Maybe<CompassDocumentationCategoriesConnection>;
|
|
4386
4448
|
documents?: Maybe<CompassDocumentConnection>;
|
|
4449
|
+
entityProperties?: Maybe<Array<Maybe<CompassEntityPropertyResult>>>;
|
|
4450
|
+
entityProperty?: Maybe<CompassEntityPropertyResult>;
|
|
4387
4451
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
4388
4452
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
4389
4453
|
filteredComponentsCount?: Maybe<CompassFilteredComponentsCountResult>;
|
|
@@ -4477,6 +4541,14 @@ export declare type CompassCatalogQueryApiDocumentsArgs = {
|
|
|
4477
4541
|
componentId: Scalars['ID']['input'];
|
|
4478
4542
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4479
4543
|
};
|
|
4544
|
+
export declare type CompassCatalogQueryApiEntityPropertiesArgs = {
|
|
4545
|
+
cloudId: Scalars['ID']['input'];
|
|
4546
|
+
keys: Array<Scalars['String']['input']>;
|
|
4547
|
+
};
|
|
4548
|
+
export declare type CompassCatalogQueryApiEntityPropertyArgs = {
|
|
4549
|
+
cloudId: Scalars['ID']['input'];
|
|
4550
|
+
key: Scalars['String']['input'];
|
|
4551
|
+
};
|
|
4480
4552
|
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
4481
4553
|
cloudId: Scalars['ID']['input'];
|
|
4482
4554
|
eventType: CompassEventType;
|
|
@@ -5143,6 +5215,7 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
|
|
|
5143
5215
|
};
|
|
5144
5216
|
export declare type CompassCreateEventInput = {
|
|
5145
5217
|
cloudId: Scalars['ID']['input'];
|
|
5218
|
+
componentId?: InputMaybe<Scalars['String']['input']>;
|
|
5146
5219
|
event: CompassEventInput;
|
|
5147
5220
|
};
|
|
5148
5221
|
export declare type CompassCreateEventsPayload = Payload & {
|
|
@@ -5255,6 +5328,7 @@ export declare type CompassCreateLifecycleEventInput = {
|
|
|
5255
5328
|
};
|
|
5256
5329
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
5257
5330
|
cloudId: Scalars['ID']['input'];
|
|
5331
|
+
configuration?: InputMaybe<CompassMetricDefinitionConfigurationInput>;
|
|
5258
5332
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5259
5333
|
format?: InputMaybe<CompassMetricDefinitionFormatInput>;
|
|
5260
5334
|
name: Scalars['String']['input'];
|
|
@@ -5267,6 +5341,7 @@ export declare type CompassCreateMetricDefinitionPayload = Payload & {
|
|
|
5267
5341
|
};
|
|
5268
5342
|
export declare type CompassCreateMetricSourceInput = {
|
|
5269
5343
|
componentId: Scalars['ID']['input'];
|
|
5344
|
+
configuration?: InputMaybe<CompassMetricSourceConfigurationInput>;
|
|
5270
5345
|
derived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5271
5346
|
externalConfiguration?: InputMaybe<CompassExternalMetricSourceConfigurationInput>;
|
|
5272
5347
|
externalMetricSourceId: Scalars['ID']['input'];
|
|
@@ -5328,6 +5403,25 @@ export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
|
5328
5403
|
export declare type CompassCreateTeamCheckinResponseRichText = {
|
|
5329
5404
|
adf?: InputMaybe<Scalars['String']['input']>;
|
|
5330
5405
|
};
|
|
5406
|
+
export declare type CompassCreateVulnerabilityEventInput = {
|
|
5407
|
+
description: Scalars['String']['input'];
|
|
5408
|
+
displayName: Scalars['String']['input'];
|
|
5409
|
+
externalEventSourceId: Scalars['ID']['input'];
|
|
5410
|
+
lastUpdated: Scalars['DateTime']['input'];
|
|
5411
|
+
updateSequenceNumber: Scalars['Long']['input'];
|
|
5412
|
+
url: Scalars['URL']['input'];
|
|
5413
|
+
vulnerabilityProperties: CompassCreateVulnerabilityEventPropertiesInput;
|
|
5414
|
+
};
|
|
5415
|
+
export declare type CompassCreateVulnerabilityEventPropertiesInput = {
|
|
5416
|
+
discoverySource?: InputMaybe<Scalars['String']['input']>;
|
|
5417
|
+
discoveryTime: Scalars['DateTime']['input'];
|
|
5418
|
+
id: Scalars['ID']['input'];
|
|
5419
|
+
remediationTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5420
|
+
score?: InputMaybe<Scalars['Float']['input']>;
|
|
5421
|
+
severity: CompassVulnerabilityEventSeverityInput;
|
|
5422
|
+
state: CompassVulnerabilityEventState;
|
|
5423
|
+
vulnerableTarget?: InputMaybe<Scalars['String']['input']>;
|
|
5424
|
+
};
|
|
5331
5425
|
export declare type CompassCreateWebhookInput = {
|
|
5332
5426
|
componentId: Scalars['ID']['input'];
|
|
5333
5427
|
url: Scalars['String']['input'];
|
|
@@ -5871,6 +5965,14 @@ export declare type CompassDocumentationCategoryEdge = {
|
|
|
5871
5965
|
cursor: Scalars['String']['output'];
|
|
5872
5966
|
node?: Maybe<CompassDocumentationCategory>;
|
|
5873
5967
|
};
|
|
5968
|
+
export declare type CompassEntityProperty = {
|
|
5969
|
+
__typename?: 'CompassEntityProperty';
|
|
5970
|
+
changeMetadata?: Maybe<CompassChangeMetadata>;
|
|
5971
|
+
key: Scalars['String']['output'];
|
|
5972
|
+
scope: Scalars['String']['output'];
|
|
5973
|
+
value: Scalars['String']['output'];
|
|
5974
|
+
};
|
|
5975
|
+
export declare type CompassEntityPropertyResult = CompassEntityProperty | QueryError;
|
|
5874
5976
|
export declare type CompassEnumField = CompassField & {
|
|
5875
5977
|
__typename?: 'CompassEnumField';
|
|
5876
5978
|
definition?: Maybe<CompassFieldDefinition>;
|
|
@@ -5916,6 +6018,7 @@ export declare type CompassEventInput = {
|
|
|
5916
6018
|
lifecycle?: InputMaybe<CompassCreateLifecycleEventInput>;
|
|
5917
6019
|
pullRequest?: InputMaybe<CompassCreatePullRequestEventInput>;
|
|
5918
6020
|
push?: InputMaybe<CompassCreatePushEventInput>;
|
|
6021
|
+
vulnerability?: InputMaybe<CompassCreateVulnerabilityEventInput>;
|
|
5919
6022
|
};
|
|
5920
6023
|
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
5921
6024
|
export declare type CompassEventTimeParameters = {
|
|
@@ -5931,7 +6034,8 @@ export declare enum CompassEventType {
|
|
|
5931
6034
|
Incident = "INCIDENT",
|
|
5932
6035
|
Lifecycle = "LIFECYCLE",
|
|
5933
6036
|
PullRequest = "PULL_REQUEST",
|
|
5934
|
-
Push = "PUSH"
|
|
6037
|
+
Push = "PUSH",
|
|
6038
|
+
Vulnerability = "VULNERABILITY"
|
|
5935
6039
|
}
|
|
5936
6040
|
export declare type CompassEventsInEventSourceQuery = {
|
|
5937
6041
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6335,6 +6439,16 @@ export declare type CompassInsertMetricValuePayload = Payload & {
|
|
|
6335
6439
|
metricSource?: Maybe<CompassMetricSource>;
|
|
6336
6440
|
success: Scalars['Boolean']['output'];
|
|
6337
6441
|
};
|
|
6442
|
+
export declare type CompassJqlMetricDefinitionConfiguration = {
|
|
6443
|
+
__typename?: 'CompassJQLMetricDefinitionConfiguration';
|
|
6444
|
+
customizable?: Maybe<Scalars['Boolean']['output']>;
|
|
6445
|
+
format?: Maybe<Scalars['String']['output']>;
|
|
6446
|
+
jql: Scalars['String']['output'];
|
|
6447
|
+
};
|
|
6448
|
+
export declare type CompassJqlMetricDefinitionConfigurationInput = {
|
|
6449
|
+
customizable: Scalars['Boolean']['input'];
|
|
6450
|
+
jql: Scalars['String']['input'];
|
|
6451
|
+
};
|
|
6338
6452
|
export declare type CompassJqlMetricSourceConfiguration = {
|
|
6339
6453
|
__typename?: 'CompassJQLMetricSourceConfiguration';
|
|
6340
6454
|
executingJql?: Maybe<Scalars['String']['output']>;
|
|
@@ -6342,6 +6456,9 @@ export declare type CompassJqlMetricSourceConfiguration = {
|
|
|
6342
6456
|
userContext?: Maybe<User>;
|
|
6343
6457
|
viewerPermissions?: Maybe<CompassJqlMetricSourceInstancePermissions>;
|
|
6344
6458
|
};
|
|
6459
|
+
export declare type CompassJqlMetricSourceConfigurationInput = {
|
|
6460
|
+
jql: Scalars['String']['input'];
|
|
6461
|
+
};
|
|
6345
6462
|
export declare type CompassJqlMetricSourceInstancePermissions = {
|
|
6346
6463
|
__typename?: 'CompassJQLMetricSourceInstancePermissions';
|
|
6347
6464
|
revokePollingUser?: Maybe<CompassPermissionResult>;
|
|
@@ -6449,6 +6566,7 @@ export declare type CompassMetricDefinition = Node & {
|
|
|
6449
6566
|
format?: Maybe<CompassMetricDefinitionFormat>;
|
|
6450
6567
|
id: Scalars['ID']['output'];
|
|
6451
6568
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
6569
|
+
jqlConfiguration?: Maybe<CompassJqlMetricDefinitionConfiguration>;
|
|
6452
6570
|
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
6453
6571
|
name?: Maybe<Scalars['String']['output']>;
|
|
6454
6572
|
type: CompassMetricDefinitionType;
|
|
@@ -6457,6 +6575,9 @@ export declare type CompassMetricDefinition = Node & {
|
|
|
6457
6575
|
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
6458
6576
|
query?: InputMaybe<CompassMetricSourcesQuery>;
|
|
6459
6577
|
};
|
|
6578
|
+
export declare type CompassMetricDefinitionConfigurationInput = {
|
|
6579
|
+
jql?: InputMaybe<CompassJqlMetricDefinitionConfigurationInput>;
|
|
6580
|
+
};
|
|
6460
6581
|
export declare type CompassMetricDefinitionEdge = {
|
|
6461
6582
|
__typename?: 'CompassMetricDefinitionEdge';
|
|
6462
6583
|
cursor: Scalars['String']['output'];
|
|
@@ -6511,6 +6632,9 @@ export declare type CompassMetricSource = Node & {
|
|
|
6511
6632
|
export declare type CompassMetricSourceValuesArgs = {
|
|
6512
6633
|
query?: InputMaybe<CompassMetricSourceValuesQuery>;
|
|
6513
6634
|
};
|
|
6635
|
+
export declare type CompassMetricSourceConfigurationInput = {
|
|
6636
|
+
jql?: InputMaybe<CompassJqlMetricSourceConfigurationInput>;
|
|
6637
|
+
};
|
|
6514
6638
|
export declare type CompassMetricSourceEdge = {
|
|
6515
6639
|
__typename?: 'CompassMetricSourceEdge';
|
|
6516
6640
|
cursor: Scalars['String']['output'];
|
|
@@ -6549,6 +6673,7 @@ export declare type CompassMetricSourcesConnection = {
|
|
|
6549
6673
|
edges?: Maybe<Array<CompassMetricSourceEdge>>;
|
|
6550
6674
|
nodes?: Maybe<Array<CompassMetricSource>>;
|
|
6551
6675
|
pageInfo: PageInfo;
|
|
6676
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
6552
6677
|
};
|
|
6553
6678
|
export declare type CompassMetricSourcesQuery = {
|
|
6554
6679
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7350,6 +7475,17 @@ export declare type CompassSearchTeamsInput = {
|
|
|
7350
7475
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7351
7476
|
term?: InputMaybe<Scalars['String']['input']>;
|
|
7352
7477
|
};
|
|
7478
|
+
export declare type CompassSetEntityPropertyInput = {
|
|
7479
|
+
cloudId: Scalars['ID']['input'];
|
|
7480
|
+
key: Scalars['String']['input'];
|
|
7481
|
+
value: Scalars['String']['input'];
|
|
7482
|
+
};
|
|
7483
|
+
export declare type CompassSetEntityPropertyPayload = Payload & {
|
|
7484
|
+
__typename?: 'CompassSetEntityPropertyPayload';
|
|
7485
|
+
entityProperty?: Maybe<CompassEntityProperty>;
|
|
7486
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7487
|
+
success: Scalars['Boolean']['output'];
|
|
7488
|
+
};
|
|
7353
7489
|
export declare type CompassSloMetricSourceConfigurationInput = {
|
|
7354
7490
|
badQuery: Scalars['String']['input'];
|
|
7355
7491
|
goodQuery: Scalars['String']['input'];
|
|
@@ -7473,6 +7609,16 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
7473
7609
|
cursor: Scalars['String']['output'];
|
|
7474
7610
|
node?: Maybe<CompassTeamMetricSource>;
|
|
7475
7611
|
};
|
|
7612
|
+
export declare type CompassUnsetEntityPropertyInput = {
|
|
7613
|
+
cloudId: Scalars['ID']['input'];
|
|
7614
|
+
key: Scalars['String']['input'];
|
|
7615
|
+
};
|
|
7616
|
+
export declare type CompassUnsetEntityPropertyPayload = Payload & {
|
|
7617
|
+
__typename?: 'CompassUnsetEntityPropertyPayload';
|
|
7618
|
+
entityProperty?: Maybe<CompassEntityProperty>;
|
|
7619
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7620
|
+
success: Scalars['Boolean']['output'];
|
|
7621
|
+
};
|
|
7476
7622
|
export declare type CompassUpdateAnnouncementInput = {
|
|
7477
7623
|
clearAcknowledgements?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7478
7624
|
cloudId: Scalars['ID']['input'];
|
|
@@ -7655,6 +7801,16 @@ export declare type CompassUpdateMetricDefinitionPayload = Payload & {
|
|
|
7655
7801
|
success: Scalars['Boolean']['output'];
|
|
7656
7802
|
updatedMetricDefinition?: Maybe<CompassMetricDefinition>;
|
|
7657
7803
|
};
|
|
7804
|
+
export declare type CompassUpdateMetricSourceInput = {
|
|
7805
|
+
configuration?: InputMaybe<CompassMetricSourceConfigurationInput>;
|
|
7806
|
+
id: Scalars['ID']['input'];
|
|
7807
|
+
};
|
|
7808
|
+
export declare type CompassUpdateMetricSourcePayload = Payload & {
|
|
7809
|
+
__typename?: 'CompassUpdateMetricSourcePayload';
|
|
7810
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7811
|
+
success: Scalars['Boolean']['output'];
|
|
7812
|
+
updatedMetricSource?: Maybe<CompassMetricSource>;
|
|
7813
|
+
};
|
|
7658
7814
|
export declare type CompassUpdatePermissionConfigsPayload = Payload & {
|
|
7659
7815
|
__typename?: 'CompassUpdatePermissionConfigsPayload';
|
|
7660
7816
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -7717,6 +7873,47 @@ export declare type CompassViewerSubscription = {
|
|
|
7717
7873
|
__typename?: 'CompassViewerSubscription';
|
|
7718
7874
|
subscribed: Scalars['Boolean']['output'];
|
|
7719
7875
|
};
|
|
7876
|
+
export declare type CompassVulnerabilityEvent = CompassEvent & {
|
|
7877
|
+
__typename?: 'CompassVulnerabilityEvent';
|
|
7878
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7879
|
+
displayName: Scalars['String']['output'];
|
|
7880
|
+
eventType: CompassEventType;
|
|
7881
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
7882
|
+
updateSequenceNumber: Scalars['Long']['output'];
|
|
7883
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
7884
|
+
vulnerabilityProperties: CompassVulnerabilityEventProperties;
|
|
7885
|
+
};
|
|
7886
|
+
export declare type CompassVulnerabilityEventProperties = {
|
|
7887
|
+
__typename?: 'CompassVulnerabilityEventProperties';
|
|
7888
|
+
discoverySource?: Maybe<Scalars['String']['output']>;
|
|
7889
|
+
discoveryTime: Scalars['DateTime']['output'];
|
|
7890
|
+
id: Scalars['ID']['output'];
|
|
7891
|
+
remediationTime?: Maybe<Scalars['DateTime']['output']>;
|
|
7892
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
7893
|
+
severity?: Maybe<CompassVulnerabilityEventSeverity>;
|
|
7894
|
+
state: Scalars['String']['output'];
|
|
7895
|
+
vulnerableTarget?: Maybe<Scalars['String']['output']>;
|
|
7896
|
+
};
|
|
7897
|
+
export declare type CompassVulnerabilityEventSeverity = {
|
|
7898
|
+
__typename?: 'CompassVulnerabilityEventSeverity';
|
|
7899
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
7900
|
+
level: Scalars['String']['output'];
|
|
7901
|
+
};
|
|
7902
|
+
export declare type CompassVulnerabilityEventSeverityInput = {
|
|
7903
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
7904
|
+
level: CompassVulnerabilityEventSeverityLevel;
|
|
7905
|
+
};
|
|
7906
|
+
export declare enum CompassVulnerabilityEventSeverityLevel {
|
|
7907
|
+
Critical = "CRITICAL",
|
|
7908
|
+
High = "HIGH",
|
|
7909
|
+
Low = "LOW",
|
|
7910
|
+
Medium = "MEDIUM"
|
|
7911
|
+
}
|
|
7912
|
+
export declare enum CompassVulnerabilityEventState {
|
|
7913
|
+
Declined = "DECLINED",
|
|
7914
|
+
Open = "OPEN",
|
|
7915
|
+
Remediated = "REMEDIATED"
|
|
7916
|
+
}
|
|
7720
7917
|
export declare type CompassWebhook = {
|
|
7721
7918
|
__typename?: 'CompassWebhook';
|
|
7722
7919
|
id: Scalars['ID']['output'];
|
|
@@ -7941,6 +8138,14 @@ export declare type ConfluenceCalendarJqlValidationResult = {
|
|
|
7941
8138
|
valid: Scalars['Boolean']['output'];
|
|
7942
8139
|
warningMessages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
7943
8140
|
};
|
|
8141
|
+
export declare type ConfluenceCalendarPreference = {
|
|
8142
|
+
__typename?: 'ConfluenceCalendarPreference';
|
|
8143
|
+
disabledMessageKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
8144
|
+
disabledSubCalendars?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8145
|
+
subCalendarsInView?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8146
|
+
view: Scalars['String']['output'];
|
|
8147
|
+
watchedSubCalendars?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8148
|
+
};
|
|
7944
8149
|
export declare type ConfluenceChildContent = {
|
|
7945
8150
|
__typename?: 'ConfluenceChildContent';
|
|
7946
8151
|
attachment: PaginatedContentList;
|
|
@@ -8002,6 +8207,15 @@ export declare enum ConfluenceCommentType {
|
|
|
8002
8207
|
Footer = "FOOTER",
|
|
8003
8208
|
Inline = "INLINE"
|
|
8004
8209
|
}
|
|
8210
|
+
export declare type ConfluenceConflictedMutationError = {
|
|
8211
|
+
__typename?: 'ConfluenceConflictedMutationError';
|
|
8212
|
+
extensions?: Maybe<Array<Maybe<MutationErrorExtension>>>;
|
|
8213
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
8214
|
+
};
|
|
8215
|
+
export declare type ConfluenceConflictedPayload = {
|
|
8216
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8217
|
+
success: Scalars['Boolean']['output'];
|
|
8218
|
+
};
|
|
8005
8219
|
export declare type ConfluenceContentBody = {
|
|
8006
8220
|
__typename?: 'ConfluenceContentBody';
|
|
8007
8221
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -8174,6 +8388,15 @@ export declare type ConfluenceDeleteBlogPostPropertyPayload = Payload & {
|
|
|
8174
8388
|
errors?: Maybe<Array<MutationError>>;
|
|
8175
8389
|
success: Scalars['Boolean']['output'];
|
|
8176
8390
|
};
|
|
8391
|
+
export declare type ConfluenceDeleteCalendarCustomEventTypeInput = {
|
|
8392
|
+
id: Scalars['ID']['input'];
|
|
8393
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8394
|
+
};
|
|
8395
|
+
export declare type ConfluenceDeleteCalendarCustomEventTypePayload = ConfluenceConflictedPayload & {
|
|
8396
|
+
__typename?: 'ConfluenceDeleteCalendarCustomEventTypePayload';
|
|
8397
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8398
|
+
success: Scalars['Boolean']['output'];
|
|
8399
|
+
};
|
|
8177
8400
|
export declare type ConfluenceDeleteCommentInput = {
|
|
8178
8401
|
id: Scalars['ID']['input'];
|
|
8179
8402
|
};
|
|
@@ -14397,6 +14620,12 @@ export declare type ConfluenceSpaceDescription = {
|
|
|
14397
14620
|
plain?: Maybe<Scalars['String']['output']>;
|
|
14398
14621
|
view?: Maybe<Scalars['String']['output']>;
|
|
14399
14622
|
};
|
|
14623
|
+
export declare type ConfluenceSpaceDetailsSpaceOwner = {
|
|
14624
|
+
__typename?: 'ConfluenceSpaceDetailsSpaceOwner';
|
|
14625
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14626
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
14627
|
+
ownerType?: Maybe<ConfluenceSpaceOwnerType>;
|
|
14628
|
+
};
|
|
14400
14629
|
export declare type ConfluenceSpaceEdge = {
|
|
14401
14630
|
__typename?: 'ConfluenceSpaceEdge';
|
|
14402
14631
|
cursor: Scalars['String']['output'];
|
|
@@ -14427,6 +14656,10 @@ export declare type ConfluenceSpaceMetadata = {
|
|
|
14427
14656
|
totalCurrentPages?: Maybe<Scalars['Int']['output']>;
|
|
14428
14657
|
totalWatchers?: Maybe<Scalars['Int']['output']>;
|
|
14429
14658
|
};
|
|
14659
|
+
export declare enum ConfluenceSpaceOwnerType {
|
|
14660
|
+
Group = "GROUP",
|
|
14661
|
+
User = "USER"
|
|
14662
|
+
}
|
|
14430
14663
|
export declare enum ConfluenceSpaceSettingEditorVersion {
|
|
14431
14664
|
V1 = "V1",
|
|
14432
14665
|
V2 = "V2"
|
|
@@ -15376,6 +15609,7 @@ export declare type ContainerLookAndFeel = {
|
|
|
15376
15609
|
};
|
|
15377
15610
|
export declare enum ContainerType {
|
|
15378
15611
|
Blogpost = "BLOGPOST",
|
|
15612
|
+
Database = "DATABASE",
|
|
15379
15613
|
Page = "PAGE",
|
|
15380
15614
|
Space = "SPACE",
|
|
15381
15615
|
Whiteboard = "WHITEBOARD"
|
|
@@ -20918,6 +21152,7 @@ export declare type DevOpsService = Node & {
|
|
|
20918
21152
|
description?: Maybe<Scalars['String']['output']>;
|
|
20919
21153
|
id: Scalars['ID']['output'];
|
|
20920
21154
|
isCompassSynchronised: Scalars['Boolean']['output'];
|
|
21155
|
+
isEditDisabledByCompass: Scalars['Boolean']['output'];
|
|
20921
21156
|
jiraProjects?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
20922
21157
|
lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
20923
21158
|
lastUpdatedBy?: Maybe<Scalars['String']['output']>;
|
|
@@ -21720,6 +21955,10 @@ export declare type EcosystemDataClassificationsContext = {
|
|
|
21720
21955
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
21721
21956
|
id: Scalars['ID']['output'];
|
|
21722
21957
|
};
|
|
21958
|
+
export declare enum EcosystemInstallationRecoveryMode {
|
|
21959
|
+
FreshInstall = "FRESH_INSTALL",
|
|
21960
|
+
RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
|
|
21961
|
+
}
|
|
21723
21962
|
export declare enum EcosystemLicenseMode {
|
|
21724
21963
|
UserAccess = "USER_ACCESS"
|
|
21725
21964
|
}
|
|
@@ -22415,6 +22654,11 @@ export declare type ExternalCommit = Node & {
|
|
|
22415
22654
|
export declare enum ExternalCommitFlags {
|
|
22416
22655
|
MergeCommit = "MERGE_COMMIT"
|
|
22417
22656
|
}
|
|
22657
|
+
export declare type ExternalContributor = {
|
|
22658
|
+
__typename?: 'ExternalContributor';
|
|
22659
|
+
interactionCount?: Maybe<Scalars['Long']['output']>;
|
|
22660
|
+
user?: Maybe<ExternalUser>;
|
|
22661
|
+
};
|
|
22418
22662
|
export declare type ExternalConversation = Node & {
|
|
22419
22663
|
__typename?: 'ExternalConversation';
|
|
22420
22664
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -22858,6 +23102,7 @@ export declare type ExternalVideo = Node & {
|
|
|
22858
23102
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
22859
23103
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
22860
23104
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
23105
|
+
contributors?: Maybe<Array<Maybe<ExternalContributor>>>;
|
|
22861
23106
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
22862
23107
|
createdBy?: Maybe<ExternalUser>;
|
|
22863
23108
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -23107,19 +23352,6 @@ export declare type FilteredPrincipalSubjectKey = {
|
|
|
23107
23352
|
id?: Maybe<Scalars['String']['output']>;
|
|
23108
23353
|
permissionDisplayType: PermissionDisplayType;
|
|
23109
23354
|
};
|
|
23110
|
-
export declare type FireboltAuthor = {
|
|
23111
|
-
__typename?: 'FireboltAuthor';
|
|
23112
|
-
firstName?: Maybe<Scalars['String']['output']>;
|
|
23113
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
23114
|
-
lastName?: Maybe<Scalars['String']['output']>;
|
|
23115
|
-
};
|
|
23116
|
-
export declare type FireboltBook = {
|
|
23117
|
-
__typename?: 'FireboltBook';
|
|
23118
|
-
author?: Maybe<FireboltAuthor>;
|
|
23119
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
23120
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
23121
|
-
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
23122
|
-
};
|
|
23123
23355
|
export declare type FollowUserInput = {
|
|
23124
23356
|
accountId: Scalars['String']['input'];
|
|
23125
23357
|
};
|
|
@@ -28012,6 +28244,7 @@ export declare type GraphStore = {
|
|
|
28012
28244
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
28013
28245
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
28014
28246
|
issueAssociatedBranchRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
28247
|
+
issueAssociatedBuild?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildConnection>;
|
|
28015
28248
|
issueAssociatedBuildBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
|
|
28016
28249
|
issueAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseConnection>;
|
|
28017
28250
|
issueAssociatedBuildInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
|
|
@@ -28054,6 +28287,7 @@ export declare type GraphStore = {
|
|
|
28054
28287
|
issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
28055
28288
|
issueHasAssignee?: Maybe<GraphStoreSimplifiedIssueHasAssigneeConnection>;
|
|
28056
28289
|
issueHasAssigneeInverse?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseConnection>;
|
|
28290
|
+
issueInStatusInverse?: Maybe<GraphStoreSimplifiedIssueInStatusInverseConnection>;
|
|
28057
28291
|
issueRecursiveAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection>;
|
|
28058
28292
|
issueRecursiveAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseConnection>;
|
|
28059
28293
|
issueRecursiveAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentConnection>;
|
|
@@ -28128,6 +28362,7 @@ export declare type GraphStore = {
|
|
|
28128
28362
|
projectAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseConnection>;
|
|
28129
28363
|
projectAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
28130
28364
|
projectAssociatedBranchRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
28365
|
+
projectAssociatedBuild?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildConnection>;
|
|
28131
28366
|
projectAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildInverseConnection>;
|
|
28132
28367
|
projectAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBuildConnection>;
|
|
28133
28368
|
projectAssociatedBuildRelationship?: Maybe<GraphStoreFullProjectAssociatedBuildConnection>;
|
|
@@ -28231,6 +28466,7 @@ export declare type GraphStore = {
|
|
|
28231
28466
|
shipit57PullRequestLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseConnection>;
|
|
28232
28467
|
spaceAssociatedWithProject?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectConnection>;
|
|
28233
28468
|
spaceAssociatedWithProjectInverse?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection>;
|
|
28469
|
+
sprintAssociatedBuild?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildConnection>;
|
|
28234
28470
|
sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
28235
28471
|
sprintAssociatedBuildRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
28236
28472
|
sprintAssociatedDeployment?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentConnection>;
|
|
@@ -28272,6 +28508,7 @@ export declare type GraphStore = {
|
|
|
28272
28508
|
testPerfhammerMaterializationInverse?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationInverseConnection>;
|
|
28273
28509
|
testPerfhammerMaterializationInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationConnection>;
|
|
28274
28510
|
testPerfhammerMaterializationRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationConnection>;
|
|
28511
|
+
testPerfhammerRelationship?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipConnection>;
|
|
28275
28512
|
testPerfhammerRelationshipBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
28276
28513
|
testPerfhammerRelationshipInverse?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseConnection>;
|
|
28277
28514
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
@@ -28297,11 +28534,20 @@ export declare type GraphStore = {
|
|
|
28297
28534
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28298
28535
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28299
28536
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28537
|
+
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
28538
|
+
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
28539
|
+
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
28540
|
+
userViewedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectInverseConnection>;
|
|
28541
|
+
userViewedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostConnection>;
|
|
28542
|
+
userViewedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection>;
|
|
28300
28543
|
userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
|
|
28301
28544
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
28545
|
+
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
28546
|
+
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
28302
28547
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
28303
28548
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
28304
28549
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
28550
|
+
versionAssociatedBuild?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildConnection>;
|
|
28305
28551
|
versionAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseConnection>;
|
|
28306
28552
|
versionAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBuildConnection>;
|
|
28307
28553
|
versionAssociatedBuildRelationship?: Maybe<GraphStoreFullVersionAssociatedBuildConnection>;
|
|
@@ -28958,6 +29204,13 @@ export declare type GraphStoreIssueAssociatedBranchRelationshipArgs = {
|
|
|
28958
29204
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28959
29205
|
id: Scalars['ID']['input'];
|
|
28960
29206
|
};
|
|
29207
|
+
export declare type GraphStoreIssueAssociatedBuildArgs = {
|
|
29208
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29209
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29210
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29211
|
+
id: Scalars['ID']['input'];
|
|
29212
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
29213
|
+
};
|
|
28961
29214
|
export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
|
|
28962
29215
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28963
29216
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -29218,6 +29471,13 @@ export declare type GraphStoreIssueHasAssigneeInverseArgs = {
|
|
|
29218
29471
|
id: Scalars['ID']['input'];
|
|
29219
29472
|
sort?: InputMaybe<GraphStoreIssueHasAssigneeSortInput>;
|
|
29220
29473
|
};
|
|
29474
|
+
export declare type GraphStoreIssueInStatusInverseArgs = {
|
|
29475
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29476
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29477
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29478
|
+
id: Scalars['ID']['input'];
|
|
29479
|
+
sort?: InputMaybe<GraphStoreIssueInStatusSortInput>;
|
|
29480
|
+
};
|
|
29221
29481
|
export declare type GraphStoreIssueRecursiveAssociatedDeploymentArgs = {
|
|
29222
29482
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29223
29483
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29670,6 +29930,14 @@ export declare type GraphStoreProjectAssociatedBranchRelationshipArgs = {
|
|
|
29670
29930
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29671
29931
|
id: Scalars['ID']['input'];
|
|
29672
29932
|
};
|
|
29933
|
+
export declare type GraphStoreProjectAssociatedBuildArgs = {
|
|
29934
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29935
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29936
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedBuildFilterInput>;
|
|
29937
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29938
|
+
id: Scalars['ID']['input'];
|
|
29939
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedBuildSortInput>;
|
|
29940
|
+
};
|
|
29673
29941
|
export declare type GraphStoreProjectAssociatedBuildInverseArgs = {
|
|
29674
29942
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29675
29943
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30342,6 +30610,14 @@ export declare type GraphStoreSpaceAssociatedWithProjectInverseArgs = {
|
|
|
30342
30610
|
id: Scalars['ID']['input'];
|
|
30343
30611
|
sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
|
|
30344
30612
|
};
|
|
30613
|
+
export declare type GraphStoreSprintAssociatedBuildArgs = {
|
|
30614
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30615
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30616
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
30617
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30618
|
+
id: Scalars['ID']['input'];
|
|
30619
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
|
|
30620
|
+
};
|
|
30345
30621
|
export declare type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
|
|
30346
30622
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30347
30623
|
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
@@ -30605,6 +30881,13 @@ export declare type GraphStoreTestPerfhammerMaterializationRelationshipArgs = {
|
|
|
30605
30881
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30606
30882
|
id: Scalars['ID']['input'];
|
|
30607
30883
|
};
|
|
30884
|
+
export declare type GraphStoreTestPerfhammerRelationshipArgs = {
|
|
30885
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30886
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30887
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30888
|
+
id: Scalars['ID']['input'];
|
|
30889
|
+
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
30890
|
+
};
|
|
30608
30891
|
export declare type GraphStoreTestPerfhammerRelationshipBatchArgs = {
|
|
30609
30892
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30610
30893
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -30774,6 +31057,48 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
30774
31057
|
id: Scalars['ID']['input'];
|
|
30775
31058
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
30776
31059
|
};
|
|
31060
|
+
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
31061
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31062
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31063
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31064
|
+
id: Scalars['ID']['input'];
|
|
31065
|
+
sort?: InputMaybe<GraphStoreUserViewedAtlasGoalSortInput>;
|
|
31066
|
+
};
|
|
31067
|
+
export declare type GraphStoreUserViewedAtlasGoalInverseArgs = {
|
|
31068
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31069
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31070
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31071
|
+
id: Scalars['ID']['input'];
|
|
31072
|
+
sort?: InputMaybe<GraphStoreUserViewedAtlasGoalSortInput>;
|
|
31073
|
+
};
|
|
31074
|
+
export declare type GraphStoreUserViewedAtlasProjectArgs = {
|
|
31075
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31076
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31077
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31078
|
+
id: Scalars['ID']['input'];
|
|
31079
|
+
sort?: InputMaybe<GraphStoreUserViewedAtlasProjectSortInput>;
|
|
31080
|
+
};
|
|
31081
|
+
export declare type GraphStoreUserViewedAtlasProjectInverseArgs = {
|
|
31082
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31083
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31084
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31085
|
+
id: Scalars['ID']['input'];
|
|
31086
|
+
sort?: InputMaybe<GraphStoreUserViewedAtlasProjectSortInput>;
|
|
31087
|
+
};
|
|
31088
|
+
export declare type GraphStoreUserViewedConfluenceBlogpostArgs = {
|
|
31089
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31090
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31091
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31092
|
+
id: Scalars['ID']['input'];
|
|
31093
|
+
sort?: InputMaybe<GraphStoreUserViewedConfluenceBlogpostSortInput>;
|
|
31094
|
+
};
|
|
31095
|
+
export declare type GraphStoreUserViewedConfluenceBlogpostInverseArgs = {
|
|
31096
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31097
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31098
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31099
|
+
id: Scalars['ID']['input'];
|
|
31100
|
+
sort?: InputMaybe<GraphStoreUserViewedConfluenceBlogpostSortInput>;
|
|
31101
|
+
};
|
|
30777
31102
|
export declare type GraphStoreUserViewedConfluencePageArgs = {
|
|
30778
31103
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30779
31104
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30788,6 +31113,20 @@ export declare type GraphStoreUserViewedConfluencePageInverseArgs = {
|
|
|
30788
31113
|
id: Scalars['ID']['input'];
|
|
30789
31114
|
sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
|
|
30790
31115
|
};
|
|
31116
|
+
export declare type GraphStoreUserViewedJiraIssueArgs = {
|
|
31117
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31118
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31119
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31120
|
+
id: Scalars['ID']['input'];
|
|
31121
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
31122
|
+
};
|
|
31123
|
+
export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
31124
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31125
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31126
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31127
|
+
id: Scalars['ID']['input'];
|
|
31128
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
31129
|
+
};
|
|
30791
31130
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
30792
31131
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30793
31132
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30805,6 +31144,13 @@ export declare type GraphStoreVersionAssociatedBranchRelationshipArgs = {
|
|
|
30805
31144
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30806
31145
|
id: Scalars['ID']['input'];
|
|
30807
31146
|
};
|
|
31147
|
+
export declare type GraphStoreVersionAssociatedBuildArgs = {
|
|
31148
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31149
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31150
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31151
|
+
id: Scalars['ID']['input'];
|
|
31152
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedBuildSortInput>;
|
|
31153
|
+
};
|
|
30808
31154
|
export declare type GraphStoreVersionAssociatedBuildInverseArgs = {
|
|
30809
31155
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30810
31156
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31085,11 +31431,16 @@ export declare type GraphStoreAtlasHomeQueryConnection = {
|
|
|
31085
31431
|
nodes: Array<GraphStoreAtlasHomeQueryNode>;
|
|
31086
31432
|
pageInfo: PageInfo;
|
|
31087
31433
|
};
|
|
31088
|
-
export declare type
|
|
31089
|
-
__typename?: '
|
|
31434
|
+
export declare type GraphStoreAtlasHomeQueryItem = {
|
|
31435
|
+
__typename?: 'GraphStoreAtlasHomeQueryItem';
|
|
31090
31436
|
data?: Maybe<GraphStoreAtlasHomeFeedQueryToNodeUnion>;
|
|
31091
31437
|
id: Scalars['ID']['output'];
|
|
31092
31438
|
};
|
|
31439
|
+
export declare type GraphStoreAtlasHomeQueryNode = {
|
|
31440
|
+
__typename?: 'GraphStoreAtlasHomeQueryNode';
|
|
31441
|
+
item?: Maybe<GraphStoreAtlasHomeQueryItem>;
|
|
31442
|
+
source: Scalars['String']['output'];
|
|
31443
|
+
};
|
|
31093
31444
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
31094
31445
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
31095
31446
|
};
|
|
@@ -31492,8 +31843,10 @@ export declare type GraphStoreBatchIssueAssociatedBuildEdge = {
|
|
|
31492
31843
|
};
|
|
31493
31844
|
export declare type GraphStoreBatchIssueAssociatedBuildEndNode = {
|
|
31494
31845
|
__typename?: 'GraphStoreBatchIssueAssociatedBuildEndNode';
|
|
31846
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedBuildEndUnion>;
|
|
31495
31847
|
id: Scalars['ID']['output'];
|
|
31496
31848
|
};
|
|
31849
|
+
export declare type GraphStoreBatchIssueAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
31497
31850
|
export declare type GraphStoreBatchIssueAssociatedBuildInnerConnection = {
|
|
31498
31851
|
__typename?: 'GraphStoreBatchIssueAssociatedBuildInnerConnection';
|
|
31499
31852
|
edges: Array<Maybe<GraphStoreBatchIssueAssociatedBuildInnerEdge>>;
|
|
@@ -31696,7 +32049,7 @@ export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEnd
|
|
|
31696
32049
|
data?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndUnion>;
|
|
31697
32050
|
id: Scalars['ID']['output'];
|
|
31698
32051
|
};
|
|
31699
|
-
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails;
|
|
32052
|
+
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
31700
32053
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityInnerConnection = {
|
|
31701
32054
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityInnerConnection';
|
|
31702
32055
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityInnerEdge>>;
|
|
@@ -31732,8 +32085,10 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipEdge = {
|
|
|
31732
32085
|
};
|
|
31733
32086
|
export declare type GraphStoreBatchTestPerfhammerRelationshipEndNode = {
|
|
31734
32087
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipEndNode';
|
|
32088
|
+
data?: Maybe<GraphStoreBatchTestPerfhammerRelationshipEndUnion>;
|
|
31735
32089
|
id: Scalars['ID']['output'];
|
|
31736
32090
|
};
|
|
32091
|
+
export declare type GraphStoreBatchTestPerfhammerRelationshipEndUnion = ExternalBuildInfo;
|
|
31737
32092
|
export declare type GraphStoreBatchTestPerfhammerRelationshipInnerConnection = {
|
|
31738
32093
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipInnerConnection';
|
|
31739
32094
|
edges: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipInnerEdge>>;
|
|
@@ -32183,7 +32538,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
32183
32538
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
32184
32539
|
id: Scalars['ID']['output'];
|
|
32185
32540
|
};
|
|
32186
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32541
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBuildInfo | ExternalCommit | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalPullRequest | ExternalRepository | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32187
32542
|
export declare type GraphStoreCypherQueryNode = {
|
|
32188
32543
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
32189
32544
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -32194,7 +32549,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
32194
32549
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
32195
32550
|
id: Scalars['ID']['output'];
|
|
32196
32551
|
};
|
|
32197
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalCommit | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32552
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBuildInfo | ExternalCommit | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalPullRequest | ExternalRepository | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
32198
32553
|
export declare type GraphStoreDateFilterInput = {
|
|
32199
32554
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
32200
32555
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -32659,7 +33014,7 @@ export declare type GraphStoreFullComponentAssociatedDocumentEndNode = {
|
|
|
32659
33014
|
data?: Maybe<GraphStoreFullComponentAssociatedDocumentEndUnion>;
|
|
32660
33015
|
id: Scalars['ID']['output'];
|
|
32661
33016
|
};
|
|
32662
|
-
export declare type GraphStoreFullComponentAssociatedDocumentEndUnion = DevOpsDocument;
|
|
33017
|
+
export declare type GraphStoreFullComponentAssociatedDocumentEndUnion = DevOpsDocument | ExternalDocument;
|
|
32663
33018
|
export declare type GraphStoreFullComponentAssociatedDocumentNode = Node & {
|
|
32664
33019
|
__typename?: 'GraphStoreFullComponentAssociatedDocumentNode';
|
|
32665
33020
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -32979,9 +33334,11 @@ export declare type GraphStoreFullIssueAssociatedBuildEdge = {
|
|
|
32979
33334
|
};
|
|
32980
33335
|
export declare type GraphStoreFullIssueAssociatedBuildEndNode = {
|
|
32981
33336
|
__typename?: 'GraphStoreFullIssueAssociatedBuildEndNode';
|
|
33337
|
+
data?: Maybe<GraphStoreFullIssueAssociatedBuildEndUnion>;
|
|
32982
33338
|
id: Scalars['ID']['output'];
|
|
32983
33339
|
metadata?: Maybe<GraphStoreFullIssueAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
32984
33340
|
};
|
|
33341
|
+
export declare type GraphStoreFullIssueAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
32985
33342
|
export declare type GraphStoreFullIssueAssociatedBuildNode = Node & {
|
|
32986
33343
|
__typename?: 'GraphStoreFullIssueAssociatedBuildNode';
|
|
32987
33344
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33133,7 +33490,7 @@ export declare type GraphStoreFullIssueAssociatedDesignEndNode = {
|
|
|
33133
33490
|
id: Scalars['ID']['output'];
|
|
33134
33491
|
metadata?: Maybe<GraphStoreFullIssueAssociatedDesignRelationshipObjectMetadataOutput>;
|
|
33135
33492
|
};
|
|
33136
|
-
export declare type GraphStoreFullIssueAssociatedDesignEndUnion = DevOpsDesign;
|
|
33493
|
+
export declare type GraphStoreFullIssueAssociatedDesignEndUnion = DevOpsDesign | ExternalDesign;
|
|
33137
33494
|
export declare type GraphStoreFullIssueAssociatedDesignNode = Node & {
|
|
33138
33495
|
__typename?: 'GraphStoreFullIssueAssociatedDesignNode';
|
|
33139
33496
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33169,7 +33526,7 @@ export declare type GraphStoreFullIssueAssociatedFeatureFlagEndNode = {
|
|
|
33169
33526
|
data?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagEndUnion>;
|
|
33170
33527
|
id: Scalars['ID']['output'];
|
|
33171
33528
|
};
|
|
33172
|
-
export declare type GraphStoreFullIssueAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
33529
|
+
export declare type GraphStoreFullIssueAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
33173
33530
|
export declare type GraphStoreFullIssueAssociatedFeatureFlagNode = Node & {
|
|
33174
33531
|
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagNode';
|
|
33175
33532
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33277,7 +33634,7 @@ export declare type GraphStoreFullIssueAssociatedPrEndNode = {
|
|
|
33277
33634
|
id: Scalars['ID']['output'];
|
|
33278
33635
|
metadata?: Maybe<GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput>;
|
|
33279
33636
|
};
|
|
33280
|
-
export declare type GraphStoreFullIssueAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
33637
|
+
export declare type GraphStoreFullIssueAssociatedPrEndUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
33281
33638
|
export declare type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
33282
33639
|
__typename?: 'GraphStoreFullIssueAssociatedPrNode';
|
|
33283
33640
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33430,7 +33787,7 @@ export declare type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode = {
|
|
|
33430
33787
|
data?: Maybe<GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndUnion>;
|
|
33431
33788
|
id: Scalars['ID']['output'];
|
|
33432
33789
|
};
|
|
33433
|
-
export declare type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
33790
|
+
export declare type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
33434
33791
|
export declare type GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode = Node & {
|
|
33435
33792
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode';
|
|
33436
33793
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33463,7 +33820,7 @@ export declare type GraphStoreFullIssueRecursiveAssociatedPrEndNode = {
|
|
|
33463
33820
|
data?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrEndUnion>;
|
|
33464
33821
|
id: Scalars['ID']['output'];
|
|
33465
33822
|
};
|
|
33466
|
-
export declare type GraphStoreFullIssueRecursiveAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
33823
|
+
export declare type GraphStoreFullIssueRecursiveAssociatedPrEndUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
33467
33824
|
export declare type GraphStoreFullIssueRecursiveAssociatedPrNode = Node & {
|
|
33468
33825
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrNode';
|
|
33469
33826
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33862,7 +34219,7 @@ export declare type GraphStoreFullParentDocumentHasChildDocumentEndNode = {
|
|
|
33862
34219
|
id: Scalars['ID']['output'];
|
|
33863
34220
|
metadata?: Maybe<GraphStoreFullParentDocumentHasChildDocumentRelationshipObjectMetadataOutput>;
|
|
33864
34221
|
};
|
|
33865
|
-
export declare type GraphStoreFullParentDocumentHasChildDocumentEndUnion = DevOpsDocument;
|
|
34222
|
+
export declare type GraphStoreFullParentDocumentHasChildDocumentEndUnion = DevOpsDocument | ExternalDocument;
|
|
33866
34223
|
export declare type GraphStoreFullParentDocumentHasChildDocumentNode = Node & {
|
|
33867
34224
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentNode';
|
|
33868
34225
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33887,7 +34244,7 @@ export declare type GraphStoreFullParentDocumentHasChildDocumentStartNode = {
|
|
|
33887
34244
|
id: Scalars['ID']['output'];
|
|
33888
34245
|
metadata?: Maybe<GraphStoreFullParentDocumentHasChildDocumentRelationshipSubjectMetadataOutput>;
|
|
33889
34246
|
};
|
|
33890
|
-
export declare type GraphStoreFullParentDocumentHasChildDocumentStartUnion = DevOpsDocument;
|
|
34247
|
+
export declare type GraphStoreFullParentDocumentHasChildDocumentStartUnion = DevOpsDocument | ExternalDocument;
|
|
33891
34248
|
export declare type GraphStoreFullParentIssueHasChildIssueConnection = HasPageInfo & {
|
|
33892
34249
|
__typename?: 'GraphStoreFullParentIssueHasChildIssueConnection';
|
|
33893
34250
|
edges: Array<Maybe<GraphStoreFullParentIssueHasChildIssueEdge>>;
|
|
@@ -33936,7 +34293,7 @@ export declare type GraphStoreFullPrInRepoEndNode = {
|
|
|
33936
34293
|
id: Scalars['ID']['output'];
|
|
33937
34294
|
metadata?: Maybe<GraphStoreFullPrInRepoRelationshipObjectMetadataOutput>;
|
|
33938
34295
|
};
|
|
33939
|
-
export declare type GraphStoreFullPrInRepoEndUnion = DevOpsRepository;
|
|
34296
|
+
export declare type GraphStoreFullPrInRepoEndUnion = DevOpsRepository | ExternalRepository;
|
|
33940
34297
|
export declare type GraphStoreFullPrInRepoNode = Node & {
|
|
33941
34298
|
__typename?: 'GraphStoreFullPrInRepoNode';
|
|
33942
34299
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33954,7 +34311,7 @@ export declare type GraphStoreFullPrInRepoStartNode = {
|
|
|
33954
34311
|
data?: Maybe<GraphStoreFullPrInRepoStartUnion>;
|
|
33955
34312
|
id: Scalars['ID']['output'];
|
|
33956
34313
|
};
|
|
33957
|
-
export declare type GraphStoreFullPrInRepoStartUnion = DevOpsPullRequestDetails;
|
|
34314
|
+
export declare type GraphStoreFullPrInRepoStartUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
33958
34315
|
export declare type GraphStoreFullProjectAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
33959
34316
|
__typename?: 'GraphStoreFullProjectAssociatedBranchConnection';
|
|
33960
34317
|
edges: Array<Maybe<GraphStoreFullProjectAssociatedBranchEdge>>;
|
|
@@ -34010,9 +34367,11 @@ export declare type GraphStoreFullProjectAssociatedBuildEdge = {
|
|
|
34010
34367
|
};
|
|
34011
34368
|
export declare type GraphStoreFullProjectAssociatedBuildEndNode = {
|
|
34012
34369
|
__typename?: 'GraphStoreFullProjectAssociatedBuildEndNode';
|
|
34370
|
+
data?: Maybe<GraphStoreFullProjectAssociatedBuildEndUnion>;
|
|
34013
34371
|
id: Scalars['ID']['output'];
|
|
34014
34372
|
metadata?: Maybe<GraphStoreFullProjectAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
34015
34373
|
};
|
|
34374
|
+
export declare type GraphStoreFullProjectAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
34016
34375
|
export declare type GraphStoreFullProjectAssociatedBuildNode = Node & {
|
|
34017
34376
|
__typename?: 'GraphStoreFullProjectAssociatedBuildNode';
|
|
34018
34377
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34142,7 +34501,7 @@ export declare type GraphStoreFullProjectAssociatedFeatureFlagEndNode = {
|
|
|
34142
34501
|
data?: Maybe<GraphStoreFullProjectAssociatedFeatureFlagEndUnion>;
|
|
34143
34502
|
id: Scalars['ID']['output'];
|
|
34144
34503
|
};
|
|
34145
|
-
export declare type GraphStoreFullProjectAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
34504
|
+
export declare type GraphStoreFullProjectAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
34146
34505
|
export declare type GraphStoreFullProjectAssociatedFeatureFlagNode = Node & {
|
|
34147
34506
|
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagNode';
|
|
34148
34507
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34246,7 +34605,7 @@ export declare type GraphStoreFullProjectAssociatedPrEndNode = {
|
|
|
34246
34605
|
id: Scalars['ID']['output'];
|
|
34247
34606
|
metadata?: Maybe<GraphStoreFullProjectAssociatedPrRelationshipObjectMetadataOutput>;
|
|
34248
34607
|
};
|
|
34249
|
-
export declare type GraphStoreFullProjectAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
34608
|
+
export declare type GraphStoreFullProjectAssociatedPrEndUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
34250
34609
|
export declare type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
34251
34610
|
__typename?: 'GraphStoreFullProjectAssociatedPrNode';
|
|
34252
34611
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34315,7 +34674,7 @@ export declare type GraphStoreFullProjectAssociatedRepoEndNode = {
|
|
|
34315
34674
|
id: Scalars['ID']['output'];
|
|
34316
34675
|
metadata?: Maybe<GraphStoreFullProjectAssociatedRepoRelationshipObjectMetadataOutput>;
|
|
34317
34676
|
};
|
|
34318
|
-
export declare type GraphStoreFullProjectAssociatedRepoEndUnion = DevOpsRepository;
|
|
34677
|
+
export declare type GraphStoreFullProjectAssociatedRepoEndUnion = DevOpsRepository | ExternalRepository;
|
|
34319
34678
|
export declare type GraphStoreFullProjectAssociatedRepoNode = Node & {
|
|
34320
34679
|
__typename?: 'GraphStoreFullProjectAssociatedRepoNode';
|
|
34321
34680
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34487,7 +34846,7 @@ export declare type GraphStoreFullProjectAssociatedVulnerabilityEndNode = {
|
|
|
34487
34846
|
id: Scalars['ID']['output'];
|
|
34488
34847
|
metadata?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityRelationshipObjectMetadataOutput>;
|
|
34489
34848
|
};
|
|
34490
|
-
export declare type GraphStoreFullProjectAssociatedVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails;
|
|
34849
|
+
export declare type GraphStoreFullProjectAssociatedVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
34491
34850
|
export declare type GraphStoreFullProjectAssociatedVulnerabilityNode = Node & {
|
|
34492
34851
|
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityNode';
|
|
34493
34852
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34549,7 +34908,7 @@ export declare type GraphStoreFullProjectDisassociatedRepoEndNode = {
|
|
|
34549
34908
|
data?: Maybe<GraphStoreFullProjectDisassociatedRepoEndUnion>;
|
|
34550
34909
|
id: Scalars['ID']['output'];
|
|
34551
34910
|
};
|
|
34552
|
-
export declare type GraphStoreFullProjectDisassociatedRepoEndUnion = DevOpsRepository;
|
|
34911
|
+
export declare type GraphStoreFullProjectDisassociatedRepoEndUnion = DevOpsRepository | ExternalRepository;
|
|
34553
34912
|
export declare type GraphStoreFullProjectDisassociatedRepoNode = Node & {
|
|
34554
34913
|
__typename?: 'GraphStoreFullProjectDisassociatedRepoNode';
|
|
34555
34914
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34582,7 +34941,7 @@ export declare type GraphStoreFullProjectDocumentationEntityEndNode = {
|
|
|
34582
34941
|
data?: Maybe<GraphStoreFullProjectDocumentationEntityEndUnion>;
|
|
34583
34942
|
id: Scalars['ID']['output'];
|
|
34584
34943
|
};
|
|
34585
|
-
export declare type GraphStoreFullProjectDocumentationEntityEndUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument;
|
|
34944
|
+
export declare type GraphStoreFullProjectDocumentationEntityEndUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
34586
34945
|
export declare type GraphStoreFullProjectDocumentationEntityNode = Node & {
|
|
34587
34946
|
__typename?: 'GraphStoreFullProjectDocumentationEntityNode';
|
|
34588
34947
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34682,7 +35041,7 @@ export declare type GraphStoreFullProjectExplicitlyAssociatedRepoEndNode = {
|
|
|
34682
35041
|
id: Scalars['ID']['output'];
|
|
34683
35042
|
metadata?: Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoRelationshipObjectMetadataOutput>;
|
|
34684
35043
|
};
|
|
34685
|
-
export declare type GraphStoreFullProjectExplicitlyAssociatedRepoEndUnion = DevOpsRepository;
|
|
35044
|
+
export declare type GraphStoreFullProjectExplicitlyAssociatedRepoEndUnion = DevOpsRepository | ExternalRepository;
|
|
34686
35045
|
export declare type GraphStoreFullProjectExplicitlyAssociatedRepoNode = Node & {
|
|
34687
35046
|
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoNode';
|
|
34688
35047
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34838,7 +35197,7 @@ export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndN
|
|
|
34838
35197
|
id: Scalars['ID']['output'];
|
|
34839
35198
|
metadata?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityRelationshipObjectMetadataOutput>;
|
|
34840
35199
|
};
|
|
34841
|
-
export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails;
|
|
35200
|
+
export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
34842
35201
|
export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode = Node & {
|
|
34843
35202
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode';
|
|
34844
35203
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34962,9 +35321,11 @@ export declare type GraphStoreFullSprintAssociatedBuildEdge = {
|
|
|
34962
35321
|
};
|
|
34963
35322
|
export declare type GraphStoreFullSprintAssociatedBuildEndNode = {
|
|
34964
35323
|
__typename?: 'GraphStoreFullSprintAssociatedBuildEndNode';
|
|
35324
|
+
data?: Maybe<GraphStoreFullSprintAssociatedBuildEndUnion>;
|
|
34965
35325
|
id: Scalars['ID']['output'];
|
|
34966
35326
|
metadata?: Maybe<GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
34967
35327
|
};
|
|
35328
|
+
export declare type GraphStoreFullSprintAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
34968
35329
|
export declare type GraphStoreFullSprintAssociatedBuildNode = Node & {
|
|
34969
35330
|
__typename?: 'GraphStoreFullSprintAssociatedBuildNode';
|
|
34970
35331
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35087,7 +35448,7 @@ export declare type GraphStoreFullSprintAssociatedFeatureFlagEndNode = {
|
|
|
35087
35448
|
data?: Maybe<GraphStoreFullSprintAssociatedFeatureFlagEndUnion>;
|
|
35088
35449
|
id: Scalars['ID']['output'];
|
|
35089
35450
|
};
|
|
35090
|
-
export declare type GraphStoreFullSprintAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
35451
|
+
export declare type GraphStoreFullSprintAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
35091
35452
|
export declare type GraphStoreFullSprintAssociatedFeatureFlagNode = Node & {
|
|
35092
35453
|
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagNode';
|
|
35093
35454
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35123,7 +35484,7 @@ export declare type GraphStoreFullSprintAssociatedPrEndNode = {
|
|
|
35123
35484
|
id: Scalars['ID']['output'];
|
|
35124
35485
|
metadata?: Maybe<GraphStoreFullSprintAssociatedPrRelationshipObjectMetadataOutput>;
|
|
35125
35486
|
};
|
|
35126
|
-
export declare type GraphStoreFullSprintAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
35487
|
+
export declare type GraphStoreFullSprintAssociatedPrEndUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
35127
35488
|
export declare type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
35128
35489
|
__typename?: 'GraphStoreFullSprintAssociatedPrNode';
|
|
35129
35490
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35190,7 +35551,7 @@ export declare type GraphStoreFullSprintAssociatedVulnerabilityEndNode = {
|
|
|
35190
35551
|
id: Scalars['ID']['output'];
|
|
35191
35552
|
metadata?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityRelationshipObjectMetadataOutput>;
|
|
35192
35553
|
};
|
|
35193
|
-
export declare type GraphStoreFullSprintAssociatedVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails;
|
|
35554
|
+
export declare type GraphStoreFullSprintAssociatedVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
35194
35555
|
export declare type GraphStoreFullSprintAssociatedVulnerabilityNode = Node & {
|
|
35195
35556
|
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityNode';
|
|
35196
35557
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35416,7 +35777,7 @@ export declare type GraphStoreFullTestPerfhammerMaterializationAStartNode = {
|
|
|
35416
35777
|
data?: Maybe<GraphStoreFullTestPerfhammerMaterializationAStartUnion>;
|
|
35417
35778
|
id: Scalars['ID']['output'];
|
|
35418
35779
|
};
|
|
35419
|
-
export declare type GraphStoreFullTestPerfhammerMaterializationAStartUnion = DevOpsPullRequestDetails;
|
|
35780
|
+
export declare type GraphStoreFullTestPerfhammerMaterializationAStartUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
35420
35781
|
export declare type GraphStoreFullTestPerfhammerMaterializationBConnection = HasPageInfo & HasTotal & {
|
|
35421
35782
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBConnection';
|
|
35422
35783
|
edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationBEdge>>;
|
|
@@ -35478,7 +35839,7 @@ export declare type GraphStoreFullTestPerfhammerMaterializationStartNode = {
|
|
|
35478
35839
|
data?: Maybe<GraphStoreFullTestPerfhammerMaterializationStartUnion>;
|
|
35479
35840
|
id: Scalars['ID']['output'];
|
|
35480
35841
|
};
|
|
35481
|
-
export declare type GraphStoreFullTestPerfhammerMaterializationStartUnion = DevOpsPullRequestDetails;
|
|
35842
|
+
export declare type GraphStoreFullTestPerfhammerMaterializationStartUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
35482
35843
|
export declare type GraphStoreFullTestPerfhammerRelationshipConnection = HasPageInfo & {
|
|
35483
35844
|
__typename?: 'GraphStoreFullTestPerfhammerRelationshipConnection';
|
|
35484
35845
|
edges: Array<Maybe<GraphStoreFullTestPerfhammerRelationshipEdge>>;
|
|
@@ -35492,8 +35853,10 @@ export declare type GraphStoreFullTestPerfhammerRelationshipEdge = {
|
|
|
35492
35853
|
};
|
|
35493
35854
|
export declare type GraphStoreFullTestPerfhammerRelationshipEndNode = {
|
|
35494
35855
|
__typename?: 'GraphStoreFullTestPerfhammerRelationshipEndNode';
|
|
35856
|
+
data?: Maybe<GraphStoreFullTestPerfhammerRelationshipEndUnion>;
|
|
35495
35857
|
id: Scalars['ID']['output'];
|
|
35496
35858
|
};
|
|
35859
|
+
export declare type GraphStoreFullTestPerfhammerRelationshipEndUnion = ExternalBuildInfo;
|
|
35497
35860
|
export declare type GraphStoreFullTestPerfhammerRelationshipNode = Node & {
|
|
35498
35861
|
__typename?: 'GraphStoreFullTestPerfhammerRelationshipNode';
|
|
35499
35862
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35560,8 +35923,10 @@ export declare type GraphStoreFullVersionAssociatedBuildEdge = {
|
|
|
35560
35923
|
};
|
|
35561
35924
|
export declare type GraphStoreFullVersionAssociatedBuildEndNode = {
|
|
35562
35925
|
__typename?: 'GraphStoreFullVersionAssociatedBuildEndNode';
|
|
35926
|
+
data?: Maybe<GraphStoreFullVersionAssociatedBuildEndUnion>;
|
|
35563
35927
|
id: Scalars['ID']['output'];
|
|
35564
35928
|
};
|
|
35929
|
+
export declare type GraphStoreFullVersionAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
35565
35930
|
export declare type GraphStoreFullVersionAssociatedBuildNode = Node & {
|
|
35566
35931
|
__typename?: 'GraphStoreFullVersionAssociatedBuildNode';
|
|
35567
35932
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35676,7 +36041,7 @@ export declare type GraphStoreFullVersionAssociatedDesignEndNode = {
|
|
|
35676
36041
|
id: Scalars['ID']['output'];
|
|
35677
36042
|
metadata?: Maybe<GraphStoreFullVersionAssociatedDesignRelationshipObjectMetadataOutput>;
|
|
35678
36043
|
};
|
|
35679
|
-
export declare type GraphStoreFullVersionAssociatedDesignEndUnion = DevOpsDesign;
|
|
36044
|
+
export declare type GraphStoreFullVersionAssociatedDesignEndUnion = DevOpsDesign | ExternalDesign;
|
|
35680
36045
|
export declare type GraphStoreFullVersionAssociatedDesignNode = Node & {
|
|
35681
36046
|
__typename?: 'GraphStoreFullVersionAssociatedDesignNode';
|
|
35682
36047
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35715,7 +36080,7 @@ export declare type GraphStoreFullVersionAssociatedFeatureFlagEndNode = {
|
|
|
35715
36080
|
data?: Maybe<GraphStoreFullVersionAssociatedFeatureFlagEndUnion>;
|
|
35716
36081
|
id: Scalars['ID']['output'];
|
|
35717
36082
|
};
|
|
35718
|
-
export declare type GraphStoreFullVersionAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
36083
|
+
export declare type GraphStoreFullVersionAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
35719
36084
|
export declare type GraphStoreFullVersionAssociatedFeatureFlagNode = Node & {
|
|
35720
36085
|
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagNode';
|
|
35721
36086
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35779,7 +36144,7 @@ export declare type GraphStoreFullVersionAssociatedPullRequestEndNode = {
|
|
|
35779
36144
|
data?: Maybe<GraphStoreFullVersionAssociatedPullRequestEndUnion>;
|
|
35780
36145
|
id: Scalars['ID']['output'];
|
|
35781
36146
|
};
|
|
35782
|
-
export declare type GraphStoreFullVersionAssociatedPullRequestEndUnion = DevOpsPullRequestDetails;
|
|
36147
|
+
export declare type GraphStoreFullVersionAssociatedPullRequestEndUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
35783
36148
|
export declare type GraphStoreFullVersionAssociatedPullRequestNode = Node & {
|
|
35784
36149
|
__typename?: 'GraphStoreFullVersionAssociatedPullRequestNode';
|
|
35785
36150
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35841,7 +36206,7 @@ export declare type GraphStoreFullVersionUserAssociatedFeatureFlagEndNode = {
|
|
|
35841
36206
|
data?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagEndUnion>;
|
|
35842
36207
|
id: Scalars['ID']['output'];
|
|
35843
36208
|
};
|
|
35844
|
-
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
36209
|
+
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
35845
36210
|
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagNode = Node & {
|
|
35846
36211
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagNode';
|
|
35847
36212
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35901,7 +36266,7 @@ export declare type GraphStoreFullVulnerabilityAssociatedIssueStartNode = {
|
|
|
35901
36266
|
id: Scalars['ID']['output'];
|
|
35902
36267
|
metadata?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueRelationshipSubjectMetadataOutput>;
|
|
35903
36268
|
};
|
|
35904
|
-
export declare type GraphStoreFullVulnerabilityAssociatedIssueStartUnion = DevOpsSecurityVulnerabilityDetails;
|
|
36269
|
+
export declare type GraphStoreFullVulnerabilityAssociatedIssueStartUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
35905
36270
|
export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilitySeverityOutput {
|
|
35906
36271
|
Critical = "CRITICAL",
|
|
35907
36272
|
High = "HIGH",
|
|
@@ -36045,6 +36410,9 @@ export declare type GraphStoreIssueChangesComponentSortInput = {
|
|
|
36045
36410
|
export declare type GraphStoreIssueHasAssigneeSortInput = {
|
|
36046
36411
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36047
36412
|
};
|
|
36413
|
+
export declare type GraphStoreIssueInStatusSortInput = {
|
|
36414
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36415
|
+
};
|
|
36048
36416
|
export declare type GraphStoreIssueRecursiveAssociatedDeploymentSortInput = {
|
|
36049
36417
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
36050
36418
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -37210,7 +37578,7 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge =
|
|
|
37210
37578
|
node?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion>;
|
|
37211
37579
|
};
|
|
37212
37580
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion = CompassComponent;
|
|
37213
|
-
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument;
|
|
37581
|
+
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
37214
37582
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
37215
37583
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
37216
37584
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentEdge>>>;
|
|
@@ -37623,6 +37991,19 @@ export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
|
37623
37991
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseUnion>;
|
|
37624
37992
|
};
|
|
37625
37993
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseUnion = JiraIssue;
|
|
37994
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBuildConnection = HasPageInfo & {
|
|
37995
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildConnection';
|
|
37996
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBuildEdge>>>;
|
|
37997
|
+
pageInfo: PageInfo;
|
|
37998
|
+
};
|
|
37999
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBuildEdge = {
|
|
38000
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildEdge';
|
|
38001
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38002
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38003
|
+
id: Scalars['ID']['output'];
|
|
38004
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38005
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildUnion>;
|
|
38006
|
+
};
|
|
37626
38007
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseConnection = HasPageInfo & {
|
|
37627
38008
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildInverseConnection';
|
|
37628
38009
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseEdge>>>;
|
|
@@ -37637,6 +38018,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseEdge = {
|
|
|
37637
38018
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseUnion>;
|
|
37638
38019
|
};
|
|
37639
38020
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseUnion = JiraIssue;
|
|
38021
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBuildUnion = ExternalBuildInfo;
|
|
37640
38022
|
export declare type GraphStoreSimplifiedIssueAssociatedCommitConnection = HasPageInfo & {
|
|
37641
38023
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitConnection';
|
|
37642
38024
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedCommitEdge>>>;
|
|
@@ -37724,7 +38106,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseEdge = {
|
|
|
37724
38106
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseUnion>;
|
|
37725
38107
|
};
|
|
37726
38108
|
export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseUnion = JiraIssue;
|
|
37727
|
-
export declare type GraphStoreSimplifiedIssueAssociatedDesignUnion = DevOpsDesign;
|
|
38109
|
+
export declare type GraphStoreSimplifiedIssueAssociatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
37728
38110
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
37729
38111
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagConnection';
|
|
37730
38112
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge>>>;
|
|
@@ -37752,7 +38134,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge =
|
|
|
37752
38134
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion>;
|
|
37753
38135
|
};
|
|
37754
38136
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion = JiraIssue;
|
|
37755
|
-
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
38137
|
+
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
37756
38138
|
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkConnection = HasPageInfo & {
|
|
37757
38139
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkConnection';
|
|
37758
38140
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge>>>;
|
|
@@ -37808,7 +38190,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
|
37808
38190
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseUnion>;
|
|
37809
38191
|
};
|
|
37810
38192
|
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseUnion = JiraIssue;
|
|
37811
|
-
export declare type GraphStoreSimplifiedIssueAssociatedPrUnion = DevOpsPullRequestDetails;
|
|
38193
|
+
export declare type GraphStoreSimplifiedIssueAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
37812
38194
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
37813
38195
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection';
|
|
37814
38196
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge>>>;
|
|
@@ -37883,6 +38265,20 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
|
|
|
37883
38265
|
};
|
|
37884
38266
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
|
|
37885
38267
|
export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
38268
|
+
export declare type GraphStoreSimplifiedIssueInStatusInverseConnection = HasPageInfo & {
|
|
38269
|
+
__typename?: 'GraphStoreSimplifiedIssueInStatusInverseConnection';
|
|
38270
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueInStatusInverseEdge>>>;
|
|
38271
|
+
pageInfo: PageInfo;
|
|
38272
|
+
};
|
|
38273
|
+
export declare type GraphStoreSimplifiedIssueInStatusInverseEdge = {
|
|
38274
|
+
__typename?: 'GraphStoreSimplifiedIssueInStatusInverseEdge';
|
|
38275
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38276
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38277
|
+
id: Scalars['ID']['output'];
|
|
38278
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38279
|
+
node?: Maybe<GraphStoreSimplifiedIssueInStatusInverseUnion>;
|
|
38280
|
+
};
|
|
38281
|
+
export declare type GraphStoreSimplifiedIssueInStatusInverseUnion = JiraIssue;
|
|
37886
38282
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
37887
38283
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection';
|
|
37888
38284
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge>>>;
|
|
@@ -37946,7 +38342,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInver
|
|
|
37946
38342
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInverseUnion>;
|
|
37947
38343
|
};
|
|
37948
38344
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInverseUnion = JiraIssue;
|
|
37949
|
-
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
38345
|
+
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
37950
38346
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
37951
38347
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedPrConnection';
|
|
37952
38348
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrEdge>>>;
|
|
@@ -37978,7 +38374,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge =
|
|
|
37978
38374
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion>;
|
|
37979
38375
|
};
|
|
37980
38376
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion = JiraIssue;
|
|
37981
|
-
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion = DevOpsPullRequestDetails;
|
|
38377
|
+
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
37982
38378
|
export declare type GraphStoreSimplifiedIssueToWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
37983
38379
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardConnection';
|
|
37984
38380
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueToWhiteboardEdge>>>;
|
|
@@ -38355,8 +38751,8 @@ export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentInverseEdg
|
|
|
38355
38751
|
lastUpdated: Scalars['DateTime']['output'];
|
|
38356
38752
|
node?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentInverseUnion>;
|
|
38357
38753
|
};
|
|
38358
|
-
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentInverseUnion = DevOpsDocument;
|
|
38359
|
-
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentUnion = DevOpsDocument;
|
|
38754
|
+
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
38755
|
+
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
38360
38756
|
export declare type GraphStoreSimplifiedParentIssueHasChildIssueConnection = HasPageInfo & {
|
|
38361
38757
|
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueConnection';
|
|
38362
38758
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentIssueHasChildIssueEdge>>>;
|
|
@@ -38411,8 +38807,8 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
38411
38807
|
lastUpdated: Scalars['DateTime']['output'];
|
|
38412
38808
|
node?: Maybe<GraphStoreSimplifiedPrInRepoInverseUnion>;
|
|
38413
38809
|
};
|
|
38414
|
-
export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails;
|
|
38415
|
-
export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository;
|
|
38810
|
+
export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
38811
|
+
export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
38416
38812
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
38417
38813
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchInverseConnection';
|
|
38418
38814
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseEdge>>>;
|
|
@@ -38429,6 +38825,21 @@ export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseEdge = {
|
|
|
38429
38825
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseUnion>;
|
|
38430
38826
|
};
|
|
38431
38827
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseUnion = JiraProject;
|
|
38828
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
38829
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildConnection';
|
|
38830
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBuildEdge>>>;
|
|
38831
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
38832
|
+
pageInfo: PageInfo;
|
|
38833
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
38834
|
+
};
|
|
38835
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBuildEdge = {
|
|
38836
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildEdge';
|
|
38837
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38838
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38839
|
+
id: Scalars['ID']['output'];
|
|
38840
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38841
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildUnion>;
|
|
38842
|
+
};
|
|
38432
38843
|
export declare type GraphStoreSimplifiedProjectAssociatedBuildInverseConnection = HasPageInfo & HasTotal & {
|
|
38433
38844
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildInverseConnection';
|
|
38434
38845
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBuildInverseEdge>>>;
|
|
@@ -38445,6 +38856,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBuildInverseEdge = {
|
|
|
38445
38856
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildInverseUnion>;
|
|
38446
38857
|
};
|
|
38447
38858
|
export declare type GraphStoreSimplifiedProjectAssociatedBuildInverseUnion = JiraProject;
|
|
38859
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBuildUnion = ExternalBuildInfo;
|
|
38448
38860
|
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
38449
38861
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentConnection';
|
|
38450
38862
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentEdge>>>;
|
|
@@ -38508,7 +38920,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseEdge
|
|
|
38508
38920
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseUnion>;
|
|
38509
38921
|
};
|
|
38510
38922
|
export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseUnion = JiraProject;
|
|
38511
|
-
export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
38923
|
+
export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
38512
38924
|
export declare type GraphStoreSimplifiedProjectAssociatedIncidentConnection = HasPageInfo & HasTotal & {
|
|
38513
38925
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedIncidentConnection';
|
|
38514
38926
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedIncidentEdge>>>;
|
|
@@ -38604,7 +39016,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedPrInverseEdge = {
|
|
|
38604
39016
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedPrInverseUnion>;
|
|
38605
39017
|
};
|
|
38606
39018
|
export declare type GraphStoreSimplifiedProjectAssociatedPrInverseUnion = JiraProject;
|
|
38607
|
-
export declare type GraphStoreSimplifiedProjectAssociatedPrUnion = DevOpsPullRequestDetails;
|
|
39019
|
+
export declare type GraphStoreSimplifiedProjectAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
38608
39020
|
export declare type GraphStoreSimplifiedProjectAssociatedRepoConnection = HasPageInfo & HasTotal & {
|
|
38609
39021
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedRepoConnection';
|
|
38610
39022
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedRepoEdge>>>;
|
|
@@ -38636,7 +39048,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedRepoInverseEdge = {
|
|
|
38636
39048
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoInverseUnion>;
|
|
38637
39049
|
};
|
|
38638
39050
|
export declare type GraphStoreSimplifiedProjectAssociatedRepoInverseUnion = JiraProject;
|
|
38639
|
-
export declare type GraphStoreSimplifiedProjectAssociatedRepoUnion = DevOpsRepository;
|
|
39051
|
+
export declare type GraphStoreSimplifiedProjectAssociatedRepoUnion = DevOpsRepository | ExternalRepository;
|
|
38640
39052
|
export declare type GraphStoreSimplifiedProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
38641
39053
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceConnection';
|
|
38642
39054
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedServiceEdge>>>;
|
|
@@ -38780,7 +39192,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseEdg
|
|
|
38780
39192
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseUnion>;
|
|
38781
39193
|
};
|
|
38782
39194
|
export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseUnion = JiraProject;
|
|
38783
|
-
export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails;
|
|
39195
|
+
export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
38784
39196
|
export declare type GraphStoreSimplifiedProjectDisassociatedRepoConnection = HasPageInfo & HasTotal & {
|
|
38785
39197
|
__typename?: 'GraphStoreSimplifiedProjectDisassociatedRepoConnection';
|
|
38786
39198
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectDisassociatedRepoEdge>>>;
|
|
@@ -38812,7 +39224,7 @@ export declare type GraphStoreSimplifiedProjectDisassociatedRepoInverseEdge = {
|
|
|
38812
39224
|
node?: Maybe<GraphStoreSimplifiedProjectDisassociatedRepoInverseUnion>;
|
|
38813
39225
|
};
|
|
38814
39226
|
export declare type GraphStoreSimplifiedProjectDisassociatedRepoInverseUnion = JiraProject;
|
|
38815
|
-
export declare type GraphStoreSimplifiedProjectDisassociatedRepoUnion = DevOpsRepository;
|
|
39227
|
+
export declare type GraphStoreSimplifiedProjectDisassociatedRepoUnion = DevOpsRepository | ExternalRepository;
|
|
38816
39228
|
export declare type GraphStoreSimplifiedProjectDocumentationEntityConnection = HasPageInfo & HasTotal & {
|
|
38817
39229
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationEntityConnection';
|
|
38818
39230
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectDocumentationEntityEdge>>>;
|
|
@@ -38844,7 +39256,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseEdge =
|
|
|
38844
39256
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityInverseUnion>;
|
|
38845
39257
|
};
|
|
38846
39258
|
export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseUnion = JiraProject;
|
|
38847
|
-
export declare type GraphStoreSimplifiedProjectDocumentationEntityUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument;
|
|
39259
|
+
export declare type GraphStoreSimplifiedProjectDocumentationEntityUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
38848
39260
|
export declare type GraphStoreSimplifiedProjectDocumentationPageConnection = HasPageInfo & HasTotal & {
|
|
38849
39261
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageConnection';
|
|
38850
39262
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectDocumentationPageEdge>>>;
|
|
@@ -38940,7 +39352,7 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEd
|
|
|
38940
39352
|
node?: Maybe<GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion>;
|
|
38941
39353
|
};
|
|
38942
39354
|
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion = JiraProject;
|
|
38943
|
-
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoUnion = DevOpsRepository;
|
|
39355
|
+
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoUnion = DevOpsRepository | ExternalRepository;
|
|
38944
39356
|
export declare type GraphStoreSimplifiedProjectHasIssueConnection = HasPageInfo & HasTotal & {
|
|
38945
39357
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueConnection';
|
|
38946
39358
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasIssueEdge>>>;
|
|
@@ -39114,7 +39526,7 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
39114
39526
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39115
39527
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
39116
39528
|
};
|
|
39117
|
-
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails;
|
|
39529
|
+
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
39118
39530
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
|
|
39119
39531
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
39120
39532
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
@@ -39293,7 +39705,7 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdg
|
|
|
39293
39705
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39294
39706
|
node?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion>;
|
|
39295
39707
|
};
|
|
39296
|
-
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion = DevOpsPullRequestDetails;
|
|
39708
|
+
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39297
39709
|
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageUnion = ConfluencePage;
|
|
39298
39710
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectConnection = HasPageInfo & {
|
|
39299
39711
|
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectConnection';
|
|
@@ -39323,6 +39735,22 @@ export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge =
|
|
|
39323
39735
|
};
|
|
39324
39736
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseUnion = ConfluenceSpace;
|
|
39325
39737
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectUnion = JiraProject;
|
|
39738
|
+
export declare type GraphStoreSimplifiedSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
39739
|
+
__typename?: 'GraphStoreSimplifiedSprintAssociatedBuildConnection';
|
|
39740
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedBuildEdge>>>;
|
|
39741
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39742
|
+
pageInfo: PageInfo;
|
|
39743
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39744
|
+
};
|
|
39745
|
+
export declare type GraphStoreSimplifiedSprintAssociatedBuildEdge = {
|
|
39746
|
+
__typename?: 'GraphStoreSimplifiedSprintAssociatedBuildEdge';
|
|
39747
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39748
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39749
|
+
id: Scalars['ID']['output'];
|
|
39750
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39751
|
+
node?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildUnion>;
|
|
39752
|
+
};
|
|
39753
|
+
export declare type GraphStoreSimplifiedSprintAssociatedBuildUnion = ExternalBuildInfo;
|
|
39326
39754
|
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
39327
39755
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedDeploymentConnection';
|
|
39328
39756
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentEdge>>>;
|
|
@@ -39354,7 +39782,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge = {
|
|
|
39354
39782
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39355
39783
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedFeatureFlagUnion>;
|
|
39356
39784
|
};
|
|
39357
|
-
export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
39785
|
+
export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
39358
39786
|
export declare type GraphStoreSimplifiedSprintAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
39359
39787
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedPrConnection';
|
|
39360
39788
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedPrEdge>>>;
|
|
@@ -39370,7 +39798,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedPrEdge = {
|
|
|
39370
39798
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39371
39799
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedPrUnion>;
|
|
39372
39800
|
};
|
|
39373
|
-
export declare type GraphStoreSimplifiedSprintAssociatedPrUnion = DevOpsPullRequestDetails;
|
|
39801
|
+
export declare type GraphStoreSimplifiedSprintAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39374
39802
|
export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityConnection = HasPageInfo & HasTotal & {
|
|
39375
39803
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedVulnerabilityConnection';
|
|
39376
39804
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge>>>;
|
|
@@ -39386,7 +39814,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge = {
|
|
|
39386
39814
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39387
39815
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion>;
|
|
39388
39816
|
};
|
|
39389
|
-
export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails;
|
|
39817
|
+
export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
39390
39818
|
export declare type GraphStoreSimplifiedSprintContainsIssueConnection = HasPageInfo & HasTotal & {
|
|
39391
39819
|
__typename?: 'GraphStoreSimplifiedSprintContainsIssueConnection';
|
|
39392
39820
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintContainsIssueEdge>>>;
|
|
@@ -39557,7 +39985,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseEdg
|
|
|
39557
39985
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39558
39986
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion>;
|
|
39559
39987
|
};
|
|
39560
|
-
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion = DevOpsPullRequestDetails;
|
|
39988
|
+
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39561
39989
|
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAUnion = ExternalCommit;
|
|
39562
39990
|
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationBInverseConnection = HasPageInfo & HasTotal & {
|
|
39563
39991
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationBInverseConnection';
|
|
@@ -39590,7 +40018,20 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationInverseEdge
|
|
|
39590
40018
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39591
40019
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationInverseUnion>;
|
|
39592
40020
|
};
|
|
39593
|
-
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationInverseUnion = DevOpsPullRequestDetails;
|
|
40021
|
+
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
40022
|
+
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipConnection = HasPageInfo & {
|
|
40023
|
+
__typename?: 'GraphStoreSimplifiedTestPerfhammerRelationshipConnection';
|
|
40024
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipEdge>>>;
|
|
40025
|
+
pageInfo: PageInfo;
|
|
40026
|
+
};
|
|
40027
|
+
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipEdge = {
|
|
40028
|
+
__typename?: 'GraphStoreSimplifiedTestPerfhammerRelationshipEdge';
|
|
40029
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40030
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40031
|
+
id: Scalars['ID']['output'];
|
|
40032
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40033
|
+
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipUnion>;
|
|
40034
|
+
};
|
|
39594
40035
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseConnection = HasPageInfo & {
|
|
39595
40036
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerRelationshipInverseConnection';
|
|
39596
40037
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge>>>;
|
|
@@ -39605,6 +40046,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
39605
40046
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
|
|
39606
40047
|
};
|
|
39607
40048
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
|
|
40049
|
+
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipUnion = ExternalBuildInfo;
|
|
39608
40050
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
39609
40051
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
39610
40052
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrEdge>>>;
|
|
@@ -39632,7 +40074,7 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
39632
40074
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseUnion>;
|
|
39633
40075
|
};
|
|
39634
40076
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39635
|
-
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
|
|
40077
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39636
40078
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
39637
40079
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
39638
40080
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
@@ -39804,7 +40246,7 @@ export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
|
|
|
39804
40246
|
node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseUnion>;
|
|
39805
40247
|
};
|
|
39806
40248
|
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39807
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails;
|
|
40249
|
+
export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39808
40250
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
39809
40251
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
39810
40252
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -39892,7 +40334,91 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
39892
40334
|
node?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseUnion>;
|
|
39893
40335
|
};
|
|
39894
40336
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39895
|
-
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails;
|
|
40337
|
+
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
40338
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
40339
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
40340
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
40341
|
+
pageInfo: PageInfo;
|
|
40342
|
+
};
|
|
40343
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalEdge = {
|
|
40344
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalEdge';
|
|
40345
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40346
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40347
|
+
id: Scalars['ID']['output'];
|
|
40348
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40349
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalUnion>;
|
|
40350
|
+
};
|
|
40351
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection = HasPageInfo & {
|
|
40352
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection';
|
|
40353
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseEdge>>>;
|
|
40354
|
+
pageInfo: PageInfo;
|
|
40355
|
+
};
|
|
40356
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalInverseEdge = {
|
|
40357
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalInverseEdge';
|
|
40358
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40359
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40360
|
+
id: Scalars['ID']['output'];
|
|
40361
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40362
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseUnion>;
|
|
40363
|
+
};
|
|
40364
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40365
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalUnion = TownsquareGoal;
|
|
40366
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectConnection = HasPageInfo & {
|
|
40367
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasProjectConnection';
|
|
40368
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasProjectEdge>>>;
|
|
40369
|
+
pageInfo: PageInfo;
|
|
40370
|
+
};
|
|
40371
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectEdge = {
|
|
40372
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasProjectEdge';
|
|
40373
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40374
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40375
|
+
id: Scalars['ID']['output'];
|
|
40376
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40377
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectUnion>;
|
|
40378
|
+
};
|
|
40379
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectInverseConnection = HasPageInfo & {
|
|
40380
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasProjectInverseConnection';
|
|
40381
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasProjectInverseEdge>>>;
|
|
40382
|
+
pageInfo: PageInfo;
|
|
40383
|
+
};
|
|
40384
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectInverseEdge = {
|
|
40385
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasProjectInverseEdge';
|
|
40386
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40387
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40388
|
+
id: Scalars['ID']['output'];
|
|
40389
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40390
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectInverseUnion>;
|
|
40391
|
+
};
|
|
40392
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40393
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectUnion = TownsquareProject;
|
|
40394
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostConnection = HasPageInfo & {
|
|
40395
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluenceBlogpostConnection';
|
|
40396
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostEdge>>>;
|
|
40397
|
+
pageInfo: PageInfo;
|
|
40398
|
+
};
|
|
40399
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostEdge = {
|
|
40400
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluenceBlogpostEdge';
|
|
40401
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40402
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40403
|
+
id: Scalars['ID']['output'];
|
|
40404
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40405
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostUnion>;
|
|
40406
|
+
};
|
|
40407
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
40408
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection';
|
|
40409
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseEdge>>>;
|
|
40410
|
+
pageInfo: PageInfo;
|
|
40411
|
+
};
|
|
40412
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseEdge = {
|
|
40413
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseEdge';
|
|
40414
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40415
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40416
|
+
id: Scalars['ID']['output'];
|
|
40417
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40418
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseUnion>;
|
|
40419
|
+
};
|
|
40420
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40421
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
39896
40422
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageConnection = HasPageInfo & {
|
|
39897
40423
|
__typename?: 'GraphStoreSimplifiedUserViewedConfluencePageConnection';
|
|
39898
40424
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedConfluencePageEdge>>>;
|
|
@@ -39921,6 +40447,34 @@ export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseEdge = {
|
|
|
39921
40447
|
};
|
|
39922
40448
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39923
40449
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageUnion = ConfluencePage;
|
|
40450
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueConnection = HasPageInfo & {
|
|
40451
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueConnection';
|
|
40452
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueEdge>>>;
|
|
40453
|
+
pageInfo: PageInfo;
|
|
40454
|
+
};
|
|
40455
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueEdge = {
|
|
40456
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueEdge';
|
|
40457
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40458
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40459
|
+
id: Scalars['ID']['output'];
|
|
40460
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40461
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueUnion>;
|
|
40462
|
+
};
|
|
40463
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseConnection = HasPageInfo & {
|
|
40464
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueInverseConnection';
|
|
40465
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseEdge>>>;
|
|
40466
|
+
pageInfo: PageInfo;
|
|
40467
|
+
};
|
|
40468
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
40469
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueInverseEdge';
|
|
40470
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40471
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40472
|
+
id: Scalars['ID']['output'];
|
|
40473
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40474
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseUnion>;
|
|
40475
|
+
};
|
|
40476
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40477
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueUnion = JiraIssue;
|
|
39924
40478
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
39925
40479
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
39926
40480
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -39937,6 +40491,21 @@ export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseEdge = {
|
|
|
39937
40491
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseUnion>;
|
|
39938
40492
|
};
|
|
39939
40493
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseUnion = JiraVersion;
|
|
40494
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
40495
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildConnection';
|
|
40496
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBuildEdge>>>;
|
|
40497
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
40498
|
+
pageInfo: PageInfo;
|
|
40499
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40500
|
+
};
|
|
40501
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBuildEdge = {
|
|
40502
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildEdge';
|
|
40503
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40504
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40505
|
+
id: Scalars['ID']['output'];
|
|
40506
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40507
|
+
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildUnion>;
|
|
40508
|
+
};
|
|
39940
40509
|
export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseConnection = HasPageInfo & HasTotal & {
|
|
39941
40510
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildInverseConnection';
|
|
39942
40511
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseEdge>>>;
|
|
@@ -39953,6 +40522,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseEdge = {
|
|
|
39953
40522
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseUnion>;
|
|
39954
40523
|
};
|
|
39955
40524
|
export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseUnion = JiraVersion;
|
|
40525
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBuildUnion = ExternalBuildInfo;
|
|
39956
40526
|
export declare type GraphStoreSimplifiedVersionAssociatedCommitConnection = HasPageInfo & HasTotal & {
|
|
39957
40527
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedCommitConnection';
|
|
39958
40528
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedCommitEdge>>>;
|
|
@@ -40048,7 +40618,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDesignInverseEdge = {
|
|
|
40048
40618
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignInverseUnion>;
|
|
40049
40619
|
};
|
|
40050
40620
|
export declare type GraphStoreSimplifiedVersionAssociatedDesignInverseUnion = JiraVersion;
|
|
40051
|
-
export declare type GraphStoreSimplifiedVersionAssociatedDesignUnion = DevOpsDesign;
|
|
40621
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
40052
40622
|
export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
40053
40623
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedFeatureFlagConnection';
|
|
40054
40624
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagEdge>>>;
|
|
@@ -40080,7 +40650,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseEdge
|
|
|
40080
40650
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseUnion>;
|
|
40081
40651
|
};
|
|
40082
40652
|
export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseUnion = JiraVersion;
|
|
40083
|
-
export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
40653
|
+
export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
40084
40654
|
export declare type GraphStoreSimplifiedVersionAssociatedIssueConnection = HasPageInfo & {
|
|
40085
40655
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedIssueConnection';
|
|
40086
40656
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedIssueEdge>>>;
|
|
@@ -40140,7 +40710,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
40140
40710
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion>;
|
|
40141
40711
|
};
|
|
40142
40712
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion = JiraVersion;
|
|
40143
|
-
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestUnion = DevOpsPullRequestDetails;
|
|
40713
|
+
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
40144
40714
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
40145
40715
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection';
|
|
40146
40716
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge>>>;
|
|
@@ -40186,7 +40756,7 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseE
|
|
|
40186
40756
|
node?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseUnion>;
|
|
40187
40757
|
};
|
|
40188
40758
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseUnion = JiraVersion;
|
|
40189
|
-
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
40759
|
+
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
40190
40760
|
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection = HasPageInfo & HasTotal & {
|
|
40191
40761
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection';
|
|
40192
40762
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge>>>;
|
|
@@ -40217,7 +40787,7 @@ export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseEdge
|
|
|
40217
40787
|
lastUpdated: Scalars['DateTime']['output'];
|
|
40218
40788
|
node?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseUnion>;
|
|
40219
40789
|
};
|
|
40220
|
-
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseUnion = DevOpsSecurityVulnerabilityDetails;
|
|
40790
|
+
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
40221
40791
|
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueUnion = JiraIssue;
|
|
40222
40792
|
export declare type GraphStoreSortInput = {
|
|
40223
40793
|
direction: SortDirection;
|
|
@@ -40619,9 +41189,21 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
40619
41189
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
40620
41190
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40621
41191
|
};
|
|
41192
|
+
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
41193
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41194
|
+
};
|
|
41195
|
+
export declare type GraphStoreUserViewedAtlasProjectSortInput = {
|
|
41196
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41197
|
+
};
|
|
41198
|
+
export declare type GraphStoreUserViewedConfluenceBlogpostSortInput = {
|
|
41199
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41200
|
+
};
|
|
40622
41201
|
export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
40623
41202
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40624
41203
|
};
|
|
41204
|
+
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
41205
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41206
|
+
};
|
|
40625
41207
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
40626
41208
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40627
41209
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40906,6 +41488,15 @@ export declare enum GrowthUnifiedProfileEntityType {
|
|
|
40906
41488
|
export declare type GrowthUnifiedProfileInput = {
|
|
40907
41489
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
40908
41490
|
};
|
|
41491
|
+
export declare type GrowthUnifiedProfileIssueType = {
|
|
41492
|
+
__typename?: 'GrowthUnifiedProfileIssueType';
|
|
41493
|
+
avatarId?: Maybe<Scalars['String']['output']>;
|
|
41494
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
41495
|
+
};
|
|
41496
|
+
export declare type GrowthUnifiedProfileIssueTypeInput = {
|
|
41497
|
+
avatarId?: InputMaybe<Scalars['String']['input']>;
|
|
41498
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
41499
|
+
};
|
|
40909
41500
|
export declare enum GrowthUnifiedProfileJtbd {
|
|
40910
41501
|
AdHocTaskAndIncidentManagement = "AD_HOC_TASK_AND_INCIDENT_MANAGEMENT",
|
|
40911
41502
|
Budgets = "BUDGETS",
|
|
@@ -40942,19 +41533,23 @@ export declare enum GrowthUnifiedProfileJiraFamiliarity {
|
|
|
40942
41533
|
export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
40943
41534
|
__typename?: 'GrowthUnifiedProfileJiraOnboardingContext';
|
|
40944
41535
|
experienceLevel?: Maybe<Scalars['String']['output']>;
|
|
41536
|
+
issueTypes?: Maybe<Array<Maybe<GrowthUnifiedProfileIssueType>>>;
|
|
40945
41537
|
jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
40946
41538
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
40947
41539
|
persona?: Maybe<Scalars['String']['output']>;
|
|
40948
41540
|
projectName?: Maybe<Scalars['String']['output']>;
|
|
41541
|
+
statusNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
40949
41542
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
40950
41543
|
template?: Maybe<Scalars['String']['output']>;
|
|
40951
41544
|
};
|
|
40952
41545
|
export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
40953
41546
|
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
41547
|
+
issueTypes?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileIssueTypeInput>>>;
|
|
40954
41548
|
jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
40955
41549
|
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
40956
41550
|
persona?: InputMaybe<Scalars['String']['input']>;
|
|
40957
41551
|
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
41552
|
+
statusNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
40958
41553
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
40959
41554
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
40960
41555
|
};
|
|
@@ -41437,10 +42032,13 @@ export declare enum HelpCenterMediaConfigOperationType {
|
|
|
41437
42032
|
export declare type HelpCenterMutationApi = {
|
|
41438
42033
|
__typename?: 'HelpCenterMutationApi';
|
|
41439
42034
|
createHelpCenter?: Maybe<HelpCenterCreatePayload>;
|
|
42035
|
+
createHelpCenterPage?: Maybe<HelpCenterPageCreatePayload>;
|
|
41440
42036
|
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
41441
42037
|
deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
|
|
42038
|
+
deleteHelpCenterPage?: Maybe<HelpCenterPageDeletePayload>;
|
|
41442
42039
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
41443
42040
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
42041
|
+
updateHelpCenterPage?: Maybe<HelpCenterPageUpdatePayload>;
|
|
41444
42042
|
updateHelpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsPayload>;
|
|
41445
42043
|
updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
41446
42044
|
updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
@@ -41452,18 +42050,27 @@ export declare type HelpCenterMutationApi = {
|
|
|
41452
42050
|
export declare type HelpCenterMutationApiCreateHelpCenterArgs = {
|
|
41453
42051
|
input: HelpCenterCreateInput;
|
|
41454
42052
|
};
|
|
42053
|
+
export declare type HelpCenterMutationApiCreateHelpCenterPageArgs = {
|
|
42054
|
+
input: HelpCenterPageCreateInput;
|
|
42055
|
+
};
|
|
41455
42056
|
export declare type HelpCenterMutationApiCreateTopicArgs = {
|
|
41456
42057
|
input: HelpCenterBulkCreateTopicsInput;
|
|
41457
42058
|
};
|
|
41458
42059
|
export declare type HelpCenterMutationApiDeleteHelpCenterArgs = {
|
|
41459
42060
|
input: HelpCenterDeleteInput;
|
|
41460
42061
|
};
|
|
42062
|
+
export declare type HelpCenterMutationApiDeleteHelpCenterPageArgs = {
|
|
42063
|
+
input: HelpCenterPageDeleteInput;
|
|
42064
|
+
};
|
|
41461
42065
|
export declare type HelpCenterMutationApiDeleteTopicArgs = {
|
|
41462
42066
|
input: HelpCenterBulkDeleteTopicInput;
|
|
41463
42067
|
};
|
|
41464
42068
|
export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
41465
42069
|
input: HelpCenterUpdateInput;
|
|
41466
42070
|
};
|
|
42071
|
+
export declare type HelpCenterMutationApiUpdateHelpCenterPageArgs = {
|
|
42072
|
+
input: HelpCenterPageUpdateInput;
|
|
42073
|
+
};
|
|
41467
42074
|
export declare type HelpCenterMutationApiUpdateHelpCenterPermissionSettingsArgs = {
|
|
41468
42075
|
input: HelpCenterPermissionSettingsInput;
|
|
41469
42076
|
};
|
|
@@ -41494,6 +42101,75 @@ export declare type HelpCenterNameInput = {
|
|
|
41494
42101
|
default: Scalars['String']['input'];
|
|
41495
42102
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
41496
42103
|
};
|
|
42104
|
+
export declare type HelpCenterPage = Node & {
|
|
42105
|
+
__typename?: 'HelpCenterPage';
|
|
42106
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
42107
|
+
description?: Maybe<HelpCenterPageDescription>;
|
|
42108
|
+
helpCenterAri: Scalars['ID']['output'];
|
|
42109
|
+
id: Scalars['ID']['output'];
|
|
42110
|
+
name?: Maybe<HelpCenterPageName>;
|
|
42111
|
+
pageLayout?: Maybe<HelpCenterPageLayout>;
|
|
42112
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
42113
|
+
};
|
|
42114
|
+
export declare type HelpCenterPageCreateInput = {
|
|
42115
|
+
clonePageAri?: InputMaybe<Scalars['String']['input']>;
|
|
42116
|
+
description: Scalars['String']['input'];
|
|
42117
|
+
helpCenterAri: Scalars['String']['input'];
|
|
42118
|
+
name: Scalars['String']['input'];
|
|
42119
|
+
};
|
|
42120
|
+
export declare type HelpCenterPageCreatePayload = Payload & {
|
|
42121
|
+
__typename?: 'HelpCenterPageCreatePayload';
|
|
42122
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42123
|
+
helpCenterPage?: Maybe<HelpCenterPage>;
|
|
42124
|
+
success: Scalars['Boolean']['output'];
|
|
42125
|
+
};
|
|
42126
|
+
export declare type HelpCenterPageDeleteInput = {
|
|
42127
|
+
helpCenterPageAri: Scalars['String']['input'];
|
|
42128
|
+
};
|
|
42129
|
+
export declare type HelpCenterPageDeletePayload = Payload & {
|
|
42130
|
+
__typename?: 'HelpCenterPageDeletePayload';
|
|
42131
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42132
|
+
helpCenterPageAri?: Maybe<Scalars['ID']['output']>;
|
|
42133
|
+
success: Scalars['Boolean']['output'];
|
|
42134
|
+
};
|
|
42135
|
+
export declare type HelpCenterPageDescription = {
|
|
42136
|
+
__typename?: 'HelpCenterPageDescription';
|
|
42137
|
+
default: Scalars['String']['output'];
|
|
42138
|
+
};
|
|
42139
|
+
export declare type HelpCenterPageLayout = {
|
|
42140
|
+
__typename?: 'HelpCenterPageLayout';
|
|
42141
|
+
layoutAri: Scalars['ID']['output'];
|
|
42142
|
+
};
|
|
42143
|
+
export declare type HelpCenterPageName = {
|
|
42144
|
+
__typename?: 'HelpCenterPageName';
|
|
42145
|
+
default: Scalars['String']['output'];
|
|
42146
|
+
};
|
|
42147
|
+
export declare type HelpCenterPageQueryResult = HelpCenterPage | QueryError;
|
|
42148
|
+
export declare type HelpCenterPageQueryResultConnection = {
|
|
42149
|
+
__typename?: 'HelpCenterPageQueryResultConnection';
|
|
42150
|
+
edges?: Maybe<Array<HelpCenterPageQueryResultEdge>>;
|
|
42151
|
+
nodes?: Maybe<Array<HelpCenterPageQueryResult>>;
|
|
42152
|
+
pageInfo?: Maybe<PageInfo>;
|
|
42153
|
+
};
|
|
42154
|
+
export declare type HelpCenterPageQueryResultEdge = {
|
|
42155
|
+
__typename?: 'HelpCenterPageQueryResultEdge';
|
|
42156
|
+
cursor: Scalars['String']['output'];
|
|
42157
|
+
node?: Maybe<HelpCenterPageQueryResult>;
|
|
42158
|
+
};
|
|
42159
|
+
export declare enum HelpCenterPageType {
|
|
42160
|
+
Custom = "CUSTOM"
|
|
42161
|
+
}
|
|
42162
|
+
export declare type HelpCenterPageUpdateInput = {
|
|
42163
|
+
description: Scalars['String']['input'];
|
|
42164
|
+
helpCenterPageAri: Scalars['String']['input'];
|
|
42165
|
+
name: Scalars['String']['input'];
|
|
42166
|
+
};
|
|
42167
|
+
export declare type HelpCenterPageUpdatePayload = Payload & {
|
|
42168
|
+
__typename?: 'HelpCenterPageUpdatePayload';
|
|
42169
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42170
|
+
helpCenterPage?: Maybe<HelpCenterPage>;
|
|
42171
|
+
success: Scalars['Boolean']['output'];
|
|
42172
|
+
};
|
|
41497
42173
|
export declare type HelpCenterPermissionSettings = {
|
|
41498
42174
|
__typename?: 'HelpCenterPermissionSettings';
|
|
41499
42175
|
accessControlType: HelpCenterAccessControlType;
|
|
@@ -41590,6 +42266,8 @@ export declare type HelpCenterQueryApi = {
|
|
|
41590
42266
|
helpCenterByHoistedProjectId?: Maybe<HelpCenterQueryResult>;
|
|
41591
42267
|
helpCenterByHoistedProjectIdRouted?: Maybe<HelpCenterQueryResult>;
|
|
41592
42268
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
42269
|
+
helpCenterPageById?: Maybe<HelpCenterPageQueryResult>;
|
|
42270
|
+
helpCenterPages?: Maybe<HelpCenterPageQueryResultConnection>;
|
|
41593
42271
|
helpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
41594
42272
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
41595
42273
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
@@ -41609,6 +42287,14 @@ export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdRoutedArgs = {
|
|
|
41609
42287
|
export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
41610
42288
|
helpCenterAri: Scalars['ID']['input'];
|
|
41611
42289
|
};
|
|
42290
|
+
export declare type HelpCenterQueryApiHelpCenterPageByIdArgs = {
|
|
42291
|
+
helpCenterPageAri: Scalars['ID']['input'];
|
|
42292
|
+
};
|
|
42293
|
+
export declare type HelpCenterQueryApiHelpCenterPagesArgs = {
|
|
42294
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42295
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42296
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
42297
|
+
};
|
|
41612
42298
|
export declare type HelpCenterQueryApiHelpCenterPermissionSettingsArgs = {
|
|
41613
42299
|
helpCenterAri: Scalars['ID']['input'];
|
|
41614
42300
|
};
|
|
@@ -43150,17 +43836,11 @@ export declare type InlineTasksQuerySortParameters = {
|
|
|
43150
43836
|
export declare type Insights = {
|
|
43151
43837
|
__typename?: 'Insights';
|
|
43152
43838
|
githubOnboardingDetails: InsightsGithubOnboardingDetails;
|
|
43153
|
-
nextBestTasksByContextAriPaginated: InsightsNextBestTaskConnection;
|
|
43154
43839
|
};
|
|
43155
43840
|
export declare type InsightsGithubOnboardingDetailsArgs = {
|
|
43156
43841
|
cloudId: Scalars['ID']['input'];
|
|
43157
43842
|
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
43158
43843
|
};
|
|
43159
|
-
export declare type InsightsNextBestTasksByContextAriPaginatedArgs = {
|
|
43160
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
43161
|
-
contextAri: InsightsContextAri;
|
|
43162
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43163
|
-
};
|
|
43164
43844
|
export declare type InsightsActionNextBestTaskInput = {
|
|
43165
43845
|
taskId: Scalars['String']['input'];
|
|
43166
43846
|
};
|
|
@@ -43170,75 +43850,6 @@ export declare type InsightsActionNextBestTaskPayload = Payload & {
|
|
|
43170
43850
|
success: Scalars['Boolean']['output'];
|
|
43171
43851
|
userActionState?: Maybe<InsightsUserActionState>;
|
|
43172
43852
|
};
|
|
43173
|
-
export declare enum InsightsApprovalStatus {
|
|
43174
|
-
Approved = "APPROVED",
|
|
43175
|
-
Needswork = "NEEDSWORK",
|
|
43176
|
-
Unapproved = "UNAPPROVED",
|
|
43177
|
-
Unknown = "UNKNOWN"
|
|
43178
|
-
}
|
|
43179
|
-
export declare type InsightsBlockedIssue = {
|
|
43180
|
-
__typename?: 'InsightsBlockedIssue';
|
|
43181
|
-
issueKey: Scalars['String']['output'];
|
|
43182
|
-
title: Scalars['String']['output'];
|
|
43183
|
-
};
|
|
43184
|
-
export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
43185
|
-
__typename?: 'InsightsBlockingIssueTask';
|
|
43186
|
-
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
43187
|
-
id: Scalars['String']['output'];
|
|
43188
|
-
issueIconUrl: Scalars['String']['output'];
|
|
43189
|
-
issueId: Scalars['String']['output'];
|
|
43190
|
-
issueKey: Scalars['String']['output'];
|
|
43191
|
-
title: Scalars['String']['output'];
|
|
43192
|
-
url: Scalars['String']['output'];
|
|
43193
|
-
};
|
|
43194
|
-
export declare type InsightsBuildTask = InsightsNextBestTaskCommon & {
|
|
43195
|
-
__typename?: 'InsightsBuildTask';
|
|
43196
|
-
buildNumber: Scalars['Int']['output'];
|
|
43197
|
-
id: Scalars['String']['output'];
|
|
43198
|
-
issueId: Scalars['String']['output'];
|
|
43199
|
-
issueKey: Scalars['String']['output'];
|
|
43200
|
-
issueName: Scalars['String']['output'];
|
|
43201
|
-
lastUpdated: Scalars['String']['output'];
|
|
43202
|
-
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
43203
|
-
title: Scalars['String']['output'];
|
|
43204
|
-
url: Scalars['String']['output'];
|
|
43205
|
-
};
|
|
43206
|
-
export declare type InsightsContextAri = {
|
|
43207
|
-
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
43208
|
-
sprintAri?: InputMaybe<Scalars['ID']['input']>;
|
|
43209
|
-
};
|
|
43210
|
-
export declare type InsightsCriticalVulnerabilityTask = InsightsNextBestTaskCommon & {
|
|
43211
|
-
__typename?: 'InsightsCriticalVulnerabilityTask';
|
|
43212
|
-
id: Scalars['String']['output'];
|
|
43213
|
-
introducedDate: Scalars['String']['output'];
|
|
43214
|
-
issueId: Scalars['String']['output'];
|
|
43215
|
-
issueKey: Scalars['String']['output'];
|
|
43216
|
-
securityContainerName: Scalars['String']['output'];
|
|
43217
|
-
status: InsightsVulnerabilityStatus;
|
|
43218
|
-
title: Scalars['String']['output'];
|
|
43219
|
-
url: Scalars['String']['output'];
|
|
43220
|
-
};
|
|
43221
|
-
export declare type InsightsDeploymentTask = InsightsNextBestTaskCommon & {
|
|
43222
|
-
__typename?: 'InsightsDeploymentTask';
|
|
43223
|
-
environmentNames: Array<Scalars['String']['output']>;
|
|
43224
|
-
environmentType: InsightsEnvironmentType;
|
|
43225
|
-
id: Scalars['String']['output'];
|
|
43226
|
-
issueId: Scalars['String']['output'];
|
|
43227
|
-
issueKey: Scalars['String']['output'];
|
|
43228
|
-
issueName: Scalars['String']['output'];
|
|
43229
|
-
lastUpdated: Scalars['String']['output'];
|
|
43230
|
-
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
43231
|
-
pipelineName: Scalars['String']['output'];
|
|
43232
|
-
title: Scalars['String']['output'];
|
|
43233
|
-
url: Scalars['String']['output'];
|
|
43234
|
-
};
|
|
43235
|
-
export declare enum InsightsEnvironmentType {
|
|
43236
|
-
Development = "DEVELOPMENT",
|
|
43237
|
-
Production = "PRODUCTION",
|
|
43238
|
-
Staging = "STAGING",
|
|
43239
|
-
Testing = "TESTING",
|
|
43240
|
-
Unmapped = "UNMAPPED"
|
|
43241
|
-
}
|
|
43242
43853
|
export declare type InsightsGithubOnboardingActionInput = {
|
|
43243
43854
|
cloudId: Scalars['ID']['input'];
|
|
43244
43855
|
};
|
|
@@ -43295,53 +43906,6 @@ export declare enum InsightsNextBestTaskAction {
|
|
|
43295
43906
|
Remove = "REMOVE",
|
|
43296
43907
|
Snooze = "SNOOZE"
|
|
43297
43908
|
}
|
|
43298
|
-
export declare type InsightsNextBestTaskCommon = {
|
|
43299
|
-
id: Scalars['String']['output'];
|
|
43300
|
-
title: Scalars['String']['output'];
|
|
43301
|
-
url: Scalars['String']['output'];
|
|
43302
|
-
};
|
|
43303
|
-
export declare type InsightsNextBestTaskConnection = {
|
|
43304
|
-
__typename?: 'InsightsNextBestTaskConnection';
|
|
43305
|
-
edges: Array<Maybe<InsightsNextBestTaskEdge>>;
|
|
43306
|
-
nodes: Array<Maybe<InsightsNextBestTaskCommon>>;
|
|
43307
|
-
pageInfo: PageInfo;
|
|
43308
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43309
|
-
};
|
|
43310
|
-
export declare type InsightsNextBestTaskEdge = {
|
|
43311
|
-
__typename?: 'InsightsNextBestTaskEdge';
|
|
43312
|
-
cursor: Scalars['String']['output'];
|
|
43313
|
-
node?: Maybe<InsightsNextBestTaskCommon>;
|
|
43314
|
-
};
|
|
43315
|
-
export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
|
|
43316
|
-
__typename?: 'InsightsPullRequestNeedsWorkTask';
|
|
43317
|
-
commentCount: Scalars['Int']['output'];
|
|
43318
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
43319
|
-
id: Scalars['String']['output'];
|
|
43320
|
-
lastUpdated: Scalars['String']['output'];
|
|
43321
|
-
needsWorkCount: Scalars['Int']['output'];
|
|
43322
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
43323
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
43324
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
43325
|
-
reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
|
|
43326
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
43327
|
-
title: Scalars['String']['output'];
|
|
43328
|
-
url: Scalars['String']['output'];
|
|
43329
|
-
};
|
|
43330
|
-
export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
|
|
43331
|
-
__typename?: 'InsightsPullRequestReviewTask';
|
|
43332
|
-
approvalsCount: Scalars['Int']['output'];
|
|
43333
|
-
author?: Maybe<InsightsUserDetail>;
|
|
43334
|
-
commentCount: Scalars['Int']['output'];
|
|
43335
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
43336
|
-
id: Scalars['String']['output'];
|
|
43337
|
-
lastUpdated: Scalars['String']['output'];
|
|
43338
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
43339
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
43340
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
43341
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
43342
|
-
title: Scalars['String']['output'];
|
|
43343
|
-
url: Scalars['String']['output'];
|
|
43344
|
-
};
|
|
43345
43909
|
export declare type InsightsPurgeUserActionStateInput = {
|
|
43346
43910
|
cloudId: Scalars['ID']['input'];
|
|
43347
43911
|
};
|
|
@@ -43351,38 +43915,24 @@ export declare enum InsightsRecommendationVisibility {
|
|
|
43351
43915
|
Snoozed = "SNOOZED",
|
|
43352
43916
|
Visible = "VISIBLE"
|
|
43353
43917
|
}
|
|
43354
|
-
export declare enum InsightsTaskType {
|
|
43355
|
-
BlockingIssue = "BLOCKING_ISSUE",
|
|
43356
|
-
BuildFailed = "BUILD_FAILED",
|
|
43357
|
-
CritVuln = "CRIT_VULN",
|
|
43358
|
-
DeploymentFailed = "DEPLOYMENT_FAILED",
|
|
43359
|
-
PrNeedsWork = "PR_NEEDS_WORK",
|
|
43360
|
-
PrReview = "PR_REVIEW"
|
|
43361
|
-
}
|
|
43362
43918
|
export declare type InsightsUserActionState = {
|
|
43363
43919
|
__typename?: 'InsightsUserActionState';
|
|
43364
43920
|
expireAt: Scalars['String']['output'];
|
|
43365
43921
|
reason: InsightsNextBestTaskAction;
|
|
43366
43922
|
taskId: Scalars['String']['output'];
|
|
43367
43923
|
};
|
|
43368
|
-
export declare type InsightsUserDetail = {
|
|
43369
|
-
__typename?: 'InsightsUserDetail';
|
|
43370
|
-
approvalStatus?: Maybe<InsightsApprovalStatus>;
|
|
43371
|
-
avatarUrl: Scalars['String']['output'];
|
|
43372
|
-
id: Scalars['ID']['output'];
|
|
43373
|
-
name: Scalars['String']['output'];
|
|
43374
|
-
};
|
|
43375
|
-
export declare enum InsightsVulnerabilityStatus {
|
|
43376
|
-
Closed = "CLOSED",
|
|
43377
|
-
Ignored = "IGNORED",
|
|
43378
|
-
Open = "OPEN",
|
|
43379
|
-
Unknown = "UNKNOWN"
|
|
43380
|
-
}
|
|
43381
43924
|
export declare enum InspectPermissions {
|
|
43382
43925
|
Comment = "COMMENT",
|
|
43383
43926
|
Edit = "EDIT",
|
|
43384
43927
|
View = "VIEW"
|
|
43385
43928
|
}
|
|
43929
|
+
export declare type InstallationContext = {
|
|
43930
|
+
__typename?: 'InstallationContext';
|
|
43931
|
+
environmentId: Scalars['ID']['output'];
|
|
43932
|
+
hasLogAccess: Scalars['Boolean']['output'];
|
|
43933
|
+
installationContext: Scalars['ID']['output'];
|
|
43934
|
+
tenantContext?: Maybe<TenantContext>;
|
|
43935
|
+
};
|
|
43386
43936
|
export declare type InstallationContextWithLogAccess = {
|
|
43387
43937
|
__typename?: 'InstallationContextWithLogAccess';
|
|
43388
43938
|
installationContext: Scalars['ID']['output'];
|
|
@@ -43425,6 +43975,7 @@ export declare type InstallationsListFilterByAppInstallations = {
|
|
|
43425
43975
|
};
|
|
43426
43976
|
export declare type InstallationsListFilterByAppInstallationsWithCompulsoryContexts = {
|
|
43427
43977
|
contexts: Array<Scalars['ID']['input']>;
|
|
43978
|
+
environmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
43428
43979
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
43429
43980
|
};
|
|
43430
43981
|
export declare type InstallationsListFilterByApps = {
|
|
@@ -45788,15 +46339,24 @@ export declare enum JiraColorSchemeThemeSetting {
|
|
|
45788
46339
|
}
|
|
45789
46340
|
export declare type JiraComment = {
|
|
45790
46341
|
author?: Maybe<User>;
|
|
46342
|
+
childComments?: Maybe<JiraCommentConnection>;
|
|
45791
46343
|
commentId: Scalars['ID']['output'];
|
|
45792
46344
|
created: Scalars['DateTime']['output'];
|
|
46345
|
+
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
45793
46346
|
issue?: Maybe<JiraIssue>;
|
|
45794
46347
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
45795
46348
|
richText?: Maybe<JiraRichText>;
|
|
46349
|
+
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
45796
46350
|
updateAuthor?: Maybe<User>;
|
|
45797
46351
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
45798
46352
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
45799
46353
|
};
|
|
46354
|
+
export declare type JiraCommentChildCommentsArgs = {
|
|
46355
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46356
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
46357
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46358
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
46359
|
+
};
|
|
45800
46360
|
export declare type JiraCommentConnection = {
|
|
45801
46361
|
__typename?: 'JiraCommentConnection';
|
|
45802
46362
|
edges?: Maybe<Array<Maybe<JiraCommentEdge>>>;
|
|
@@ -46243,6 +46803,7 @@ export declare type JiraContainerNavigation = Node & {
|
|
|
46243
46803
|
navigationItemByItemId?: Maybe<JiraNavigationItemResult>;
|
|
46244
46804
|
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
46245
46805
|
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
46806
|
+
scopeUrl?: Maybe<Scalars['String']['output']>;
|
|
46246
46807
|
};
|
|
46247
46808
|
export declare type JiraContainerNavigationAddableNavigationItemTypesArgs = {
|
|
46248
46809
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46278,6 +46839,7 @@ export declare type JiraCreateAppNavigationItemInput = {
|
|
|
46278
46839
|
};
|
|
46279
46840
|
export declare type JiraCreateApproverListFieldInput = {
|
|
46280
46841
|
fieldName: Scalars['String']['input'];
|
|
46842
|
+
issueTypeId?: InputMaybe<Scalars['Int']['input']>;
|
|
46281
46843
|
projectId: Scalars['Int']['input'];
|
|
46282
46844
|
};
|
|
46283
46845
|
export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
@@ -46335,6 +46897,20 @@ export declare type JiraCreateCustomBackgroundPayload = Payload & {
|
|
|
46335
46897
|
errors?: Maybe<Array<MutationError>>;
|
|
46336
46898
|
success: Scalars['Boolean']['output'];
|
|
46337
46899
|
};
|
|
46900
|
+
export declare type JiraCreateCustomFieldInput = {
|
|
46901
|
+
cloudId: Scalars['ID']['input'];
|
|
46902
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
46903
|
+
name: Scalars['String']['input'];
|
|
46904
|
+
options?: InputMaybe<Array<JiraCustomFieldOptionInput>>;
|
|
46905
|
+
projectId: Scalars['String']['input'];
|
|
46906
|
+
type: Scalars['String']['input'];
|
|
46907
|
+
};
|
|
46908
|
+
export declare type JiraCreateCustomFieldPayload = Payload & {
|
|
46909
|
+
__typename?: 'JiraCreateCustomFieldPayload';
|
|
46910
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46911
|
+
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
46912
|
+
success: Scalars['Boolean']['output'];
|
|
46913
|
+
};
|
|
46338
46914
|
export declare type JiraCreateCustomFilterInput = {
|
|
46339
46915
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
46340
46916
|
editGrants: Array<InputMaybe<JiraShareableEntityEditGrantInput>>;
|
|
@@ -46351,6 +46927,11 @@ export declare type JiraCreateCustomFilterPayload = Payload & {
|
|
|
46351
46927
|
filter?: Maybe<JiraCustomFilter>;
|
|
46352
46928
|
success: Scalars['Boolean']['output'];
|
|
46353
46929
|
};
|
|
46930
|
+
export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
46931
|
+
journeyId: Scalars['ID']['input'];
|
|
46932
|
+
journeyVersion: Scalars['Long']['input'];
|
|
46933
|
+
name: Scalars['String']['input'];
|
|
46934
|
+
};
|
|
46354
46935
|
export declare type JiraCreateFormattingRuleInput = {
|
|
46355
46936
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
46356
46937
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -46390,19 +46971,6 @@ export declare type JiraCreateProjectCleanupRecommendationsPayload = Payload & {
|
|
|
46390
46971
|
recommendationsCreated?: Maybe<Scalars['Long']['output']>;
|
|
46391
46972
|
success: Scalars['Boolean']['output'];
|
|
46392
46973
|
};
|
|
46393
|
-
export declare type JiraCreateProjectFieldInput = {
|
|
46394
|
-
cloudId: Scalars['ID']['input'];
|
|
46395
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
46396
|
-
name: Scalars['String']['input'];
|
|
46397
|
-
projectId: Scalars['String']['input'];
|
|
46398
|
-
type: Scalars['String']['input'];
|
|
46399
|
-
};
|
|
46400
|
-
export declare type JiraCreateProjectFieldPayload = Payload & {
|
|
46401
|
-
__typename?: 'JiraCreateProjectFieldPayload';
|
|
46402
|
-
errors?: Maybe<Array<MutationError>>;
|
|
46403
|
-
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
46404
|
-
success: Scalars['Boolean']['output'];
|
|
46405
|
-
};
|
|
46406
46974
|
export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
46407
46975
|
appLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
46408
46976
|
excludeIssueKey?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46484,6 +47052,13 @@ export declare type JiraCustomBackgroundEdge = {
|
|
|
46484
47052
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
46485
47053
|
node?: Maybe<JiraCustomBackground>;
|
|
46486
47054
|
};
|
|
47055
|
+
export declare type JiraCustomFieldOptionInput = {
|
|
47056
|
+
externalUuid: Scalars['String']['input'];
|
|
47057
|
+
optionId?: InputMaybe<Scalars['Long']['input']>;
|
|
47058
|
+
parentExternalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
47059
|
+
parentOptionId?: InputMaybe<Scalars['Long']['input']>;
|
|
47060
|
+
value: Scalars['String']['input'];
|
|
47061
|
+
};
|
|
46487
47062
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
46488
47063
|
__typename?: 'JiraCustomFilter';
|
|
46489
47064
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -46731,6 +47306,11 @@ export declare type JiraDefaultUnsplashImagesPage = {
|
|
|
46731
47306
|
results?: Maybe<Array<Maybe<JiraUnsplashImage>>>;
|
|
46732
47307
|
};
|
|
46733
47308
|
export declare type JiraDefaultUnsplashImagesPageResult = JiraDefaultUnsplashImagesPage | QueryError;
|
|
47309
|
+
export declare type JiraDeleteActivityConfigurationInput = {
|
|
47310
|
+
activityId: Scalars['ID']['input'];
|
|
47311
|
+
journeyId: Scalars['ID']['input'];
|
|
47312
|
+
journeyVersion: Scalars['Long']['input'];
|
|
47313
|
+
};
|
|
46734
47314
|
export declare type JiraDeleteCustomBackgroundInput = {
|
|
46735
47315
|
cloudId: Scalars['ID']['input'];
|
|
46736
47316
|
customBackgroundId: Scalars['ID']['input'];
|
|
@@ -48262,6 +48842,11 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
48262
48842
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
48263
48843
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48264
48844
|
};
|
|
48845
|
+
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
48846
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
48847
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
48848
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
48849
|
+
};
|
|
48265
48850
|
export declare enum JiraGroupsContext {
|
|
48266
48851
|
Group = "GROUP",
|
|
48267
48852
|
User = "USER"
|
|
@@ -48546,8 +49131,7 @@ export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
|
48546
49131
|
};
|
|
48547
49132
|
export declare type JiraIssueHasChildrenArgs = {
|
|
48548
49133
|
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48549
|
-
|
|
48550
|
-
jql?: InputMaybe<Scalars['String']['input']>;
|
|
49134
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
48551
49135
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
48552
49136
|
};
|
|
48553
49137
|
export declare type JiraIssueHasProjectPermissionArgs = {
|
|
@@ -50703,6 +51287,11 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
50703
51287
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50704
51288
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
50705
51289
|
};
|
|
51290
|
+
export declare type JiraListViewViewSettingsArgs = {
|
|
51291
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
51292
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
51293
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
51294
|
+
};
|
|
50706
51295
|
export declare type JiraLongRunningTaskProgress = {
|
|
50707
51296
|
__typename?: 'JiraLongRunningTaskProgress';
|
|
50708
51297
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -51089,16 +51678,17 @@ export declare type JiraMutation = {
|
|
|
51089
51678
|
createBoard?: Maybe<JiraCreateBoardPayload>;
|
|
51090
51679
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
51091
51680
|
createCustomBackground?: Maybe<JiraCreateCustomBackgroundPayload>;
|
|
51681
|
+
createCustomFieldInProjectAndAddToAllIssueTypes?: Maybe<JiraCreateCustomFieldPayload>;
|
|
51092
51682
|
createFormattingRule?: Maybe<JiraCreateFormattingRulePayload>;
|
|
51093
51683
|
createIssue?: Maybe<JiraIssueCreatePayload>;
|
|
51094
51684
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
51685
|
+
createJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
51095
51686
|
createJiraJourneyConfiguration?: Maybe<JiraCreateJourneyConfigurationPayload>;
|
|
51096
51687
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
51097
51688
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
51098
51689
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
51099
51690
|
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
51100
51691
|
createProjectCleanupRecommendations?: Maybe<JiraCreateProjectCleanupRecommendationsPayload>;
|
|
51101
|
-
createProjectFieldAndAddToAllIssueTypes?: Maybe<JiraCreateProjectFieldPayload>;
|
|
51102
51692
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
51103
51693
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
51104
51694
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
@@ -51108,6 +51698,7 @@ export declare type JiraMutation = {
|
|
|
51108
51698
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
51109
51699
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
51110
51700
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
51701
|
+
deleteJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
51111
51702
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
51112
51703
|
deleteJiraVersionWithNoIssues?: Maybe<JiraUpdateVersionPayload>;
|
|
51113
51704
|
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
@@ -51186,6 +51777,7 @@ export declare type JiraMutation = {
|
|
|
51186
51777
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
51187
51778
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
51188
51779
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
51780
|
+
updateJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
51189
51781
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
51190
51782
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
51191
51783
|
updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -51315,6 +51907,9 @@ export declare type JiraMutationCreateCalendarIssueArgs = {
|
|
|
51315
51907
|
export declare type JiraMutationCreateCustomBackgroundArgs = {
|
|
51316
51908
|
input: JiraCreateCustomBackgroundInput;
|
|
51317
51909
|
};
|
|
51910
|
+
export declare type JiraMutationCreateCustomFieldInProjectAndAddToAllIssueTypesArgs = {
|
|
51911
|
+
input: JiraCreateCustomFieldInput;
|
|
51912
|
+
};
|
|
51318
51913
|
export declare type JiraMutationCreateFormattingRuleArgs = {
|
|
51319
51914
|
input: JiraCreateFormattingRuleInput;
|
|
51320
51915
|
};
|
|
@@ -51325,6 +51920,10 @@ export declare type JiraMutationCreateIssueLinksArgs = {
|
|
|
51325
51920
|
cloudId: Scalars['ID']['input'];
|
|
51326
51921
|
input: JiraBulkCreateIssueLinksInput;
|
|
51327
51922
|
};
|
|
51923
|
+
export declare type JiraMutationCreateJiraActivityConfigurationArgs = {
|
|
51924
|
+
cloudId: Scalars['ID']['input'];
|
|
51925
|
+
input: JiraCreateEmptyActivityConfigurationInput;
|
|
51926
|
+
};
|
|
51328
51927
|
export declare type JiraMutationCreateJiraJourneyConfigurationArgs = {
|
|
51329
51928
|
cloudId: Scalars['ID']['input'];
|
|
51330
51929
|
input: JiraCreateJourneyConfigurationInput;
|
|
@@ -51345,9 +51944,6 @@ export declare type JiraMutationCreateJwmOverviewArgs = {
|
|
|
51345
51944
|
export declare type JiraMutationCreateProjectCleanupRecommendationsArgs = {
|
|
51346
51945
|
cloudId: Scalars['ID']['input'];
|
|
51347
51946
|
};
|
|
51348
|
-
export declare type JiraMutationCreateProjectFieldAndAddToAllIssueTypesArgs = {
|
|
51349
|
-
input: JiraCreateProjectFieldInput;
|
|
51350
|
-
};
|
|
51351
51947
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
51352
51948
|
input: JiraCreateShortcutInput;
|
|
51353
51949
|
};
|
|
@@ -51377,6 +51973,10 @@ export declare type JiraMutationDeleteIssueLinkArgs = {
|
|
|
51377
51973
|
export declare type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
51378
51974
|
cloudId: Scalars['ID']['input'];
|
|
51379
51975
|
};
|
|
51976
|
+
export declare type JiraMutationDeleteJiraActivityConfigurationArgs = {
|
|
51977
|
+
cloudId: Scalars['ID']['input'];
|
|
51978
|
+
input: JiraDeleteActivityConfigurationInput;
|
|
51979
|
+
};
|
|
51380
51980
|
export declare type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
51381
51981
|
id: Scalars['ID']['input'];
|
|
51382
51982
|
};
|
|
@@ -51635,6 +52235,10 @@ export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
|
51635
52235
|
export declare type JiraMutationUpdateIssueTypeFieldArgs = {
|
|
51636
52236
|
input: JiraUpdateIssueTypeFieldInput;
|
|
51637
52237
|
};
|
|
52238
|
+
export declare type JiraMutationUpdateJiraActivityConfigurationArgs = {
|
|
52239
|
+
cloudId: Scalars['ID']['input'];
|
|
52240
|
+
input: JiraUpdateActivityConfigurationInput;
|
|
52241
|
+
};
|
|
51638
52242
|
export declare type JiraMutationUpdateJiraJourneyActivityConfigurationArgs = {
|
|
51639
52243
|
cloudId: Scalars['ID']['input'];
|
|
51640
52244
|
input: JiraUpdateJourneyActivityConfigurationInput;
|
|
@@ -51897,6 +52501,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
51897
52501
|
Calendar = "CALENDAR",
|
|
51898
52502
|
Code = "CODE",
|
|
51899
52503
|
Components = "COMPONENTS",
|
|
52504
|
+
Dependencies = "DEPENDENCIES",
|
|
51900
52505
|
Deployments = "DEPLOYMENTS",
|
|
51901
52506
|
Development = "DEVELOPMENT",
|
|
51902
52507
|
Forms = "FORMS",
|
|
@@ -51906,12 +52511,14 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
51906
52511
|
List = "LIST",
|
|
51907
52512
|
OnCall = "ON_CALL",
|
|
51908
52513
|
Pages = "PAGES",
|
|
52514
|
+
Program = "PROGRAM",
|
|
51909
52515
|
Releases = "RELEASES",
|
|
51910
52516
|
Reports = "REPORTS",
|
|
51911
52517
|
Requests = "REQUESTS",
|
|
51912
52518
|
Security = "SECURITY",
|
|
51913
52519
|
Shortcuts = "SHORTCUTS",
|
|
51914
52520
|
Summary = "SUMMARY",
|
|
52521
|
+
Teams = "TEAMS",
|
|
51915
52522
|
Timeline = "TIMELINE"
|
|
51916
52523
|
}
|
|
51917
52524
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
@@ -53795,6 +54402,7 @@ export declare type JiraQuery = {
|
|
|
53795
54402
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
53796
54403
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
53797
54404
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
54405
|
+
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
53798
54406
|
resourceUsageCustomFieldRecommendations?: Maybe<JiraResourceUsageCustomFieldRecommendationConnection>;
|
|
53799
54407
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
53800
54408
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
@@ -54572,6 +55180,12 @@ export declare type JiraQueryRequestTypeTemplatesArgs = {
|
|
|
54572
55180
|
cloudId: Scalars['ID']['input'];
|
|
54573
55181
|
projectStyle?: InputMaybe<JiraProjectStyle>;
|
|
54574
55182
|
};
|
|
55183
|
+
export declare type JiraQueryRequestTypesArgs = {
|
|
55184
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55185
|
+
cloudId: Scalars['ID']['input'];
|
|
55186
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55187
|
+
projectId: Scalars['ID']['input'];
|
|
55188
|
+
};
|
|
54575
55189
|
export declare type JiraQueryResourceUsageCustomFieldRecommendationsArgs = {
|
|
54576
55190
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54577
55191
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -55730,19 +56344,28 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
55730
56344
|
__typename?: 'JiraServiceManagementComment';
|
|
55731
56345
|
author?: Maybe<User>;
|
|
55732
56346
|
authorCanSeeRequest?: Maybe<Scalars['Boolean']['output']>;
|
|
56347
|
+
childComments?: Maybe<JiraCommentConnection>;
|
|
55733
56348
|
commentId: Scalars['ID']['output'];
|
|
55734
56349
|
created: Scalars['DateTime']['output'];
|
|
55735
56350
|
eventOccurredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
55736
56351
|
id: Scalars['ID']['output'];
|
|
56352
|
+
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
55737
56353
|
issue?: Maybe<JiraIssue>;
|
|
55738
56354
|
jsdIncidentActivityViewHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
55739
56355
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
55740
56356
|
richText?: Maybe<JiraRichText>;
|
|
56357
|
+
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
55741
56358
|
updateAuthor?: Maybe<User>;
|
|
55742
56359
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
55743
56360
|
visibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
55744
56361
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
55745
56362
|
};
|
|
56363
|
+
export declare type JiraServiceManagementCommentChildCommentsArgs = {
|
|
56364
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
56365
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
56366
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56367
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
56368
|
+
};
|
|
55746
56369
|
export declare enum JiraServiceManagementCommentVisibility {
|
|
55747
56370
|
Internal = "INTERNAL",
|
|
55748
56371
|
VisibleToHelpseeker = "VISIBLE_TO_HELPSEEKER"
|
|
@@ -57086,6 +57709,11 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
57086
57709
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57087
57710
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
57088
57711
|
};
|
|
57712
|
+
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
57713
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
57714
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
57715
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
57716
|
+
};
|
|
57089
57717
|
export declare type JiraSpreadsheetViewPayload = Payload & {
|
|
57090
57718
|
__typename?: 'JiraSpreadsheetViewPayload';
|
|
57091
57719
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -57834,6 +58462,16 @@ export declare type JiraUpdateActiveBackgroundPayload = Payload & {
|
|
|
57834
58462
|
errors?: Maybe<Array<MutationError>>;
|
|
57835
58463
|
success: Scalars['Boolean']['output'];
|
|
57836
58464
|
};
|
|
58465
|
+
export declare type JiraUpdateActivityConfigurationInput = {
|
|
58466
|
+
activityId: Scalars['ID']['input'];
|
|
58467
|
+
fieldValues?: InputMaybe<Array<InputMaybe<JiraActivityFieldValueKeyValuePairInput>>>;
|
|
58468
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58469
|
+
journeyId: Scalars['ID']['input'];
|
|
58470
|
+
journeyVersion: Scalars['Long']['input'];
|
|
58471
|
+
name: Scalars['String']['input'];
|
|
58472
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
58473
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58474
|
+
};
|
|
57837
58475
|
export declare type JiraUpdateAffectedServicesFieldInput = {
|
|
57838
58476
|
id: Scalars['ID']['input'];
|
|
57839
58477
|
operation: JiraAffectedServicesFieldOperationInput;
|
|
@@ -59734,6 +60372,24 @@ export declare type JsmChatDropdownAppendix = {
|
|
|
59734
60372
|
options: Array<Maybe<JsmChatAppendixActionItem>>;
|
|
59735
60373
|
placeholder?: Maybe<Scalars['String']['output']>;
|
|
59736
60374
|
};
|
|
60375
|
+
export declare type JsmChatInitializeAndSendMessageInput = {
|
|
60376
|
+
channelExperienceId: JsmChatWebChannelExperienceId;
|
|
60377
|
+
conversationContextAri: Scalars['ID']['input'];
|
|
60378
|
+
isTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60379
|
+
message: Scalars['String']['input'];
|
|
60380
|
+
subscriptionId: Scalars['String']['input'];
|
|
60381
|
+
};
|
|
60382
|
+
export declare type JsmChatInitializeAndSendMessagePayload = Payload & {
|
|
60383
|
+
__typename?: 'JsmChatInitializeAndSendMessagePayload';
|
|
60384
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60385
|
+
initializeAndSendMessageResponse?: Maybe<JsmChatInitializeAndSendMessageResponse>;
|
|
60386
|
+
success: Scalars['Boolean']['output'];
|
|
60387
|
+
};
|
|
60388
|
+
export declare type JsmChatInitializeAndSendMessageResponse = {
|
|
60389
|
+
__typename?: 'JsmChatInitializeAndSendMessageResponse';
|
|
60390
|
+
conversation?: Maybe<JsmChatMessageEdge>;
|
|
60391
|
+
conversationId: Scalars['ID']['output'];
|
|
60392
|
+
};
|
|
59737
60393
|
export declare type JsmChatInitializeConfigRequest = {
|
|
59738
60394
|
activationId: Scalars['ID']['input'];
|
|
59739
60395
|
projectId: Scalars['ID']['input'];
|
|
@@ -59814,6 +60470,7 @@ export declare type JsmChatMutation = {
|
|
|
59814
60470
|
deleteSlackChannelMapping: JsmChatDeleteSlackChannelMappingOutput;
|
|
59815
60471
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
59816
60472
|
disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
60473
|
+
initializeAndSendMessage?: Maybe<JsmChatInitializeAndSendMessagePayload>;
|
|
59817
60474
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
59818
60475
|
updateMsTeamsChannelSettings: JsmChatUpdateMsTeamsChannelSettingsOutput;
|
|
59819
60476
|
updateMsTeamsProjectSettings: JsmChatUpdateMsTeamsProjectSettingsOutput;
|
|
@@ -59858,6 +60515,10 @@ export declare type JsmChatMutationDisconnectMsTeamsJiraProjectArgs = {
|
|
|
59858
60515
|
input?: InputMaybe<JsmChatDisconnectMsTeamsJiraProjectInput>;
|
|
59859
60516
|
jiraProjectAri: Scalars['ID']['input'];
|
|
59860
60517
|
};
|
|
60518
|
+
export declare type JsmChatMutationInitializeAndSendMessageArgs = {
|
|
60519
|
+
input: JsmChatInitializeAndSendMessageInput;
|
|
60520
|
+
workspaceAri: Scalars['ID']['input'];
|
|
60521
|
+
};
|
|
59861
60522
|
export declare type JsmChatMutationUpdateChannelSettingsArgs = {
|
|
59862
60523
|
input: JsmChatUpdateChannelSettingsInput;
|
|
59863
60524
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -60033,6 +60694,9 @@ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
|
|
|
60033
60694
|
errors?: Maybe<Array<MutationError>>;
|
|
60034
60695
|
success: Scalars['Boolean']['output'];
|
|
60035
60696
|
};
|
|
60697
|
+
export declare enum JsmChatWebChannelExperienceId {
|
|
60698
|
+
Helpcenter = "HELPCENTER"
|
|
60699
|
+
}
|
|
60036
60700
|
export declare enum JsmChatWebConversationActions {
|
|
60037
60701
|
CloseConversation = "CLOSE_CONVERSATION",
|
|
60038
60702
|
DisableInput = "DISABLE_INPUT",
|
|
@@ -61216,6 +61880,11 @@ export declare type LookAndFeelSettings = {
|
|
|
61216
61880
|
selected?: Maybe<Scalars['String']['output']>;
|
|
61217
61881
|
theme?: Maybe<LookAndFeel>;
|
|
61218
61882
|
};
|
|
61883
|
+
export declare type LoomSpace = Node & {
|
|
61884
|
+
__typename?: 'LoomSpace';
|
|
61885
|
+
id: Scalars['ID']['output'];
|
|
61886
|
+
name: Scalars['String']['output'];
|
|
61887
|
+
};
|
|
61219
61888
|
export declare type LoomToken = {
|
|
61220
61889
|
__typename?: 'LoomToken';
|
|
61221
61890
|
token: Scalars['String']['output'];
|
|
@@ -61226,6 +61895,15 @@ export declare enum LoomUserStatus {
|
|
|
61226
61895
|
Mastered = "MASTERED",
|
|
61227
61896
|
NotFound = "NOT_FOUND"
|
|
61228
61897
|
}
|
|
61898
|
+
export declare type LoomVideo = Node & {
|
|
61899
|
+
__typename?: 'LoomVideo';
|
|
61900
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
61901
|
+
id: Scalars['ID']['output'];
|
|
61902
|
+
name: Scalars['String']['output'];
|
|
61903
|
+
owner?: Maybe<User>;
|
|
61904
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
61905
|
+
url: Scalars['String']['output'];
|
|
61906
|
+
};
|
|
61229
61907
|
export declare type LpCertSort = {
|
|
61230
61908
|
sortDirection?: InputMaybe<SortDirection>;
|
|
61231
61909
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -62060,6 +62738,18 @@ export declare type MarketplaceConsoleKnownError = MarketplaceConsoleError & {
|
|
|
62060
62738
|
message: Scalars['String']['output'];
|
|
62061
62739
|
subCode?: Maybe<Scalars['String']['output']>;
|
|
62062
62740
|
};
|
|
62741
|
+
export declare type MarketplaceConsoleLegacyCategory = {
|
|
62742
|
+
__typename?: 'MarketplaceConsoleLegacyCategory';
|
|
62743
|
+
id: Scalars['ID']['output'];
|
|
62744
|
+
name: Scalars['String']['output'];
|
|
62745
|
+
};
|
|
62746
|
+
export declare type MarketplaceConsoleLegacyListingDetails = {
|
|
62747
|
+
__typename?: 'MarketplaceConsoleLegacyListingDetails';
|
|
62748
|
+
buildsLink?: Maybe<Scalars['String']['output']>;
|
|
62749
|
+
description: Scalars['String']['output'];
|
|
62750
|
+
sourceLink?: Maybe<Scalars['String']['output']>;
|
|
62751
|
+
wikiLink?: Maybe<Scalars['String']['output']>;
|
|
62752
|
+
};
|
|
62063
62753
|
export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
62064
62754
|
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
62065
62755
|
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
@@ -62241,11 +62931,42 @@ export declare type MarketplaceConsoleParentSoftware = {
|
|
|
62241
62931
|
state: MarketplaceConsoleParentSoftwareState;
|
|
62242
62932
|
versions: Array<MarketplaceConsoleParentSoftwareVersion>;
|
|
62243
62933
|
};
|
|
62934
|
+
export declare type MarketplaceConsoleParentSoftwareEdition = {
|
|
62935
|
+
__typename?: 'MarketplaceConsoleParentSoftwareEdition';
|
|
62936
|
+
pricingPlan: MarketplaceConsoleParentSoftwarePricingPlans;
|
|
62937
|
+
slug: Scalars['String']['output'];
|
|
62938
|
+
type: MarketplaceConsoleEditionType;
|
|
62939
|
+
};
|
|
62940
|
+
export declare type MarketplaceConsoleParentSoftwarePricing = {
|
|
62941
|
+
__typename?: 'MarketplaceConsoleParentSoftwarePricing';
|
|
62942
|
+
editions: Array<MarketplaceConsoleParentSoftwareEdition>;
|
|
62943
|
+
id: Scalars['String']['output'];
|
|
62944
|
+
};
|
|
62945
|
+
export declare type MarketplaceConsoleParentSoftwarePricingPlan = {
|
|
62946
|
+
__typename?: 'MarketplaceConsoleParentSoftwarePricingPlan';
|
|
62947
|
+
tieredPricing: Array<Maybe<MarketplaceConsoleParentSoftwareTieredPricing>>;
|
|
62948
|
+
};
|
|
62949
|
+
export declare type MarketplaceConsoleParentSoftwarePricingPlans = {
|
|
62950
|
+
__typename?: 'MarketplaceConsoleParentSoftwarePricingPlans';
|
|
62951
|
+
annualPricingPlan: MarketplaceConsoleParentSoftwarePricingPlan;
|
|
62952
|
+
currency: MarketplaceConsolePricingCurrency;
|
|
62953
|
+
monthlyPricingPlan: MarketplaceConsoleParentSoftwarePricingPlan;
|
|
62954
|
+
};
|
|
62955
|
+
export declare type MarketplaceConsoleParentSoftwarePricingQueryInput = {
|
|
62956
|
+
parentProductId: Scalars['String']['input'];
|
|
62957
|
+
};
|
|
62244
62958
|
export declare enum MarketplaceConsoleParentSoftwareState {
|
|
62245
62959
|
Active = "ACTIVE",
|
|
62246
62960
|
Archived = "ARCHIVED",
|
|
62247
62961
|
Draft = "DRAFT"
|
|
62248
62962
|
}
|
|
62963
|
+
export declare type MarketplaceConsoleParentSoftwareTieredPricing = {
|
|
62964
|
+
__typename?: 'MarketplaceConsoleParentSoftwareTieredPricing';
|
|
62965
|
+
ceiling: Scalars['Float']['output'];
|
|
62966
|
+
flatAmount?: Maybe<Scalars['Float']['output']>;
|
|
62967
|
+
floor: Scalars['Float']['output'];
|
|
62968
|
+
unitAmount?: Maybe<Scalars['Float']['output']>;
|
|
62969
|
+
};
|
|
62249
62970
|
export declare type MarketplaceConsoleParentSoftwareVersion = {
|
|
62250
62971
|
__typename?: 'MarketplaceConsoleParentSoftwareVersion';
|
|
62251
62972
|
buildNumber: Scalars['ID']['output'];
|
|
@@ -62372,6 +63093,8 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
62372
63093
|
googleAnalyticsId?: Maybe<Scalars['String']['output']>;
|
|
62373
63094
|
icon?: Maybe<MarketplaceConsoleImageMediaAsset>;
|
|
62374
63095
|
jsdEmbeddedDataKey?: Maybe<Scalars['String']['output']>;
|
|
63096
|
+
legacyCategories?: Maybe<Array<MarketplaceConsoleLegacyCategory>>;
|
|
63097
|
+
legacyListingDetails?: Maybe<MarketplaceConsoleLegacyListingDetails>;
|
|
62375
63098
|
legacyMongoAppDetails?: Maybe<MarketplaceConsoleLegacyMongoAppDetails>;
|
|
62376
63099
|
logicalCategories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
62377
63100
|
marketingLabels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -62429,6 +63152,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
62429
63152
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
62430
63153
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
62431
63154
|
makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
|
|
63155
|
+
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
62432
63156
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
62433
63157
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
62434
63158
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
@@ -62483,6 +63207,9 @@ export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
|
|
|
62483
63207
|
appId: Scalars['ID']['input'];
|
|
62484
63208
|
buildNumber: Scalars['ID']['input'];
|
|
62485
63209
|
};
|
|
63210
|
+
export declare type MarketplaceConsoleQueryApiParentProductPricingArgs = {
|
|
63211
|
+
product: MarketplaceConsoleParentSoftwarePricingQueryInput;
|
|
63212
|
+
};
|
|
62486
63213
|
export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
62487
63214
|
appKey: Scalars['ID']['input'];
|
|
62488
63215
|
productId: Scalars['ID']['input'];
|
|
@@ -62986,6 +63713,23 @@ export declare type MarketplaceStoreHomePageSectionScreenSpecificProperties = {
|
|
|
62986
63713
|
md: MarketplaceStoreHomePageSectionScreenConfig;
|
|
62987
63714
|
sm: MarketplaceStoreHomePageSectionScreenConfig;
|
|
62988
63715
|
};
|
|
63716
|
+
export declare type MarketplaceStoreHostLicense = {
|
|
63717
|
+
__typename?: 'MarketplaceStoreHostLicense';
|
|
63718
|
+
autoRenewal: Scalars['Boolean']['output'];
|
|
63719
|
+
evaluation: Scalars['Boolean']['output'];
|
|
63720
|
+
licenseType: Scalars['String']['output'];
|
|
63721
|
+
maximumNumberOfUsers: Scalars['Int']['output'];
|
|
63722
|
+
subscriptionAnnual?: Maybe<Scalars['Boolean']['output']>;
|
|
63723
|
+
valid: Scalars['Boolean']['output'];
|
|
63724
|
+
};
|
|
63725
|
+
export declare type MarketplaceStoreHostStatusResponse = {
|
|
63726
|
+
__typename?: 'MarketplaceStoreHostStatusResponse';
|
|
63727
|
+
billingCurrency: Scalars['String']['output'];
|
|
63728
|
+
hostCmtEnabled: Scalars['Boolean']['output'];
|
|
63729
|
+
hostLicense: MarketplaceStoreHostLicense;
|
|
63730
|
+
pacUnavailable: Scalars['Boolean']['output'];
|
|
63731
|
+
upmLicensedHostUsers: Scalars['Int']['output'];
|
|
63732
|
+
};
|
|
62989
63733
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
62990
63734
|
appKey: Scalars['String']['input'];
|
|
62991
63735
|
target: MarketplaceStoreInstallAppTargetInput;
|
|
@@ -63012,6 +63756,11 @@ export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
|
63012
63756
|
Confluence = "CONFLUENCE",
|
|
63013
63757
|
Jira = "JIRA"
|
|
63014
63758
|
}
|
|
63759
|
+
export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
63760
|
+
__typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
|
|
63761
|
+
installed?: Maybe<Scalars['Boolean']['output']>;
|
|
63762
|
+
licenseActive?: Maybe<Scalars['Boolean']['output']>;
|
|
63763
|
+
};
|
|
63015
63764
|
export declare type MarketplaceStoreLoggedInUser = {
|
|
63016
63765
|
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
63017
63766
|
email: Scalars['String']['output'];
|
|
@@ -63176,7 +63925,9 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
63176
63925
|
editionsByAppKey: Array<MarketplaceStoreEdition>;
|
|
63177
63926
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
63178
63927
|
homePage: MarketplaceStoreHomePageResponse;
|
|
63928
|
+
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
63179
63929
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
63930
|
+
installedAppDetails: MarketplaceStoreInstalledAppDetailsResponse;
|
|
63180
63931
|
myReview: MarketplaceStoreCurrentUserReviewResponse;
|
|
63181
63932
|
partner: MarketplaceStorePartnerResponse;
|
|
63182
63933
|
};
|
|
@@ -63204,9 +63955,15 @@ export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
|
63204
63955
|
export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
63205
63956
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
63206
63957
|
};
|
|
63958
|
+
export declare type MarketplaceStoreQueryApiHostStatusArgs = {
|
|
63959
|
+
input: MarketplaceStoreInstallAppTargetInput;
|
|
63960
|
+
};
|
|
63207
63961
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
63208
63962
|
id: Scalars['ID']['input'];
|
|
63209
63963
|
};
|
|
63964
|
+
export declare type MarketplaceStoreQueryApiInstalledAppDetailsArgs = {
|
|
63965
|
+
input: MarketplaceStoreInstallAppInput;
|
|
63966
|
+
};
|
|
63210
63967
|
export declare type MarketplaceStoreQueryApiMyReviewArgs = {
|
|
63211
63968
|
appKey: Scalars['String']['input'];
|
|
63212
63969
|
};
|
|
@@ -63589,6 +64346,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
63589
64346
|
parent?: Maybe<MercuryFocusArea>;
|
|
63590
64347
|
status: MercuryFocusAreaStatus;
|
|
63591
64348
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
64349
|
+
subFocusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
63592
64350
|
targetDate?: Maybe<MercuryTargetDate>;
|
|
63593
64351
|
teamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
63594
64352
|
updatedDate: Scalars['String']['output'];
|
|
@@ -63602,6 +64360,10 @@ export declare type MercuryFocusAreaFocusAreaStatusUpdatesArgs = {
|
|
|
63602
64360
|
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
63603
64361
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63604
64362
|
};
|
|
64363
|
+
export declare type MercuryFocusAreaSubFocusAreasArgs = {
|
|
64364
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
64365
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
64366
|
+
};
|
|
63605
64367
|
export declare type MercuryFocusAreaTeamAllocationsArgs = {
|
|
63606
64368
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63607
64369
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -65034,6 +65796,7 @@ export declare type Mutation = {
|
|
|
65034
65796
|
confluenceV2_createPage?: Maybe<ConfluenceV2CreatePagePayload>;
|
|
65035
65797
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
65036
65798
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
65799
|
+
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
65037
65800
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
65038
65801
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
65039
65802
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -65309,6 +66072,7 @@ export declare type MutationAddLabelsArgs = {
|
|
|
65309
66072
|
input: AddLabelsInput;
|
|
65310
66073
|
};
|
|
65311
66074
|
export declare type MutationAddReactionArgs = {
|
|
66075
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
65312
66076
|
containerId: Scalars['String']['input'];
|
|
65313
66077
|
containerType: ContainerType;
|
|
65314
66078
|
contentId: Scalars['String']['input'];
|
|
@@ -65851,6 +66615,10 @@ export declare type MutationConfluenceV2_DeletePageArgs = {
|
|
|
65851
66615
|
export declare type MutationConfluenceV2_UpdatePageArgs = {
|
|
65852
66616
|
input: ConfluenceV2UpdatePageInput;
|
|
65853
66617
|
};
|
|
66618
|
+
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
66619
|
+
cloudId: Scalars['ID']['input'];
|
|
66620
|
+
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
66621
|
+
};
|
|
65854
66622
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
65855
66623
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
65856
66624
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66101,6 +66869,7 @@ export declare type MutationDeletePolarisViewSetArgs = {
|
|
|
66101
66869
|
id: Scalars['ID']['input'];
|
|
66102
66870
|
};
|
|
66103
66871
|
export declare type MutationDeleteReactionArgs = {
|
|
66872
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
66104
66873
|
containerId: Scalars['String']['input'];
|
|
66105
66874
|
containerType: ContainerType;
|
|
66106
66875
|
contentId: Scalars['String']['input'];
|
|
@@ -69197,6 +69966,8 @@ export declare type Query = {
|
|
|
69197
69966
|
adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
|
|
69198
69967
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
69199
69968
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
69969
|
+
agentAI_contextPanel?: Maybe<AgentAiContextPanelResponse>;
|
|
69970
|
+
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummary>;
|
|
69200
69971
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
69201
69972
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
69202
69973
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -69207,6 +69978,7 @@ export declare type Query = {
|
|
|
69207
69978
|
appAdmin?: Maybe<AppAdminQuery>;
|
|
69208
69979
|
appContributors: Array<AppContributor>;
|
|
69209
69980
|
appDeployment?: Maybe<AppDeployment>;
|
|
69981
|
+
appHostServiceScopes: Array<Maybe<AppHostServiceScope>>;
|
|
69210
69982
|
appHostServices?: Maybe<Array<AppHostService>>;
|
|
69211
69983
|
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
69212
69984
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
@@ -69461,7 +70233,9 @@ export declare type Query = {
|
|
|
69461
70233
|
confluenceV2_spaceSettings?: Maybe<ConfluenceV2SpaceSettings>;
|
|
69462
70234
|
confluenceV2_spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
69463
70235
|
confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
|
|
70236
|
+
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
69464
70237
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
70238
|
+
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
69465
70239
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
69466
70240
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
69467
70241
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
@@ -69562,7 +70336,6 @@ export declare type Query = {
|
|
|
69562
70336
|
favoriteContent?: Maybe<PaginatedContentList>;
|
|
69563
70337
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
69564
70338
|
feed?: Maybe<PaginatedFeed>;
|
|
69565
|
-
firebolt_bookById?: Maybe<FireboltBook>;
|
|
69566
70339
|
forYouFeed?: Maybe<ForYouPaginatedFeed>;
|
|
69567
70340
|
fullHubArticle?: Maybe<ContentPlatformFullHubArticle>;
|
|
69568
70341
|
fullHubArticles: ContentPlatformHubArticleSearchConnection;
|
|
@@ -69606,6 +70379,7 @@ export declare type Query = {
|
|
|
69606
70379
|
incomingLinksCount?: Maybe<IncomingLinksCount>;
|
|
69607
70380
|
inlineTasks?: Maybe<InlineTasksQueryResult>;
|
|
69608
70381
|
insights?: Maybe<Insights>;
|
|
70382
|
+
installationContexts?: Maybe<Array<InstallationContext>>;
|
|
69609
70383
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
69610
70384
|
instanceAnalyticsCount?: Maybe<InstanceAnalyticsCount>;
|
|
69611
70385
|
internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
|
|
@@ -69623,7 +70397,7 @@ export declare type Query = {
|
|
|
69623
70397
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69624
70398
|
isSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
69625
70399
|
jira?: Maybe<JiraQuery>;
|
|
69626
|
-
jiraAlignAgg_projectsByAris?: Maybe<Array<JiraAlignAggProject
|
|
70400
|
+
jiraAlignAgg_projectsByAris?: Maybe<Array<Maybe<JiraAlignAggProject>>>;
|
|
69627
70401
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
69628
70402
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
69629
70403
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -69641,6 +70415,9 @@ export declare type Query = {
|
|
|
69641
70415
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
69642
70416
|
loomToken?: Maybe<LoomToken>;
|
|
69643
70417
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
70418
|
+
loom_space?: Maybe<LoomSpace>;
|
|
70419
|
+
loom_spacesSearch: Array<Maybe<LoomSpace>>;
|
|
70420
|
+
loom_video?: Maybe<LoomVideo>;
|
|
69644
70421
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
69645
70422
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
69646
70423
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -69721,12 +70498,9 @@ export declare type Query = {
|
|
|
69721
70498
|
quickReload?: Maybe<QuickReload>;
|
|
69722
70499
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
69723
70500
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
69724
|
-
radar_position?: Maybe<RadarPosition>;
|
|
69725
70501
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
69726
|
-
radar_positions?: Maybe<RadarPositionConnection>;
|
|
69727
70502
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
69728
70503
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
69729
|
-
radar_worker?: Maybe<RadarWorker>;
|
|
69730
70504
|
radar_workerByAri?: Maybe<RadarWorker>;
|
|
69731
70505
|
radar_workersByAris?: Maybe<Array<RadarWorker>>;
|
|
69732
70506
|
radar_workspace: RadarWorkspace;
|
|
@@ -69777,6 +70551,7 @@ export declare type Query = {
|
|
|
69777
70551
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
69778
70552
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
69779
70553
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
70554
|
+
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
69780
70555
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
69781
70556
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
69782
70557
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
@@ -69842,6 +70617,14 @@ export declare type QueryAdminAnnouncementBannerSettingsByCriteriaArgs = {
|
|
|
69842
70617
|
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69843
70618
|
orderBy?: InputMaybe<AdminAnnouncementBannerSettingsByCriteriaOrder>;
|
|
69844
70619
|
};
|
|
70620
|
+
export declare type QueryAgentAi_ContextPanelArgs = {
|
|
70621
|
+
cloudId: Scalars['ID']['input'];
|
|
70622
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
70623
|
+
};
|
|
70624
|
+
export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
70625
|
+
cloudId: Scalars['ID']['input'];
|
|
70626
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
70627
|
+
};
|
|
69845
70628
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
69846
70629
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69847
70630
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -69887,6 +70670,9 @@ export declare type QueryAppDeploymentArgs = {
|
|
|
69887
70670
|
environmentKey: Scalars['String']['input'];
|
|
69888
70671
|
id: Scalars['ID']['input'];
|
|
69889
70672
|
};
|
|
70673
|
+
export declare type QueryAppHostServiceScopesArgs = {
|
|
70674
|
+
keys: Array<Scalars['ID']['input']>;
|
|
70675
|
+
};
|
|
69890
70676
|
export declare type QueryAppHostServicesArgs = {
|
|
69891
70677
|
filter?: InputMaybe<AppServicesFilter>;
|
|
69892
70678
|
};
|
|
@@ -70986,6 +71772,14 @@ export declare type QueryConfluenceV2_SpaceThemeArgs = {
|
|
|
70986
71772
|
export declare type QueryConfluenceV2_SpacesArgs = {
|
|
70987
71773
|
ids: Array<Scalars['ID']['input']>;
|
|
70988
71774
|
};
|
|
71775
|
+
export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
71776
|
+
cloudId: Scalars['ID']['input'];
|
|
71777
|
+
};
|
|
71778
|
+
export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
71779
|
+
cloudId: Scalars['ID']['input'];
|
|
71780
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
71781
|
+
searchText: Scalars['String']['input'];
|
|
71782
|
+
};
|
|
70989
71783
|
export declare type QueryConfluence_StorageArgs = {
|
|
70990
71784
|
cloudId: Scalars['ID']['input'];
|
|
70991
71785
|
};
|
|
@@ -70994,7 +71788,7 @@ export declare type QueryConfluence_TenantContextArgs = {
|
|
|
70994
71788
|
};
|
|
70995
71789
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
70996
71790
|
applicationId: Scalars['ID']['input'];
|
|
70997
|
-
cloudId
|
|
71791
|
+
cloudId: Scalars['ID']['input'];
|
|
70998
71792
|
jql: Scalars['String']['input'];
|
|
70999
71793
|
};
|
|
71000
71794
|
export declare type QueryConfluence_WorkflowArgs = {
|
|
@@ -71128,6 +71922,7 @@ export declare type QueryContentPermissionsArgs = {
|
|
|
71128
71922
|
contentId: Scalars['ID']['input'];
|
|
71129
71923
|
};
|
|
71130
71924
|
export declare type QueryContentReactionsSummaryArgs = {
|
|
71925
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
71131
71926
|
contentId: Scalars['ID']['input'];
|
|
71132
71927
|
contentType: Scalars['String']['input'];
|
|
71133
71928
|
};
|
|
@@ -71408,9 +72203,6 @@ export declare type QueryFeedArgs = {
|
|
|
71408
72203
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71409
72204
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
71410
72205
|
};
|
|
71411
|
-
export declare type QueryFirebolt_BookByIdArgs = {
|
|
71412
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
71413
|
-
};
|
|
71414
72206
|
export declare type QueryForYouFeedArgs = {
|
|
71415
72207
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71416
72208
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -71557,6 +72349,9 @@ export declare type QueryIncomingLinksCountArgs = {
|
|
|
71557
72349
|
export declare type QueryInlineTasksArgs = {
|
|
71558
72350
|
tasksQuery: InlineTasksByMetadata;
|
|
71559
72351
|
};
|
|
72352
|
+
export declare type QueryInstallationContextsArgs = {
|
|
72353
|
+
appId: Scalars['ID']['input'];
|
|
72354
|
+
};
|
|
71560
72355
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
71561
72356
|
appId: Scalars['ID']['input'];
|
|
71562
72357
|
};
|
|
@@ -71605,7 +72400,7 @@ export declare type QueryIsSainSearchEnabledArgs = {
|
|
|
71605
72400
|
cloudId: Scalars['String']['input'];
|
|
71606
72401
|
};
|
|
71607
72402
|
export declare type QueryJiraAlignAgg_ProjectsByArisArgs = {
|
|
71608
|
-
|
|
72403
|
+
ids: Array<Scalars['ID']['input']>;
|
|
71609
72404
|
};
|
|
71610
72405
|
export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
71611
72406
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -71634,6 +72429,16 @@ export declare type QueryLabelSearchArgs = {
|
|
|
71634
72429
|
export declare type QueryLookAndFeelArgs = {
|
|
71635
72430
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
71636
72431
|
};
|
|
72432
|
+
export declare type QueryLoom_SpaceArgs = {
|
|
72433
|
+
id: Scalars['ID']['input'];
|
|
72434
|
+
};
|
|
72435
|
+
export declare type QueryLoom_SpacesSearchArgs = {
|
|
72436
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
72437
|
+
siteId: Scalars['ID']['input'];
|
|
72438
|
+
};
|
|
72439
|
+
export declare type QueryLoom_VideoArgs = {
|
|
72440
|
+
id: Scalars['ID']['input'];
|
|
72441
|
+
};
|
|
71637
72442
|
export declare type QueryMacroBodyRendererArgs = {
|
|
71638
72443
|
adf: Scalars['String']['input'];
|
|
71639
72444
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -71905,21 +72710,9 @@ export declare type QueryRadar_GroupMetricsArgs = {
|
|
|
71905
72710
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
71906
72711
|
uniqueFieldIdIsIn: Array<Scalars['ID']['input']>;
|
|
71907
72712
|
};
|
|
71908
|
-
export declare type QueryRadar_PositionArgs = {
|
|
71909
|
-
id: Scalars['ID']['input'];
|
|
71910
|
-
};
|
|
71911
72713
|
export declare type QueryRadar_PositionByAriArgs = {
|
|
71912
72714
|
id: Scalars['ID']['input'];
|
|
71913
72715
|
};
|
|
71914
|
-
export declare type QueryRadar_PositionsArgs = {
|
|
71915
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
71916
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
71917
|
-
cloudId: Scalars['ID']['input'];
|
|
71918
|
-
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
71919
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71920
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71921
|
-
rql?: InputMaybe<Scalars['String']['input']>;
|
|
71922
|
-
};
|
|
71923
72716
|
export declare type QueryRadar_PositionsByArisArgs = {
|
|
71924
72717
|
ids: Array<Scalars['ID']['input']>;
|
|
71925
72718
|
};
|
|
@@ -71932,9 +72725,6 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
71932
72725
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71933
72726
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
71934
72727
|
};
|
|
71935
|
-
export declare type QueryRadar_WorkerArgs = {
|
|
71936
|
-
id: Scalars['ID']['input'];
|
|
71937
|
-
};
|
|
71938
72728
|
export declare type QueryRadar_WorkerByAriArgs = {
|
|
71939
72729
|
id: Scalars['ID']['input'];
|
|
71940
72730
|
};
|
|
@@ -71945,6 +72735,7 @@ export declare type QueryRadar_WorkspaceArgs = {
|
|
|
71945
72735
|
cloudId: Scalars['ID']['input'];
|
|
71946
72736
|
};
|
|
71947
72737
|
export declare type QueryReactedUsersArgs = {
|
|
72738
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
71948
72739
|
containerId: Scalars['String']['input'];
|
|
71949
72740
|
containerType: ContainerType;
|
|
71950
72741
|
contentId: Scalars['String']['input'];
|
|
@@ -71952,6 +72743,7 @@ export declare type QueryReactedUsersArgs = {
|
|
|
71952
72743
|
emojiId: Scalars['String']['input'];
|
|
71953
72744
|
};
|
|
71954
72745
|
export declare type QueryReactionsSummaryArgs = {
|
|
72746
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
71955
72747
|
containerId: Scalars['ID']['input'];
|
|
71956
72748
|
containerType?: InputMaybe<Scalars['String']['input']>;
|
|
71957
72749
|
contentId: Scalars['ID']['input'];
|
|
@@ -72147,6 +72939,9 @@ export declare type QuerySpacesArgs = {
|
|
|
72147
72939
|
export declare type QuerySpacesWithExemptionsArgs = {
|
|
72148
72940
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
72149
72941
|
};
|
|
72942
|
+
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
72943
|
+
installationId: Scalars['ID']['input'];
|
|
72944
|
+
};
|
|
72150
72945
|
export declare type QuerySqlSlowQueryLogsArgs = {
|
|
72151
72946
|
installationId: Scalars['ID']['input'];
|
|
72152
72947
|
interval: QueryInterval;
|
|
@@ -72715,9 +73510,6 @@ export declare enum RateLimitingCurrency {
|
|
|
72715
73510
|
PolarisViewCurrency = "POLARIS_VIEW_CURRENCY",
|
|
72716
73511
|
PolarisViewQueryCurrency = "POLARIS_VIEW_QUERY_CURRENCY",
|
|
72717
73512
|
PolarisWriteCurrency = "POLARIS_WRITE_CURRENCY",
|
|
72718
|
-
ShepherdDefaultCurrency = "SHEPHERD_DEFAULT_CURRENCY",
|
|
72719
|
-
ShepherdMultipleReadsCurrency = "SHEPHERD_MULTIPLE_READS_CURRENCY",
|
|
72720
|
-
ShepherdReadAlertCurrency = "SHEPHERD_READ_ALERT_CURRENCY",
|
|
72721
73513
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
72722
73514
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
72723
73515
|
TeamMembersV2Currency = "TEAM_MEMBERS_V2_CURRENCY",
|
|
@@ -72746,6 +73538,7 @@ export declare type ReactedUsersResponse = {
|
|
|
72746
73538
|
reacted: Scalars['Boolean']['output'];
|
|
72747
73539
|
};
|
|
72748
73540
|
export declare type ReactionsId = {
|
|
73541
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
72749
73542
|
containerId: Scalars['ID']['input'];
|
|
72750
73543
|
containerType: Scalars['String']['input'];
|
|
72751
73544
|
contentId: Scalars['ID']['input'];
|
|
@@ -72995,6 +73788,14 @@ export declare type ResolvePolarisObjectPayload = Payload & {
|
|
|
72995
73788
|
response?: Maybe<ResolvedPolarisObject>;
|
|
72996
73789
|
success: Scalars['Boolean']['output'];
|
|
72997
73790
|
};
|
|
73791
|
+
export declare type ResolveRestrictionsForSubjectMutationErrorExtension = MutationErrorExtension & {
|
|
73792
|
+
__typename?: 'ResolveRestrictionsForSubjectMutationErrorExtension';
|
|
73793
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
73794
|
+
resourceId: Scalars['Long']['output'];
|
|
73795
|
+
resourceType: ResourceType;
|
|
73796
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
73797
|
+
subject: BlockedAccessSubject;
|
|
73798
|
+
};
|
|
72998
73799
|
export declare type ResolvedPolarisObject = {
|
|
72999
73800
|
__typename?: 'ResolvedPolarisObject';
|
|
73000
73801
|
auth?: Maybe<ResolvedPolarisObjectAuth>;
|
|
@@ -73736,6 +74537,10 @@ export declare enum RoleAssignmentPrincipalType {
|
|
|
73736
74537
|
Team = "TEAM",
|
|
73737
74538
|
User = "USER"
|
|
73738
74539
|
}
|
|
74540
|
+
export declare type SqlSchemaSizeLogResponse = {
|
|
74541
|
+
__typename?: 'SQLSchemaSizeLogResponse';
|
|
74542
|
+
databaseSize: Scalars['String']['output'];
|
|
74543
|
+
};
|
|
73739
74544
|
export declare type SqlSlowQueryLogsResponse = {
|
|
73740
74545
|
__typename?: 'SQLSlowQueryLogsResponse';
|
|
73741
74546
|
avgQueryExecutionTime: Scalars['Float']['output'];
|
|
@@ -74568,7 +75373,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
74568
75373
|
type: SearchResultType;
|
|
74569
75374
|
url: Scalars['URL']['output'];
|
|
74570
75375
|
};
|
|
74571
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
75376
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
74572
75377
|
export declare type SearchResultFederated = SearchResult & {
|
|
74573
75378
|
__typename?: 'SearchResultFederated';
|
|
74574
75379
|
description: Scalars['String']['output'];
|
|
@@ -75370,6 +76175,7 @@ export declare type ShepherdActorProductAccess = {
|
|
|
75370
76175
|
export declare type ShepherdActorResult = QueryError | ShepherdActor;
|
|
75371
76176
|
export declare type ShepherdActorSession = {
|
|
75372
76177
|
__typename?: 'ShepherdActorSession';
|
|
76178
|
+
authFactors?: Maybe<Array<Scalars['String']['output']>>;
|
|
75373
76179
|
device?: Maybe<ShepherdLoginDevice>;
|
|
75374
76180
|
lastActiveTime?: Maybe<Scalars['DateTime']['output']>;
|
|
75375
76181
|
loginLocation?: Maybe<ShepherdLoginLocation>;
|
|
@@ -77186,6 +77992,7 @@ export declare type Space = {
|
|
|
77186
77992
|
permissions?: Maybe<Array<Maybe<SpacePermission>>>;
|
|
77187
77993
|
settings?: Maybe<SpaceSettings>;
|
|
77188
77994
|
spaceAdmins: PaginatedPersonList;
|
|
77995
|
+
spaceOwner?: Maybe<ConfluenceSpaceDetailsSpaceOwner>;
|
|
77189
77996
|
spaceTypeSettings: SpaceTypeSettings;
|
|
77190
77997
|
status?: Maybe<Scalars['String']['output']>;
|
|
77191
77998
|
theme?: Maybe<Theme>;
|
|
@@ -79465,6 +80272,36 @@ export declare enum TownsquareGoalTypeState {
|
|
|
79465
80272
|
Disabled = "DISABLED",
|
|
79466
80273
|
Enabled = "ENABLED"
|
|
79467
80274
|
}
|
|
80275
|
+
export declare type TownsquareGoalUpdate = Node & {
|
|
80276
|
+
__typename?: 'TownsquareGoalUpdate';
|
|
80277
|
+
ari: Scalars['String']['output'];
|
|
80278
|
+
comments?: Maybe<TownsquareCommentConnection>;
|
|
80279
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
80280
|
+
creator?: Maybe<User>;
|
|
80281
|
+
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
80282
|
+
goal?: Maybe<TownsquareGoal>;
|
|
80283
|
+
id: Scalars['ID']['output'];
|
|
80284
|
+
lastEditedBy?: Maybe<User>;
|
|
80285
|
+
missedUpdate: Scalars['Boolean']['output'];
|
|
80286
|
+
newDueDate?: Maybe<TownsquareTargetDate>;
|
|
80287
|
+
newScore: Scalars['Int']['output'];
|
|
80288
|
+
newState?: Maybe<TownsquareGoalState>;
|
|
80289
|
+
newTargetDate?: Maybe<Scalars['Date']['output']>;
|
|
80290
|
+
newTargetDateConfidence: Scalars['Int']['output'];
|
|
80291
|
+
oldDueDate?: Maybe<TownsquareTargetDate>;
|
|
80292
|
+
oldScore?: Maybe<Scalars['Int']['output']>;
|
|
80293
|
+
oldState?: Maybe<TownsquareGoalState>;
|
|
80294
|
+
oldTargetDate?: Maybe<Scalars['Date']['output']>;
|
|
80295
|
+
oldTargetDateConfidence?: Maybe<Scalars['Int']['output']>;
|
|
80296
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
80297
|
+
updateType?: Maybe<TownsquareUpdateType>;
|
|
80298
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
80299
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
80300
|
+
};
|
|
80301
|
+
export declare type TownsquareGoalUpdateCommentsArgs = {
|
|
80302
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80303
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80304
|
+
};
|
|
79468
80305
|
export declare type TownsquareLocalizationField = {
|
|
79469
80306
|
__typename?: 'TownsquareLocalizationField';
|
|
79470
80307
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -79597,6 +80434,7 @@ export declare type TownsquareQueryApi = {
|
|
|
79597
80434
|
goalTqlFullHierarchy?: Maybe<TownsquareGoalConnection>;
|
|
79598
80435
|
goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
79599
80436
|
goalTypesByAri?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
80437
|
+
goalUpdatesByAris?: Maybe<Array<Maybe<TownsquareGoalUpdate>>>;
|
|
79600
80438
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
79601
80439
|
project?: Maybe<TownsquareProject>;
|
|
79602
80440
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
@@ -79652,6 +80490,9 @@ export declare type TownsquareQueryApiGoalTypesArgs = {
|
|
|
79652
80490
|
export declare type TownsquareQueryApiGoalTypesByAriArgs = {
|
|
79653
80491
|
aris: Array<Scalars['String']['input']>;
|
|
79654
80492
|
};
|
|
80493
|
+
export declare type TownsquareQueryApiGoalUpdatesByArisArgs = {
|
|
80494
|
+
aris: Array<Scalars['ID']['input']>;
|
|
80495
|
+
};
|
|
79655
80496
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
79656
80497
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
79657
80498
|
};
|
|
@@ -79782,6 +80623,10 @@ export declare type TownsquareUnshardedWorkspaceSummaryEdge = {
|
|
|
79782
80623
|
cursor: Scalars['String']['output'];
|
|
79783
80624
|
node?: Maybe<TownsquareUnshardedWorkspaceSummary>;
|
|
79784
80625
|
};
|
|
80626
|
+
export declare enum TownsquareUpdateType {
|
|
80627
|
+
System = "SYSTEM",
|
|
80628
|
+
User = "USER"
|
|
80629
|
+
}
|
|
79785
80630
|
export declare type TownsquareUserCapabilities = {
|
|
79786
80631
|
__typename?: 'TownsquareUserCapabilities';
|
|
79787
80632
|
capabilities?: Maybe<Array<Maybe<TownsquareCapability>>>;
|
|
@@ -80176,7 +81021,7 @@ export declare type TrelloCard = Node & {
|
|
|
80176
81021
|
checklists?: Maybe<TrelloChecklistConnection>;
|
|
80177
81022
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
80178
81023
|
cover?: Maybe<TrelloCardCover>;
|
|
80179
|
-
|
|
81024
|
+
creation?: Maybe<TrelloCardCreationInfo>;
|
|
80180
81025
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
80181
81026
|
description?: Maybe<TrelloDescription>;
|
|
80182
81027
|
due?: Maybe<TrelloCardDueInfo>;
|
|
@@ -80320,6 +81165,12 @@ export declare type TrelloCardCoverUpdated = {
|
|
|
80320
81165
|
sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
|
|
80321
81166
|
size?: Maybe<TrelloCardCoverSize>;
|
|
80322
81167
|
};
|
|
81168
|
+
export declare type TrelloCardCreationInfo = {
|
|
81169
|
+
__typename?: 'TrelloCardCreationInfo';
|
|
81170
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
81171
|
+
loadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
81172
|
+
method?: Maybe<Scalars['String']['output']>;
|
|
81173
|
+
};
|
|
80323
81174
|
export declare type TrelloCardDueInfo = {
|
|
80324
81175
|
__typename?: 'TrelloCardDueInfo';
|
|
80325
81176
|
at?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -80361,10 +81212,14 @@ export declare type TrelloCardUpdated = {
|
|
|
80361
81212
|
badges?: Maybe<TrelloCardBadges>;
|
|
80362
81213
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
80363
81214
|
cover?: Maybe<TrelloCardCoverUpdated>;
|
|
81215
|
+
creation?: Maybe<TrelloCardCreationInfo>;
|
|
81216
|
+
customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
|
|
80364
81217
|
description?: Maybe<Scalars['String']['output']>;
|
|
81218
|
+
due?: Maybe<TrelloCardDueInfo>;
|
|
80365
81219
|
id: Scalars['ID']['output'];
|
|
80366
81220
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
80367
81221
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
81222
|
+
location?: Maybe<TrelloCardLocation>;
|
|
80368
81223
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
80369
81224
|
name?: Maybe<Scalars['String']['output']>;
|
|
80370
81225
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -80485,6 +81340,10 @@ export declare type TrelloCustomFieldItemEdge = {
|
|
|
80485
81340
|
cursor: Scalars['String']['output'];
|
|
80486
81341
|
node: TrelloCustomFieldItem;
|
|
80487
81342
|
};
|
|
81343
|
+
export declare type TrelloCustomFieldItemUpdatedConnection = {
|
|
81344
|
+
__typename?: 'TrelloCustomFieldItemUpdatedConnection';
|
|
81345
|
+
nodes?: Maybe<Array<TrelloCustomFieldItem>>;
|
|
81346
|
+
};
|
|
80488
81347
|
export declare type TrelloCustomFieldItemValueInfo = {
|
|
80489
81348
|
__typename?: 'TrelloCustomFieldItemValueInfo';
|
|
80490
81349
|
checked?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -80533,6 +81392,23 @@ export declare type TrelloDescriptionDataEmojisArgs = {
|
|
|
80533
81392
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80534
81393
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80535
81394
|
};
|
|
81395
|
+
export declare type TrelloEditPlannerCalendarEventInput = {
|
|
81396
|
+
event: TrelloEditPlannerCalendarEventOptions;
|
|
81397
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
81398
|
+
providerAccountId: Scalars['ID']['input'];
|
|
81399
|
+
};
|
|
81400
|
+
export declare type TrelloEditPlannerCalendarEventOptions = {
|
|
81401
|
+
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
81402
|
+
id: Scalars['ID']['input'];
|
|
81403
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
81404
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
81405
|
+
};
|
|
81406
|
+
export declare type TrelloEditPlannerCalendarEventPayload = Payload & {
|
|
81407
|
+
__typename?: 'TrelloEditPlannerCalendarEventPayload';
|
|
81408
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81409
|
+
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
81410
|
+
success: Scalars['Boolean']['output'];
|
|
81411
|
+
};
|
|
80536
81412
|
export declare type TrelloEnterprise = {
|
|
80537
81413
|
__typename?: 'TrelloEnterprise';
|
|
80538
81414
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -80771,6 +81647,7 @@ export declare type TrelloMutationApi = {
|
|
|
80771
81647
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
80772
81648
|
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
80773
81649
|
createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
|
|
81650
|
+
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
80774
81651
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
80775
81652
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
80776
81653
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
@@ -80803,6 +81680,9 @@ export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
|
80803
81680
|
export declare type TrelloMutationApiCreatePlannerCalendarEventArgs = {
|
|
80804
81681
|
input: TrelloCreatePlannerCalendarEventInput;
|
|
80805
81682
|
};
|
|
81683
|
+
export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
81684
|
+
input: TrelloEditPlannerCalendarEventInput;
|
|
81685
|
+
};
|
|
80806
81686
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
80807
81687
|
input: TrelloPinCardInput;
|
|
80808
81688
|
};
|
|
@@ -80947,6 +81827,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
80947
81827
|
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
80948
81828
|
busy?: Maybe<Scalars['Boolean']['output']>;
|
|
80949
81829
|
cards?: Maybe<TrelloPlannerCalendarEventCardConnection>;
|
|
81830
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
80950
81831
|
conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
|
|
80951
81832
|
createdByTrello?: Maybe<Scalars['Boolean']['output']>;
|
|
80952
81833
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -81550,12 +82431,6 @@ export declare type UnifiedAccessStatus = UnifiedINode & {
|
|
|
81550
82431
|
};
|
|
81551
82432
|
export declare type UnifiedAccount = UnifiedINode & {
|
|
81552
82433
|
__typename?: 'UnifiedAccount';
|
|
81553
|
-
id: Scalars['ID']['output'];
|
|
81554
|
-
linkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
81555
|
-
parentAccount?: Maybe<UnifiedParentAccount>;
|
|
81556
|
-
};
|
|
81557
|
-
export declare type UnifiedAccount2 = UnifiedINode & {
|
|
81558
|
-
__typename?: 'UnifiedAccount2';
|
|
81559
82434
|
aaid: Scalars['String']['output'];
|
|
81560
82435
|
emailId: Scalars['String']['output'];
|
|
81561
82436
|
id: Scalars['ID']['output'];
|
|
@@ -81563,7 +82438,7 @@ export declare type UnifiedAccount2 = UnifiedINode & {
|
|
|
81563
82438
|
isLinked: Scalars['Boolean']['output'];
|
|
81564
82439
|
isManaged: Scalars['Boolean']['output'];
|
|
81565
82440
|
isPrimary: Scalars['Boolean']['output'];
|
|
81566
|
-
linkedAccounts?: Maybe<
|
|
82441
|
+
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
81567
82442
|
};
|
|
81568
82443
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
81569
82444
|
__typename?: 'UnifiedAccountDetails';
|
|
@@ -81894,33 +82769,16 @@ export declare type UnifiedLinkInitiationPayload = {
|
|
|
81894
82769
|
id: Scalars['ID']['output'];
|
|
81895
82770
|
token: Scalars['String']['output'];
|
|
81896
82771
|
};
|
|
81897
|
-
export declare type
|
|
81898
|
-
__typename?: '
|
|
81899
|
-
|
|
81900
|
-
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
|
|
81901
|
-
forums?: Maybe<UnifiedUForumsResult>;
|
|
81902
|
-
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
81903
|
-
id: Scalars['ID']['output'];
|
|
81904
|
-
learning?: Maybe<UnifiedULearningResult>;
|
|
81905
|
-
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
81906
|
-
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
81907
|
-
};
|
|
81908
|
-
export declare type UnifiedLinkedAccount2Connection = UnifiedIConnection & {
|
|
81909
|
-
__typename?: 'UnifiedLinkedAccount2Connection';
|
|
81910
|
-
edges?: Maybe<Array<Maybe<UnifiedLinkedAccount2Edge>>>;
|
|
82772
|
+
export declare type UnifiedLinkedAccountConnection = UnifiedIConnection & {
|
|
82773
|
+
__typename?: 'UnifiedLinkedAccountConnection';
|
|
82774
|
+
edges?: Maybe<Array<Maybe<UnifiedLinkedAccountEdge>>>;
|
|
81911
82775
|
pageInfo: UnifiedPageInfo;
|
|
81912
82776
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81913
82777
|
};
|
|
81914
|
-
export declare type
|
|
81915
|
-
__typename?: '
|
|
82778
|
+
export declare type UnifiedLinkedAccountEdge = UnifiedIEdge & {
|
|
82779
|
+
__typename?: 'UnifiedLinkedAccountEdge';
|
|
81916
82780
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
81917
|
-
node?: Maybe<
|
|
81918
|
-
};
|
|
81919
|
-
export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
81920
|
-
__typename?: 'UnifiedLinkedAccountPayload';
|
|
81921
|
-
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
81922
|
-
success: Scalars['Boolean']['output'];
|
|
81923
|
-
unifiedLinkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
82781
|
+
node?: Maybe<UnifiedAccount>;
|
|
81924
82782
|
};
|
|
81925
82783
|
export declare type UnifiedLinkingMutation = {
|
|
81926
82784
|
__typename?: 'UnifiedLinkingMutation';
|
|
@@ -81948,21 +82806,11 @@ export declare type UnifiedLinkingStatusPayload = UnifiedPayload & {
|
|
|
81948
82806
|
export declare type UnifiedMutation = {
|
|
81949
82807
|
__typename?: 'UnifiedMutation';
|
|
81950
82808
|
account?: Maybe<UnifiedAccountMutation>;
|
|
81951
|
-
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
|
|
81952
|
-
createParentAccount?: Maybe<UnifiedParentAccountPayload>;
|
|
81953
82809
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
81954
82810
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
81955
82811
|
linking?: Maybe<UnifiedLinkingMutation>;
|
|
81956
82812
|
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
|
|
81957
82813
|
};
|
|
81958
|
-
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
81959
|
-
aaid: Scalars['String']['input'];
|
|
81960
|
-
connectedProductsReferenceId: Scalars['String']['input'];
|
|
81961
|
-
parentAccountInternalId: Scalars['String']['input'];
|
|
81962
|
-
};
|
|
81963
|
-
export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
81964
|
-
aaid: Scalars['String']['input'];
|
|
81965
|
-
};
|
|
81966
82814
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
81967
82815
|
aaid: Scalars['String']['input'];
|
|
81968
82816
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -81988,43 +82836,29 @@ export declare type UnifiedPageInfo = {
|
|
|
81988
82836
|
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
81989
82837
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
81990
82838
|
};
|
|
81991
|
-
export declare type UnifiedParentAccount = UnifiedINode & {
|
|
81992
|
-
__typename?: 'UnifiedParentAccount';
|
|
81993
|
-
aaid?: Maybe<Scalars['String']['output']>;
|
|
81994
|
-
id: Scalars['ID']['output'];
|
|
81995
|
-
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
81996
|
-
};
|
|
81997
|
-
export declare type UnifiedParentAccountPayload = UnifiedPayload & {
|
|
81998
|
-
__typename?: 'UnifiedParentAccountPayload';
|
|
81999
|
-
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
82000
|
-
success: Scalars['Boolean']['output'];
|
|
82001
|
-
unifiedParentAccount?: Maybe<UnifiedParentAccount>;
|
|
82002
|
-
};
|
|
82003
82839
|
export declare type UnifiedPayload = {
|
|
82004
82840
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
82005
82841
|
success: Scalars['Boolean']['output'];
|
|
82006
82842
|
};
|
|
82007
82843
|
export declare type UnifiedProfile = UnifiedINode & {
|
|
82008
82844
|
__typename?: 'UnifiedProfile';
|
|
82845
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
82846
|
+
accountInternalId?: Maybe<Scalars['String']['output']>;
|
|
82009
82847
|
badges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
82010
82848
|
bio?: Maybe<Scalars['String']['output']>;
|
|
82011
82849
|
company?: Maybe<Scalars['String']['output']>;
|
|
82012
82850
|
forums?: Maybe<UnifiedUForumsResult>;
|
|
82013
|
-
forumsId?: Maybe<Scalars['String']['output']>;
|
|
82014
82851
|
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
82015
|
-
gamificationId?: Maybe<Scalars['String']['output']>;
|
|
82016
82852
|
id: Scalars['ID']['output'];
|
|
82853
|
+
internalId?: Maybe<Scalars['ID']['output']>;
|
|
82017
82854
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
82018
82855
|
isPrivate: Scalars['Boolean']['output'];
|
|
82019
|
-
learnId?: Maybe<Scalars['String']['output']>;
|
|
82020
82856
|
learning?: Maybe<UnifiedULearningResult>;
|
|
82021
82857
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
82022
82858
|
location?: Maybe<Scalars['String']['output']>;
|
|
82023
|
-
parentAccountInternalId?: Maybe<Scalars['String']['output']>;
|
|
82024
82859
|
products?: Maybe<Scalars['String']['output']>;
|
|
82025
82860
|
role?: Maybe<Scalars['String']['output']>;
|
|
82026
|
-
|
|
82027
|
-
unifiedProfileUsername?: Maybe<Scalars['String']['output']>;
|
|
82861
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
82028
82862
|
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
82029
82863
|
xUrl?: Maybe<Scalars['String']['output']>;
|
|
82030
82864
|
youtubeUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -82055,20 +82889,19 @@ export declare type UnifiedProfileBadgesConnection = UnifiedIConnection & {
|
|
|
82055
82889
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
82056
82890
|
};
|
|
82057
82891
|
export declare type UnifiedProfileInput = {
|
|
82892
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
82893
|
+
accountInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
82058
82894
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
82059
82895
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
82060
|
-
forumsId?: InputMaybe<Scalars['String']['input']>;
|
|
82061
82896
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
82897
|
+
internalId?: InputMaybe<Scalars['String']['input']>;
|
|
82062
82898
|
isPrivate: Scalars['Boolean']['input'];
|
|
82063
|
-
learnId?: InputMaybe<Scalars['String']['input']>;
|
|
82064
82899
|
linkedinUrl?: InputMaybe<Scalars['String']['input']>;
|
|
82065
82900
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
82066
|
-
parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
82067
82901
|
products?: InputMaybe<Scalars['String']['input']>;
|
|
82068
82902
|
role?: InputMaybe<Scalars['String']['input']>;
|
|
82069
|
-
unifiedProfileInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
82070
|
-
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
82071
82903
|
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
82904
|
+
username?: InputMaybe<Scalars['String']['input']>;
|
|
82072
82905
|
websiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
82073
82906
|
xUrl?: InputMaybe<Scalars['String']['input']>;
|
|
82074
82907
|
youtubeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -82081,13 +82914,11 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
82081
82914
|
};
|
|
82082
82915
|
export declare type UnifiedQuery = {
|
|
82083
82916
|
__typename?: 'UnifiedQuery';
|
|
82084
|
-
account?: Maybe<
|
|
82917
|
+
account?: Maybe<UnifiedUAccountResult>;
|
|
82085
82918
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
82086
82919
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
82087
82920
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
82088
82921
|
node?: Maybe<UnifiedINode>;
|
|
82089
|
-
unifiedAccount?: Maybe<UnifiedUAccountResult>;
|
|
82090
|
-
unifiedAccounts?: Maybe<Array<Maybe<UnifiedUAccountResult>>>;
|
|
82091
82922
|
unifiedProfile?: Maybe<UnifiedUProfileResult>;
|
|
82092
82923
|
unifiedProfiles?: Maybe<Array<Maybe<UnifiedUProfileResult>>>;
|
|
82093
82924
|
};
|
|
@@ -82105,9 +82936,6 @@ export declare type UnifiedQueryAtlassianProductsArgs = {
|
|
|
82105
82936
|
export declare type UnifiedQueryNodeArgs = {
|
|
82106
82937
|
id: Scalars['ID']['input'];
|
|
82107
82938
|
};
|
|
82108
|
-
export declare type UnifiedQueryUnifiedAccountArgs = {
|
|
82109
|
-
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
82110
|
-
};
|
|
82111
82939
|
export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
82112
82940
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
82113
82941
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -82145,7 +82973,6 @@ export declare enum UnifiedSortDirection {
|
|
|
82145
82973
|
Asc = "ASC",
|
|
82146
82974
|
Desc = "DESC"
|
|
82147
82975
|
}
|
|
82148
|
-
export declare type UnifiedUAccount2Result = UnifiedAccount2 | UnifiedQueryError;
|
|
82149
82976
|
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
82150
82977
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
82151
82978
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
@@ -82164,7 +82991,7 @@ export declare type UnifiedULearningCertificationResult = UnifiedLearningCertifi
|
|
|
82164
82991
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
82165
82992
|
export declare type UnifiedULinkAuthenticationPayload = UnifiedLinkAuthenticationPayload | UnifiedLinkingStatusPayload;
|
|
82166
82993
|
export declare type UnifiedULinkInitiationPayload = UnifiedLinkInitiationPayload | UnifiedLinkingStatusPayload;
|
|
82167
|
-
export declare type
|
|
82994
|
+
export declare type UnifiedULinkedAccountResult = UnifiedLinkedAccountConnection | UnifiedQueryError;
|
|
82168
82995
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
82169
82996
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
82170
82997
|
export declare type UnifiedURecentCourseResult = UnifiedQueryError | UnifiedRecentCourseConnection;
|