@forge/cli-shared 6.5.0 → 6.5.1-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/out/graphql/graphql-types.d.ts +1037 -350
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +80 -56
- 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,17 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
|
|
|
695
699
|
ScheduledStartDate = "SCHEDULED_START_DATE",
|
|
696
700
|
Visibility = "VISIBILITY"
|
|
697
701
|
}
|
|
702
|
+
export declare type AgentAiIssueSummary = {
|
|
703
|
+
__typename?: 'AgentAIIssueSummary';
|
|
704
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
705
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
706
|
+
summary?: Maybe<AgentAiSummary>;
|
|
707
|
+
};
|
|
708
|
+
export declare type AgentAiSummary = {
|
|
709
|
+
__typename?: 'AgentAISummary';
|
|
710
|
+
adf?: Maybe<Scalars['String']['output']>;
|
|
711
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
712
|
+
};
|
|
698
713
|
export declare enum AlertEventStatus {
|
|
699
714
|
Acknowledged = "ACKNOWLEDGED",
|
|
700
715
|
Closed = "CLOSED",
|
|
@@ -879,6 +894,7 @@ export declare type App = {
|
|
|
879
894
|
storesPersonalData: Scalars['Boolean']['output'];
|
|
880
895
|
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
881
896
|
termsOfService?: Maybe<Scalars['String']['output']>;
|
|
897
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
882
898
|
vendorName?: Maybe<Scalars['String']['output']>;
|
|
883
899
|
};
|
|
884
900
|
export declare type AppDeploymentsArgs = {
|
|
@@ -1123,6 +1139,7 @@ export declare type AppInstallation = {
|
|
|
1123
1139
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
1124
1140
|
id: Scalars['ID']['output'];
|
|
1125
1141
|
installationContext: Scalars['ID']['output'];
|
|
1142
|
+
isRecoverable: Scalars['Boolean']['output'];
|
|
1126
1143
|
license?: Maybe<AppInstallationLicense>;
|
|
1127
1144
|
version?: Maybe<AppVersion>;
|
|
1128
1145
|
};
|
|
@@ -1180,6 +1197,7 @@ export declare type AppInstallationInput = {
|
|
|
1180
1197
|
licenseOverride?: InputMaybe<LicenseOverrideState>;
|
|
1181
1198
|
overrides?: InputMaybe<EcosystemAppInstallationOverridesInput>;
|
|
1182
1199
|
provisionRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
1200
|
+
recoveryMode?: InputMaybe<EcosystemInstallationRecoveryMode>;
|
|
1183
1201
|
versionId?: InputMaybe<Scalars['ID']['input']>;
|
|
1184
1202
|
};
|
|
1185
1203
|
export declare type AppInstallationLicense = {
|
|
@@ -1269,6 +1287,7 @@ export declare type AppInstallationsByAppFilter = {
|
|
|
1269
1287
|
export declare type AppInstallationsByContextFilter = {
|
|
1270
1288
|
appInstallations: InstallationsListFilterByAppInstallationsWithCompulsoryContexts;
|
|
1271
1289
|
apps?: InputMaybe<InstallationsListFilterByApps>;
|
|
1290
|
+
includeRecoverable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1272
1291
|
};
|
|
1273
1292
|
export declare type AppInstallationsFilter = {
|
|
1274
1293
|
appId: Scalars['ID']['input'];
|
|
@@ -1526,8 +1545,8 @@ export declare type AppStorageSqlDatabaseMigration = {
|
|
|
1526
1545
|
};
|
|
1527
1546
|
export declare type AppStorageSqlDatabasePayload = {
|
|
1528
1547
|
__typename?: 'AppStorageSqlDatabasePayload';
|
|
1529
|
-
migrations: Array<
|
|
1530
|
-
tables: Array<
|
|
1548
|
+
migrations: Array<AppStorageSqlDatabaseMigration>;
|
|
1549
|
+
tables: Array<AppStorageSqlDatabaseTable>;
|
|
1531
1550
|
};
|
|
1532
1551
|
export declare type AppStorageSqlDatabaseTable = {
|
|
1533
1552
|
__typename?: 'AppStorageSqlDatabaseTable';
|
|
@@ -4087,8 +4106,10 @@ export declare type CompassCatalogMutationApi = {
|
|
|
4087
4106
|
removeScorecardFromComponent?: Maybe<RemoveCompassScorecardFromComponentPayload>;
|
|
4088
4107
|
removeTeamLabels?: Maybe<CompassRemoveTeamLabelsPayload>;
|
|
4089
4108
|
revokeJqlMetricSourceUser?: Maybe<CompassRevokeJqlMetricSourceUserPayload>;
|
|
4109
|
+
setEntityProperty?: Maybe<CompassSetEntityPropertyPayload>;
|
|
4090
4110
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
4091
4111
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
4112
|
+
unsetEntityProperty?: Maybe<CompassUnsetEntityPropertyPayload>;
|
|
4092
4113
|
updateAnnouncement?: Maybe<CompassUpdateAnnouncementPayload>;
|
|
4093
4114
|
updateCampaign?: Maybe<CompassUpdateCampaignPayload>;
|
|
4094
4115
|
updateComponent?: Maybe<UpdateCompassComponentPayload>;
|
|
@@ -4105,6 +4126,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
4105
4126
|
updateDocument?: Maybe<CompassUpdateDocumentPayload>;
|
|
4106
4127
|
updateJqlMetricSourceUser?: Maybe<CompassUpdateJqlMetricSourceUserPayload>;
|
|
4107
4128
|
updateMetricDefinition?: Maybe<CompassUpdateMetricDefinitionPayload>;
|
|
4129
|
+
updateMetricSource?: Maybe<CompassUpdateMetricSourcePayload>;
|
|
4108
4130
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
4109
4131
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
4110
4132
|
updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
|
|
@@ -4296,12 +4318,18 @@ export declare type CompassCatalogMutationApiRemoveTeamLabelsArgs = {
|
|
|
4296
4318
|
export declare type CompassCatalogMutationApiRevokeJqlMetricSourceUserArgs = {
|
|
4297
4319
|
input: CompassRevokeJqlMetricSourceUserInput;
|
|
4298
4320
|
};
|
|
4321
|
+
export declare type CompassCatalogMutationApiSetEntityPropertyArgs = {
|
|
4322
|
+
input: CompassSetEntityPropertyInput;
|
|
4323
|
+
};
|
|
4299
4324
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
4300
4325
|
input?: InputMaybe<CompassSynchronizeLinkAssociationsInput>;
|
|
4301
4326
|
};
|
|
4302
4327
|
export declare type CompassCatalogMutationApiUnlinkExternalSourceArgs = {
|
|
4303
4328
|
input: UnlinkExternalSourceInput;
|
|
4304
4329
|
};
|
|
4330
|
+
export declare type CompassCatalogMutationApiUnsetEntityPropertyArgs = {
|
|
4331
|
+
input: CompassUnsetEntityPropertyInput;
|
|
4332
|
+
};
|
|
4305
4333
|
export declare type CompassCatalogMutationApiUpdateAnnouncementArgs = {
|
|
4306
4334
|
input: CompassUpdateAnnouncementInput;
|
|
4307
4335
|
};
|
|
@@ -4353,6 +4381,9 @@ export declare type CompassCatalogMutationApiUpdateJqlMetricSourceUserArgs = {
|
|
|
4353
4381
|
export declare type CompassCatalogMutationApiUpdateMetricDefinitionArgs = {
|
|
4354
4382
|
input: CompassUpdateMetricDefinitionInput;
|
|
4355
4383
|
};
|
|
4384
|
+
export declare type CompassCatalogMutationApiUpdateMetricSourceArgs = {
|
|
4385
|
+
input: CompassUpdateMetricSourceInput;
|
|
4386
|
+
};
|
|
4356
4387
|
export declare type CompassCatalogMutationApiUpdateScorecardArgs = {
|
|
4357
4388
|
input: UpdateCompassScorecardInput;
|
|
4358
4389
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -4384,6 +4415,8 @@ export declare type CompassCatalogQueryApi = {
|
|
|
4384
4415
|
customPermissionConfigs?: Maybe<CompassCustomPermissionConfigsResult>;
|
|
4385
4416
|
documentationCategories?: Maybe<CompassDocumentationCategoriesConnection>;
|
|
4386
4417
|
documents?: Maybe<CompassDocumentConnection>;
|
|
4418
|
+
entityProperties?: Maybe<Array<Maybe<CompassEntityPropertyResult>>>;
|
|
4419
|
+
entityProperty?: Maybe<CompassEntityPropertyResult>;
|
|
4387
4420
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
4388
4421
|
fieldDefinitionsByComponentType?: Maybe<CompassFieldDefinitionsResult>;
|
|
4389
4422
|
filteredComponentsCount?: Maybe<CompassFilteredComponentsCountResult>;
|
|
@@ -4477,6 +4510,14 @@ export declare type CompassCatalogQueryApiDocumentsArgs = {
|
|
|
4477
4510
|
componentId: Scalars['ID']['input'];
|
|
4478
4511
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4479
4512
|
};
|
|
4513
|
+
export declare type CompassCatalogQueryApiEntityPropertiesArgs = {
|
|
4514
|
+
cloudId: Scalars['ID']['input'];
|
|
4515
|
+
keys: Array<Scalars['String']['input']>;
|
|
4516
|
+
};
|
|
4517
|
+
export declare type CompassCatalogQueryApiEntityPropertyArgs = {
|
|
4518
|
+
cloudId: Scalars['ID']['input'];
|
|
4519
|
+
key: Scalars['String']['input'];
|
|
4520
|
+
};
|
|
4480
4521
|
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
4481
4522
|
cloudId: Scalars['ID']['input'];
|
|
4482
4523
|
eventType: CompassEventType;
|
|
@@ -5255,6 +5296,7 @@ export declare type CompassCreateLifecycleEventInput = {
|
|
|
5255
5296
|
};
|
|
5256
5297
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
5257
5298
|
cloudId: Scalars['ID']['input'];
|
|
5299
|
+
configuration?: InputMaybe<CompassMetricDefinitionConfigurationInput>;
|
|
5258
5300
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5259
5301
|
format?: InputMaybe<CompassMetricDefinitionFormatInput>;
|
|
5260
5302
|
name: Scalars['String']['input'];
|
|
@@ -5267,6 +5309,7 @@ export declare type CompassCreateMetricDefinitionPayload = Payload & {
|
|
|
5267
5309
|
};
|
|
5268
5310
|
export declare type CompassCreateMetricSourceInput = {
|
|
5269
5311
|
componentId: Scalars['ID']['input'];
|
|
5312
|
+
configuration?: InputMaybe<CompassMetricSourceConfigurationInput>;
|
|
5270
5313
|
derived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5271
5314
|
externalConfiguration?: InputMaybe<CompassExternalMetricSourceConfigurationInput>;
|
|
5272
5315
|
externalMetricSourceId: Scalars['ID']['input'];
|
|
@@ -5328,6 +5371,25 @@ export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
|
5328
5371
|
export declare type CompassCreateTeamCheckinResponseRichText = {
|
|
5329
5372
|
adf?: InputMaybe<Scalars['String']['input']>;
|
|
5330
5373
|
};
|
|
5374
|
+
export declare type CompassCreateVulnerabilityEventInput = {
|
|
5375
|
+
description: Scalars['String']['input'];
|
|
5376
|
+
displayName: Scalars['String']['input'];
|
|
5377
|
+
externalEventSourceId: Scalars['ID']['input'];
|
|
5378
|
+
lastUpdated: Scalars['DateTime']['input'];
|
|
5379
|
+
updateSequenceNumber: Scalars['Long']['input'];
|
|
5380
|
+
url: Scalars['URL']['input'];
|
|
5381
|
+
vulnerabilityProperties: CompassCreateVulnerabilityEventPropertiesInput;
|
|
5382
|
+
};
|
|
5383
|
+
export declare type CompassCreateVulnerabilityEventPropertiesInput = {
|
|
5384
|
+
discoverySource?: InputMaybe<Scalars['String']['input']>;
|
|
5385
|
+
discoveryTime: Scalars['DateTime']['input'];
|
|
5386
|
+
id: Scalars['ID']['input'];
|
|
5387
|
+
remediationTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5388
|
+
score?: InputMaybe<Scalars['Float']['input']>;
|
|
5389
|
+
severity: CompassVulnerabilityEventSeverityInput;
|
|
5390
|
+
state: CompassVulnerabilityEventState;
|
|
5391
|
+
vulnerableTarget?: InputMaybe<Scalars['String']['input']>;
|
|
5392
|
+
};
|
|
5331
5393
|
export declare type CompassCreateWebhookInput = {
|
|
5332
5394
|
componentId: Scalars['ID']['input'];
|
|
5333
5395
|
url: Scalars['String']['input'];
|
|
@@ -5871,6 +5933,14 @@ export declare type CompassDocumentationCategoryEdge = {
|
|
|
5871
5933
|
cursor: Scalars['String']['output'];
|
|
5872
5934
|
node?: Maybe<CompassDocumentationCategory>;
|
|
5873
5935
|
};
|
|
5936
|
+
export declare type CompassEntityProperty = {
|
|
5937
|
+
__typename?: 'CompassEntityProperty';
|
|
5938
|
+
changeMetadata?: Maybe<CompassChangeMetadata>;
|
|
5939
|
+
key: Scalars['String']['output'];
|
|
5940
|
+
scope: Scalars['String']['output'];
|
|
5941
|
+
value: Scalars['String']['output'];
|
|
5942
|
+
};
|
|
5943
|
+
export declare type CompassEntityPropertyResult = CompassEntityProperty | QueryError;
|
|
5874
5944
|
export declare type CompassEnumField = CompassField & {
|
|
5875
5945
|
__typename?: 'CompassEnumField';
|
|
5876
5946
|
definition?: Maybe<CompassFieldDefinition>;
|
|
@@ -5916,6 +5986,7 @@ export declare type CompassEventInput = {
|
|
|
5916
5986
|
lifecycle?: InputMaybe<CompassCreateLifecycleEventInput>;
|
|
5917
5987
|
pullRequest?: InputMaybe<CompassCreatePullRequestEventInput>;
|
|
5918
5988
|
push?: InputMaybe<CompassCreatePushEventInput>;
|
|
5989
|
+
vulnerability?: InputMaybe<CompassCreateVulnerabilityEventInput>;
|
|
5919
5990
|
};
|
|
5920
5991
|
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
5921
5992
|
export declare type CompassEventTimeParameters = {
|
|
@@ -5931,7 +6002,8 @@ export declare enum CompassEventType {
|
|
|
5931
6002
|
Incident = "INCIDENT",
|
|
5932
6003
|
Lifecycle = "LIFECYCLE",
|
|
5933
6004
|
PullRequest = "PULL_REQUEST",
|
|
5934
|
-
Push = "PUSH"
|
|
6005
|
+
Push = "PUSH",
|
|
6006
|
+
Vulnerability = "VULNERABILITY"
|
|
5935
6007
|
}
|
|
5936
6008
|
export declare type CompassEventsInEventSourceQuery = {
|
|
5937
6009
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6335,6 +6407,16 @@ export declare type CompassInsertMetricValuePayload = Payload & {
|
|
|
6335
6407
|
metricSource?: Maybe<CompassMetricSource>;
|
|
6336
6408
|
success: Scalars['Boolean']['output'];
|
|
6337
6409
|
};
|
|
6410
|
+
export declare type CompassJqlMetricDefinitionConfiguration = {
|
|
6411
|
+
__typename?: 'CompassJQLMetricDefinitionConfiguration';
|
|
6412
|
+
customizable?: Maybe<Scalars['Boolean']['output']>;
|
|
6413
|
+
format?: Maybe<Scalars['String']['output']>;
|
|
6414
|
+
jql: Scalars['String']['output'];
|
|
6415
|
+
};
|
|
6416
|
+
export declare type CompassJqlMetricDefinitionConfigurationInput = {
|
|
6417
|
+
customizable: Scalars['Boolean']['input'];
|
|
6418
|
+
jql: Scalars['String']['input'];
|
|
6419
|
+
};
|
|
6338
6420
|
export declare type CompassJqlMetricSourceConfiguration = {
|
|
6339
6421
|
__typename?: 'CompassJQLMetricSourceConfiguration';
|
|
6340
6422
|
executingJql?: Maybe<Scalars['String']['output']>;
|
|
@@ -6342,6 +6424,9 @@ export declare type CompassJqlMetricSourceConfiguration = {
|
|
|
6342
6424
|
userContext?: Maybe<User>;
|
|
6343
6425
|
viewerPermissions?: Maybe<CompassJqlMetricSourceInstancePermissions>;
|
|
6344
6426
|
};
|
|
6427
|
+
export declare type CompassJqlMetricSourceConfigurationInput = {
|
|
6428
|
+
jql: Scalars['String']['input'];
|
|
6429
|
+
};
|
|
6345
6430
|
export declare type CompassJqlMetricSourceInstancePermissions = {
|
|
6346
6431
|
__typename?: 'CompassJQLMetricSourceInstancePermissions';
|
|
6347
6432
|
revokePollingUser?: Maybe<CompassPermissionResult>;
|
|
@@ -6449,6 +6534,7 @@ export declare type CompassMetricDefinition = Node & {
|
|
|
6449
6534
|
format?: Maybe<CompassMetricDefinitionFormat>;
|
|
6450
6535
|
id: Scalars['ID']['output'];
|
|
6451
6536
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
6537
|
+
jqlConfiguration?: Maybe<CompassJqlMetricDefinitionConfiguration>;
|
|
6452
6538
|
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
6453
6539
|
name?: Maybe<Scalars['String']['output']>;
|
|
6454
6540
|
type: CompassMetricDefinitionType;
|
|
@@ -6457,6 +6543,9 @@ export declare type CompassMetricDefinition = Node & {
|
|
|
6457
6543
|
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
6458
6544
|
query?: InputMaybe<CompassMetricSourcesQuery>;
|
|
6459
6545
|
};
|
|
6546
|
+
export declare type CompassMetricDefinitionConfigurationInput = {
|
|
6547
|
+
jql?: InputMaybe<CompassJqlMetricDefinitionConfigurationInput>;
|
|
6548
|
+
};
|
|
6460
6549
|
export declare type CompassMetricDefinitionEdge = {
|
|
6461
6550
|
__typename?: 'CompassMetricDefinitionEdge';
|
|
6462
6551
|
cursor: Scalars['String']['output'];
|
|
@@ -6511,6 +6600,9 @@ export declare type CompassMetricSource = Node & {
|
|
|
6511
6600
|
export declare type CompassMetricSourceValuesArgs = {
|
|
6512
6601
|
query?: InputMaybe<CompassMetricSourceValuesQuery>;
|
|
6513
6602
|
};
|
|
6603
|
+
export declare type CompassMetricSourceConfigurationInput = {
|
|
6604
|
+
jql?: InputMaybe<CompassJqlMetricSourceConfigurationInput>;
|
|
6605
|
+
};
|
|
6514
6606
|
export declare type CompassMetricSourceEdge = {
|
|
6515
6607
|
__typename?: 'CompassMetricSourceEdge';
|
|
6516
6608
|
cursor: Scalars['String']['output'];
|
|
@@ -6549,6 +6641,7 @@ export declare type CompassMetricSourcesConnection = {
|
|
|
6549
6641
|
edges?: Maybe<Array<CompassMetricSourceEdge>>;
|
|
6550
6642
|
nodes?: Maybe<Array<CompassMetricSource>>;
|
|
6551
6643
|
pageInfo: PageInfo;
|
|
6644
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
6552
6645
|
};
|
|
6553
6646
|
export declare type CompassMetricSourcesQuery = {
|
|
6554
6647
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7350,6 +7443,17 @@ export declare type CompassSearchTeamsInput = {
|
|
|
7350
7443
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7351
7444
|
term?: InputMaybe<Scalars['String']['input']>;
|
|
7352
7445
|
};
|
|
7446
|
+
export declare type CompassSetEntityPropertyInput = {
|
|
7447
|
+
cloudId: Scalars['ID']['input'];
|
|
7448
|
+
key: Scalars['String']['input'];
|
|
7449
|
+
value: Scalars['String']['input'];
|
|
7450
|
+
};
|
|
7451
|
+
export declare type CompassSetEntityPropertyPayload = Payload & {
|
|
7452
|
+
__typename?: 'CompassSetEntityPropertyPayload';
|
|
7453
|
+
entityProperty?: Maybe<CompassEntityProperty>;
|
|
7454
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7455
|
+
success: Scalars['Boolean']['output'];
|
|
7456
|
+
};
|
|
7353
7457
|
export declare type CompassSloMetricSourceConfigurationInput = {
|
|
7354
7458
|
badQuery: Scalars['String']['input'];
|
|
7355
7459
|
goodQuery: Scalars['String']['input'];
|
|
@@ -7473,6 +7577,16 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
7473
7577
|
cursor: Scalars['String']['output'];
|
|
7474
7578
|
node?: Maybe<CompassTeamMetricSource>;
|
|
7475
7579
|
};
|
|
7580
|
+
export declare type CompassUnsetEntityPropertyInput = {
|
|
7581
|
+
cloudId: Scalars['ID']['input'];
|
|
7582
|
+
key: Scalars['String']['input'];
|
|
7583
|
+
};
|
|
7584
|
+
export declare type CompassUnsetEntityPropertyPayload = Payload & {
|
|
7585
|
+
__typename?: 'CompassUnsetEntityPropertyPayload';
|
|
7586
|
+
entityProperty?: Maybe<CompassEntityProperty>;
|
|
7587
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7588
|
+
success: Scalars['Boolean']['output'];
|
|
7589
|
+
};
|
|
7476
7590
|
export declare type CompassUpdateAnnouncementInput = {
|
|
7477
7591
|
clearAcknowledgements?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7478
7592
|
cloudId: Scalars['ID']['input'];
|
|
@@ -7655,6 +7769,16 @@ export declare type CompassUpdateMetricDefinitionPayload = Payload & {
|
|
|
7655
7769
|
success: Scalars['Boolean']['output'];
|
|
7656
7770
|
updatedMetricDefinition?: Maybe<CompassMetricDefinition>;
|
|
7657
7771
|
};
|
|
7772
|
+
export declare type CompassUpdateMetricSourceInput = {
|
|
7773
|
+
configuration?: InputMaybe<CompassMetricSourceConfigurationInput>;
|
|
7774
|
+
id: Scalars['ID']['input'];
|
|
7775
|
+
};
|
|
7776
|
+
export declare type CompassUpdateMetricSourcePayload = Payload & {
|
|
7777
|
+
__typename?: 'CompassUpdateMetricSourcePayload';
|
|
7778
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7779
|
+
success: Scalars['Boolean']['output'];
|
|
7780
|
+
updatedMetricSource?: Maybe<CompassMetricSource>;
|
|
7781
|
+
};
|
|
7658
7782
|
export declare type CompassUpdatePermissionConfigsPayload = Payload & {
|
|
7659
7783
|
__typename?: 'CompassUpdatePermissionConfigsPayload';
|
|
7660
7784
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -7717,6 +7841,47 @@ export declare type CompassViewerSubscription = {
|
|
|
7717
7841
|
__typename?: 'CompassViewerSubscription';
|
|
7718
7842
|
subscribed: Scalars['Boolean']['output'];
|
|
7719
7843
|
};
|
|
7844
|
+
export declare type CompassVulnerabilityEvent = CompassEvent & {
|
|
7845
|
+
__typename?: 'CompassVulnerabilityEvent';
|
|
7846
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7847
|
+
displayName: Scalars['String']['output'];
|
|
7848
|
+
eventType: CompassEventType;
|
|
7849
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
7850
|
+
updateSequenceNumber: Scalars['Long']['output'];
|
|
7851
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
7852
|
+
vulnerabilityProperties: CompassVulnerabilityEventProperties;
|
|
7853
|
+
};
|
|
7854
|
+
export declare type CompassVulnerabilityEventProperties = {
|
|
7855
|
+
__typename?: 'CompassVulnerabilityEventProperties';
|
|
7856
|
+
discoverySource?: Maybe<Scalars['String']['output']>;
|
|
7857
|
+
discoveryTime: Scalars['DateTime']['output'];
|
|
7858
|
+
id: Scalars['ID']['output'];
|
|
7859
|
+
remediationTime?: Maybe<Scalars['DateTime']['output']>;
|
|
7860
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
7861
|
+
severity?: Maybe<CompassVulnerabilityEventSeverity>;
|
|
7862
|
+
state: Scalars['String']['output'];
|
|
7863
|
+
vulnerableTarget?: Maybe<Scalars['String']['output']>;
|
|
7864
|
+
};
|
|
7865
|
+
export declare type CompassVulnerabilityEventSeverity = {
|
|
7866
|
+
__typename?: 'CompassVulnerabilityEventSeverity';
|
|
7867
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
7868
|
+
level: Scalars['String']['output'];
|
|
7869
|
+
};
|
|
7870
|
+
export declare type CompassVulnerabilityEventSeverityInput = {
|
|
7871
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
7872
|
+
level: CompassVulnerabilityEventSeverityLevel;
|
|
7873
|
+
};
|
|
7874
|
+
export declare enum CompassVulnerabilityEventSeverityLevel {
|
|
7875
|
+
Critical = "CRITICAL",
|
|
7876
|
+
High = "HIGH",
|
|
7877
|
+
Low = "LOW",
|
|
7878
|
+
Medium = "MEDIUM"
|
|
7879
|
+
}
|
|
7880
|
+
export declare enum CompassVulnerabilityEventState {
|
|
7881
|
+
Declined = "DECLINED",
|
|
7882
|
+
Open = "OPEN",
|
|
7883
|
+
Remediated = "REMEDIATED"
|
|
7884
|
+
}
|
|
7720
7885
|
export declare type CompassWebhook = {
|
|
7721
7886
|
__typename?: 'CompassWebhook';
|
|
7722
7887
|
id: Scalars['ID']['output'];
|
|
@@ -7941,6 +8106,14 @@ export declare type ConfluenceCalendarJqlValidationResult = {
|
|
|
7941
8106
|
valid: Scalars['Boolean']['output'];
|
|
7942
8107
|
warningMessages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
7943
8108
|
};
|
|
8109
|
+
export declare type ConfluenceCalendarPreference = {
|
|
8110
|
+
__typename?: 'ConfluenceCalendarPreference';
|
|
8111
|
+
disabledMessageKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
8112
|
+
disabledSubCalendars?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8113
|
+
subCalendarsInView?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8114
|
+
view: Scalars['String']['output'];
|
|
8115
|
+
watchedSubCalendars?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8116
|
+
};
|
|
7944
8117
|
export declare type ConfluenceChildContent = {
|
|
7945
8118
|
__typename?: 'ConfluenceChildContent';
|
|
7946
8119
|
attachment: PaginatedContentList;
|
|
@@ -8002,6 +8175,15 @@ export declare enum ConfluenceCommentType {
|
|
|
8002
8175
|
Footer = "FOOTER",
|
|
8003
8176
|
Inline = "INLINE"
|
|
8004
8177
|
}
|
|
8178
|
+
export declare type ConfluenceConflictedMutationError = {
|
|
8179
|
+
__typename?: 'ConfluenceConflictedMutationError';
|
|
8180
|
+
extensions?: Maybe<Array<Maybe<MutationErrorExtension>>>;
|
|
8181
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
8182
|
+
};
|
|
8183
|
+
export declare type ConfluenceConflictedPayload = {
|
|
8184
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8185
|
+
success: Scalars['Boolean']['output'];
|
|
8186
|
+
};
|
|
8005
8187
|
export declare type ConfluenceContentBody = {
|
|
8006
8188
|
__typename?: 'ConfluenceContentBody';
|
|
8007
8189
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -8174,6 +8356,15 @@ export declare type ConfluenceDeleteBlogPostPropertyPayload = Payload & {
|
|
|
8174
8356
|
errors?: Maybe<Array<MutationError>>;
|
|
8175
8357
|
success: Scalars['Boolean']['output'];
|
|
8176
8358
|
};
|
|
8359
|
+
export declare type ConfluenceDeleteCalendarCustomEventTypeInput = {
|
|
8360
|
+
id: Scalars['ID']['input'];
|
|
8361
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8362
|
+
};
|
|
8363
|
+
export declare type ConfluenceDeleteCalendarCustomEventTypePayload = ConfluenceConflictedPayload & {
|
|
8364
|
+
__typename?: 'ConfluenceDeleteCalendarCustomEventTypePayload';
|
|
8365
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8366
|
+
success: Scalars['Boolean']['output'];
|
|
8367
|
+
};
|
|
8177
8368
|
export declare type ConfluenceDeleteCommentInput = {
|
|
8178
8369
|
id: Scalars['ID']['input'];
|
|
8179
8370
|
};
|
|
@@ -14397,6 +14588,12 @@ export declare type ConfluenceSpaceDescription = {
|
|
|
14397
14588
|
plain?: Maybe<Scalars['String']['output']>;
|
|
14398
14589
|
view?: Maybe<Scalars['String']['output']>;
|
|
14399
14590
|
};
|
|
14591
|
+
export declare type ConfluenceSpaceDetailsSpaceOwner = {
|
|
14592
|
+
__typename?: 'ConfluenceSpaceDetailsSpaceOwner';
|
|
14593
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14594
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
14595
|
+
ownerType?: Maybe<ConfluenceSpaceOwnerType>;
|
|
14596
|
+
};
|
|
14400
14597
|
export declare type ConfluenceSpaceEdge = {
|
|
14401
14598
|
__typename?: 'ConfluenceSpaceEdge';
|
|
14402
14599
|
cursor: Scalars['String']['output'];
|
|
@@ -14427,6 +14624,10 @@ export declare type ConfluenceSpaceMetadata = {
|
|
|
14427
14624
|
totalCurrentPages?: Maybe<Scalars['Int']['output']>;
|
|
14428
14625
|
totalWatchers?: Maybe<Scalars['Int']['output']>;
|
|
14429
14626
|
};
|
|
14627
|
+
export declare enum ConfluenceSpaceOwnerType {
|
|
14628
|
+
Group = "GROUP",
|
|
14629
|
+
User = "USER"
|
|
14630
|
+
}
|
|
14430
14631
|
export declare enum ConfluenceSpaceSettingEditorVersion {
|
|
14431
14632
|
V1 = "V1",
|
|
14432
14633
|
V2 = "V2"
|
|
@@ -15376,6 +15577,7 @@ export declare type ContainerLookAndFeel = {
|
|
|
15376
15577
|
};
|
|
15377
15578
|
export declare enum ContainerType {
|
|
15378
15579
|
Blogpost = "BLOGPOST",
|
|
15580
|
+
Database = "DATABASE",
|
|
15379
15581
|
Page = "PAGE",
|
|
15380
15582
|
Space = "SPACE",
|
|
15381
15583
|
Whiteboard = "WHITEBOARD"
|
|
@@ -20918,6 +21120,7 @@ export declare type DevOpsService = Node & {
|
|
|
20918
21120
|
description?: Maybe<Scalars['String']['output']>;
|
|
20919
21121
|
id: Scalars['ID']['output'];
|
|
20920
21122
|
isCompassSynchronised: Scalars['Boolean']['output'];
|
|
21123
|
+
isEditDisabledByCompass: Scalars['Boolean']['output'];
|
|
20921
21124
|
jiraProjects?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
20922
21125
|
lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
20923
21126
|
lastUpdatedBy?: Maybe<Scalars['String']['output']>;
|
|
@@ -21720,6 +21923,10 @@ export declare type EcosystemDataClassificationsContext = {
|
|
|
21720
21923
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
21721
21924
|
id: Scalars['ID']['output'];
|
|
21722
21925
|
};
|
|
21926
|
+
export declare enum EcosystemInstallationRecoveryMode {
|
|
21927
|
+
FreshInstall = "FRESH_INSTALL",
|
|
21928
|
+
RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
|
|
21929
|
+
}
|
|
21723
21930
|
export declare enum EcosystemLicenseMode {
|
|
21724
21931
|
UserAccess = "USER_ACCESS"
|
|
21725
21932
|
}
|
|
@@ -23107,19 +23314,6 @@ export declare type FilteredPrincipalSubjectKey = {
|
|
|
23107
23314
|
id?: Maybe<Scalars['String']['output']>;
|
|
23108
23315
|
permissionDisplayType: PermissionDisplayType;
|
|
23109
23316
|
};
|
|
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
23317
|
export declare type FollowUserInput = {
|
|
23124
23318
|
accountId: Scalars['String']['input'];
|
|
23125
23319
|
};
|
|
@@ -28012,6 +28206,7 @@ export declare type GraphStore = {
|
|
|
28012
28206
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
28013
28207
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
28014
28208
|
issueAssociatedBranchRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
28209
|
+
issueAssociatedBuild?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildConnection>;
|
|
28015
28210
|
issueAssociatedBuildBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
|
|
28016
28211
|
issueAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseConnection>;
|
|
28017
28212
|
issueAssociatedBuildInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
|
|
@@ -28054,6 +28249,7 @@ export declare type GraphStore = {
|
|
|
28054
28249
|
issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
28055
28250
|
issueHasAssignee?: Maybe<GraphStoreSimplifiedIssueHasAssigneeConnection>;
|
|
28056
28251
|
issueHasAssigneeInverse?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseConnection>;
|
|
28252
|
+
issueInStatusInverse?: Maybe<GraphStoreSimplifiedIssueInStatusInverseConnection>;
|
|
28057
28253
|
issueRecursiveAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection>;
|
|
28058
28254
|
issueRecursiveAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseConnection>;
|
|
28059
28255
|
issueRecursiveAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentConnection>;
|
|
@@ -28128,6 +28324,7 @@ export declare type GraphStore = {
|
|
|
28128
28324
|
projectAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseConnection>;
|
|
28129
28325
|
projectAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
28130
28326
|
projectAssociatedBranchRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
28327
|
+
projectAssociatedBuild?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildConnection>;
|
|
28131
28328
|
projectAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildInverseConnection>;
|
|
28132
28329
|
projectAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBuildConnection>;
|
|
28133
28330
|
projectAssociatedBuildRelationship?: Maybe<GraphStoreFullProjectAssociatedBuildConnection>;
|
|
@@ -28231,6 +28428,7 @@ export declare type GraphStore = {
|
|
|
28231
28428
|
shipit57PullRequestLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseConnection>;
|
|
28232
28429
|
spaceAssociatedWithProject?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectConnection>;
|
|
28233
28430
|
spaceAssociatedWithProjectInverse?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection>;
|
|
28431
|
+
sprintAssociatedBuild?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildConnection>;
|
|
28234
28432
|
sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
28235
28433
|
sprintAssociatedBuildRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
28236
28434
|
sprintAssociatedDeployment?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentConnection>;
|
|
@@ -28272,6 +28470,7 @@ export declare type GraphStore = {
|
|
|
28272
28470
|
testPerfhammerMaterializationInverse?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationInverseConnection>;
|
|
28273
28471
|
testPerfhammerMaterializationInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationConnection>;
|
|
28274
28472
|
testPerfhammerMaterializationRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationConnection>;
|
|
28473
|
+
testPerfhammerRelationship?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipConnection>;
|
|
28275
28474
|
testPerfhammerRelationshipBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
28276
28475
|
testPerfhammerRelationshipInverse?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseConnection>;
|
|
28277
28476
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
@@ -28297,11 +28496,20 @@ export declare type GraphStore = {
|
|
|
28297
28496
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28298
28497
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28299
28498
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28499
|
+
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
28500
|
+
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
28501
|
+
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
28502
|
+
userViewedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectInverseConnection>;
|
|
28503
|
+
userViewedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostConnection>;
|
|
28504
|
+
userViewedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection>;
|
|
28300
28505
|
userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
|
|
28301
28506
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
28507
|
+
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
28508
|
+
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
28302
28509
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
28303
28510
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
28304
28511
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
28512
|
+
versionAssociatedBuild?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildConnection>;
|
|
28305
28513
|
versionAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseConnection>;
|
|
28306
28514
|
versionAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBuildConnection>;
|
|
28307
28515
|
versionAssociatedBuildRelationship?: Maybe<GraphStoreFullVersionAssociatedBuildConnection>;
|
|
@@ -28958,6 +29166,13 @@ export declare type GraphStoreIssueAssociatedBranchRelationshipArgs = {
|
|
|
28958
29166
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28959
29167
|
id: Scalars['ID']['input'];
|
|
28960
29168
|
};
|
|
29169
|
+
export declare type GraphStoreIssueAssociatedBuildArgs = {
|
|
29170
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29171
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29172
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29173
|
+
id: Scalars['ID']['input'];
|
|
29174
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
29175
|
+
};
|
|
28961
29176
|
export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
|
|
28962
29177
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28963
29178
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -29218,6 +29433,13 @@ export declare type GraphStoreIssueHasAssigneeInverseArgs = {
|
|
|
29218
29433
|
id: Scalars['ID']['input'];
|
|
29219
29434
|
sort?: InputMaybe<GraphStoreIssueHasAssigneeSortInput>;
|
|
29220
29435
|
};
|
|
29436
|
+
export declare type GraphStoreIssueInStatusInverseArgs = {
|
|
29437
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29438
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29439
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29440
|
+
id: Scalars['ID']['input'];
|
|
29441
|
+
sort?: InputMaybe<GraphStoreIssueInStatusSortInput>;
|
|
29442
|
+
};
|
|
29221
29443
|
export declare type GraphStoreIssueRecursiveAssociatedDeploymentArgs = {
|
|
29222
29444
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29223
29445
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29670,6 +29892,14 @@ export declare type GraphStoreProjectAssociatedBranchRelationshipArgs = {
|
|
|
29670
29892
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29671
29893
|
id: Scalars['ID']['input'];
|
|
29672
29894
|
};
|
|
29895
|
+
export declare type GraphStoreProjectAssociatedBuildArgs = {
|
|
29896
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29897
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29898
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedBuildFilterInput>;
|
|
29899
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29900
|
+
id: Scalars['ID']['input'];
|
|
29901
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedBuildSortInput>;
|
|
29902
|
+
};
|
|
29673
29903
|
export declare type GraphStoreProjectAssociatedBuildInverseArgs = {
|
|
29674
29904
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29675
29905
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30342,6 +30572,14 @@ export declare type GraphStoreSpaceAssociatedWithProjectInverseArgs = {
|
|
|
30342
30572
|
id: Scalars['ID']['input'];
|
|
30343
30573
|
sort?: InputMaybe<GraphStoreSpaceAssociatedWithProjectSortInput>;
|
|
30344
30574
|
};
|
|
30575
|
+
export declare type GraphStoreSprintAssociatedBuildArgs = {
|
|
30576
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30577
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30578
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
30579
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30580
|
+
id: Scalars['ID']['input'];
|
|
30581
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
|
|
30582
|
+
};
|
|
30345
30583
|
export declare type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
|
|
30346
30584
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30347
30585
|
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
@@ -30605,6 +30843,13 @@ export declare type GraphStoreTestPerfhammerMaterializationRelationshipArgs = {
|
|
|
30605
30843
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30606
30844
|
id: Scalars['ID']['input'];
|
|
30607
30845
|
};
|
|
30846
|
+
export declare type GraphStoreTestPerfhammerRelationshipArgs = {
|
|
30847
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30848
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30849
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30850
|
+
id: Scalars['ID']['input'];
|
|
30851
|
+
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
30852
|
+
};
|
|
30608
30853
|
export declare type GraphStoreTestPerfhammerRelationshipBatchArgs = {
|
|
30609
30854
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30610
30855
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -30774,6 +31019,48 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
30774
31019
|
id: Scalars['ID']['input'];
|
|
30775
31020
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
30776
31021
|
};
|
|
31022
|
+
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
31023
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31024
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31025
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31026
|
+
id: Scalars['ID']['input'];
|
|
31027
|
+
sort?: InputMaybe<GraphStoreUserViewedAtlasGoalSortInput>;
|
|
31028
|
+
};
|
|
31029
|
+
export declare type GraphStoreUserViewedAtlasGoalInverseArgs = {
|
|
31030
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31031
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31032
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31033
|
+
id: Scalars['ID']['input'];
|
|
31034
|
+
sort?: InputMaybe<GraphStoreUserViewedAtlasGoalSortInput>;
|
|
31035
|
+
};
|
|
31036
|
+
export declare type GraphStoreUserViewedAtlasProjectArgs = {
|
|
31037
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31038
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31039
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31040
|
+
id: Scalars['ID']['input'];
|
|
31041
|
+
sort?: InputMaybe<GraphStoreUserViewedAtlasProjectSortInput>;
|
|
31042
|
+
};
|
|
31043
|
+
export declare type GraphStoreUserViewedAtlasProjectInverseArgs = {
|
|
31044
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31045
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31046
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31047
|
+
id: Scalars['ID']['input'];
|
|
31048
|
+
sort?: InputMaybe<GraphStoreUserViewedAtlasProjectSortInput>;
|
|
31049
|
+
};
|
|
31050
|
+
export declare type GraphStoreUserViewedConfluenceBlogpostArgs = {
|
|
31051
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31052
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31053
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31054
|
+
id: Scalars['ID']['input'];
|
|
31055
|
+
sort?: InputMaybe<GraphStoreUserViewedConfluenceBlogpostSortInput>;
|
|
31056
|
+
};
|
|
31057
|
+
export declare type GraphStoreUserViewedConfluenceBlogpostInverseArgs = {
|
|
31058
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31059
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31060
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31061
|
+
id: Scalars['ID']['input'];
|
|
31062
|
+
sort?: InputMaybe<GraphStoreUserViewedConfluenceBlogpostSortInput>;
|
|
31063
|
+
};
|
|
30777
31064
|
export declare type GraphStoreUserViewedConfluencePageArgs = {
|
|
30778
31065
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30779
31066
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30788,6 +31075,20 @@ export declare type GraphStoreUserViewedConfluencePageInverseArgs = {
|
|
|
30788
31075
|
id: Scalars['ID']['input'];
|
|
30789
31076
|
sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
|
|
30790
31077
|
};
|
|
31078
|
+
export declare type GraphStoreUserViewedJiraIssueArgs = {
|
|
31079
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31080
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31081
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31082
|
+
id: Scalars['ID']['input'];
|
|
31083
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
31084
|
+
};
|
|
31085
|
+
export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
31086
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31087
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31088
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31089
|
+
id: Scalars['ID']['input'];
|
|
31090
|
+
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
31091
|
+
};
|
|
30791
31092
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
30792
31093
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30793
31094
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30805,6 +31106,13 @@ export declare type GraphStoreVersionAssociatedBranchRelationshipArgs = {
|
|
|
30805
31106
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30806
31107
|
id: Scalars['ID']['input'];
|
|
30807
31108
|
};
|
|
31109
|
+
export declare type GraphStoreVersionAssociatedBuildArgs = {
|
|
31110
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31111
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31112
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31113
|
+
id: Scalars['ID']['input'];
|
|
31114
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedBuildSortInput>;
|
|
31115
|
+
};
|
|
30808
31116
|
export declare type GraphStoreVersionAssociatedBuildInverseArgs = {
|
|
30809
31117
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30810
31118
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31492,8 +31800,10 @@ export declare type GraphStoreBatchIssueAssociatedBuildEdge = {
|
|
|
31492
31800
|
};
|
|
31493
31801
|
export declare type GraphStoreBatchIssueAssociatedBuildEndNode = {
|
|
31494
31802
|
__typename?: 'GraphStoreBatchIssueAssociatedBuildEndNode';
|
|
31803
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedBuildEndUnion>;
|
|
31495
31804
|
id: Scalars['ID']['output'];
|
|
31496
31805
|
};
|
|
31806
|
+
export declare type GraphStoreBatchIssueAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
31497
31807
|
export declare type GraphStoreBatchIssueAssociatedBuildInnerConnection = {
|
|
31498
31808
|
__typename?: 'GraphStoreBatchIssueAssociatedBuildInnerConnection';
|
|
31499
31809
|
edges: Array<Maybe<GraphStoreBatchIssueAssociatedBuildInnerEdge>>;
|
|
@@ -31696,7 +32006,7 @@ export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEnd
|
|
|
31696
32006
|
data?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndUnion>;
|
|
31697
32007
|
id: Scalars['ID']['output'];
|
|
31698
32008
|
};
|
|
31699
|
-
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails;
|
|
32009
|
+
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
31700
32010
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityInnerConnection = {
|
|
31701
32011
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityInnerConnection';
|
|
31702
32012
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityInnerEdge>>;
|
|
@@ -31732,8 +32042,10 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipEdge = {
|
|
|
31732
32042
|
};
|
|
31733
32043
|
export declare type GraphStoreBatchTestPerfhammerRelationshipEndNode = {
|
|
31734
32044
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipEndNode';
|
|
32045
|
+
data?: Maybe<GraphStoreBatchTestPerfhammerRelationshipEndUnion>;
|
|
31735
32046
|
id: Scalars['ID']['output'];
|
|
31736
32047
|
};
|
|
32048
|
+
export declare type GraphStoreBatchTestPerfhammerRelationshipEndUnion = ExternalBuildInfo;
|
|
31737
32049
|
export declare type GraphStoreBatchTestPerfhammerRelationshipInnerConnection = {
|
|
31738
32050
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipInnerConnection';
|
|
31739
32051
|
edges: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipInnerEdge>>;
|
|
@@ -32183,7 +32495,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
32183
32495
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
32184
32496
|
id: Scalars['ID']['output'];
|
|
32185
32497
|
};
|
|
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;
|
|
32498
|
+
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
32499
|
export declare type GraphStoreCypherQueryNode = {
|
|
32188
32500
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
32189
32501
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -32194,7 +32506,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
32194
32506
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
32195
32507
|
id: Scalars['ID']['output'];
|
|
32196
32508
|
};
|
|
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;
|
|
32509
|
+
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
32510
|
export declare type GraphStoreDateFilterInput = {
|
|
32199
32511
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
32200
32512
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -32659,7 +32971,7 @@ export declare type GraphStoreFullComponentAssociatedDocumentEndNode = {
|
|
|
32659
32971
|
data?: Maybe<GraphStoreFullComponentAssociatedDocumentEndUnion>;
|
|
32660
32972
|
id: Scalars['ID']['output'];
|
|
32661
32973
|
};
|
|
32662
|
-
export declare type GraphStoreFullComponentAssociatedDocumentEndUnion = DevOpsDocument;
|
|
32974
|
+
export declare type GraphStoreFullComponentAssociatedDocumentEndUnion = DevOpsDocument | ExternalDocument;
|
|
32663
32975
|
export declare type GraphStoreFullComponentAssociatedDocumentNode = Node & {
|
|
32664
32976
|
__typename?: 'GraphStoreFullComponentAssociatedDocumentNode';
|
|
32665
32977
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -32979,9 +33291,11 @@ export declare type GraphStoreFullIssueAssociatedBuildEdge = {
|
|
|
32979
33291
|
};
|
|
32980
33292
|
export declare type GraphStoreFullIssueAssociatedBuildEndNode = {
|
|
32981
33293
|
__typename?: 'GraphStoreFullIssueAssociatedBuildEndNode';
|
|
33294
|
+
data?: Maybe<GraphStoreFullIssueAssociatedBuildEndUnion>;
|
|
32982
33295
|
id: Scalars['ID']['output'];
|
|
32983
33296
|
metadata?: Maybe<GraphStoreFullIssueAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
32984
33297
|
};
|
|
33298
|
+
export declare type GraphStoreFullIssueAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
32985
33299
|
export declare type GraphStoreFullIssueAssociatedBuildNode = Node & {
|
|
32986
33300
|
__typename?: 'GraphStoreFullIssueAssociatedBuildNode';
|
|
32987
33301
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33133,7 +33447,7 @@ export declare type GraphStoreFullIssueAssociatedDesignEndNode = {
|
|
|
33133
33447
|
id: Scalars['ID']['output'];
|
|
33134
33448
|
metadata?: Maybe<GraphStoreFullIssueAssociatedDesignRelationshipObjectMetadataOutput>;
|
|
33135
33449
|
};
|
|
33136
|
-
export declare type GraphStoreFullIssueAssociatedDesignEndUnion = DevOpsDesign;
|
|
33450
|
+
export declare type GraphStoreFullIssueAssociatedDesignEndUnion = DevOpsDesign | ExternalDesign;
|
|
33137
33451
|
export declare type GraphStoreFullIssueAssociatedDesignNode = Node & {
|
|
33138
33452
|
__typename?: 'GraphStoreFullIssueAssociatedDesignNode';
|
|
33139
33453
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33169,7 +33483,7 @@ export declare type GraphStoreFullIssueAssociatedFeatureFlagEndNode = {
|
|
|
33169
33483
|
data?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagEndUnion>;
|
|
33170
33484
|
id: Scalars['ID']['output'];
|
|
33171
33485
|
};
|
|
33172
|
-
export declare type GraphStoreFullIssueAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
33486
|
+
export declare type GraphStoreFullIssueAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
33173
33487
|
export declare type GraphStoreFullIssueAssociatedFeatureFlagNode = Node & {
|
|
33174
33488
|
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagNode';
|
|
33175
33489
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33277,7 +33591,7 @@ export declare type GraphStoreFullIssueAssociatedPrEndNode = {
|
|
|
33277
33591
|
id: Scalars['ID']['output'];
|
|
33278
33592
|
metadata?: Maybe<GraphStoreFullIssueAssociatedPrRelationshipObjectMetadataOutput>;
|
|
33279
33593
|
};
|
|
33280
|
-
export declare type GraphStoreFullIssueAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
33594
|
+
export declare type GraphStoreFullIssueAssociatedPrEndUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
33281
33595
|
export declare type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
33282
33596
|
__typename?: 'GraphStoreFullIssueAssociatedPrNode';
|
|
33283
33597
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33430,7 +33744,7 @@ export declare type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode = {
|
|
|
33430
33744
|
data?: Maybe<GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndUnion>;
|
|
33431
33745
|
id: Scalars['ID']['output'];
|
|
33432
33746
|
};
|
|
33433
|
-
export declare type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
33747
|
+
export declare type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
33434
33748
|
export declare type GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode = Node & {
|
|
33435
33749
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode';
|
|
33436
33750
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33463,7 +33777,7 @@ export declare type GraphStoreFullIssueRecursiveAssociatedPrEndNode = {
|
|
|
33463
33777
|
data?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrEndUnion>;
|
|
33464
33778
|
id: Scalars['ID']['output'];
|
|
33465
33779
|
};
|
|
33466
|
-
export declare type GraphStoreFullIssueRecursiveAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
33780
|
+
export declare type GraphStoreFullIssueRecursiveAssociatedPrEndUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
33467
33781
|
export declare type GraphStoreFullIssueRecursiveAssociatedPrNode = Node & {
|
|
33468
33782
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrNode';
|
|
33469
33783
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33862,7 +34176,7 @@ export declare type GraphStoreFullParentDocumentHasChildDocumentEndNode = {
|
|
|
33862
34176
|
id: Scalars['ID']['output'];
|
|
33863
34177
|
metadata?: Maybe<GraphStoreFullParentDocumentHasChildDocumentRelationshipObjectMetadataOutput>;
|
|
33864
34178
|
};
|
|
33865
|
-
export declare type GraphStoreFullParentDocumentHasChildDocumentEndUnion = DevOpsDocument;
|
|
34179
|
+
export declare type GraphStoreFullParentDocumentHasChildDocumentEndUnion = DevOpsDocument | ExternalDocument;
|
|
33866
34180
|
export declare type GraphStoreFullParentDocumentHasChildDocumentNode = Node & {
|
|
33867
34181
|
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentNode';
|
|
33868
34182
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33887,7 +34201,7 @@ export declare type GraphStoreFullParentDocumentHasChildDocumentStartNode = {
|
|
|
33887
34201
|
id: Scalars['ID']['output'];
|
|
33888
34202
|
metadata?: Maybe<GraphStoreFullParentDocumentHasChildDocumentRelationshipSubjectMetadataOutput>;
|
|
33889
34203
|
};
|
|
33890
|
-
export declare type GraphStoreFullParentDocumentHasChildDocumentStartUnion = DevOpsDocument;
|
|
34204
|
+
export declare type GraphStoreFullParentDocumentHasChildDocumentStartUnion = DevOpsDocument | ExternalDocument;
|
|
33891
34205
|
export declare type GraphStoreFullParentIssueHasChildIssueConnection = HasPageInfo & {
|
|
33892
34206
|
__typename?: 'GraphStoreFullParentIssueHasChildIssueConnection';
|
|
33893
34207
|
edges: Array<Maybe<GraphStoreFullParentIssueHasChildIssueEdge>>;
|
|
@@ -33936,7 +34250,7 @@ export declare type GraphStoreFullPrInRepoEndNode = {
|
|
|
33936
34250
|
id: Scalars['ID']['output'];
|
|
33937
34251
|
metadata?: Maybe<GraphStoreFullPrInRepoRelationshipObjectMetadataOutput>;
|
|
33938
34252
|
};
|
|
33939
|
-
export declare type GraphStoreFullPrInRepoEndUnion = DevOpsRepository;
|
|
34253
|
+
export declare type GraphStoreFullPrInRepoEndUnion = DevOpsRepository | ExternalRepository;
|
|
33940
34254
|
export declare type GraphStoreFullPrInRepoNode = Node & {
|
|
33941
34255
|
__typename?: 'GraphStoreFullPrInRepoNode';
|
|
33942
34256
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33954,7 +34268,7 @@ export declare type GraphStoreFullPrInRepoStartNode = {
|
|
|
33954
34268
|
data?: Maybe<GraphStoreFullPrInRepoStartUnion>;
|
|
33955
34269
|
id: Scalars['ID']['output'];
|
|
33956
34270
|
};
|
|
33957
|
-
export declare type GraphStoreFullPrInRepoStartUnion = DevOpsPullRequestDetails;
|
|
34271
|
+
export declare type GraphStoreFullPrInRepoStartUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
33958
34272
|
export declare type GraphStoreFullProjectAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
33959
34273
|
__typename?: 'GraphStoreFullProjectAssociatedBranchConnection';
|
|
33960
34274
|
edges: Array<Maybe<GraphStoreFullProjectAssociatedBranchEdge>>;
|
|
@@ -34010,9 +34324,11 @@ export declare type GraphStoreFullProjectAssociatedBuildEdge = {
|
|
|
34010
34324
|
};
|
|
34011
34325
|
export declare type GraphStoreFullProjectAssociatedBuildEndNode = {
|
|
34012
34326
|
__typename?: 'GraphStoreFullProjectAssociatedBuildEndNode';
|
|
34327
|
+
data?: Maybe<GraphStoreFullProjectAssociatedBuildEndUnion>;
|
|
34013
34328
|
id: Scalars['ID']['output'];
|
|
34014
34329
|
metadata?: Maybe<GraphStoreFullProjectAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
34015
34330
|
};
|
|
34331
|
+
export declare type GraphStoreFullProjectAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
34016
34332
|
export declare type GraphStoreFullProjectAssociatedBuildNode = Node & {
|
|
34017
34333
|
__typename?: 'GraphStoreFullProjectAssociatedBuildNode';
|
|
34018
34334
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34142,7 +34458,7 @@ export declare type GraphStoreFullProjectAssociatedFeatureFlagEndNode = {
|
|
|
34142
34458
|
data?: Maybe<GraphStoreFullProjectAssociatedFeatureFlagEndUnion>;
|
|
34143
34459
|
id: Scalars['ID']['output'];
|
|
34144
34460
|
};
|
|
34145
|
-
export declare type GraphStoreFullProjectAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
34461
|
+
export declare type GraphStoreFullProjectAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
34146
34462
|
export declare type GraphStoreFullProjectAssociatedFeatureFlagNode = Node & {
|
|
34147
34463
|
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagNode';
|
|
34148
34464
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34246,7 +34562,7 @@ export declare type GraphStoreFullProjectAssociatedPrEndNode = {
|
|
|
34246
34562
|
id: Scalars['ID']['output'];
|
|
34247
34563
|
metadata?: Maybe<GraphStoreFullProjectAssociatedPrRelationshipObjectMetadataOutput>;
|
|
34248
34564
|
};
|
|
34249
|
-
export declare type GraphStoreFullProjectAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
34565
|
+
export declare type GraphStoreFullProjectAssociatedPrEndUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
34250
34566
|
export declare type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
34251
34567
|
__typename?: 'GraphStoreFullProjectAssociatedPrNode';
|
|
34252
34568
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34315,7 +34631,7 @@ export declare type GraphStoreFullProjectAssociatedRepoEndNode = {
|
|
|
34315
34631
|
id: Scalars['ID']['output'];
|
|
34316
34632
|
metadata?: Maybe<GraphStoreFullProjectAssociatedRepoRelationshipObjectMetadataOutput>;
|
|
34317
34633
|
};
|
|
34318
|
-
export declare type GraphStoreFullProjectAssociatedRepoEndUnion = DevOpsRepository;
|
|
34634
|
+
export declare type GraphStoreFullProjectAssociatedRepoEndUnion = DevOpsRepository | ExternalRepository;
|
|
34319
34635
|
export declare type GraphStoreFullProjectAssociatedRepoNode = Node & {
|
|
34320
34636
|
__typename?: 'GraphStoreFullProjectAssociatedRepoNode';
|
|
34321
34637
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34487,7 +34803,7 @@ export declare type GraphStoreFullProjectAssociatedVulnerabilityEndNode = {
|
|
|
34487
34803
|
id: Scalars['ID']['output'];
|
|
34488
34804
|
metadata?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityRelationshipObjectMetadataOutput>;
|
|
34489
34805
|
};
|
|
34490
|
-
export declare type GraphStoreFullProjectAssociatedVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails;
|
|
34806
|
+
export declare type GraphStoreFullProjectAssociatedVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
34491
34807
|
export declare type GraphStoreFullProjectAssociatedVulnerabilityNode = Node & {
|
|
34492
34808
|
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityNode';
|
|
34493
34809
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34549,7 +34865,7 @@ export declare type GraphStoreFullProjectDisassociatedRepoEndNode = {
|
|
|
34549
34865
|
data?: Maybe<GraphStoreFullProjectDisassociatedRepoEndUnion>;
|
|
34550
34866
|
id: Scalars['ID']['output'];
|
|
34551
34867
|
};
|
|
34552
|
-
export declare type GraphStoreFullProjectDisassociatedRepoEndUnion = DevOpsRepository;
|
|
34868
|
+
export declare type GraphStoreFullProjectDisassociatedRepoEndUnion = DevOpsRepository | ExternalRepository;
|
|
34553
34869
|
export declare type GraphStoreFullProjectDisassociatedRepoNode = Node & {
|
|
34554
34870
|
__typename?: 'GraphStoreFullProjectDisassociatedRepoNode';
|
|
34555
34871
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34582,7 +34898,7 @@ export declare type GraphStoreFullProjectDocumentationEntityEndNode = {
|
|
|
34582
34898
|
data?: Maybe<GraphStoreFullProjectDocumentationEntityEndUnion>;
|
|
34583
34899
|
id: Scalars['ID']['output'];
|
|
34584
34900
|
};
|
|
34585
|
-
export declare type GraphStoreFullProjectDocumentationEntityEndUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument;
|
|
34901
|
+
export declare type GraphStoreFullProjectDocumentationEntityEndUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
34586
34902
|
export declare type GraphStoreFullProjectDocumentationEntityNode = Node & {
|
|
34587
34903
|
__typename?: 'GraphStoreFullProjectDocumentationEntityNode';
|
|
34588
34904
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34682,7 +34998,7 @@ export declare type GraphStoreFullProjectExplicitlyAssociatedRepoEndNode = {
|
|
|
34682
34998
|
id: Scalars['ID']['output'];
|
|
34683
34999
|
metadata?: Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoRelationshipObjectMetadataOutput>;
|
|
34684
35000
|
};
|
|
34685
|
-
export declare type GraphStoreFullProjectExplicitlyAssociatedRepoEndUnion = DevOpsRepository;
|
|
35001
|
+
export declare type GraphStoreFullProjectExplicitlyAssociatedRepoEndUnion = DevOpsRepository | ExternalRepository;
|
|
34686
35002
|
export declare type GraphStoreFullProjectExplicitlyAssociatedRepoNode = Node & {
|
|
34687
35003
|
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoNode';
|
|
34688
35004
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34838,7 +35154,7 @@ export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndN
|
|
|
34838
35154
|
id: Scalars['ID']['output'];
|
|
34839
35155
|
metadata?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityRelationshipObjectMetadataOutput>;
|
|
34840
35156
|
};
|
|
34841
|
-
export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails;
|
|
35157
|
+
export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
34842
35158
|
export declare type GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode = Node & {
|
|
34843
35159
|
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode';
|
|
34844
35160
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34962,9 +35278,11 @@ export declare type GraphStoreFullSprintAssociatedBuildEdge = {
|
|
|
34962
35278
|
};
|
|
34963
35279
|
export declare type GraphStoreFullSprintAssociatedBuildEndNode = {
|
|
34964
35280
|
__typename?: 'GraphStoreFullSprintAssociatedBuildEndNode';
|
|
35281
|
+
data?: Maybe<GraphStoreFullSprintAssociatedBuildEndUnion>;
|
|
34965
35282
|
id: Scalars['ID']['output'];
|
|
34966
35283
|
metadata?: Maybe<GraphStoreFullSprintAssociatedBuildRelationshipObjectMetadataOutput>;
|
|
34967
35284
|
};
|
|
35285
|
+
export declare type GraphStoreFullSprintAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
34968
35286
|
export declare type GraphStoreFullSprintAssociatedBuildNode = Node & {
|
|
34969
35287
|
__typename?: 'GraphStoreFullSprintAssociatedBuildNode';
|
|
34970
35288
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35087,7 +35405,7 @@ export declare type GraphStoreFullSprintAssociatedFeatureFlagEndNode = {
|
|
|
35087
35405
|
data?: Maybe<GraphStoreFullSprintAssociatedFeatureFlagEndUnion>;
|
|
35088
35406
|
id: Scalars['ID']['output'];
|
|
35089
35407
|
};
|
|
35090
|
-
export declare type GraphStoreFullSprintAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
35408
|
+
export declare type GraphStoreFullSprintAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
35091
35409
|
export declare type GraphStoreFullSprintAssociatedFeatureFlagNode = Node & {
|
|
35092
35410
|
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagNode';
|
|
35093
35411
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35123,7 +35441,7 @@ export declare type GraphStoreFullSprintAssociatedPrEndNode = {
|
|
|
35123
35441
|
id: Scalars['ID']['output'];
|
|
35124
35442
|
metadata?: Maybe<GraphStoreFullSprintAssociatedPrRelationshipObjectMetadataOutput>;
|
|
35125
35443
|
};
|
|
35126
|
-
export declare type GraphStoreFullSprintAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
35444
|
+
export declare type GraphStoreFullSprintAssociatedPrEndUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
35127
35445
|
export declare type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
35128
35446
|
__typename?: 'GraphStoreFullSprintAssociatedPrNode';
|
|
35129
35447
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35190,7 +35508,7 @@ export declare type GraphStoreFullSprintAssociatedVulnerabilityEndNode = {
|
|
|
35190
35508
|
id: Scalars['ID']['output'];
|
|
35191
35509
|
metadata?: Maybe<GraphStoreFullSprintAssociatedVulnerabilityRelationshipObjectMetadataOutput>;
|
|
35192
35510
|
};
|
|
35193
|
-
export declare type GraphStoreFullSprintAssociatedVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails;
|
|
35511
|
+
export declare type GraphStoreFullSprintAssociatedVulnerabilityEndUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
35194
35512
|
export declare type GraphStoreFullSprintAssociatedVulnerabilityNode = Node & {
|
|
35195
35513
|
__typename?: 'GraphStoreFullSprintAssociatedVulnerabilityNode';
|
|
35196
35514
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35416,7 +35734,7 @@ export declare type GraphStoreFullTestPerfhammerMaterializationAStartNode = {
|
|
|
35416
35734
|
data?: Maybe<GraphStoreFullTestPerfhammerMaterializationAStartUnion>;
|
|
35417
35735
|
id: Scalars['ID']['output'];
|
|
35418
35736
|
};
|
|
35419
|
-
export declare type GraphStoreFullTestPerfhammerMaterializationAStartUnion = DevOpsPullRequestDetails;
|
|
35737
|
+
export declare type GraphStoreFullTestPerfhammerMaterializationAStartUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
35420
35738
|
export declare type GraphStoreFullTestPerfhammerMaterializationBConnection = HasPageInfo & HasTotal & {
|
|
35421
35739
|
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBConnection';
|
|
35422
35740
|
edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationBEdge>>;
|
|
@@ -35478,7 +35796,7 @@ export declare type GraphStoreFullTestPerfhammerMaterializationStartNode = {
|
|
|
35478
35796
|
data?: Maybe<GraphStoreFullTestPerfhammerMaterializationStartUnion>;
|
|
35479
35797
|
id: Scalars['ID']['output'];
|
|
35480
35798
|
};
|
|
35481
|
-
export declare type GraphStoreFullTestPerfhammerMaterializationStartUnion = DevOpsPullRequestDetails;
|
|
35799
|
+
export declare type GraphStoreFullTestPerfhammerMaterializationStartUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
35482
35800
|
export declare type GraphStoreFullTestPerfhammerRelationshipConnection = HasPageInfo & {
|
|
35483
35801
|
__typename?: 'GraphStoreFullTestPerfhammerRelationshipConnection';
|
|
35484
35802
|
edges: Array<Maybe<GraphStoreFullTestPerfhammerRelationshipEdge>>;
|
|
@@ -35492,8 +35810,10 @@ export declare type GraphStoreFullTestPerfhammerRelationshipEdge = {
|
|
|
35492
35810
|
};
|
|
35493
35811
|
export declare type GraphStoreFullTestPerfhammerRelationshipEndNode = {
|
|
35494
35812
|
__typename?: 'GraphStoreFullTestPerfhammerRelationshipEndNode';
|
|
35813
|
+
data?: Maybe<GraphStoreFullTestPerfhammerRelationshipEndUnion>;
|
|
35495
35814
|
id: Scalars['ID']['output'];
|
|
35496
35815
|
};
|
|
35816
|
+
export declare type GraphStoreFullTestPerfhammerRelationshipEndUnion = ExternalBuildInfo;
|
|
35497
35817
|
export declare type GraphStoreFullTestPerfhammerRelationshipNode = Node & {
|
|
35498
35818
|
__typename?: 'GraphStoreFullTestPerfhammerRelationshipNode';
|
|
35499
35819
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35560,8 +35880,10 @@ export declare type GraphStoreFullVersionAssociatedBuildEdge = {
|
|
|
35560
35880
|
};
|
|
35561
35881
|
export declare type GraphStoreFullVersionAssociatedBuildEndNode = {
|
|
35562
35882
|
__typename?: 'GraphStoreFullVersionAssociatedBuildEndNode';
|
|
35883
|
+
data?: Maybe<GraphStoreFullVersionAssociatedBuildEndUnion>;
|
|
35563
35884
|
id: Scalars['ID']['output'];
|
|
35564
35885
|
};
|
|
35886
|
+
export declare type GraphStoreFullVersionAssociatedBuildEndUnion = ExternalBuildInfo;
|
|
35565
35887
|
export declare type GraphStoreFullVersionAssociatedBuildNode = Node & {
|
|
35566
35888
|
__typename?: 'GraphStoreFullVersionAssociatedBuildNode';
|
|
35567
35889
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35676,7 +35998,7 @@ export declare type GraphStoreFullVersionAssociatedDesignEndNode = {
|
|
|
35676
35998
|
id: Scalars['ID']['output'];
|
|
35677
35999
|
metadata?: Maybe<GraphStoreFullVersionAssociatedDesignRelationshipObjectMetadataOutput>;
|
|
35678
36000
|
};
|
|
35679
|
-
export declare type GraphStoreFullVersionAssociatedDesignEndUnion = DevOpsDesign;
|
|
36001
|
+
export declare type GraphStoreFullVersionAssociatedDesignEndUnion = DevOpsDesign | ExternalDesign;
|
|
35680
36002
|
export declare type GraphStoreFullVersionAssociatedDesignNode = Node & {
|
|
35681
36003
|
__typename?: 'GraphStoreFullVersionAssociatedDesignNode';
|
|
35682
36004
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35715,7 +36037,7 @@ export declare type GraphStoreFullVersionAssociatedFeatureFlagEndNode = {
|
|
|
35715
36037
|
data?: Maybe<GraphStoreFullVersionAssociatedFeatureFlagEndUnion>;
|
|
35716
36038
|
id: Scalars['ID']['output'];
|
|
35717
36039
|
};
|
|
35718
|
-
export declare type GraphStoreFullVersionAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
36040
|
+
export declare type GraphStoreFullVersionAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
35719
36041
|
export declare type GraphStoreFullVersionAssociatedFeatureFlagNode = Node & {
|
|
35720
36042
|
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagNode';
|
|
35721
36043
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35779,7 +36101,7 @@ export declare type GraphStoreFullVersionAssociatedPullRequestEndNode = {
|
|
|
35779
36101
|
data?: Maybe<GraphStoreFullVersionAssociatedPullRequestEndUnion>;
|
|
35780
36102
|
id: Scalars['ID']['output'];
|
|
35781
36103
|
};
|
|
35782
|
-
export declare type GraphStoreFullVersionAssociatedPullRequestEndUnion = DevOpsPullRequestDetails;
|
|
36104
|
+
export declare type GraphStoreFullVersionAssociatedPullRequestEndUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
35783
36105
|
export declare type GraphStoreFullVersionAssociatedPullRequestNode = Node & {
|
|
35784
36106
|
__typename?: 'GraphStoreFullVersionAssociatedPullRequestNode';
|
|
35785
36107
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35841,7 +36163,7 @@ export declare type GraphStoreFullVersionUserAssociatedFeatureFlagEndNode = {
|
|
|
35841
36163
|
data?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagEndUnion>;
|
|
35842
36164
|
id: Scalars['ID']['output'];
|
|
35843
36165
|
};
|
|
35844
|
-
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag;
|
|
36166
|
+
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagEndUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
35845
36167
|
export declare type GraphStoreFullVersionUserAssociatedFeatureFlagNode = Node & {
|
|
35846
36168
|
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagNode';
|
|
35847
36169
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -35901,7 +36223,7 @@ export declare type GraphStoreFullVulnerabilityAssociatedIssueStartNode = {
|
|
|
35901
36223
|
id: Scalars['ID']['output'];
|
|
35902
36224
|
metadata?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueRelationshipSubjectMetadataOutput>;
|
|
35903
36225
|
};
|
|
35904
|
-
export declare type GraphStoreFullVulnerabilityAssociatedIssueStartUnion = DevOpsSecurityVulnerabilityDetails;
|
|
36226
|
+
export declare type GraphStoreFullVulnerabilityAssociatedIssueStartUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
35905
36227
|
export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilitySeverityOutput {
|
|
35906
36228
|
Critical = "CRITICAL",
|
|
35907
36229
|
High = "HIGH",
|
|
@@ -36045,6 +36367,9 @@ export declare type GraphStoreIssueChangesComponentSortInput = {
|
|
|
36045
36367
|
export declare type GraphStoreIssueHasAssigneeSortInput = {
|
|
36046
36368
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36047
36369
|
};
|
|
36370
|
+
export declare type GraphStoreIssueInStatusSortInput = {
|
|
36371
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36372
|
+
};
|
|
36048
36373
|
export declare type GraphStoreIssueRecursiveAssociatedDeploymentSortInput = {
|
|
36049
36374
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
36050
36375
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -37210,7 +37535,7 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge =
|
|
|
37210
37535
|
node?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion>;
|
|
37211
37536
|
};
|
|
37212
37537
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion = CompassComponent;
|
|
37213
|
-
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument;
|
|
37538
|
+
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
37214
37539
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
37215
37540
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
37216
37541
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentEdge>>>;
|
|
@@ -37623,6 +37948,19 @@ export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
|
37623
37948
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseUnion>;
|
|
37624
37949
|
};
|
|
37625
37950
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseUnion = JiraIssue;
|
|
37951
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBuildConnection = HasPageInfo & {
|
|
37952
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildConnection';
|
|
37953
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBuildEdge>>>;
|
|
37954
|
+
pageInfo: PageInfo;
|
|
37955
|
+
};
|
|
37956
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBuildEdge = {
|
|
37957
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildEdge';
|
|
37958
|
+
createdAt: Scalars['DateTime']['output'];
|
|
37959
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37960
|
+
id: Scalars['ID']['output'];
|
|
37961
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
37962
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildUnion>;
|
|
37963
|
+
};
|
|
37626
37964
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseConnection = HasPageInfo & {
|
|
37627
37965
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildInverseConnection';
|
|
37628
37966
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseEdge>>>;
|
|
@@ -37637,6 +37975,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseEdge = {
|
|
|
37637
37975
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseUnion>;
|
|
37638
37976
|
};
|
|
37639
37977
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseUnion = JiraIssue;
|
|
37978
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBuildUnion = ExternalBuildInfo;
|
|
37640
37979
|
export declare type GraphStoreSimplifiedIssueAssociatedCommitConnection = HasPageInfo & {
|
|
37641
37980
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitConnection';
|
|
37642
37981
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedCommitEdge>>>;
|
|
@@ -37724,7 +38063,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseEdge = {
|
|
|
37724
38063
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseUnion>;
|
|
37725
38064
|
};
|
|
37726
38065
|
export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseUnion = JiraIssue;
|
|
37727
|
-
export declare type GraphStoreSimplifiedIssueAssociatedDesignUnion = DevOpsDesign;
|
|
38066
|
+
export declare type GraphStoreSimplifiedIssueAssociatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
37728
38067
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
37729
38068
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagConnection';
|
|
37730
38069
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge>>>;
|
|
@@ -37752,7 +38091,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge =
|
|
|
37752
38091
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion>;
|
|
37753
38092
|
};
|
|
37754
38093
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion = JiraIssue;
|
|
37755
|
-
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
38094
|
+
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
37756
38095
|
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkConnection = HasPageInfo & {
|
|
37757
38096
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkConnection';
|
|
37758
38097
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge>>>;
|
|
@@ -37808,7 +38147,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
|
37808
38147
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseUnion>;
|
|
37809
38148
|
};
|
|
37810
38149
|
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseUnion = JiraIssue;
|
|
37811
|
-
export declare type GraphStoreSimplifiedIssueAssociatedPrUnion = DevOpsPullRequestDetails;
|
|
38150
|
+
export declare type GraphStoreSimplifiedIssueAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
37812
38151
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
37813
38152
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection';
|
|
37814
38153
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge>>>;
|
|
@@ -37883,6 +38222,20 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
|
|
|
37883
38222
|
};
|
|
37884
38223
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
|
|
37885
38224
|
export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
38225
|
+
export declare type GraphStoreSimplifiedIssueInStatusInverseConnection = HasPageInfo & {
|
|
38226
|
+
__typename?: 'GraphStoreSimplifiedIssueInStatusInverseConnection';
|
|
38227
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueInStatusInverseEdge>>>;
|
|
38228
|
+
pageInfo: PageInfo;
|
|
38229
|
+
};
|
|
38230
|
+
export declare type GraphStoreSimplifiedIssueInStatusInverseEdge = {
|
|
38231
|
+
__typename?: 'GraphStoreSimplifiedIssueInStatusInverseEdge';
|
|
38232
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38233
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38234
|
+
id: Scalars['ID']['output'];
|
|
38235
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38236
|
+
node?: Maybe<GraphStoreSimplifiedIssueInStatusInverseUnion>;
|
|
38237
|
+
};
|
|
38238
|
+
export declare type GraphStoreSimplifiedIssueInStatusInverseUnion = JiraIssue;
|
|
37886
38239
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
37887
38240
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection';
|
|
37888
38241
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge>>>;
|
|
@@ -37946,7 +38299,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInver
|
|
|
37946
38299
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInverseUnion>;
|
|
37947
38300
|
};
|
|
37948
38301
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInverseUnion = JiraIssue;
|
|
37949
|
-
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
38302
|
+
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
37950
38303
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
37951
38304
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedPrConnection';
|
|
37952
38305
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrEdge>>>;
|
|
@@ -37978,7 +38331,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge =
|
|
|
37978
38331
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion>;
|
|
37979
38332
|
};
|
|
37980
38333
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion = JiraIssue;
|
|
37981
|
-
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion = DevOpsPullRequestDetails;
|
|
38334
|
+
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
37982
38335
|
export declare type GraphStoreSimplifiedIssueToWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
37983
38336
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardConnection';
|
|
37984
38337
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueToWhiteboardEdge>>>;
|
|
@@ -38355,8 +38708,8 @@ export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentInverseEdg
|
|
|
38355
38708
|
lastUpdated: Scalars['DateTime']['output'];
|
|
38356
38709
|
node?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentInverseUnion>;
|
|
38357
38710
|
};
|
|
38358
|
-
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentInverseUnion = DevOpsDocument;
|
|
38359
|
-
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentUnion = DevOpsDocument;
|
|
38711
|
+
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentInverseUnion = DevOpsDocument | ExternalDocument;
|
|
38712
|
+
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
38360
38713
|
export declare type GraphStoreSimplifiedParentIssueHasChildIssueConnection = HasPageInfo & {
|
|
38361
38714
|
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueConnection';
|
|
38362
38715
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentIssueHasChildIssueEdge>>>;
|
|
@@ -38411,8 +38764,8 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
38411
38764
|
lastUpdated: Scalars['DateTime']['output'];
|
|
38412
38765
|
node?: Maybe<GraphStoreSimplifiedPrInRepoInverseUnion>;
|
|
38413
38766
|
};
|
|
38414
|
-
export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails;
|
|
38415
|
-
export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository;
|
|
38767
|
+
export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
38768
|
+
export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
38416
38769
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
38417
38770
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchInverseConnection';
|
|
38418
38771
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseEdge>>>;
|
|
@@ -38429,6 +38782,21 @@ export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseEdge = {
|
|
|
38429
38782
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseUnion>;
|
|
38430
38783
|
};
|
|
38431
38784
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseUnion = JiraProject;
|
|
38785
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
38786
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildConnection';
|
|
38787
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBuildEdge>>>;
|
|
38788
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
38789
|
+
pageInfo: PageInfo;
|
|
38790
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
38791
|
+
};
|
|
38792
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBuildEdge = {
|
|
38793
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildEdge';
|
|
38794
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38795
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38796
|
+
id: Scalars['ID']['output'];
|
|
38797
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38798
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildUnion>;
|
|
38799
|
+
};
|
|
38432
38800
|
export declare type GraphStoreSimplifiedProjectAssociatedBuildInverseConnection = HasPageInfo & HasTotal & {
|
|
38433
38801
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildInverseConnection';
|
|
38434
38802
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBuildInverseEdge>>>;
|
|
@@ -38445,6 +38813,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBuildInverseEdge = {
|
|
|
38445
38813
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildInverseUnion>;
|
|
38446
38814
|
};
|
|
38447
38815
|
export declare type GraphStoreSimplifiedProjectAssociatedBuildInverseUnion = JiraProject;
|
|
38816
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBuildUnion = ExternalBuildInfo;
|
|
38448
38817
|
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
38449
38818
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentConnection';
|
|
38450
38819
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentEdge>>>;
|
|
@@ -38508,7 +38877,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseEdge
|
|
|
38508
38877
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseUnion>;
|
|
38509
38878
|
};
|
|
38510
38879
|
export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseUnion = JiraProject;
|
|
38511
|
-
export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
38880
|
+
export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
38512
38881
|
export declare type GraphStoreSimplifiedProjectAssociatedIncidentConnection = HasPageInfo & HasTotal & {
|
|
38513
38882
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedIncidentConnection';
|
|
38514
38883
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedIncidentEdge>>>;
|
|
@@ -38604,7 +38973,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedPrInverseEdge = {
|
|
|
38604
38973
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedPrInverseUnion>;
|
|
38605
38974
|
};
|
|
38606
38975
|
export declare type GraphStoreSimplifiedProjectAssociatedPrInverseUnion = JiraProject;
|
|
38607
|
-
export declare type GraphStoreSimplifiedProjectAssociatedPrUnion = DevOpsPullRequestDetails;
|
|
38976
|
+
export declare type GraphStoreSimplifiedProjectAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
38608
38977
|
export declare type GraphStoreSimplifiedProjectAssociatedRepoConnection = HasPageInfo & HasTotal & {
|
|
38609
38978
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedRepoConnection';
|
|
38610
38979
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedRepoEdge>>>;
|
|
@@ -38636,7 +39005,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedRepoInverseEdge = {
|
|
|
38636
39005
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoInverseUnion>;
|
|
38637
39006
|
};
|
|
38638
39007
|
export declare type GraphStoreSimplifiedProjectAssociatedRepoInverseUnion = JiraProject;
|
|
38639
|
-
export declare type GraphStoreSimplifiedProjectAssociatedRepoUnion = DevOpsRepository;
|
|
39008
|
+
export declare type GraphStoreSimplifiedProjectAssociatedRepoUnion = DevOpsRepository | ExternalRepository;
|
|
38640
39009
|
export declare type GraphStoreSimplifiedProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
38641
39010
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceConnection';
|
|
38642
39011
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedServiceEdge>>>;
|
|
@@ -38780,7 +39149,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseEdg
|
|
|
38780
39149
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseUnion>;
|
|
38781
39150
|
};
|
|
38782
39151
|
export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseUnion = JiraProject;
|
|
38783
|
-
export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails;
|
|
39152
|
+
export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
38784
39153
|
export declare type GraphStoreSimplifiedProjectDisassociatedRepoConnection = HasPageInfo & HasTotal & {
|
|
38785
39154
|
__typename?: 'GraphStoreSimplifiedProjectDisassociatedRepoConnection';
|
|
38786
39155
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectDisassociatedRepoEdge>>>;
|
|
@@ -38812,7 +39181,7 @@ export declare type GraphStoreSimplifiedProjectDisassociatedRepoInverseEdge = {
|
|
|
38812
39181
|
node?: Maybe<GraphStoreSimplifiedProjectDisassociatedRepoInverseUnion>;
|
|
38813
39182
|
};
|
|
38814
39183
|
export declare type GraphStoreSimplifiedProjectDisassociatedRepoInverseUnion = JiraProject;
|
|
38815
|
-
export declare type GraphStoreSimplifiedProjectDisassociatedRepoUnion = DevOpsRepository;
|
|
39184
|
+
export declare type GraphStoreSimplifiedProjectDisassociatedRepoUnion = DevOpsRepository | ExternalRepository;
|
|
38816
39185
|
export declare type GraphStoreSimplifiedProjectDocumentationEntityConnection = HasPageInfo & HasTotal & {
|
|
38817
39186
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationEntityConnection';
|
|
38818
39187
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectDocumentationEntityEdge>>>;
|
|
@@ -38844,7 +39213,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseEdge =
|
|
|
38844
39213
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityInverseUnion>;
|
|
38845
39214
|
};
|
|
38846
39215
|
export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseUnion = JiraProject;
|
|
38847
|
-
export declare type GraphStoreSimplifiedProjectDocumentationEntityUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument;
|
|
39216
|
+
export declare type GraphStoreSimplifiedProjectDocumentationEntityUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
38848
39217
|
export declare type GraphStoreSimplifiedProjectDocumentationPageConnection = HasPageInfo & HasTotal & {
|
|
38849
39218
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageConnection';
|
|
38850
39219
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectDocumentationPageEdge>>>;
|
|
@@ -38940,7 +39309,7 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEd
|
|
|
38940
39309
|
node?: Maybe<GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion>;
|
|
38941
39310
|
};
|
|
38942
39311
|
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion = JiraProject;
|
|
38943
|
-
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoUnion = DevOpsRepository;
|
|
39312
|
+
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoUnion = DevOpsRepository | ExternalRepository;
|
|
38944
39313
|
export declare type GraphStoreSimplifiedProjectHasIssueConnection = HasPageInfo & HasTotal & {
|
|
38945
39314
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueConnection';
|
|
38946
39315
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasIssueEdge>>>;
|
|
@@ -39114,7 +39483,7 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
39114
39483
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39115
39484
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
39116
39485
|
};
|
|
39117
|
-
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails;
|
|
39486
|
+
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
39118
39487
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
|
|
39119
39488
|
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
39120
39489
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
@@ -39293,7 +39662,7 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdg
|
|
|
39293
39662
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39294
39663
|
node?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion>;
|
|
39295
39664
|
};
|
|
39296
|
-
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion = DevOpsPullRequestDetails;
|
|
39665
|
+
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39297
39666
|
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageUnion = ConfluencePage;
|
|
39298
39667
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectConnection = HasPageInfo & {
|
|
39299
39668
|
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectConnection';
|
|
@@ -39323,6 +39692,22 @@ export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge =
|
|
|
39323
39692
|
};
|
|
39324
39693
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseUnion = ConfluenceSpace;
|
|
39325
39694
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectUnion = JiraProject;
|
|
39695
|
+
export declare type GraphStoreSimplifiedSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
39696
|
+
__typename?: 'GraphStoreSimplifiedSprintAssociatedBuildConnection';
|
|
39697
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedBuildEdge>>>;
|
|
39698
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39699
|
+
pageInfo: PageInfo;
|
|
39700
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39701
|
+
};
|
|
39702
|
+
export declare type GraphStoreSimplifiedSprintAssociatedBuildEdge = {
|
|
39703
|
+
__typename?: 'GraphStoreSimplifiedSprintAssociatedBuildEdge';
|
|
39704
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39705
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39706
|
+
id: Scalars['ID']['output'];
|
|
39707
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39708
|
+
node?: Maybe<GraphStoreSimplifiedSprintAssociatedBuildUnion>;
|
|
39709
|
+
};
|
|
39710
|
+
export declare type GraphStoreSimplifiedSprintAssociatedBuildUnion = ExternalBuildInfo;
|
|
39326
39711
|
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
39327
39712
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedDeploymentConnection';
|
|
39328
39713
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentEdge>>>;
|
|
@@ -39354,7 +39739,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge = {
|
|
|
39354
39739
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39355
39740
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedFeatureFlagUnion>;
|
|
39356
39741
|
};
|
|
39357
|
-
export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
39742
|
+
export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
39358
39743
|
export declare type GraphStoreSimplifiedSprintAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
39359
39744
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedPrConnection';
|
|
39360
39745
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedPrEdge>>>;
|
|
@@ -39370,7 +39755,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedPrEdge = {
|
|
|
39370
39755
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39371
39756
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedPrUnion>;
|
|
39372
39757
|
};
|
|
39373
|
-
export declare type GraphStoreSimplifiedSprintAssociatedPrUnion = DevOpsPullRequestDetails;
|
|
39758
|
+
export declare type GraphStoreSimplifiedSprintAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39374
39759
|
export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityConnection = HasPageInfo & HasTotal & {
|
|
39375
39760
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedVulnerabilityConnection';
|
|
39376
39761
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge>>>;
|
|
@@ -39386,7 +39771,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge = {
|
|
|
39386
39771
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39387
39772
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion>;
|
|
39388
39773
|
};
|
|
39389
|
-
export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails;
|
|
39774
|
+
export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
39390
39775
|
export declare type GraphStoreSimplifiedSprintContainsIssueConnection = HasPageInfo & HasTotal & {
|
|
39391
39776
|
__typename?: 'GraphStoreSimplifiedSprintContainsIssueConnection';
|
|
39392
39777
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintContainsIssueEdge>>>;
|
|
@@ -39557,7 +39942,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseEdg
|
|
|
39557
39942
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39558
39943
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion>;
|
|
39559
39944
|
};
|
|
39560
|
-
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion = DevOpsPullRequestDetails;
|
|
39945
|
+
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39561
39946
|
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAUnion = ExternalCommit;
|
|
39562
39947
|
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationBInverseConnection = HasPageInfo & HasTotal & {
|
|
39563
39948
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationBInverseConnection';
|
|
@@ -39590,7 +39975,20 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationInverseEdge
|
|
|
39590
39975
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39591
39976
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationInverseUnion>;
|
|
39592
39977
|
};
|
|
39593
|
-
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationInverseUnion = DevOpsPullRequestDetails;
|
|
39978
|
+
export declare type GraphStoreSimplifiedTestPerfhammerMaterializationInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39979
|
+
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipConnection = HasPageInfo & {
|
|
39980
|
+
__typename?: 'GraphStoreSimplifiedTestPerfhammerRelationshipConnection';
|
|
39981
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipEdge>>>;
|
|
39982
|
+
pageInfo: PageInfo;
|
|
39983
|
+
};
|
|
39984
|
+
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipEdge = {
|
|
39985
|
+
__typename?: 'GraphStoreSimplifiedTestPerfhammerRelationshipEdge';
|
|
39986
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39987
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39988
|
+
id: Scalars['ID']['output'];
|
|
39989
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39990
|
+
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipUnion>;
|
|
39991
|
+
};
|
|
39594
39992
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseConnection = HasPageInfo & {
|
|
39595
39993
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerRelationshipInverseConnection';
|
|
39596
39994
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge>>>;
|
|
@@ -39605,6 +40003,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
39605
40003
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
|
|
39606
40004
|
};
|
|
39607
40005
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
|
|
40006
|
+
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipUnion = ExternalBuildInfo;
|
|
39608
40007
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
39609
40008
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
39610
40009
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrEdge>>>;
|
|
@@ -39632,7 +40031,7 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
39632
40031
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseUnion>;
|
|
39633
40032
|
};
|
|
39634
40033
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39635
|
-
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
|
|
40034
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39636
40035
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
39637
40036
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
39638
40037
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
@@ -39804,7 +40203,7 @@ export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
|
|
|
39804
40203
|
node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseUnion>;
|
|
39805
40204
|
};
|
|
39806
40205
|
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39807
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails;
|
|
40206
|
+
export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39808
40207
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
39809
40208
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
39810
40209
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -39892,7 +40291,91 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
39892
40291
|
node?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseUnion>;
|
|
39893
40292
|
};
|
|
39894
40293
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39895
|
-
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails;
|
|
40294
|
+
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
40295
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
40296
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
40297
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
40298
|
+
pageInfo: PageInfo;
|
|
40299
|
+
};
|
|
40300
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalEdge = {
|
|
40301
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalEdge';
|
|
40302
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40303
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40304
|
+
id: Scalars['ID']['output'];
|
|
40305
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40306
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalUnion>;
|
|
40307
|
+
};
|
|
40308
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection = HasPageInfo & {
|
|
40309
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection';
|
|
40310
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseEdge>>>;
|
|
40311
|
+
pageInfo: PageInfo;
|
|
40312
|
+
};
|
|
40313
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalInverseEdge = {
|
|
40314
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalInverseEdge';
|
|
40315
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40316
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40317
|
+
id: Scalars['ID']['output'];
|
|
40318
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40319
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseUnion>;
|
|
40320
|
+
};
|
|
40321
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40322
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasGoalUnion = TownsquareGoal;
|
|
40323
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectConnection = HasPageInfo & {
|
|
40324
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasProjectConnection';
|
|
40325
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasProjectEdge>>>;
|
|
40326
|
+
pageInfo: PageInfo;
|
|
40327
|
+
};
|
|
40328
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectEdge = {
|
|
40329
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasProjectEdge';
|
|
40330
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40331
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40332
|
+
id: Scalars['ID']['output'];
|
|
40333
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40334
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectUnion>;
|
|
40335
|
+
};
|
|
40336
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectInverseConnection = HasPageInfo & {
|
|
40337
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasProjectInverseConnection';
|
|
40338
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasProjectInverseEdge>>>;
|
|
40339
|
+
pageInfo: PageInfo;
|
|
40340
|
+
};
|
|
40341
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectInverseEdge = {
|
|
40342
|
+
__typename?: 'GraphStoreSimplifiedUserViewedAtlasProjectInverseEdge';
|
|
40343
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40344
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40345
|
+
id: Scalars['ID']['output'];
|
|
40346
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40347
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectInverseUnion>;
|
|
40348
|
+
};
|
|
40349
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40350
|
+
export declare type GraphStoreSimplifiedUserViewedAtlasProjectUnion = TownsquareProject;
|
|
40351
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostConnection = HasPageInfo & {
|
|
40352
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluenceBlogpostConnection';
|
|
40353
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostEdge>>>;
|
|
40354
|
+
pageInfo: PageInfo;
|
|
40355
|
+
};
|
|
40356
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostEdge = {
|
|
40357
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluenceBlogpostEdge';
|
|
40358
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40359
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40360
|
+
id: Scalars['ID']['output'];
|
|
40361
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40362
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostUnion>;
|
|
40363
|
+
};
|
|
40364
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
40365
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection';
|
|
40366
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseEdge>>>;
|
|
40367
|
+
pageInfo: PageInfo;
|
|
40368
|
+
};
|
|
40369
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseEdge = {
|
|
40370
|
+
__typename?: 'GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseEdge';
|
|
40371
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40372
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40373
|
+
id: Scalars['ID']['output'];
|
|
40374
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40375
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseUnion>;
|
|
40376
|
+
};
|
|
40377
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40378
|
+
export declare type GraphStoreSimplifiedUserViewedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
39896
40379
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageConnection = HasPageInfo & {
|
|
39897
40380
|
__typename?: 'GraphStoreSimplifiedUserViewedConfluencePageConnection';
|
|
39898
40381
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedConfluencePageEdge>>>;
|
|
@@ -39921,6 +40404,34 @@ export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseEdge = {
|
|
|
39921
40404
|
};
|
|
39922
40405
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39923
40406
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageUnion = ConfluencePage;
|
|
40407
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueConnection = HasPageInfo & {
|
|
40408
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueConnection';
|
|
40409
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueEdge>>>;
|
|
40410
|
+
pageInfo: PageInfo;
|
|
40411
|
+
};
|
|
40412
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueEdge = {
|
|
40413
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueEdge';
|
|
40414
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40415
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40416
|
+
id: Scalars['ID']['output'];
|
|
40417
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40418
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueUnion>;
|
|
40419
|
+
};
|
|
40420
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseConnection = HasPageInfo & {
|
|
40421
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueInverseConnection';
|
|
40422
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseEdge>>>;
|
|
40423
|
+
pageInfo: PageInfo;
|
|
40424
|
+
};
|
|
40425
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
40426
|
+
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueInverseEdge';
|
|
40427
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40428
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40429
|
+
id: Scalars['ID']['output'];
|
|
40430
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40431
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseUnion>;
|
|
40432
|
+
};
|
|
40433
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40434
|
+
export declare type GraphStoreSimplifiedUserViewedJiraIssueUnion = JiraIssue;
|
|
39924
40435
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
39925
40436
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
39926
40437
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -39937,6 +40448,21 @@ export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseEdge = {
|
|
|
39937
40448
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseUnion>;
|
|
39938
40449
|
};
|
|
39939
40450
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseUnion = JiraVersion;
|
|
40451
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
40452
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildConnection';
|
|
40453
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBuildEdge>>>;
|
|
40454
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
40455
|
+
pageInfo: PageInfo;
|
|
40456
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40457
|
+
};
|
|
40458
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBuildEdge = {
|
|
40459
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildEdge';
|
|
40460
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40461
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40462
|
+
id: Scalars['ID']['output'];
|
|
40463
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40464
|
+
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildUnion>;
|
|
40465
|
+
};
|
|
39940
40466
|
export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseConnection = HasPageInfo & HasTotal & {
|
|
39941
40467
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildInverseConnection';
|
|
39942
40468
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseEdge>>>;
|
|
@@ -39953,6 +40479,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseEdge = {
|
|
|
39953
40479
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseUnion>;
|
|
39954
40480
|
};
|
|
39955
40481
|
export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseUnion = JiraVersion;
|
|
40482
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBuildUnion = ExternalBuildInfo;
|
|
39956
40483
|
export declare type GraphStoreSimplifiedVersionAssociatedCommitConnection = HasPageInfo & HasTotal & {
|
|
39957
40484
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedCommitConnection';
|
|
39958
40485
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedCommitEdge>>>;
|
|
@@ -40048,7 +40575,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDesignInverseEdge = {
|
|
|
40048
40575
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignInverseUnion>;
|
|
40049
40576
|
};
|
|
40050
40577
|
export declare type GraphStoreSimplifiedVersionAssociatedDesignInverseUnion = JiraVersion;
|
|
40051
|
-
export declare type GraphStoreSimplifiedVersionAssociatedDesignUnion = DevOpsDesign;
|
|
40578
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
40052
40579
|
export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
40053
40580
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedFeatureFlagConnection';
|
|
40054
40581
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagEdge>>>;
|
|
@@ -40080,7 +40607,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseEdge
|
|
|
40080
40607
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseUnion>;
|
|
40081
40608
|
};
|
|
40082
40609
|
export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseUnion = JiraVersion;
|
|
40083
|
-
export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
40610
|
+
export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
40084
40611
|
export declare type GraphStoreSimplifiedVersionAssociatedIssueConnection = HasPageInfo & {
|
|
40085
40612
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedIssueConnection';
|
|
40086
40613
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedIssueEdge>>>;
|
|
@@ -40140,7 +40667,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
40140
40667
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion>;
|
|
40141
40668
|
};
|
|
40142
40669
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion = JiraVersion;
|
|
40143
|
-
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestUnion = DevOpsPullRequestDetails;
|
|
40670
|
+
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
40144
40671
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
40145
40672
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection';
|
|
40146
40673
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge>>>;
|
|
@@ -40186,7 +40713,7 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseE
|
|
|
40186
40713
|
node?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseUnion>;
|
|
40187
40714
|
};
|
|
40188
40715
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseUnion = JiraVersion;
|
|
40189
|
-
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
40716
|
+
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
40190
40717
|
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection = HasPageInfo & HasTotal & {
|
|
40191
40718
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection';
|
|
40192
40719
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge>>>;
|
|
@@ -40217,7 +40744,7 @@ export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseEdge
|
|
|
40217
40744
|
lastUpdated: Scalars['DateTime']['output'];
|
|
40218
40745
|
node?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseUnion>;
|
|
40219
40746
|
};
|
|
40220
|
-
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseUnion = DevOpsSecurityVulnerabilityDetails;
|
|
40747
|
+
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseUnion = DevOpsSecurityVulnerabilityDetails | ExternalVulnerability;
|
|
40221
40748
|
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueUnion = JiraIssue;
|
|
40222
40749
|
export declare type GraphStoreSortInput = {
|
|
40223
40750
|
direction: SortDirection;
|
|
@@ -40619,9 +41146,21 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
40619
41146
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
40620
41147
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40621
41148
|
};
|
|
41149
|
+
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
41150
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41151
|
+
};
|
|
41152
|
+
export declare type GraphStoreUserViewedAtlasProjectSortInput = {
|
|
41153
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41154
|
+
};
|
|
41155
|
+
export declare type GraphStoreUserViewedConfluenceBlogpostSortInput = {
|
|
41156
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41157
|
+
};
|
|
40622
41158
|
export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
40623
41159
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40624
41160
|
};
|
|
41161
|
+
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
41162
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41163
|
+
};
|
|
40625
41164
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
40626
41165
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40627
41166
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -40906,6 +41445,15 @@ export declare enum GrowthUnifiedProfileEntityType {
|
|
|
40906
41445
|
export declare type GrowthUnifiedProfileInput = {
|
|
40907
41446
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
40908
41447
|
};
|
|
41448
|
+
export declare type GrowthUnifiedProfileIssueType = {
|
|
41449
|
+
__typename?: 'GrowthUnifiedProfileIssueType';
|
|
41450
|
+
avatarId?: Maybe<Scalars['String']['output']>;
|
|
41451
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
41452
|
+
};
|
|
41453
|
+
export declare type GrowthUnifiedProfileIssueTypeInput = {
|
|
41454
|
+
avatarId?: InputMaybe<Scalars['String']['input']>;
|
|
41455
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
41456
|
+
};
|
|
40909
41457
|
export declare enum GrowthUnifiedProfileJtbd {
|
|
40910
41458
|
AdHocTaskAndIncidentManagement = "AD_HOC_TASK_AND_INCIDENT_MANAGEMENT",
|
|
40911
41459
|
Budgets = "BUDGETS",
|
|
@@ -40942,19 +41490,23 @@ export declare enum GrowthUnifiedProfileJiraFamiliarity {
|
|
|
40942
41490
|
export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
40943
41491
|
__typename?: 'GrowthUnifiedProfileJiraOnboardingContext';
|
|
40944
41492
|
experienceLevel?: Maybe<Scalars['String']['output']>;
|
|
41493
|
+
issueTypes?: Maybe<Array<Maybe<GrowthUnifiedProfileIssueType>>>;
|
|
40945
41494
|
jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
40946
41495
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
40947
41496
|
persona?: Maybe<Scalars['String']['output']>;
|
|
40948
41497
|
projectName?: Maybe<Scalars['String']['output']>;
|
|
41498
|
+
statusNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
40949
41499
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
40950
41500
|
template?: Maybe<Scalars['String']['output']>;
|
|
40951
41501
|
};
|
|
40952
41502
|
export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
40953
41503
|
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
41504
|
+
issueTypes?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileIssueTypeInput>>>;
|
|
40954
41505
|
jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
40955
41506
|
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
40956
41507
|
persona?: InputMaybe<Scalars['String']['input']>;
|
|
40957
41508
|
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
41509
|
+
statusNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
40958
41510
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
40959
41511
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
40960
41512
|
};
|
|
@@ -41868,6 +42420,7 @@ export declare type HelpLayout = Node & {
|
|
|
41868
42420
|
id: Scalars['ID']['output'];
|
|
41869
42421
|
reloadOnPublish?: Maybe<Scalars['Boolean']['output']>;
|
|
41870
42422
|
sections?: Maybe<HelpLayoutSectionConnection>;
|
|
42423
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
41871
42424
|
};
|
|
41872
42425
|
export declare type HelpLayoutSectionsArgs = {
|
|
41873
42426
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -41953,6 +42506,16 @@ export declare type HelpLayoutBackgroundImageInput = {
|
|
|
41953
42506
|
fileId?: InputMaybe<Scalars['String']['input']>;
|
|
41954
42507
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
41955
42508
|
};
|
|
42509
|
+
export declare enum HelpLayoutBackgroundImageObjectFit {
|
|
42510
|
+
Contain = "CONTAIN",
|
|
42511
|
+
Cover = "COVER",
|
|
42512
|
+
Fill = "FILL"
|
|
42513
|
+
}
|
|
42514
|
+
export declare enum HelpLayoutBackgroundType {
|
|
42515
|
+
Color = "COLOR",
|
|
42516
|
+
Image = "IMAGE",
|
|
42517
|
+
Transparent = "TRANSPARENT"
|
|
42518
|
+
}
|
|
41956
42519
|
export declare type HelpLayoutCompositeElement = {
|
|
41957
42520
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
41958
42521
|
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
@@ -42129,8 +42692,10 @@ export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
|
|
|
42129
42692
|
__typename?: 'HelpLayoutHeroElement';
|
|
42130
42693
|
data?: Maybe<HelpLayoutHeroElementData>;
|
|
42131
42694
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
42695
|
+
hideSearchBar?: Maybe<Scalars['Boolean']['output']>;
|
|
42132
42696
|
homePageTitle?: Maybe<Scalars['String']['output']>;
|
|
42133
42697
|
id: Scalars['ID']['output'];
|
|
42698
|
+
useGlobalSettings?: Maybe<Scalars['Boolean']['output']>;
|
|
42134
42699
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
42135
42700
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
42136
42701
|
};
|
|
@@ -42140,6 +42705,8 @@ export declare type HelpLayoutHeroElementData = {
|
|
|
42140
42705
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
42141
42706
|
};
|
|
42142
42707
|
export declare type HelpLayoutHeroElementInput = {
|
|
42708
|
+
hideSearchBar?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42709
|
+
useGlobalSettings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42143
42710
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
42144
42711
|
};
|
|
42145
42712
|
export declare enum HelpLayoutHorizontalAlignment {
|
|
@@ -42270,12 +42837,14 @@ export declare type HelpLayoutPortalsListData = {
|
|
|
42270
42837
|
export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node & {
|
|
42271
42838
|
__typename?: 'HelpLayoutPortalsListElement';
|
|
42272
42839
|
data?: Maybe<HelpLayoutPortalsListData>;
|
|
42840
|
+
elementTitle?: Maybe<Scalars['String']['output']>;
|
|
42273
42841
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
42274
42842
|
id: Scalars['ID']['output'];
|
|
42275
42843
|
portals?: Maybe<Array<Maybe<HelpLayoutPortalCard>>>;
|
|
42276
42844
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
42277
42845
|
};
|
|
42278
42846
|
export declare type HelpLayoutPortalsListInput = {
|
|
42847
|
+
elementTitle?: InputMaybe<Scalars['String']['input']>;
|
|
42279
42848
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
42280
42849
|
};
|
|
42281
42850
|
export declare enum HelpLayoutProjectType {
|
|
@@ -42371,6 +42940,7 @@ export declare type HelpLayoutSuggestedRequestFormsListElement = HelpLayoutVisua
|
|
|
42371
42940
|
__typename?: 'HelpLayoutSuggestedRequestFormsListElement';
|
|
42372
42941
|
config?: Maybe<Scalars['String']['output']>;
|
|
42373
42942
|
data?: Maybe<HelpLayoutSuggestedRequestFormsListElementData>;
|
|
42943
|
+
elementTitle?: Maybe<Scalars['String']['output']>;
|
|
42374
42944
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
42375
42945
|
id: Scalars['ID']['output'];
|
|
42376
42946
|
suggestedRequestTypes?: Maybe<Array<HelpLayoutRequestForm>>;
|
|
@@ -42381,6 +42951,7 @@ export declare type HelpLayoutSuggestedRequestFormsListElementData = {
|
|
|
42381
42951
|
suggestedRequestTypes?: Maybe<Array<HelpLayoutRequestForm>>;
|
|
42382
42952
|
};
|
|
42383
42953
|
export declare type HelpLayoutSuggestedRequestFormsListInput = {
|
|
42954
|
+
elementTitle?: InputMaybe<Scalars['String']['input']>;
|
|
42384
42955
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
42385
42956
|
};
|
|
42386
42957
|
export declare type HelpLayoutTopic = {
|
|
@@ -42402,6 +42973,7 @@ export declare type HelpLayoutTopicItem = {
|
|
|
42402
42973
|
export declare type HelpLayoutTopicsListElement = HelpLayoutVisualEntity & Node & {
|
|
42403
42974
|
__typename?: 'HelpLayoutTopicsListElement';
|
|
42404
42975
|
data?: Maybe<HelpLayoutTopicsListElementData>;
|
|
42976
|
+
elementTitle?: Maybe<Scalars['String']['output']>;
|
|
42405
42977
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
42406
42978
|
id: Scalars['ID']['output'];
|
|
42407
42979
|
topics?: Maybe<Array<HelpLayoutTopic>>;
|
|
@@ -42412,11 +42984,13 @@ export declare type HelpLayoutTopicsListElementData = {
|
|
|
42412
42984
|
topics?: Maybe<Array<HelpLayoutTopic>>;
|
|
42413
42985
|
};
|
|
42414
42986
|
export declare type HelpLayoutTopicsListInput = {
|
|
42987
|
+
elementTitle?: InputMaybe<Scalars['String']['input']>;
|
|
42415
42988
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
42416
42989
|
};
|
|
42417
42990
|
export declare type HelpLayoutUpdateInput = {
|
|
42418
42991
|
layoutId: Scalars['ID']['input'];
|
|
42419
42992
|
sections: Array<HelpLayoutSectionInput>;
|
|
42993
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
42420
42994
|
};
|
|
42421
42995
|
export declare type HelpLayoutUpdatePayload = Payload & {
|
|
42422
42996
|
__typename?: 'HelpLayoutUpdatePayload';
|
|
@@ -42435,17 +43009,23 @@ export declare type HelpLayoutVisualConfig = {
|
|
|
42435
43009
|
alignment?: Maybe<HelpLayoutAlignmentSettings>;
|
|
42436
43010
|
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
42437
43011
|
backgroundImage?: Maybe<HelpLayoutBackgroundImage>;
|
|
43012
|
+
backgroundType?: Maybe<HelpLayoutBackgroundType>;
|
|
42438
43013
|
foregroundColor?: Maybe<Scalars['String']['output']>;
|
|
42439
43014
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
43015
|
+
objectFit?: Maybe<HelpLayoutBackgroundImageObjectFit>;
|
|
42440
43016
|
themeTemplateId?: Maybe<Scalars['String']['output']>;
|
|
43017
|
+
titleColor?: Maybe<Scalars['String']['output']>;
|
|
42441
43018
|
};
|
|
42442
43019
|
export declare type HelpLayoutVisualConfigInput = {
|
|
42443
43020
|
alignment?: InputMaybe<HelpLayoutAlignmentSettingsInput>;
|
|
42444
43021
|
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
42445
43022
|
backgroundImage?: InputMaybe<HelpLayoutBackgroundImageInput>;
|
|
43023
|
+
backgroundType?: InputMaybe<HelpLayoutBackgroundType>;
|
|
42446
43024
|
foregroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
42447
43025
|
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43026
|
+
objectFit?: InputMaybe<HelpLayoutBackgroundImageObjectFit>;
|
|
42448
43027
|
themeTemplateId?: InputMaybe<Scalars['String']['input']>;
|
|
43028
|
+
titleColor?: InputMaybe<Scalars['String']['input']>;
|
|
42449
43029
|
};
|
|
42450
43030
|
export declare type HelpLayoutVisualEntity = {
|
|
42451
43031
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
@@ -43122,17 +43702,11 @@ export declare type InlineTasksQuerySortParameters = {
|
|
|
43122
43702
|
export declare type Insights = {
|
|
43123
43703
|
__typename?: 'Insights';
|
|
43124
43704
|
githubOnboardingDetails: InsightsGithubOnboardingDetails;
|
|
43125
|
-
nextBestTasksByContextAriPaginated: InsightsNextBestTaskConnection;
|
|
43126
43705
|
};
|
|
43127
43706
|
export declare type InsightsGithubOnboardingDetailsArgs = {
|
|
43128
43707
|
cloudId: Scalars['ID']['input'];
|
|
43129
43708
|
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
43130
43709
|
};
|
|
43131
|
-
export declare type InsightsNextBestTasksByContextAriPaginatedArgs = {
|
|
43132
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
43133
|
-
contextAri: InsightsContextAri;
|
|
43134
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43135
|
-
};
|
|
43136
43710
|
export declare type InsightsActionNextBestTaskInput = {
|
|
43137
43711
|
taskId: Scalars['String']['input'];
|
|
43138
43712
|
};
|
|
@@ -43142,75 +43716,6 @@ export declare type InsightsActionNextBestTaskPayload = Payload & {
|
|
|
43142
43716
|
success: Scalars['Boolean']['output'];
|
|
43143
43717
|
userActionState?: Maybe<InsightsUserActionState>;
|
|
43144
43718
|
};
|
|
43145
|
-
export declare enum InsightsApprovalStatus {
|
|
43146
|
-
Approved = "APPROVED",
|
|
43147
|
-
Needswork = "NEEDSWORK",
|
|
43148
|
-
Unapproved = "UNAPPROVED",
|
|
43149
|
-
Unknown = "UNKNOWN"
|
|
43150
|
-
}
|
|
43151
|
-
export declare type InsightsBlockedIssue = {
|
|
43152
|
-
__typename?: 'InsightsBlockedIssue';
|
|
43153
|
-
issueKey: Scalars['String']['output'];
|
|
43154
|
-
title: Scalars['String']['output'];
|
|
43155
|
-
};
|
|
43156
|
-
export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
43157
|
-
__typename?: 'InsightsBlockingIssueTask';
|
|
43158
|
-
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
43159
|
-
id: Scalars['String']['output'];
|
|
43160
|
-
issueIconUrl: Scalars['String']['output'];
|
|
43161
|
-
issueId: Scalars['String']['output'];
|
|
43162
|
-
issueKey: Scalars['String']['output'];
|
|
43163
|
-
title: Scalars['String']['output'];
|
|
43164
|
-
url: Scalars['String']['output'];
|
|
43165
|
-
};
|
|
43166
|
-
export declare type InsightsBuildTask = InsightsNextBestTaskCommon & {
|
|
43167
|
-
__typename?: 'InsightsBuildTask';
|
|
43168
|
-
buildNumber: Scalars['Int']['output'];
|
|
43169
|
-
id: Scalars['String']['output'];
|
|
43170
|
-
issueId: Scalars['String']['output'];
|
|
43171
|
-
issueKey: Scalars['String']['output'];
|
|
43172
|
-
issueName: Scalars['String']['output'];
|
|
43173
|
-
lastUpdated: Scalars['String']['output'];
|
|
43174
|
-
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
43175
|
-
title: Scalars['String']['output'];
|
|
43176
|
-
url: Scalars['String']['output'];
|
|
43177
|
-
};
|
|
43178
|
-
export declare type InsightsContextAri = {
|
|
43179
|
-
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
43180
|
-
sprintAri?: InputMaybe<Scalars['ID']['input']>;
|
|
43181
|
-
};
|
|
43182
|
-
export declare type InsightsCriticalVulnerabilityTask = InsightsNextBestTaskCommon & {
|
|
43183
|
-
__typename?: 'InsightsCriticalVulnerabilityTask';
|
|
43184
|
-
id: Scalars['String']['output'];
|
|
43185
|
-
introducedDate: Scalars['String']['output'];
|
|
43186
|
-
issueId: Scalars['String']['output'];
|
|
43187
|
-
issueKey: Scalars['String']['output'];
|
|
43188
|
-
securityContainerName: Scalars['String']['output'];
|
|
43189
|
-
status: InsightsVulnerabilityStatus;
|
|
43190
|
-
title: Scalars['String']['output'];
|
|
43191
|
-
url: Scalars['String']['output'];
|
|
43192
|
-
};
|
|
43193
|
-
export declare type InsightsDeploymentTask = InsightsNextBestTaskCommon & {
|
|
43194
|
-
__typename?: 'InsightsDeploymentTask';
|
|
43195
|
-
environmentNames: Array<Scalars['String']['output']>;
|
|
43196
|
-
environmentType: InsightsEnvironmentType;
|
|
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
|
-
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
43203
|
-
pipelineName: Scalars['String']['output'];
|
|
43204
|
-
title: Scalars['String']['output'];
|
|
43205
|
-
url: Scalars['String']['output'];
|
|
43206
|
-
};
|
|
43207
|
-
export declare enum InsightsEnvironmentType {
|
|
43208
|
-
Development = "DEVELOPMENT",
|
|
43209
|
-
Production = "PRODUCTION",
|
|
43210
|
-
Staging = "STAGING",
|
|
43211
|
-
Testing = "TESTING",
|
|
43212
|
-
Unmapped = "UNMAPPED"
|
|
43213
|
-
}
|
|
43214
43719
|
export declare type InsightsGithubOnboardingActionInput = {
|
|
43215
43720
|
cloudId: Scalars['ID']['input'];
|
|
43216
43721
|
};
|
|
@@ -43267,53 +43772,6 @@ export declare enum InsightsNextBestTaskAction {
|
|
|
43267
43772
|
Remove = "REMOVE",
|
|
43268
43773
|
Snooze = "SNOOZE"
|
|
43269
43774
|
}
|
|
43270
|
-
export declare type InsightsNextBestTaskCommon = {
|
|
43271
|
-
id: Scalars['String']['output'];
|
|
43272
|
-
title: Scalars['String']['output'];
|
|
43273
|
-
url: Scalars['String']['output'];
|
|
43274
|
-
};
|
|
43275
|
-
export declare type InsightsNextBestTaskConnection = {
|
|
43276
|
-
__typename?: 'InsightsNextBestTaskConnection';
|
|
43277
|
-
edges: Array<Maybe<InsightsNextBestTaskEdge>>;
|
|
43278
|
-
nodes: Array<Maybe<InsightsNextBestTaskCommon>>;
|
|
43279
|
-
pageInfo: PageInfo;
|
|
43280
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43281
|
-
};
|
|
43282
|
-
export declare type InsightsNextBestTaskEdge = {
|
|
43283
|
-
__typename?: 'InsightsNextBestTaskEdge';
|
|
43284
|
-
cursor: Scalars['String']['output'];
|
|
43285
|
-
node?: Maybe<InsightsNextBestTaskCommon>;
|
|
43286
|
-
};
|
|
43287
|
-
export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
|
|
43288
|
-
__typename?: 'InsightsPullRequestNeedsWorkTask';
|
|
43289
|
-
commentCount: Scalars['Int']['output'];
|
|
43290
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
43291
|
-
id: Scalars['String']['output'];
|
|
43292
|
-
lastUpdated: Scalars['String']['output'];
|
|
43293
|
-
needsWorkCount: Scalars['Int']['output'];
|
|
43294
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
43295
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
43296
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
43297
|
-
reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
|
|
43298
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
43299
|
-
title: Scalars['String']['output'];
|
|
43300
|
-
url: Scalars['String']['output'];
|
|
43301
|
-
};
|
|
43302
|
-
export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
|
|
43303
|
-
__typename?: 'InsightsPullRequestReviewTask';
|
|
43304
|
-
approvalsCount: Scalars['Int']['output'];
|
|
43305
|
-
author?: Maybe<InsightsUserDetail>;
|
|
43306
|
-
commentCount: Scalars['Int']['output'];
|
|
43307
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
43308
|
-
id: Scalars['String']['output'];
|
|
43309
|
-
lastUpdated: Scalars['String']['output'];
|
|
43310
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
43311
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
43312
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
43313
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
43314
|
-
title: Scalars['String']['output'];
|
|
43315
|
-
url: Scalars['String']['output'];
|
|
43316
|
-
};
|
|
43317
43775
|
export declare type InsightsPurgeUserActionStateInput = {
|
|
43318
43776
|
cloudId: Scalars['ID']['input'];
|
|
43319
43777
|
};
|
|
@@ -43323,38 +43781,24 @@ export declare enum InsightsRecommendationVisibility {
|
|
|
43323
43781
|
Snoozed = "SNOOZED",
|
|
43324
43782
|
Visible = "VISIBLE"
|
|
43325
43783
|
}
|
|
43326
|
-
export declare enum InsightsTaskType {
|
|
43327
|
-
BlockingIssue = "BLOCKING_ISSUE",
|
|
43328
|
-
BuildFailed = "BUILD_FAILED",
|
|
43329
|
-
CritVuln = "CRIT_VULN",
|
|
43330
|
-
DeploymentFailed = "DEPLOYMENT_FAILED",
|
|
43331
|
-
PrNeedsWork = "PR_NEEDS_WORK",
|
|
43332
|
-
PrReview = "PR_REVIEW"
|
|
43333
|
-
}
|
|
43334
43784
|
export declare type InsightsUserActionState = {
|
|
43335
43785
|
__typename?: 'InsightsUserActionState';
|
|
43336
43786
|
expireAt: Scalars['String']['output'];
|
|
43337
43787
|
reason: InsightsNextBestTaskAction;
|
|
43338
43788
|
taskId: Scalars['String']['output'];
|
|
43339
43789
|
};
|
|
43340
|
-
export declare type InsightsUserDetail = {
|
|
43341
|
-
__typename?: 'InsightsUserDetail';
|
|
43342
|
-
approvalStatus?: Maybe<InsightsApprovalStatus>;
|
|
43343
|
-
avatarUrl: Scalars['String']['output'];
|
|
43344
|
-
id: Scalars['ID']['output'];
|
|
43345
|
-
name: Scalars['String']['output'];
|
|
43346
|
-
};
|
|
43347
|
-
export declare enum InsightsVulnerabilityStatus {
|
|
43348
|
-
Closed = "CLOSED",
|
|
43349
|
-
Ignored = "IGNORED",
|
|
43350
|
-
Open = "OPEN",
|
|
43351
|
-
Unknown = "UNKNOWN"
|
|
43352
|
-
}
|
|
43353
43790
|
export declare enum InspectPermissions {
|
|
43354
43791
|
Comment = "COMMENT",
|
|
43355
43792
|
Edit = "EDIT",
|
|
43356
43793
|
View = "VIEW"
|
|
43357
43794
|
}
|
|
43795
|
+
export declare type InstallationContext = {
|
|
43796
|
+
__typename?: 'InstallationContext';
|
|
43797
|
+
environmentId: Scalars['ID']['output'];
|
|
43798
|
+
hasLogAccess: Scalars['Boolean']['output'];
|
|
43799
|
+
installationContext: Scalars['ID']['output'];
|
|
43800
|
+
tenantContext?: Maybe<TenantContext>;
|
|
43801
|
+
};
|
|
43358
43802
|
export declare type InstallationContextWithLogAccess = {
|
|
43359
43803
|
__typename?: 'InstallationContextWithLogAccess';
|
|
43360
43804
|
installationContext: Scalars['ID']['output'];
|
|
@@ -43397,6 +43841,7 @@ export declare type InstallationsListFilterByAppInstallations = {
|
|
|
43397
43841
|
};
|
|
43398
43842
|
export declare type InstallationsListFilterByAppInstallationsWithCompulsoryContexts = {
|
|
43399
43843
|
contexts: Array<Scalars['ID']['input']>;
|
|
43844
|
+
environmentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
43400
43845
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
43401
43846
|
};
|
|
43402
43847
|
export declare type InstallationsListFilterByApps = {
|
|
@@ -46215,6 +46660,7 @@ export declare type JiraContainerNavigation = Node & {
|
|
|
46215
46660
|
navigationItemByItemId?: Maybe<JiraNavigationItemResult>;
|
|
46216
46661
|
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
46217
46662
|
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
46663
|
+
scopeUrl?: Maybe<Scalars['String']['output']>;
|
|
46218
46664
|
};
|
|
46219
46665
|
export declare type JiraContainerNavigationAddableNavigationItemTypesArgs = {
|
|
46220
46666
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46250,6 +46696,7 @@ export declare type JiraCreateAppNavigationItemInput = {
|
|
|
46250
46696
|
};
|
|
46251
46697
|
export declare type JiraCreateApproverListFieldInput = {
|
|
46252
46698
|
fieldName: Scalars['String']['input'];
|
|
46699
|
+
issueTypeId?: InputMaybe<Scalars['Int']['input']>;
|
|
46253
46700
|
projectId: Scalars['Int']['input'];
|
|
46254
46701
|
};
|
|
46255
46702
|
export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
@@ -46307,6 +46754,20 @@ export declare type JiraCreateCustomBackgroundPayload = Payload & {
|
|
|
46307
46754
|
errors?: Maybe<Array<MutationError>>;
|
|
46308
46755
|
success: Scalars['Boolean']['output'];
|
|
46309
46756
|
};
|
|
46757
|
+
export declare type JiraCreateCustomFieldInput = {
|
|
46758
|
+
cloudId: Scalars['ID']['input'];
|
|
46759
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
46760
|
+
name: Scalars['String']['input'];
|
|
46761
|
+
options?: InputMaybe<Array<JiraCustomFieldOptionInput>>;
|
|
46762
|
+
projectId: Scalars['String']['input'];
|
|
46763
|
+
type: Scalars['String']['input'];
|
|
46764
|
+
};
|
|
46765
|
+
export declare type JiraCreateCustomFieldPayload = Payload & {
|
|
46766
|
+
__typename?: 'JiraCreateCustomFieldPayload';
|
|
46767
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46768
|
+
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
46769
|
+
success: Scalars['Boolean']['output'];
|
|
46770
|
+
};
|
|
46310
46771
|
export declare type JiraCreateCustomFilterInput = {
|
|
46311
46772
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
46312
46773
|
editGrants: Array<InputMaybe<JiraShareableEntityEditGrantInput>>;
|
|
@@ -46323,6 +46784,11 @@ export declare type JiraCreateCustomFilterPayload = Payload & {
|
|
|
46323
46784
|
filter?: Maybe<JiraCustomFilter>;
|
|
46324
46785
|
success: Scalars['Boolean']['output'];
|
|
46325
46786
|
};
|
|
46787
|
+
export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
46788
|
+
journeyId: Scalars['ID']['input'];
|
|
46789
|
+
journeyVersion: Scalars['Long']['input'];
|
|
46790
|
+
name: Scalars['String']['input'];
|
|
46791
|
+
};
|
|
46326
46792
|
export declare type JiraCreateFormattingRuleInput = {
|
|
46327
46793
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
46328
46794
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -46362,19 +46828,6 @@ export declare type JiraCreateProjectCleanupRecommendationsPayload = Payload & {
|
|
|
46362
46828
|
recommendationsCreated?: Maybe<Scalars['Long']['output']>;
|
|
46363
46829
|
success: Scalars['Boolean']['output'];
|
|
46364
46830
|
};
|
|
46365
|
-
export declare type JiraCreateProjectFieldInput = {
|
|
46366
|
-
cloudId: Scalars['ID']['input'];
|
|
46367
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
46368
|
-
name: Scalars['String']['input'];
|
|
46369
|
-
projectId: Scalars['String']['input'];
|
|
46370
|
-
type: Scalars['String']['input'];
|
|
46371
|
-
};
|
|
46372
|
-
export declare type JiraCreateProjectFieldPayload = Payload & {
|
|
46373
|
-
__typename?: 'JiraCreateProjectFieldPayload';
|
|
46374
|
-
errors?: Maybe<Array<MutationError>>;
|
|
46375
|
-
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
46376
|
-
success: Scalars['Boolean']['output'];
|
|
46377
|
-
};
|
|
46378
46831
|
export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
46379
46832
|
appLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
46380
46833
|
excludeIssueKey?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46456,6 +46909,13 @@ export declare type JiraCustomBackgroundEdge = {
|
|
|
46456
46909
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
46457
46910
|
node?: Maybe<JiraCustomBackground>;
|
|
46458
46911
|
};
|
|
46912
|
+
export declare type JiraCustomFieldOptionInput = {
|
|
46913
|
+
externalUuid: Scalars['String']['input'];
|
|
46914
|
+
optionId?: InputMaybe<Scalars['Long']['input']>;
|
|
46915
|
+
parentExternalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
46916
|
+
parentOptionId?: InputMaybe<Scalars['Long']['input']>;
|
|
46917
|
+
value: Scalars['String']['input'];
|
|
46918
|
+
};
|
|
46459
46919
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
46460
46920
|
__typename?: 'JiraCustomFilter';
|
|
46461
46921
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -46703,6 +47163,11 @@ export declare type JiraDefaultUnsplashImagesPage = {
|
|
|
46703
47163
|
results?: Maybe<Array<Maybe<JiraUnsplashImage>>>;
|
|
46704
47164
|
};
|
|
46705
47165
|
export declare type JiraDefaultUnsplashImagesPageResult = JiraDefaultUnsplashImagesPage | QueryError;
|
|
47166
|
+
export declare type JiraDeleteActivityConfigurationInput = {
|
|
47167
|
+
activityId: Scalars['ID']['input'];
|
|
47168
|
+
journeyId: Scalars['ID']['input'];
|
|
47169
|
+
journeyVersion: Scalars['Long']['input'];
|
|
47170
|
+
};
|
|
46706
47171
|
export declare type JiraDeleteCustomBackgroundInput = {
|
|
46707
47172
|
cloudId: Scalars['ID']['input'];
|
|
46708
47173
|
customBackgroundId: Scalars['ID']['input'];
|
|
@@ -48234,6 +48699,11 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
48234
48699
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
48235
48700
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48236
48701
|
};
|
|
48702
|
+
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
48703
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
48704
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
48705
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
48706
|
+
};
|
|
48237
48707
|
export declare enum JiraGroupsContext {
|
|
48238
48708
|
Group = "GROUP",
|
|
48239
48709
|
User = "USER"
|
|
@@ -48518,8 +48988,7 @@ export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
|
48518
48988
|
};
|
|
48519
48989
|
export declare type JiraIssueHasChildrenArgs = {
|
|
48520
48990
|
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48521
|
-
|
|
48522
|
-
jql?: InputMaybe<Scalars['String']['input']>;
|
|
48991
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
48523
48992
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
48524
48993
|
};
|
|
48525
48994
|
export declare type JiraIssueHasProjectPermissionArgs = {
|
|
@@ -50675,6 +51144,11 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
50675
51144
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50676
51145
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
50677
51146
|
};
|
|
51147
|
+
export declare type JiraListViewViewSettingsArgs = {
|
|
51148
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
51149
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
51150
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
51151
|
+
};
|
|
50678
51152
|
export declare type JiraLongRunningTaskProgress = {
|
|
50679
51153
|
__typename?: 'JiraLongRunningTaskProgress';
|
|
50680
51154
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -51061,16 +51535,17 @@ export declare type JiraMutation = {
|
|
|
51061
51535
|
createBoard?: Maybe<JiraCreateBoardPayload>;
|
|
51062
51536
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
51063
51537
|
createCustomBackground?: Maybe<JiraCreateCustomBackgroundPayload>;
|
|
51538
|
+
createCustomFieldInProjectAndAddToAllIssueTypes?: Maybe<JiraCreateCustomFieldPayload>;
|
|
51064
51539
|
createFormattingRule?: Maybe<JiraCreateFormattingRulePayload>;
|
|
51065
51540
|
createIssue?: Maybe<JiraIssueCreatePayload>;
|
|
51066
51541
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
51542
|
+
createJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
51067
51543
|
createJiraJourneyConfiguration?: Maybe<JiraCreateJourneyConfigurationPayload>;
|
|
51068
51544
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
51069
51545
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
51070
51546
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
51071
51547
|
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
51072
51548
|
createProjectCleanupRecommendations?: Maybe<JiraCreateProjectCleanupRecommendationsPayload>;
|
|
51073
|
-
createProjectFieldAndAddToAllIssueTypes?: Maybe<JiraCreateProjectFieldPayload>;
|
|
51074
51549
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
51075
51550
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
51076
51551
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
@@ -51080,6 +51555,7 @@ export declare type JiraMutation = {
|
|
|
51080
51555
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
51081
51556
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
51082
51557
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
51558
|
+
deleteJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
51083
51559
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
51084
51560
|
deleteJiraVersionWithNoIssues?: Maybe<JiraUpdateVersionPayload>;
|
|
51085
51561
|
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
@@ -51158,6 +51634,7 @@ export declare type JiraMutation = {
|
|
|
51158
51634
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
51159
51635
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
51160
51636
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
51637
|
+
updateJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
51161
51638
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
51162
51639
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
51163
51640
|
updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -51287,6 +51764,9 @@ export declare type JiraMutationCreateCalendarIssueArgs = {
|
|
|
51287
51764
|
export declare type JiraMutationCreateCustomBackgroundArgs = {
|
|
51288
51765
|
input: JiraCreateCustomBackgroundInput;
|
|
51289
51766
|
};
|
|
51767
|
+
export declare type JiraMutationCreateCustomFieldInProjectAndAddToAllIssueTypesArgs = {
|
|
51768
|
+
input: JiraCreateCustomFieldInput;
|
|
51769
|
+
};
|
|
51290
51770
|
export declare type JiraMutationCreateFormattingRuleArgs = {
|
|
51291
51771
|
input: JiraCreateFormattingRuleInput;
|
|
51292
51772
|
};
|
|
@@ -51297,6 +51777,10 @@ export declare type JiraMutationCreateIssueLinksArgs = {
|
|
|
51297
51777
|
cloudId: Scalars['ID']['input'];
|
|
51298
51778
|
input: JiraBulkCreateIssueLinksInput;
|
|
51299
51779
|
};
|
|
51780
|
+
export declare type JiraMutationCreateJiraActivityConfigurationArgs = {
|
|
51781
|
+
cloudId: Scalars['ID']['input'];
|
|
51782
|
+
input: JiraCreateEmptyActivityConfigurationInput;
|
|
51783
|
+
};
|
|
51300
51784
|
export declare type JiraMutationCreateJiraJourneyConfigurationArgs = {
|
|
51301
51785
|
cloudId: Scalars['ID']['input'];
|
|
51302
51786
|
input: JiraCreateJourneyConfigurationInput;
|
|
@@ -51317,9 +51801,6 @@ export declare type JiraMutationCreateJwmOverviewArgs = {
|
|
|
51317
51801
|
export declare type JiraMutationCreateProjectCleanupRecommendationsArgs = {
|
|
51318
51802
|
cloudId: Scalars['ID']['input'];
|
|
51319
51803
|
};
|
|
51320
|
-
export declare type JiraMutationCreateProjectFieldAndAddToAllIssueTypesArgs = {
|
|
51321
|
-
input: JiraCreateProjectFieldInput;
|
|
51322
|
-
};
|
|
51323
51804
|
export declare type JiraMutationCreateProjectShortcutArgs = {
|
|
51324
51805
|
input: JiraCreateShortcutInput;
|
|
51325
51806
|
};
|
|
@@ -51349,6 +51830,10 @@ export declare type JiraMutationDeleteIssueLinkArgs = {
|
|
|
51349
51830
|
export declare type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
51350
51831
|
cloudId: Scalars['ID']['input'];
|
|
51351
51832
|
};
|
|
51833
|
+
export declare type JiraMutationDeleteJiraActivityConfigurationArgs = {
|
|
51834
|
+
cloudId: Scalars['ID']['input'];
|
|
51835
|
+
input: JiraDeleteActivityConfigurationInput;
|
|
51836
|
+
};
|
|
51352
51837
|
export declare type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
51353
51838
|
id: Scalars['ID']['input'];
|
|
51354
51839
|
};
|
|
@@ -51607,6 +52092,10 @@ export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
|
51607
52092
|
export declare type JiraMutationUpdateIssueTypeFieldArgs = {
|
|
51608
52093
|
input: JiraUpdateIssueTypeFieldInput;
|
|
51609
52094
|
};
|
|
52095
|
+
export declare type JiraMutationUpdateJiraActivityConfigurationArgs = {
|
|
52096
|
+
cloudId: Scalars['ID']['input'];
|
|
52097
|
+
input: JiraUpdateActivityConfigurationInput;
|
|
52098
|
+
};
|
|
51610
52099
|
export declare type JiraMutationUpdateJiraJourneyActivityConfigurationArgs = {
|
|
51611
52100
|
cloudId: Scalars['ID']['input'];
|
|
51612
52101
|
input: JiraUpdateJourneyActivityConfigurationInput;
|
|
@@ -51869,6 +52358,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
51869
52358
|
Calendar = "CALENDAR",
|
|
51870
52359
|
Code = "CODE",
|
|
51871
52360
|
Components = "COMPONENTS",
|
|
52361
|
+
Dependencies = "DEPENDENCIES",
|
|
51872
52362
|
Deployments = "DEPLOYMENTS",
|
|
51873
52363
|
Development = "DEVELOPMENT",
|
|
51874
52364
|
Forms = "FORMS",
|
|
@@ -51878,12 +52368,14 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
51878
52368
|
List = "LIST",
|
|
51879
52369
|
OnCall = "ON_CALL",
|
|
51880
52370
|
Pages = "PAGES",
|
|
52371
|
+
Program = "PROGRAM",
|
|
51881
52372
|
Releases = "RELEASES",
|
|
51882
52373
|
Reports = "REPORTS",
|
|
51883
52374
|
Requests = "REQUESTS",
|
|
51884
52375
|
Security = "SECURITY",
|
|
51885
52376
|
Shortcuts = "SHORTCUTS",
|
|
51886
52377
|
Summary = "SUMMARY",
|
|
52378
|
+
Teams = "TEAMS",
|
|
51887
52379
|
Timeline = "TIMELINE"
|
|
51888
52380
|
}
|
|
51889
52381
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
@@ -53767,6 +54259,7 @@ export declare type JiraQuery = {
|
|
|
53767
54259
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
53768
54260
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
53769
54261
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
54262
|
+
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
53770
54263
|
resourceUsageCustomFieldRecommendations?: Maybe<JiraResourceUsageCustomFieldRecommendationConnection>;
|
|
53771
54264
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
53772
54265
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
@@ -54544,6 +55037,12 @@ export declare type JiraQueryRequestTypeTemplatesArgs = {
|
|
|
54544
55037
|
cloudId: Scalars['ID']['input'];
|
|
54545
55038
|
projectStyle?: InputMaybe<JiraProjectStyle>;
|
|
54546
55039
|
};
|
|
55040
|
+
export declare type JiraQueryRequestTypesArgs = {
|
|
55041
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55042
|
+
cloudId: Scalars['ID']['input'];
|
|
55043
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55044
|
+
projectId: Scalars['ID']['input'];
|
|
55045
|
+
};
|
|
54547
55046
|
export declare type JiraQueryResourceUsageCustomFieldRecommendationsArgs = {
|
|
54548
55047
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54549
55048
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57058,6 +57557,11 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
57058
57557
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57059
57558
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
57060
57559
|
};
|
|
57560
|
+
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
57561
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
57562
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
57563
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
57564
|
+
};
|
|
57061
57565
|
export declare type JiraSpreadsheetViewPayload = Payload & {
|
|
57062
57566
|
__typename?: 'JiraSpreadsheetViewPayload';
|
|
57063
57567
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -57806,6 +58310,16 @@ export declare type JiraUpdateActiveBackgroundPayload = Payload & {
|
|
|
57806
58310
|
errors?: Maybe<Array<MutationError>>;
|
|
57807
58311
|
success: Scalars['Boolean']['output'];
|
|
57808
58312
|
};
|
|
58313
|
+
export declare type JiraUpdateActivityConfigurationInput = {
|
|
58314
|
+
activityId: Scalars['ID']['input'];
|
|
58315
|
+
fieldValues?: InputMaybe<Array<InputMaybe<JiraActivityFieldValueKeyValuePairInput>>>;
|
|
58316
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58317
|
+
journeyId: Scalars['ID']['input'];
|
|
58318
|
+
journeyVersion: Scalars['Long']['input'];
|
|
58319
|
+
name: Scalars['String']['input'];
|
|
58320
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
58321
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58322
|
+
};
|
|
57809
58323
|
export declare type JiraUpdateAffectedServicesFieldInput = {
|
|
57810
58324
|
id: Scalars['ID']['input'];
|
|
57811
58325
|
operation: JiraAffectedServicesFieldOperationInput;
|
|
@@ -59706,6 +60220,24 @@ export declare type JsmChatDropdownAppendix = {
|
|
|
59706
60220
|
options: Array<Maybe<JsmChatAppendixActionItem>>;
|
|
59707
60221
|
placeholder?: Maybe<Scalars['String']['output']>;
|
|
59708
60222
|
};
|
|
60223
|
+
export declare type JsmChatInitializeAndSendMessageInput = {
|
|
60224
|
+
channelExperienceId: JsmChatWebChannelExperienceId;
|
|
60225
|
+
conversationContextAri: Scalars['ID']['input'];
|
|
60226
|
+
isTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60227
|
+
message: Scalars['String']['input'];
|
|
60228
|
+
subscriptionId: Scalars['String']['input'];
|
|
60229
|
+
};
|
|
60230
|
+
export declare type JsmChatInitializeAndSendMessagePayload = Payload & {
|
|
60231
|
+
__typename?: 'JsmChatInitializeAndSendMessagePayload';
|
|
60232
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60233
|
+
initializeAndSendMessageResponse?: Maybe<JsmChatInitializeAndSendMessageResponse>;
|
|
60234
|
+
success: Scalars['Boolean']['output'];
|
|
60235
|
+
};
|
|
60236
|
+
export declare type JsmChatInitializeAndSendMessageResponse = {
|
|
60237
|
+
__typename?: 'JsmChatInitializeAndSendMessageResponse';
|
|
60238
|
+
conversation?: Maybe<JsmChatMessageEdge>;
|
|
60239
|
+
conversationId: Scalars['ID']['output'];
|
|
60240
|
+
};
|
|
59709
60241
|
export declare type JsmChatInitializeConfigRequest = {
|
|
59710
60242
|
activationId: Scalars['ID']['input'];
|
|
59711
60243
|
projectId: Scalars['ID']['input'];
|
|
@@ -59786,6 +60318,7 @@ export declare type JsmChatMutation = {
|
|
|
59786
60318
|
deleteSlackChannelMapping: JsmChatDeleteSlackChannelMappingOutput;
|
|
59787
60319
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
59788
60320
|
disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
60321
|
+
initializeAndSendMessage?: Maybe<JsmChatInitializeAndSendMessagePayload>;
|
|
59789
60322
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
59790
60323
|
updateMsTeamsChannelSettings: JsmChatUpdateMsTeamsChannelSettingsOutput;
|
|
59791
60324
|
updateMsTeamsProjectSettings: JsmChatUpdateMsTeamsProjectSettingsOutput;
|
|
@@ -59830,6 +60363,10 @@ export declare type JsmChatMutationDisconnectMsTeamsJiraProjectArgs = {
|
|
|
59830
60363
|
input?: InputMaybe<JsmChatDisconnectMsTeamsJiraProjectInput>;
|
|
59831
60364
|
jiraProjectAri: Scalars['ID']['input'];
|
|
59832
60365
|
};
|
|
60366
|
+
export declare type JsmChatMutationInitializeAndSendMessageArgs = {
|
|
60367
|
+
input: JsmChatInitializeAndSendMessageInput;
|
|
60368
|
+
workspaceAri: Scalars['ID']['input'];
|
|
60369
|
+
};
|
|
59833
60370
|
export declare type JsmChatMutationUpdateChannelSettingsArgs = {
|
|
59834
60371
|
input: JsmChatUpdateChannelSettingsInput;
|
|
59835
60372
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -60005,6 +60542,9 @@ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
|
|
|
60005
60542
|
errors?: Maybe<Array<MutationError>>;
|
|
60006
60543
|
success: Scalars['Boolean']['output'];
|
|
60007
60544
|
};
|
|
60545
|
+
export declare enum JsmChatWebChannelExperienceId {
|
|
60546
|
+
Helpcenter = "HELPCENTER"
|
|
60547
|
+
}
|
|
60008
60548
|
export declare enum JsmChatWebConversationActions {
|
|
60009
60549
|
CloseConversation = "CLOSE_CONVERSATION",
|
|
60010
60550
|
DisableInput = "DISABLE_INPUT",
|
|
@@ -61188,6 +61728,11 @@ export declare type LookAndFeelSettings = {
|
|
|
61188
61728
|
selected?: Maybe<Scalars['String']['output']>;
|
|
61189
61729
|
theme?: Maybe<LookAndFeel>;
|
|
61190
61730
|
};
|
|
61731
|
+
export declare type LoomSpace = Node & {
|
|
61732
|
+
__typename?: 'LoomSpace';
|
|
61733
|
+
id: Scalars['ID']['output'];
|
|
61734
|
+
name: Scalars['String']['output'];
|
|
61735
|
+
};
|
|
61191
61736
|
export declare type LoomToken = {
|
|
61192
61737
|
__typename?: 'LoomToken';
|
|
61193
61738
|
token: Scalars['String']['output'];
|
|
@@ -61198,6 +61743,15 @@ export declare enum LoomUserStatus {
|
|
|
61198
61743
|
Mastered = "MASTERED",
|
|
61199
61744
|
NotFound = "NOT_FOUND"
|
|
61200
61745
|
}
|
|
61746
|
+
export declare type LoomVideo = Node & {
|
|
61747
|
+
__typename?: 'LoomVideo';
|
|
61748
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
61749
|
+
id: Scalars['ID']['output'];
|
|
61750
|
+
name: Scalars['String']['output'];
|
|
61751
|
+
owner?: Maybe<User>;
|
|
61752
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
61753
|
+
url: Scalars['String']['output'];
|
|
61754
|
+
};
|
|
61201
61755
|
export declare type LpCertSort = {
|
|
61202
61756
|
sortDirection?: InputMaybe<SortDirection>;
|
|
61203
61757
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -62032,6 +62586,18 @@ export declare type MarketplaceConsoleKnownError = MarketplaceConsoleError & {
|
|
|
62032
62586
|
message: Scalars['String']['output'];
|
|
62033
62587
|
subCode?: Maybe<Scalars['String']['output']>;
|
|
62034
62588
|
};
|
|
62589
|
+
export declare type MarketplaceConsoleLegacyCategory = {
|
|
62590
|
+
__typename?: 'MarketplaceConsoleLegacyCategory';
|
|
62591
|
+
id: Scalars['ID']['output'];
|
|
62592
|
+
name: Scalars['String']['output'];
|
|
62593
|
+
};
|
|
62594
|
+
export declare type MarketplaceConsoleLegacyListingDetails = {
|
|
62595
|
+
__typename?: 'MarketplaceConsoleLegacyListingDetails';
|
|
62596
|
+
buildsLink?: Maybe<Scalars['String']['output']>;
|
|
62597
|
+
description: Scalars['String']['output'];
|
|
62598
|
+
sourceLink?: Maybe<Scalars['String']['output']>;
|
|
62599
|
+
wikiLink?: Maybe<Scalars['String']['output']>;
|
|
62600
|
+
};
|
|
62035
62601
|
export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
62036
62602
|
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
62037
62603
|
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
@@ -62213,11 +62779,42 @@ export declare type MarketplaceConsoleParentSoftware = {
|
|
|
62213
62779
|
state: MarketplaceConsoleParentSoftwareState;
|
|
62214
62780
|
versions: Array<MarketplaceConsoleParentSoftwareVersion>;
|
|
62215
62781
|
};
|
|
62782
|
+
export declare type MarketplaceConsoleParentSoftwareEdition = {
|
|
62783
|
+
__typename?: 'MarketplaceConsoleParentSoftwareEdition';
|
|
62784
|
+
pricingPlan: MarketplaceConsoleParentSoftwarePricingPlans;
|
|
62785
|
+
slug: Scalars['String']['output'];
|
|
62786
|
+
type: MarketplaceConsoleEditionType;
|
|
62787
|
+
};
|
|
62788
|
+
export declare type MarketplaceConsoleParentSoftwarePricing = {
|
|
62789
|
+
__typename?: 'MarketplaceConsoleParentSoftwarePricing';
|
|
62790
|
+
editions: Array<MarketplaceConsoleParentSoftwareEdition>;
|
|
62791
|
+
id: Scalars['String']['output'];
|
|
62792
|
+
};
|
|
62793
|
+
export declare type MarketplaceConsoleParentSoftwarePricingPlan = {
|
|
62794
|
+
__typename?: 'MarketplaceConsoleParentSoftwarePricingPlan';
|
|
62795
|
+
tieredPricing: Array<Maybe<MarketplaceConsoleParentSoftwareTieredPricing>>;
|
|
62796
|
+
};
|
|
62797
|
+
export declare type MarketplaceConsoleParentSoftwarePricingPlans = {
|
|
62798
|
+
__typename?: 'MarketplaceConsoleParentSoftwarePricingPlans';
|
|
62799
|
+
annualPricingPlan: MarketplaceConsoleParentSoftwarePricingPlan;
|
|
62800
|
+
currency: MarketplaceConsolePricingCurrency;
|
|
62801
|
+
monthlyPricingPlan: MarketplaceConsoleParentSoftwarePricingPlan;
|
|
62802
|
+
};
|
|
62803
|
+
export declare type MarketplaceConsoleParentSoftwarePricingQueryInput = {
|
|
62804
|
+
parentProductId: Scalars['String']['input'];
|
|
62805
|
+
};
|
|
62216
62806
|
export declare enum MarketplaceConsoleParentSoftwareState {
|
|
62217
62807
|
Active = "ACTIVE",
|
|
62218
62808
|
Archived = "ARCHIVED",
|
|
62219
62809
|
Draft = "DRAFT"
|
|
62220
62810
|
}
|
|
62811
|
+
export declare type MarketplaceConsoleParentSoftwareTieredPricing = {
|
|
62812
|
+
__typename?: 'MarketplaceConsoleParentSoftwareTieredPricing';
|
|
62813
|
+
ceiling: Scalars['Float']['output'];
|
|
62814
|
+
flatAmount?: Maybe<Scalars['Float']['output']>;
|
|
62815
|
+
floor: Scalars['Float']['output'];
|
|
62816
|
+
unitAmount?: Maybe<Scalars['Float']['output']>;
|
|
62817
|
+
};
|
|
62221
62818
|
export declare type MarketplaceConsoleParentSoftwareVersion = {
|
|
62222
62819
|
__typename?: 'MarketplaceConsoleParentSoftwareVersion';
|
|
62223
62820
|
buildNumber: Scalars['ID']['output'];
|
|
@@ -62344,6 +62941,8 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
62344
62941
|
googleAnalyticsId?: Maybe<Scalars['String']['output']>;
|
|
62345
62942
|
icon?: Maybe<MarketplaceConsoleImageMediaAsset>;
|
|
62346
62943
|
jsdEmbeddedDataKey?: Maybe<Scalars['String']['output']>;
|
|
62944
|
+
legacyCategories?: Maybe<Array<MarketplaceConsoleLegacyCategory>>;
|
|
62945
|
+
legacyListingDetails?: Maybe<MarketplaceConsoleLegacyListingDetails>;
|
|
62347
62946
|
legacyMongoAppDetails?: Maybe<MarketplaceConsoleLegacyMongoAppDetails>;
|
|
62348
62947
|
logicalCategories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
62349
62948
|
marketingLabels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -62401,6 +63000,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
62401
63000
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
62402
63001
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
62403
63002
|
makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
|
|
63003
|
+
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
62404
63004
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
62405
63005
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
62406
63006
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
@@ -62455,6 +63055,9 @@ export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
|
|
|
62455
63055
|
appId: Scalars['ID']['input'];
|
|
62456
63056
|
buildNumber: Scalars['ID']['input'];
|
|
62457
63057
|
};
|
|
63058
|
+
export declare type MarketplaceConsoleQueryApiParentProductPricingArgs = {
|
|
63059
|
+
product: MarketplaceConsoleParentSoftwarePricingQueryInput;
|
|
63060
|
+
};
|
|
62458
63061
|
export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
62459
63062
|
appKey: Scalars['ID']['input'];
|
|
62460
63063
|
productId: Scalars['ID']['input'];
|
|
@@ -62984,6 +63587,10 @@ export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
|
62984
63587
|
Confluence = "CONFLUENCE",
|
|
62985
63588
|
Jira = "JIRA"
|
|
62986
63589
|
}
|
|
63590
|
+
export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
63591
|
+
__typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
|
|
63592
|
+
installed?: Maybe<Scalars['Boolean']['output']>;
|
|
63593
|
+
};
|
|
62987
63594
|
export declare type MarketplaceStoreLoggedInUser = {
|
|
62988
63595
|
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
62989
63596
|
email: Scalars['String']['output'];
|
|
@@ -63149,6 +63756,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
63149
63756
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
63150
63757
|
homePage: MarketplaceStoreHomePageResponse;
|
|
63151
63758
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
63759
|
+
installedAppDetails: MarketplaceStoreInstalledAppDetailsResponse;
|
|
63152
63760
|
myReview: MarketplaceStoreCurrentUserReviewResponse;
|
|
63153
63761
|
partner: MarketplaceStorePartnerResponse;
|
|
63154
63762
|
};
|
|
@@ -63179,6 +63787,9 @@ export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
|
63179
63787
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
63180
63788
|
id: Scalars['ID']['input'];
|
|
63181
63789
|
};
|
|
63790
|
+
export declare type MarketplaceStoreQueryApiInstalledAppDetailsArgs = {
|
|
63791
|
+
input?: InputMaybe<MarketplaceStoreInstallAppInput>;
|
|
63792
|
+
};
|
|
63182
63793
|
export declare type MarketplaceStoreQueryApiMyReviewArgs = {
|
|
63183
63794
|
appKey: Scalars['String']['input'];
|
|
63184
63795
|
};
|
|
@@ -65006,6 +65617,7 @@ export declare type Mutation = {
|
|
|
65006
65617
|
confluenceV2_createPage?: Maybe<ConfluenceV2CreatePagePayload>;
|
|
65007
65618
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
65008
65619
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
65620
|
+
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
65009
65621
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
65010
65622
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
65011
65623
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -65281,6 +65893,7 @@ export declare type MutationAddLabelsArgs = {
|
|
|
65281
65893
|
input: AddLabelsInput;
|
|
65282
65894
|
};
|
|
65283
65895
|
export declare type MutationAddReactionArgs = {
|
|
65896
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
65284
65897
|
containerId: Scalars['String']['input'];
|
|
65285
65898
|
containerType: ContainerType;
|
|
65286
65899
|
contentId: Scalars['String']['input'];
|
|
@@ -65823,6 +66436,10 @@ export declare type MutationConfluenceV2_DeletePageArgs = {
|
|
|
65823
66436
|
export declare type MutationConfluenceV2_UpdatePageArgs = {
|
|
65824
66437
|
input: ConfluenceV2UpdatePageInput;
|
|
65825
66438
|
};
|
|
66439
|
+
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
66440
|
+
cloudId: Scalars['ID']['input'];
|
|
66441
|
+
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
66442
|
+
};
|
|
65826
66443
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
65827
66444
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
65828
66445
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66073,6 +66690,7 @@ export declare type MutationDeletePolarisViewSetArgs = {
|
|
|
66073
66690
|
id: Scalars['ID']['input'];
|
|
66074
66691
|
};
|
|
66075
66692
|
export declare type MutationDeleteReactionArgs = {
|
|
66693
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
66076
66694
|
containerId: Scalars['String']['input'];
|
|
66077
66695
|
containerType: ContainerType;
|
|
66078
66696
|
contentId: Scalars['String']['input'];
|
|
@@ -69169,6 +69787,7 @@ export declare type Query = {
|
|
|
69169
69787
|
adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
|
|
69170
69788
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
69171
69789
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
69790
|
+
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummary>;
|
|
69172
69791
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
69173
69792
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
69174
69793
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -69179,6 +69798,7 @@ export declare type Query = {
|
|
|
69179
69798
|
appAdmin?: Maybe<AppAdminQuery>;
|
|
69180
69799
|
appContributors: Array<AppContributor>;
|
|
69181
69800
|
appDeployment?: Maybe<AppDeployment>;
|
|
69801
|
+
appHostServiceScopes: Array<Maybe<AppHostServiceScope>>;
|
|
69182
69802
|
appHostServices?: Maybe<Array<AppHostService>>;
|
|
69183
69803
|
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
69184
69804
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
@@ -69433,7 +70053,9 @@ export declare type Query = {
|
|
|
69433
70053
|
confluenceV2_spaceSettings?: Maybe<ConfluenceV2SpaceSettings>;
|
|
69434
70054
|
confluenceV2_spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
69435
70055
|
confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
|
|
70056
|
+
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
69436
70057
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
70058
|
+
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
69437
70059
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
69438
70060
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
69439
70061
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
@@ -69534,7 +70156,6 @@ export declare type Query = {
|
|
|
69534
70156
|
favoriteContent?: Maybe<PaginatedContentList>;
|
|
69535
70157
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
69536
70158
|
feed?: Maybe<PaginatedFeed>;
|
|
69537
|
-
firebolt_bookById?: Maybe<FireboltBook>;
|
|
69538
70159
|
forYouFeed?: Maybe<ForYouPaginatedFeed>;
|
|
69539
70160
|
fullHubArticle?: Maybe<ContentPlatformFullHubArticle>;
|
|
69540
70161
|
fullHubArticles: ContentPlatformHubArticleSearchConnection;
|
|
@@ -69578,6 +70199,7 @@ export declare type Query = {
|
|
|
69578
70199
|
incomingLinksCount?: Maybe<IncomingLinksCount>;
|
|
69579
70200
|
inlineTasks?: Maybe<InlineTasksQueryResult>;
|
|
69580
70201
|
insights?: Maybe<Insights>;
|
|
70202
|
+
installationContexts?: Maybe<Array<InstallationContext>>;
|
|
69581
70203
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
69582
70204
|
instanceAnalyticsCount?: Maybe<InstanceAnalyticsCount>;
|
|
69583
70205
|
internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
|
|
@@ -69595,7 +70217,7 @@ export declare type Query = {
|
|
|
69595
70217
|
isSainSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69596
70218
|
isSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
69597
70219
|
jira?: Maybe<JiraQuery>;
|
|
69598
|
-
jiraAlignAgg_projectsByAris?: Maybe<Array<JiraAlignAggProject
|
|
70220
|
+
jiraAlignAgg_projectsByAris?: Maybe<Array<Maybe<JiraAlignAggProject>>>;
|
|
69599
70221
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
69600
70222
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
69601
70223
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -69613,6 +70235,9 @@ export declare type Query = {
|
|
|
69613
70235
|
lookAndFeel?: Maybe<LookAndFeelSettings>;
|
|
69614
70236
|
loomToken?: Maybe<LoomToken>;
|
|
69615
70237
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
70238
|
+
loom_space?: Maybe<LoomSpace>;
|
|
70239
|
+
loom_spacesSearch: Array<Maybe<LoomSpace>>;
|
|
70240
|
+
loom_video?: Maybe<LoomVideo>;
|
|
69616
70241
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
69617
70242
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
69618
70243
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -69693,12 +70318,9 @@ export declare type Query = {
|
|
|
69693
70318
|
quickReload?: Maybe<QuickReload>;
|
|
69694
70319
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
69695
70320
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
69696
|
-
radar_position?: Maybe<RadarPosition>;
|
|
69697
70321
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
69698
|
-
radar_positions?: Maybe<RadarPositionConnection>;
|
|
69699
70322
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
69700
70323
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
69701
|
-
radar_worker?: Maybe<RadarWorker>;
|
|
69702
70324
|
radar_workerByAri?: Maybe<RadarWorker>;
|
|
69703
70325
|
radar_workersByAris?: Maybe<Array<RadarWorker>>;
|
|
69704
70326
|
radar_workspace: RadarWorkspace;
|
|
@@ -69749,6 +70371,7 @@ export declare type Query = {
|
|
|
69749
70371
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
69750
70372
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
69751
70373
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
70374
|
+
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
69752
70375
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
69753
70376
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
69754
70377
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -69813,6 +70436,10 @@ export declare type QueryAdminAnnouncementBannerSettingsByCriteriaArgs = {
|
|
|
69813
70436
|
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69814
70437
|
orderBy?: InputMaybe<AdminAnnouncementBannerSettingsByCriteriaOrder>;
|
|
69815
70438
|
};
|
|
70439
|
+
export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
70440
|
+
cloudId: Scalars['ID']['input'];
|
|
70441
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
70442
|
+
};
|
|
69816
70443
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
69817
70444
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69818
70445
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -69858,6 +70485,9 @@ export declare type QueryAppDeploymentArgs = {
|
|
|
69858
70485
|
environmentKey: Scalars['String']['input'];
|
|
69859
70486
|
id: Scalars['ID']['input'];
|
|
69860
70487
|
};
|
|
70488
|
+
export declare type QueryAppHostServiceScopesArgs = {
|
|
70489
|
+
keys: Array<Scalars['ID']['input']>;
|
|
70490
|
+
};
|
|
69861
70491
|
export declare type QueryAppHostServicesArgs = {
|
|
69862
70492
|
filter?: InputMaybe<AppServicesFilter>;
|
|
69863
70493
|
};
|
|
@@ -70957,6 +71587,14 @@ export declare type QueryConfluenceV2_SpaceThemeArgs = {
|
|
|
70957
71587
|
export declare type QueryConfluenceV2_SpacesArgs = {
|
|
70958
71588
|
ids: Array<Scalars['ID']['input']>;
|
|
70959
71589
|
};
|
|
71590
|
+
export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
71591
|
+
cloudId: Scalars['ID']['input'];
|
|
71592
|
+
};
|
|
71593
|
+
export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
71594
|
+
cloudId: Scalars['ID']['input'];
|
|
71595
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
71596
|
+
searchText: Scalars['String']['input'];
|
|
71597
|
+
};
|
|
70960
71598
|
export declare type QueryConfluence_StorageArgs = {
|
|
70961
71599
|
cloudId: Scalars['ID']['input'];
|
|
70962
71600
|
};
|
|
@@ -70965,7 +71603,7 @@ export declare type QueryConfluence_TenantContextArgs = {
|
|
|
70965
71603
|
};
|
|
70966
71604
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
70967
71605
|
applicationId: Scalars['ID']['input'];
|
|
70968
|
-
cloudId
|
|
71606
|
+
cloudId: Scalars['ID']['input'];
|
|
70969
71607
|
jql: Scalars['String']['input'];
|
|
70970
71608
|
};
|
|
70971
71609
|
export declare type QueryConfluence_WorkflowArgs = {
|
|
@@ -71099,6 +71737,7 @@ export declare type QueryContentPermissionsArgs = {
|
|
|
71099
71737
|
contentId: Scalars['ID']['input'];
|
|
71100
71738
|
};
|
|
71101
71739
|
export declare type QueryContentReactionsSummaryArgs = {
|
|
71740
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
71102
71741
|
contentId: Scalars['ID']['input'];
|
|
71103
71742
|
contentType: Scalars['String']['input'];
|
|
71104
71743
|
};
|
|
@@ -71379,9 +72018,6 @@ export declare type QueryFeedArgs = {
|
|
|
71379
72018
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71380
72019
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
71381
72020
|
};
|
|
71382
|
-
export declare type QueryFirebolt_BookByIdArgs = {
|
|
71383
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
71384
|
-
};
|
|
71385
72021
|
export declare type QueryForYouFeedArgs = {
|
|
71386
72022
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71387
72023
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -71528,6 +72164,9 @@ export declare type QueryIncomingLinksCountArgs = {
|
|
|
71528
72164
|
export declare type QueryInlineTasksArgs = {
|
|
71529
72165
|
tasksQuery: InlineTasksByMetadata;
|
|
71530
72166
|
};
|
|
72167
|
+
export declare type QueryInstallationContextsArgs = {
|
|
72168
|
+
appId: Scalars['ID']['input'];
|
|
72169
|
+
};
|
|
71531
72170
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
71532
72171
|
appId: Scalars['ID']['input'];
|
|
71533
72172
|
};
|
|
@@ -71576,7 +72215,7 @@ export declare type QueryIsSainSearchEnabledArgs = {
|
|
|
71576
72215
|
cloudId: Scalars['String']['input'];
|
|
71577
72216
|
};
|
|
71578
72217
|
export declare type QueryJiraAlignAgg_ProjectsByArisArgs = {
|
|
71579
|
-
|
|
72218
|
+
ids: Array<Scalars['ID']['input']>;
|
|
71580
72219
|
};
|
|
71581
72220
|
export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
71582
72221
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -71605,6 +72244,16 @@ export declare type QueryLabelSearchArgs = {
|
|
|
71605
72244
|
export declare type QueryLookAndFeelArgs = {
|
|
71606
72245
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
71607
72246
|
};
|
|
72247
|
+
export declare type QueryLoom_SpaceArgs = {
|
|
72248
|
+
id: Scalars['ID']['input'];
|
|
72249
|
+
};
|
|
72250
|
+
export declare type QueryLoom_SpacesSearchArgs = {
|
|
72251
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
72252
|
+
siteId: Scalars['ID']['input'];
|
|
72253
|
+
};
|
|
72254
|
+
export declare type QueryLoom_VideoArgs = {
|
|
72255
|
+
id: Scalars['ID']['input'];
|
|
72256
|
+
};
|
|
71608
72257
|
export declare type QueryMacroBodyRendererArgs = {
|
|
71609
72258
|
adf: Scalars['String']['input'];
|
|
71610
72259
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -71876,21 +72525,9 @@ export declare type QueryRadar_GroupMetricsArgs = {
|
|
|
71876
72525
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
71877
72526
|
uniqueFieldIdIsIn: Array<Scalars['ID']['input']>;
|
|
71878
72527
|
};
|
|
71879
|
-
export declare type QueryRadar_PositionArgs = {
|
|
71880
|
-
id: Scalars['ID']['input'];
|
|
71881
|
-
};
|
|
71882
72528
|
export declare type QueryRadar_PositionByAriArgs = {
|
|
71883
72529
|
id: Scalars['ID']['input'];
|
|
71884
72530
|
};
|
|
71885
|
-
export declare type QueryRadar_PositionsArgs = {
|
|
71886
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
71887
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
71888
|
-
cloudId: Scalars['ID']['input'];
|
|
71889
|
-
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
71890
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71891
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71892
|
-
rql?: InputMaybe<Scalars['String']['input']>;
|
|
71893
|
-
};
|
|
71894
72531
|
export declare type QueryRadar_PositionsByArisArgs = {
|
|
71895
72532
|
ids: Array<Scalars['ID']['input']>;
|
|
71896
72533
|
};
|
|
@@ -71903,9 +72540,6 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
71903
72540
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71904
72541
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
71905
72542
|
};
|
|
71906
|
-
export declare type QueryRadar_WorkerArgs = {
|
|
71907
|
-
id: Scalars['ID']['input'];
|
|
71908
|
-
};
|
|
71909
72543
|
export declare type QueryRadar_WorkerByAriArgs = {
|
|
71910
72544
|
id: Scalars['ID']['input'];
|
|
71911
72545
|
};
|
|
@@ -71916,6 +72550,7 @@ export declare type QueryRadar_WorkspaceArgs = {
|
|
|
71916
72550
|
cloudId: Scalars['ID']['input'];
|
|
71917
72551
|
};
|
|
71918
72552
|
export declare type QueryReactedUsersArgs = {
|
|
72553
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
71919
72554
|
containerId: Scalars['String']['input'];
|
|
71920
72555
|
containerType: ContainerType;
|
|
71921
72556
|
contentId: Scalars['String']['input'];
|
|
@@ -71923,6 +72558,7 @@ export declare type QueryReactedUsersArgs = {
|
|
|
71923
72558
|
emojiId: Scalars['String']['input'];
|
|
71924
72559
|
};
|
|
71925
72560
|
export declare type QueryReactionsSummaryArgs = {
|
|
72561
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
71926
72562
|
containerId: Scalars['ID']['input'];
|
|
71927
72563
|
containerType?: InputMaybe<Scalars['String']['input']>;
|
|
71928
72564
|
contentId: Scalars['ID']['input'];
|
|
@@ -72118,6 +72754,11 @@ export declare type QuerySpacesArgs = {
|
|
|
72118
72754
|
export declare type QuerySpacesWithExemptionsArgs = {
|
|
72119
72755
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
72120
72756
|
};
|
|
72757
|
+
export declare type QuerySqlSlowQueryLogsArgs = {
|
|
72758
|
+
installationId: Scalars['ID']['input'];
|
|
72759
|
+
interval: QueryInterval;
|
|
72760
|
+
queryType: Array<QueryType>;
|
|
72761
|
+
};
|
|
72121
72762
|
export declare type QueryStalePagesArgs = {
|
|
72122
72763
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
72123
72764
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -72305,6 +72946,10 @@ export declare type QueryErrorExtension = {
|
|
|
72305
72946
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
72306
72947
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
72307
72948
|
};
|
|
72949
|
+
export declare type QueryInterval = {
|
|
72950
|
+
endTime: Scalars['String']['input'];
|
|
72951
|
+
startTime: Scalars['String']['input'];
|
|
72952
|
+
};
|
|
72308
72953
|
export declare type QueryPayload = {
|
|
72309
72954
|
errors?: Maybe<Array<QueryError>>;
|
|
72310
72955
|
success: Scalars['Boolean']['output'];
|
|
@@ -72340,6 +72985,14 @@ export declare type QuerySuggestionResultNode = {
|
|
|
72340
72985
|
title?: Maybe<Scalars['String']['output']>;
|
|
72341
72986
|
type?: Maybe<Scalars['String']['output']>;
|
|
72342
72987
|
};
|
|
72988
|
+
export declare enum QueryType {
|
|
72989
|
+
All = "ALL",
|
|
72990
|
+
Delete = "DELETE",
|
|
72991
|
+
Insert = "INSERT",
|
|
72992
|
+
Other = "OTHER",
|
|
72993
|
+
Select = "SELECT",
|
|
72994
|
+
Update = "UPDATE"
|
|
72995
|
+
}
|
|
72343
72996
|
export declare type QuickReload = {
|
|
72344
72997
|
__typename?: 'QuickReload';
|
|
72345
72998
|
comments: Array<QuickReloadComment>;
|
|
@@ -72508,6 +73161,7 @@ export declare type RadarPosition = Node & RadarEntity & {
|
|
|
72508
73161
|
entityId: Scalars['ID']['output'];
|
|
72509
73162
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
72510
73163
|
id: Scalars['ID']['output'];
|
|
73164
|
+
isManager: Scalars['Boolean']['output'];
|
|
72511
73165
|
manager?: Maybe<RadarPosition>;
|
|
72512
73166
|
reportingLine?: Maybe<Array<RadarPosition>>;
|
|
72513
73167
|
type?: Maybe<RadarEntityType>;
|
|
@@ -72668,9 +73322,6 @@ export declare enum RateLimitingCurrency {
|
|
|
72668
73322
|
PolarisViewCurrency = "POLARIS_VIEW_CURRENCY",
|
|
72669
73323
|
PolarisViewQueryCurrency = "POLARIS_VIEW_QUERY_CURRENCY",
|
|
72670
73324
|
PolarisWriteCurrency = "POLARIS_WRITE_CURRENCY",
|
|
72671
|
-
ShepherdDefaultCurrency = "SHEPHERD_DEFAULT_CURRENCY",
|
|
72672
|
-
ShepherdMultipleReadsCurrency = "SHEPHERD_MULTIPLE_READS_CURRENCY",
|
|
72673
|
-
ShepherdReadAlertCurrency = "SHEPHERD_READ_ALERT_CURRENCY",
|
|
72674
73325
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
72675
73326
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
72676
73327
|
TeamMembersV2Currency = "TEAM_MEMBERS_V2_CURRENCY",
|
|
@@ -72699,6 +73350,7 @@ export declare type ReactedUsersResponse = {
|
|
|
72699
73350
|
reacted: Scalars['Boolean']['output'];
|
|
72700
73351
|
};
|
|
72701
73352
|
export declare type ReactionsId = {
|
|
73353
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
72702
73354
|
containerId: Scalars['ID']['input'];
|
|
72703
73355
|
containerType: Scalars['String']['input'];
|
|
72704
73356
|
contentId: Scalars['ID']['input'];
|
|
@@ -72948,6 +73600,14 @@ export declare type ResolvePolarisObjectPayload = Payload & {
|
|
|
72948
73600
|
response?: Maybe<ResolvedPolarisObject>;
|
|
72949
73601
|
success: Scalars['Boolean']['output'];
|
|
72950
73602
|
};
|
|
73603
|
+
export declare type ResolveRestrictionsForSubjectMutationErrorExtension = MutationErrorExtension & {
|
|
73604
|
+
__typename?: 'ResolveRestrictionsForSubjectMutationErrorExtension';
|
|
73605
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
73606
|
+
resourceId: Scalars['Long']['output'];
|
|
73607
|
+
resourceType: ResourceType;
|
|
73608
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
73609
|
+
subject: BlockedAccessSubject;
|
|
73610
|
+
};
|
|
72951
73611
|
export declare type ResolvedPolarisObject = {
|
|
72952
73612
|
__typename?: 'ResolvedPolarisObject';
|
|
72953
73613
|
auth?: Maybe<ResolvedPolarisObjectAuth>;
|
|
@@ -73689,6 +74349,15 @@ export declare enum RoleAssignmentPrincipalType {
|
|
|
73689
74349
|
Team = "TEAM",
|
|
73690
74350
|
User = "USER"
|
|
73691
74351
|
}
|
|
74352
|
+
export declare type SqlSlowQueryLogsResponse = {
|
|
74353
|
+
__typename?: 'SQLSlowQueryLogsResponse';
|
|
74354
|
+
avgQueryExecutionTime: Scalars['Float']['output'];
|
|
74355
|
+
percentileQueryExecutionTime: Scalars['Float']['output'];
|
|
74356
|
+
query: Scalars['String']['output'];
|
|
74357
|
+
queryCount: Scalars['Int']['output'];
|
|
74358
|
+
rowsReturned: Scalars['Int']['output'];
|
|
74359
|
+
rowsScanned: Scalars['Int']['output'];
|
|
74360
|
+
};
|
|
73692
74361
|
export declare type Sandbox = {
|
|
73693
74362
|
__typename?: 'Sandbox';
|
|
73694
74363
|
events: Array<SandboxEvent>;
|
|
@@ -74512,7 +75181,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
74512
75181
|
type: SearchResultType;
|
|
74513
75182
|
url: Scalars['URL']['output'];
|
|
74514
75183
|
};
|
|
74515
|
-
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;
|
|
75184
|
+
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;
|
|
74516
75185
|
export declare type SearchResultFederated = SearchResult & {
|
|
74517
75186
|
__typename?: 'SearchResultFederated';
|
|
74518
75187
|
description: Scalars['String']['output'];
|
|
@@ -75314,6 +75983,7 @@ export declare type ShepherdActorProductAccess = {
|
|
|
75314
75983
|
export declare type ShepherdActorResult = QueryError | ShepherdActor;
|
|
75315
75984
|
export declare type ShepherdActorSession = {
|
|
75316
75985
|
__typename?: 'ShepherdActorSession';
|
|
75986
|
+
authFactors?: Maybe<Array<Scalars['String']['output']>>;
|
|
75317
75987
|
device?: Maybe<ShepherdLoginDevice>;
|
|
75318
75988
|
lastActiveTime?: Maybe<Scalars['DateTime']['output']>;
|
|
75319
75989
|
loginLocation?: Maybe<ShepherdLoginLocation>;
|
|
@@ -77130,6 +77800,7 @@ export declare type Space = {
|
|
|
77130
77800
|
permissions?: Maybe<Array<Maybe<SpacePermission>>>;
|
|
77131
77801
|
settings?: Maybe<SpaceSettings>;
|
|
77132
77802
|
spaceAdmins: PaginatedPersonList;
|
|
77803
|
+
spaceOwner?: Maybe<ConfluenceSpaceDetailsSpaceOwner>;
|
|
77133
77804
|
spaceTypeSettings: SpaceTypeSettings;
|
|
77134
77805
|
status?: Maybe<Scalars['String']['output']>;
|
|
77135
77806
|
theme?: Maybe<Theme>;
|
|
@@ -79409,6 +80080,36 @@ export declare enum TownsquareGoalTypeState {
|
|
|
79409
80080
|
Disabled = "DISABLED",
|
|
79410
80081
|
Enabled = "ENABLED"
|
|
79411
80082
|
}
|
|
80083
|
+
export declare type TownsquareGoalUpdate = Node & {
|
|
80084
|
+
__typename?: 'TownsquareGoalUpdate';
|
|
80085
|
+
ari: Scalars['String']['output'];
|
|
80086
|
+
comments?: Maybe<TownsquareCommentConnection>;
|
|
80087
|
+
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
80088
|
+
creator?: Maybe<User>;
|
|
80089
|
+
editDate?: Maybe<Scalars['DateTime']['output']>;
|
|
80090
|
+
goal?: Maybe<TownsquareGoal>;
|
|
80091
|
+
id: Scalars['ID']['output'];
|
|
80092
|
+
lastEditedBy?: Maybe<User>;
|
|
80093
|
+
missedUpdate: Scalars['Boolean']['output'];
|
|
80094
|
+
newDueDate?: Maybe<TownsquareTargetDate>;
|
|
80095
|
+
newScore: Scalars['Int']['output'];
|
|
80096
|
+
newState?: Maybe<TownsquareGoalState>;
|
|
80097
|
+
newTargetDate?: Maybe<Scalars['Date']['output']>;
|
|
80098
|
+
newTargetDateConfidence: Scalars['Int']['output'];
|
|
80099
|
+
oldDueDate?: Maybe<TownsquareTargetDate>;
|
|
80100
|
+
oldScore?: Maybe<Scalars['Int']['output']>;
|
|
80101
|
+
oldState?: Maybe<TownsquareGoalState>;
|
|
80102
|
+
oldTargetDate?: Maybe<Scalars['Date']['output']>;
|
|
80103
|
+
oldTargetDateConfidence?: Maybe<Scalars['Int']['output']>;
|
|
80104
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
80105
|
+
updateType?: Maybe<TownsquareUpdateType>;
|
|
80106
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
80107
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
80108
|
+
};
|
|
80109
|
+
export declare type TownsquareGoalUpdateCommentsArgs = {
|
|
80110
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80111
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80112
|
+
};
|
|
79412
80113
|
export declare type TownsquareLocalizationField = {
|
|
79413
80114
|
__typename?: 'TownsquareLocalizationField';
|
|
79414
80115
|
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -79541,6 +80242,7 @@ export declare type TownsquareQueryApi = {
|
|
|
79541
80242
|
goalTqlFullHierarchy?: Maybe<TownsquareGoalConnection>;
|
|
79542
80243
|
goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
79543
80244
|
goalTypesByAri?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
80245
|
+
goalUpdatesByAris?: Maybe<Array<Maybe<TownsquareGoalUpdate>>>;
|
|
79544
80246
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
79545
80247
|
project?: Maybe<TownsquareProject>;
|
|
79546
80248
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
@@ -79596,6 +80298,9 @@ export declare type TownsquareQueryApiGoalTypesArgs = {
|
|
|
79596
80298
|
export declare type TownsquareQueryApiGoalTypesByAriArgs = {
|
|
79597
80299
|
aris: Array<Scalars['String']['input']>;
|
|
79598
80300
|
};
|
|
80301
|
+
export declare type TownsquareQueryApiGoalUpdatesByArisArgs = {
|
|
80302
|
+
aris: Array<Scalars['ID']['input']>;
|
|
80303
|
+
};
|
|
79599
80304
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
79600
80305
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
79601
80306
|
};
|
|
@@ -79726,6 +80431,10 @@ export declare type TownsquareUnshardedWorkspaceSummaryEdge = {
|
|
|
79726
80431
|
cursor: Scalars['String']['output'];
|
|
79727
80432
|
node?: Maybe<TownsquareUnshardedWorkspaceSummary>;
|
|
79728
80433
|
};
|
|
80434
|
+
export declare enum TownsquareUpdateType {
|
|
80435
|
+
System = "SYSTEM",
|
|
80436
|
+
User = "USER"
|
|
80437
|
+
}
|
|
79729
80438
|
export declare type TownsquareUserCapabilities = {
|
|
79730
80439
|
__typename?: 'TownsquareUserCapabilities';
|
|
79731
80440
|
capabilities?: Maybe<Array<Maybe<TownsquareCapability>>>;
|
|
@@ -80120,7 +80829,7 @@ export declare type TrelloCard = Node & {
|
|
|
80120
80829
|
checklists?: Maybe<TrelloChecklistConnection>;
|
|
80121
80830
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
80122
80831
|
cover?: Maybe<TrelloCardCover>;
|
|
80123
|
-
|
|
80832
|
+
creation?: Maybe<TrelloCardCreationInfo>;
|
|
80124
80833
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
80125
80834
|
description?: Maybe<TrelloDescription>;
|
|
80126
80835
|
due?: Maybe<TrelloCardDueInfo>;
|
|
@@ -80264,6 +80973,12 @@ export declare type TrelloCardCoverUpdated = {
|
|
|
80264
80973
|
sharedSourceUrl?: Maybe<Scalars['URL']['output']>;
|
|
80265
80974
|
size?: Maybe<TrelloCardCoverSize>;
|
|
80266
80975
|
};
|
|
80976
|
+
export declare type TrelloCardCreationInfo = {
|
|
80977
|
+
__typename?: 'TrelloCardCreationInfo';
|
|
80978
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
80979
|
+
loadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
80980
|
+
method?: Maybe<Scalars['String']['output']>;
|
|
80981
|
+
};
|
|
80267
80982
|
export declare type TrelloCardDueInfo = {
|
|
80268
80983
|
__typename?: 'TrelloCardDueInfo';
|
|
80269
80984
|
at?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -80305,10 +81020,14 @@ export declare type TrelloCardUpdated = {
|
|
|
80305
81020
|
badges?: Maybe<TrelloCardBadges>;
|
|
80306
81021
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
80307
81022
|
cover?: Maybe<TrelloCardCoverUpdated>;
|
|
81023
|
+
creation?: Maybe<TrelloCardCreationInfo>;
|
|
81024
|
+
customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
|
|
80308
81025
|
description?: Maybe<Scalars['String']['output']>;
|
|
81026
|
+
due?: Maybe<TrelloCardDueInfo>;
|
|
80309
81027
|
id: Scalars['ID']['output'];
|
|
80310
81028
|
labels?: Maybe<TrelloLabelUpdatedConnection>;
|
|
80311
81029
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
81030
|
+
location?: Maybe<TrelloCardLocation>;
|
|
80312
81031
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
80313
81032
|
name?: Maybe<Scalars['String']['output']>;
|
|
80314
81033
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -80376,14 +81095,10 @@ export declare type TrelloCreatePlannerCalendarEventInput = {
|
|
|
80376
81095
|
providerAccountId: Scalars['ID']['input'];
|
|
80377
81096
|
};
|
|
80378
81097
|
export declare type TrelloCreatePlannerCalendarEventOptions = {
|
|
80379
|
-
|
|
80380
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
81098
|
+
cardId?: InputMaybe<Scalars['ID']['input']>;
|
|
80381
81099
|
end: Scalars['DateTime']['input'];
|
|
80382
|
-
eventType?: InputMaybe<TrelloPlannerCalendarEventType>;
|
|
80383
|
-
readOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80384
81100
|
start: Scalars['DateTime']['input'];
|
|
80385
81101
|
title: Scalars['String']['input'];
|
|
80386
|
-
visibility?: InputMaybe<TrelloPlannerCalendarEventVisibility>;
|
|
80387
81102
|
};
|
|
80388
81103
|
export declare type TrelloCreatePlannerCalendarEventPayload = Payload & {
|
|
80389
81104
|
__typename?: 'TrelloCreatePlannerCalendarEventPayload';
|
|
@@ -80433,6 +81148,10 @@ export declare type TrelloCustomFieldItemEdge = {
|
|
|
80433
81148
|
cursor: Scalars['String']['output'];
|
|
80434
81149
|
node: TrelloCustomFieldItem;
|
|
80435
81150
|
};
|
|
81151
|
+
export declare type TrelloCustomFieldItemUpdatedConnection = {
|
|
81152
|
+
__typename?: 'TrelloCustomFieldItemUpdatedConnection';
|
|
81153
|
+
nodes?: Maybe<Array<TrelloCustomFieldItem>>;
|
|
81154
|
+
};
|
|
80436
81155
|
export declare type TrelloCustomFieldItemValueInfo = {
|
|
80437
81156
|
__typename?: 'TrelloCustomFieldItemValueInfo';
|
|
80438
81157
|
checked?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -80481,6 +81200,23 @@ export declare type TrelloDescriptionDataEmojisArgs = {
|
|
|
80481
81200
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80482
81201
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80483
81202
|
};
|
|
81203
|
+
export declare type TrelloEditPlannerCalendarEventInput = {
|
|
81204
|
+
event: TrelloEditPlannerCalendarEventOptions;
|
|
81205
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
81206
|
+
providerAccountId: Scalars['ID']['input'];
|
|
81207
|
+
};
|
|
81208
|
+
export declare type TrelloEditPlannerCalendarEventOptions = {
|
|
81209
|
+
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
81210
|
+
id: Scalars['ID']['input'];
|
|
81211
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
81212
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
81213
|
+
};
|
|
81214
|
+
export declare type TrelloEditPlannerCalendarEventPayload = Payload & {
|
|
81215
|
+
__typename?: 'TrelloEditPlannerCalendarEventPayload';
|
|
81216
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81217
|
+
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
81218
|
+
success: Scalars['Boolean']['output'];
|
|
81219
|
+
};
|
|
80484
81220
|
export declare type TrelloEnterprise = {
|
|
80485
81221
|
__typename?: 'TrelloEnterprise';
|
|
80486
81222
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -80719,6 +81455,7 @@ export declare type TrelloMutationApi = {
|
|
|
80719
81455
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
80720
81456
|
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
80721
81457
|
createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
|
|
81458
|
+
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
80722
81459
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
80723
81460
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
80724
81461
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
@@ -80751,6 +81488,9 @@ export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
|
80751
81488
|
export declare type TrelloMutationApiCreatePlannerCalendarEventArgs = {
|
|
80752
81489
|
input: TrelloCreatePlannerCalendarEventInput;
|
|
80753
81490
|
};
|
|
81491
|
+
export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
81492
|
+
input: TrelloEditPlannerCalendarEventInput;
|
|
81493
|
+
};
|
|
80754
81494
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
80755
81495
|
input: TrelloPinCardInput;
|
|
80756
81496
|
};
|
|
@@ -80895,6 +81635,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
80895
81635
|
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
80896
81636
|
busy?: Maybe<Scalars['Boolean']['output']>;
|
|
80897
81637
|
cards?: Maybe<TrelloPlannerCalendarEventCardConnection>;
|
|
81638
|
+
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
80898
81639
|
conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
|
|
80899
81640
|
createdByTrello?: Maybe<Scalars['Boolean']['output']>;
|
|
80900
81641
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -80959,8 +81700,8 @@ export declare enum TrelloPlannerCalendarEventStatus {
|
|
|
80959
81700
|
}
|
|
80960
81701
|
export declare enum TrelloPlannerCalendarEventType {
|
|
80961
81702
|
Default = "DEFAULT",
|
|
80962
|
-
|
|
80963
|
-
|
|
81703
|
+
OutOfOffice = "OUT_OF_OFFICE",
|
|
81704
|
+
PlannerEvent = "PLANNER_EVENT"
|
|
80964
81705
|
}
|
|
80965
81706
|
export declare enum TrelloPlannerCalendarEventVisibility {
|
|
80966
81707
|
Default = "DEFAULT",
|
|
@@ -81498,12 +82239,6 @@ export declare type UnifiedAccessStatus = UnifiedINode & {
|
|
|
81498
82239
|
};
|
|
81499
82240
|
export declare type UnifiedAccount = UnifiedINode & {
|
|
81500
82241
|
__typename?: 'UnifiedAccount';
|
|
81501
|
-
id: Scalars['ID']['output'];
|
|
81502
|
-
linkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
81503
|
-
parentAccount?: Maybe<UnifiedParentAccount>;
|
|
81504
|
-
};
|
|
81505
|
-
export declare type UnifiedAccount2 = UnifiedINode & {
|
|
81506
|
-
__typename?: 'UnifiedAccount2';
|
|
81507
82242
|
aaid: Scalars['String']['output'];
|
|
81508
82243
|
emailId: Scalars['String']['output'];
|
|
81509
82244
|
id: Scalars['ID']['output'];
|
|
@@ -81511,7 +82246,7 @@ export declare type UnifiedAccount2 = UnifiedINode & {
|
|
|
81511
82246
|
isLinked: Scalars['Boolean']['output'];
|
|
81512
82247
|
isManaged: Scalars['Boolean']['output'];
|
|
81513
82248
|
isPrimary: Scalars['Boolean']['output'];
|
|
81514
|
-
linkedAccounts?: Maybe<
|
|
82249
|
+
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
81515
82250
|
};
|
|
81516
82251
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
81517
82252
|
__typename?: 'UnifiedAccountDetails';
|
|
@@ -81771,7 +82506,7 @@ export declare type UnifiedLearning = UnifiedINode & {
|
|
|
81771
82506
|
recentCoursesBadges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
81772
82507
|
};
|
|
81773
82508
|
export declare type UnifiedLearningCertificationsArgs = {
|
|
81774
|
-
after?: InputMaybe<Scalars['
|
|
82509
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81775
82510
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81776
82511
|
sortDirection?: InputMaybe<UnifiedSortDirection>;
|
|
81777
82512
|
sortField?: InputMaybe<UnifiedLearningCertificationSortField>;
|
|
@@ -81842,33 +82577,16 @@ export declare type UnifiedLinkInitiationPayload = {
|
|
|
81842
82577
|
id: Scalars['ID']['output'];
|
|
81843
82578
|
token: Scalars['String']['output'];
|
|
81844
82579
|
};
|
|
81845
|
-
export declare type
|
|
81846
|
-
__typename?: '
|
|
81847
|
-
|
|
81848
|
-
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
|
|
81849
|
-
forums?: Maybe<UnifiedUForumsResult>;
|
|
81850
|
-
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
81851
|
-
id: Scalars['ID']['output'];
|
|
81852
|
-
learning?: Maybe<UnifiedULearningResult>;
|
|
81853
|
-
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
81854
|
-
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
81855
|
-
};
|
|
81856
|
-
export declare type UnifiedLinkedAccount2Connection = UnifiedIConnection & {
|
|
81857
|
-
__typename?: 'UnifiedLinkedAccount2Connection';
|
|
81858
|
-
edges?: Maybe<Array<Maybe<UnifiedLinkedAccount2Edge>>>;
|
|
82580
|
+
export declare type UnifiedLinkedAccountConnection = UnifiedIConnection & {
|
|
82581
|
+
__typename?: 'UnifiedLinkedAccountConnection';
|
|
82582
|
+
edges?: Maybe<Array<Maybe<UnifiedLinkedAccountEdge>>>;
|
|
81859
82583
|
pageInfo: UnifiedPageInfo;
|
|
81860
82584
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81861
82585
|
};
|
|
81862
|
-
export declare type
|
|
81863
|
-
__typename?: '
|
|
82586
|
+
export declare type UnifiedLinkedAccountEdge = UnifiedIEdge & {
|
|
82587
|
+
__typename?: 'UnifiedLinkedAccountEdge';
|
|
81864
82588
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
81865
|
-
node?: Maybe<
|
|
81866
|
-
};
|
|
81867
|
-
export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
81868
|
-
__typename?: 'UnifiedLinkedAccountPayload';
|
|
81869
|
-
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
81870
|
-
success: Scalars['Boolean']['output'];
|
|
81871
|
-
unifiedLinkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
82589
|
+
node?: Maybe<UnifiedAccount>;
|
|
81872
82590
|
};
|
|
81873
82591
|
export declare type UnifiedLinkingMutation = {
|
|
81874
82592
|
__typename?: 'UnifiedLinkingMutation';
|
|
@@ -81896,21 +82614,11 @@ export declare type UnifiedLinkingStatusPayload = UnifiedPayload & {
|
|
|
81896
82614
|
export declare type UnifiedMutation = {
|
|
81897
82615
|
__typename?: 'UnifiedMutation';
|
|
81898
82616
|
account?: Maybe<UnifiedAccountMutation>;
|
|
81899
|
-
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
|
|
81900
|
-
createParentAccount?: Maybe<UnifiedParentAccountPayload>;
|
|
81901
82617
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
81902
82618
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
81903
82619
|
linking?: Maybe<UnifiedLinkingMutation>;
|
|
81904
82620
|
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
|
|
81905
82621
|
};
|
|
81906
|
-
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
81907
|
-
aaid: Scalars['String']['input'];
|
|
81908
|
-
connectedProductsReferenceId: Scalars['String']['input'];
|
|
81909
|
-
parentAccountInternalId: Scalars['String']['input'];
|
|
81910
|
-
};
|
|
81911
|
-
export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
81912
|
-
aaid: Scalars['String']['input'];
|
|
81913
|
-
};
|
|
81914
82622
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
81915
82623
|
aaid: Scalars['String']['input'];
|
|
81916
82624
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -81936,43 +82644,29 @@ export declare type UnifiedPageInfo = {
|
|
|
81936
82644
|
hasPreviousPage?: Maybe<Scalars['Boolean']['output']>;
|
|
81937
82645
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
81938
82646
|
};
|
|
81939
|
-
export declare type UnifiedParentAccount = UnifiedINode & {
|
|
81940
|
-
__typename?: 'UnifiedParentAccount';
|
|
81941
|
-
aaid?: Maybe<Scalars['String']['output']>;
|
|
81942
|
-
id: Scalars['ID']['output'];
|
|
81943
|
-
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
81944
|
-
};
|
|
81945
|
-
export declare type UnifiedParentAccountPayload = UnifiedPayload & {
|
|
81946
|
-
__typename?: 'UnifiedParentAccountPayload';
|
|
81947
|
-
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
81948
|
-
success: Scalars['Boolean']['output'];
|
|
81949
|
-
unifiedParentAccount?: Maybe<UnifiedParentAccount>;
|
|
81950
|
-
};
|
|
81951
82647
|
export declare type UnifiedPayload = {
|
|
81952
82648
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
81953
82649
|
success: Scalars['Boolean']['output'];
|
|
81954
82650
|
};
|
|
81955
82651
|
export declare type UnifiedProfile = UnifiedINode & {
|
|
81956
82652
|
__typename?: 'UnifiedProfile';
|
|
82653
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
82654
|
+
accountInternalId?: Maybe<Scalars['String']['output']>;
|
|
81957
82655
|
badges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
81958
82656
|
bio?: Maybe<Scalars['String']['output']>;
|
|
81959
82657
|
company?: Maybe<Scalars['String']['output']>;
|
|
81960
82658
|
forums?: Maybe<UnifiedUForumsResult>;
|
|
81961
|
-
forumsId?: Maybe<Scalars['String']['output']>;
|
|
81962
82659
|
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
81963
|
-
gamificationId?: Maybe<Scalars['String']['output']>;
|
|
81964
82660
|
id: Scalars['ID']['output'];
|
|
82661
|
+
internalId?: Maybe<Scalars['ID']['output']>;
|
|
81965
82662
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
81966
82663
|
isPrivate: Scalars['Boolean']['output'];
|
|
81967
|
-
learnId?: Maybe<Scalars['String']['output']>;
|
|
81968
82664
|
learning?: Maybe<UnifiedULearningResult>;
|
|
81969
82665
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
81970
82666
|
location?: Maybe<Scalars['String']['output']>;
|
|
81971
|
-
parentAccountInternalId?: Maybe<Scalars['String']['output']>;
|
|
81972
82667
|
products?: Maybe<Scalars['String']['output']>;
|
|
81973
82668
|
role?: Maybe<Scalars['String']['output']>;
|
|
81974
|
-
|
|
81975
|
-
unifiedProfileUsername?: Maybe<Scalars['String']['output']>;
|
|
82669
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
81976
82670
|
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
81977
82671
|
xUrl?: Maybe<Scalars['String']['output']>;
|
|
81978
82672
|
youtubeUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -82003,20 +82697,19 @@ export declare type UnifiedProfileBadgesConnection = UnifiedIConnection & {
|
|
|
82003
82697
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
82004
82698
|
};
|
|
82005
82699
|
export declare type UnifiedProfileInput = {
|
|
82700
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
82701
|
+
accountInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
82006
82702
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
82007
82703
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
82008
|
-
forumsId?: InputMaybe<Scalars['String']['input']>;
|
|
82009
82704
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
82705
|
+
internalId?: InputMaybe<Scalars['String']['input']>;
|
|
82010
82706
|
isPrivate: Scalars['Boolean']['input'];
|
|
82011
|
-
learnId?: InputMaybe<Scalars['String']['input']>;
|
|
82012
82707
|
linkedinUrl?: InputMaybe<Scalars['String']['input']>;
|
|
82013
82708
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
82014
|
-
parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
82015
82709
|
products?: InputMaybe<Scalars['String']['input']>;
|
|
82016
82710
|
role?: InputMaybe<Scalars['String']['input']>;
|
|
82017
|
-
unifiedProfileInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
82018
|
-
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
82019
82711
|
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
82712
|
+
username?: InputMaybe<Scalars['String']['input']>;
|
|
82020
82713
|
websiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
82021
82714
|
xUrl?: InputMaybe<Scalars['String']['input']>;
|
|
82022
82715
|
youtubeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -82029,13 +82722,11 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
82029
82722
|
};
|
|
82030
82723
|
export declare type UnifiedQuery = {
|
|
82031
82724
|
__typename?: 'UnifiedQuery';
|
|
82032
|
-
account?: Maybe<
|
|
82725
|
+
account?: Maybe<UnifiedUAccountResult>;
|
|
82033
82726
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
82034
82727
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
82035
82728
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
82036
82729
|
node?: Maybe<UnifiedINode>;
|
|
82037
|
-
unifiedAccount?: Maybe<UnifiedUAccountResult>;
|
|
82038
|
-
unifiedAccounts?: Maybe<Array<Maybe<UnifiedUAccountResult>>>;
|
|
82039
82730
|
unifiedProfile?: Maybe<UnifiedUProfileResult>;
|
|
82040
82731
|
unifiedProfiles?: Maybe<Array<Maybe<UnifiedUProfileResult>>>;
|
|
82041
82732
|
};
|
|
@@ -82053,9 +82744,6 @@ export declare type UnifiedQueryAtlassianProductsArgs = {
|
|
|
82053
82744
|
export declare type UnifiedQueryNodeArgs = {
|
|
82054
82745
|
id: Scalars['ID']['input'];
|
|
82055
82746
|
};
|
|
82056
|
-
export declare type UnifiedQueryUnifiedAccountArgs = {
|
|
82057
|
-
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
82058
|
-
};
|
|
82059
82747
|
export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
82060
82748
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
82061
82749
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -82093,7 +82781,6 @@ export declare enum UnifiedSortDirection {
|
|
|
82093
82781
|
Asc = "ASC",
|
|
82094
82782
|
Desc = "DESC"
|
|
82095
82783
|
}
|
|
82096
|
-
export declare type UnifiedUAccount2Result = UnifiedAccount2 | UnifiedQueryError;
|
|
82097
82784
|
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
82098
82785
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
82099
82786
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
@@ -82112,7 +82799,7 @@ export declare type UnifiedULearningCertificationResult = UnifiedLearningCertifi
|
|
|
82112
82799
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
82113
82800
|
export declare type UnifiedULinkAuthenticationPayload = UnifiedLinkAuthenticationPayload | UnifiedLinkingStatusPayload;
|
|
82114
82801
|
export declare type UnifiedULinkInitiationPayload = UnifiedLinkInitiationPayload | UnifiedLinkingStatusPayload;
|
|
82115
|
-
export declare type
|
|
82802
|
+
export declare type UnifiedULinkedAccountResult = UnifiedLinkedAccountConnection | UnifiedQueryError;
|
|
82116
82803
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
82117
82804
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
82118
82805
|
export declare type UnifiedURecentCourseResult = UnifiedQueryError | UnifiedRecentCourseConnection;
|