@forge/cli-shared 6.3.1-next.0 → 6.4.0-next.10
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 +72 -0
- package/out/graphql/graphql-types.d.ts +696 -76
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +36 -20
- package/out/service/statsig-service.js +1 -1
- package/out/shared/error-handling.d.ts +0 -2
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +0 -5
- package/out/ui/text.d.ts +18 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +21 -1
- package/package.json +2 -2
|
@@ -135,6 +135,7 @@ export declare type ActionsAction = {
|
|
|
135
135
|
actionVerb?: Maybe<Scalars['String']['output']>;
|
|
136
136
|
auth: Array<ActionsAuthType>;
|
|
137
137
|
description?: Maybe<ActionsDescription>;
|
|
138
|
+
enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
|
|
138
139
|
extensionAri?: Maybe<Scalars['String']['output']>;
|
|
139
140
|
icon?: Maybe<Scalars['String']['output']>;
|
|
140
141
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
@@ -168,6 +169,7 @@ export declare type ActionsActionType = {
|
|
|
168
169
|
contextEntityType?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
169
170
|
description?: Maybe<ActionsDescription>;
|
|
170
171
|
displayName: Scalars['String']['output'];
|
|
172
|
+
enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
|
|
171
173
|
entityProperty?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
172
174
|
entityType?: Maybe<Scalars['String']['output']>;
|
|
173
175
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
@@ -221,6 +223,9 @@ export declare enum ActionsAuthType {
|
|
|
221
223
|
ThreeLegged = "THREE_LEGGED",
|
|
222
224
|
TwoLegged = "TWO_LEGGED"
|
|
223
225
|
}
|
|
226
|
+
export declare enum ActionsCapabilityType {
|
|
227
|
+
Automation = "AUTOMATION"
|
|
228
|
+
}
|
|
224
229
|
export declare type ActionsDescription = {
|
|
225
230
|
__typename?: 'ActionsDescription';
|
|
226
231
|
ai?: Maybe<Scalars['String']['output']>;
|
|
@@ -988,6 +993,7 @@ export declare type AppInstallationLicense = {
|
|
|
988
993
|
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
989
994
|
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
990
995
|
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
996
|
+
modes?: Maybe<Array<EcosystemLicenseMode>>;
|
|
991
997
|
subscriptionEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
992
998
|
supportEntitlementNumber?: Maybe<Scalars['String']['output']>;
|
|
993
999
|
trialEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -4325,7 +4331,7 @@ export declare type CompassComponentTypeEdge = {
|
|
|
4325
4331
|
cursor: Scalars['String']['output'];
|
|
4326
4332
|
node?: Maybe<CompassComponentTypeObject>;
|
|
4327
4333
|
};
|
|
4328
|
-
export declare type CompassComponentTypeObject = {
|
|
4334
|
+
export declare type CompassComponentTypeObject = Node & {
|
|
4329
4335
|
__typename?: 'CompassComponentTypeObject';
|
|
4330
4336
|
componentCount?: Maybe<Scalars['Int']['output']>;
|
|
4331
4337
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -5801,7 +5807,7 @@ export declare type CompassMetricDefinitionsQuery = {
|
|
|
5801
5807
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5802
5808
|
};
|
|
5803
5809
|
export declare type CompassMetricDefinitionsQueryResult = CompassMetricDefinitionsConnection | QueryError;
|
|
5804
|
-
export declare type CompassMetricSource = {
|
|
5810
|
+
export declare type CompassMetricSource = Node & {
|
|
5805
5811
|
__typename?: 'CompassMetricSource';
|
|
5806
5812
|
component?: Maybe<CompassComponent>;
|
|
5807
5813
|
derivedFrom?: Maybe<Array<EventSource>>;
|
|
@@ -6128,6 +6134,7 @@ export declare type CompassScorecard = Node & {
|
|
|
6128
6134
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
6129
6135
|
scoringStrategyType?: Maybe<Scalars['String']['output']>;
|
|
6130
6136
|
state?: Maybe<Scalars['String']['output']>;
|
|
6137
|
+
statusConfig?: Maybe<CompassScorecardStatusConfig>;
|
|
6131
6138
|
type: Scalars['String']['output'];
|
|
6132
6139
|
viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
|
|
6133
6140
|
};
|
|
@@ -6416,6 +6423,7 @@ export declare type CompassScorecardMetricCriterionScore = CompassScorecardCrite
|
|
|
6416
6423
|
export declare type CompassScorecardQueryFilter = {
|
|
6417
6424
|
componentTypeIds?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
6418
6425
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6426
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
6419
6427
|
type?: InputMaybe<CompassScorecardTypesFilter>;
|
|
6420
6428
|
};
|
|
6421
6429
|
export declare type CompassScorecardQuerySort = {
|
|
@@ -6431,6 +6439,7 @@ export declare type CompassScorecardScore = {
|
|
|
6431
6439
|
__typename?: 'CompassScorecardScore';
|
|
6432
6440
|
criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
|
|
6433
6441
|
maxTotalScore: Scalars['Int']['output'];
|
|
6442
|
+
status?: Maybe<CompassScorecardScoreStatus>;
|
|
6434
6443
|
statusDuration?: Maybe<CompassScorecardScoreStatusDuration>;
|
|
6435
6444
|
totalScore: Scalars['Int']['output'];
|
|
6436
6445
|
};
|
|
@@ -6532,6 +6541,26 @@ export declare enum CompassScorecardScoringStrategyType {
|
|
|
6532
6541
|
PointBased = "POINT_BASED",
|
|
6533
6542
|
WeightBased = "WEIGHT_BASED"
|
|
6534
6543
|
}
|
|
6544
|
+
export declare type CompassScorecardStatusConfig = {
|
|
6545
|
+
__typename?: 'CompassScorecardStatusConfig';
|
|
6546
|
+
failing: CompassScorecardStatusThreshold;
|
|
6547
|
+
needsAttention: CompassScorecardStatusThreshold;
|
|
6548
|
+
passing: CompassScorecardStatusThreshold;
|
|
6549
|
+
};
|
|
6550
|
+
export declare type CompassScorecardStatusConfigInput = {
|
|
6551
|
+
failing: CompassScorecardStatusThresholdInput;
|
|
6552
|
+
needsAttention: CompassScorecardStatusThresholdInput;
|
|
6553
|
+
passing: CompassScorecardStatusThresholdInput;
|
|
6554
|
+
};
|
|
6555
|
+
export declare type CompassScorecardStatusThreshold = {
|
|
6556
|
+
__typename?: 'CompassScorecardStatusThreshold';
|
|
6557
|
+
lowerBound: Scalars['Int']['output'];
|
|
6558
|
+
upperBound: Scalars['Int']['output'];
|
|
6559
|
+
};
|
|
6560
|
+
export declare type CompassScorecardStatusThresholdInput = {
|
|
6561
|
+
lowerBound: Scalars['Int']['input'];
|
|
6562
|
+
upperBound: Scalars['Int']['input'];
|
|
6563
|
+
};
|
|
6535
6564
|
export declare type CompassScorecardTypesFilter = {
|
|
6536
6565
|
in: Array<Scalars['String']['input']>;
|
|
6537
6566
|
};
|
|
@@ -14312,6 +14341,49 @@ export declare type ConnectedDataQueryServicesArgs = {
|
|
|
14312
14341
|
cloudId: Scalars['ID']['input'];
|
|
14313
14342
|
id: Scalars['ID']['input'];
|
|
14314
14343
|
};
|
|
14344
|
+
export declare type ConnectionManagerConfiguration = {
|
|
14345
|
+
__typename?: 'ConnectionManagerConfiguration';
|
|
14346
|
+
parameters?: Maybe<Scalars['String']['output']>;
|
|
14347
|
+
};
|
|
14348
|
+
export declare type ConnectionManagerConfigurationInput = {
|
|
14349
|
+
parameters?: InputMaybe<Scalars['String']['input']>;
|
|
14350
|
+
};
|
|
14351
|
+
export declare type ConnectionManagerConnection = {
|
|
14352
|
+
__typename?: 'ConnectionManagerConnection';
|
|
14353
|
+
configuration?: Maybe<ConnectionManagerConfiguration>;
|
|
14354
|
+
connectionId?: Maybe<Scalars['String']['output']>;
|
|
14355
|
+
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
14356
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14357
|
+
};
|
|
14358
|
+
export declare type ConnectionManagerConnections = {
|
|
14359
|
+
__typename?: 'ConnectionManagerConnections';
|
|
14360
|
+
connections?: Maybe<Array<Maybe<ConnectionManagerConnection>>>;
|
|
14361
|
+
};
|
|
14362
|
+
export declare type ConnectionManagerConnectionsByJiraProjectResult = ConnectionManagerConnections | QueryError;
|
|
14363
|
+
export declare type ConnectionManagerConnectionsFilter = {
|
|
14364
|
+
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
14365
|
+
};
|
|
14366
|
+
export declare type ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload = Payload & {
|
|
14367
|
+
__typename?: 'ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload';
|
|
14368
|
+
createdConnectionId?: Maybe<Scalars['ID']['output']>;
|
|
14369
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14370
|
+
success: Scalars['Boolean']['output'];
|
|
14371
|
+
};
|
|
14372
|
+
export declare type ConnectionManagerCreateApiTokenConnectionInput = {
|
|
14373
|
+
configuration?: InputMaybe<ConnectionManagerConfigurationInput>;
|
|
14374
|
+
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
14375
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
14376
|
+
tokens?: InputMaybe<Array<InputMaybe<ConnectionManagerTokenInput>>>;
|
|
14377
|
+
};
|
|
14378
|
+
export declare type ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload = Payload & {
|
|
14379
|
+
__typename?: 'ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload';
|
|
14380
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14381
|
+
success: Scalars['Boolean']['output'];
|
|
14382
|
+
};
|
|
14383
|
+
export declare type ConnectionManagerTokenInput = {
|
|
14384
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
14385
|
+
tokenId?: InputMaybe<Scalars['String']['input']>;
|
|
14386
|
+
};
|
|
14315
14387
|
export declare type ContainerEventObject = {
|
|
14316
14388
|
__typename?: 'ContainerEventObject';
|
|
14317
14389
|
attributes: Scalars['JSON']['output'];
|
|
@@ -14938,11 +15010,13 @@ export declare type ContentPlatformIpmInlineDialog = {
|
|
|
14938
15010
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14939
15011
|
featuredImage?: Maybe<ContentPlatformIpmCompImage>;
|
|
14940
15012
|
id: Scalars['String']['output'];
|
|
15013
|
+
ipmNumber: Scalars['String']['output'];
|
|
14941
15014
|
primaryButton: ContentPlatformIpmComponentLinkButtonAndIpmComponentGsacButtonUnion;
|
|
14942
15015
|
secondaryButton?: Maybe<ContentPlatformIpmComponentRemindMeLater>;
|
|
14943
15016
|
title: Scalars['String']['output'];
|
|
14944
15017
|
trigger: ContentPlatformIpmTrigger;
|
|
14945
15018
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15019
|
+
variant: Scalars['String']['output'];
|
|
14946
15020
|
};
|
|
14947
15021
|
export declare type ContentPlatformIpmInlineDialogResultEdge = {
|
|
14948
15022
|
__typename?: 'ContentPlatformIpmInlineDialogResultEdge';
|
|
@@ -15952,6 +16026,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
15952
16026
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
15953
16027
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
15954
16028
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
16029
|
+
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
15955
16030
|
};
|
|
15956
16031
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
15957
16032
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -17048,6 +17123,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
17048
17123
|
organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
|
|
17049
17124
|
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
17050
17125
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
17126
|
+
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
17051
17127
|
};
|
|
17052
17128
|
export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
17053
17129
|
customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
|
|
@@ -17074,11 +17150,33 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
17074
17150
|
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
17075
17151
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17076
17152
|
};
|
|
17153
|
+
export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
17154
|
+
helpCenterId: Scalars['ID']['input'];
|
|
17155
|
+
templateFormId: Scalars['ID']['input'];
|
|
17156
|
+
};
|
|
17157
|
+
export declare type CustomerServiceRoutingRule = {
|
|
17158
|
+
__typename?: 'CustomerServiceRoutingRule';
|
|
17159
|
+
id: Scalars['ID']['output'];
|
|
17160
|
+
issueTypeIconUrl?: Maybe<Scalars['String']['output']>;
|
|
17161
|
+
issueTypeId?: Maybe<Scalars['ID']['output']>;
|
|
17162
|
+
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
17163
|
+
project?: Maybe<JiraProject>;
|
|
17164
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
17165
|
+
};
|
|
17077
17166
|
export declare type CustomerServiceStatusPayload = Payload & {
|
|
17078
17167
|
__typename?: 'CustomerServiceStatusPayload';
|
|
17079
17168
|
errors?: Maybe<Array<MutationError>>;
|
|
17080
17169
|
success: Scalars['Boolean']['output'];
|
|
17081
17170
|
};
|
|
17171
|
+
export declare type CustomerServiceTemplateForm = Node & {
|
|
17172
|
+
__typename?: 'CustomerServiceTemplateForm';
|
|
17173
|
+
defaultRouteRule?: Maybe<CustomerServiceRoutingRule>;
|
|
17174
|
+
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
17175
|
+
helpCenterId: Scalars['ID']['output'];
|
|
17176
|
+
id: Scalars['ID']['output'];
|
|
17177
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
17178
|
+
};
|
|
17179
|
+
export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
|
|
17082
17180
|
export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
|
|
17083
17181
|
__typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
|
|
17084
17182
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -17745,6 +17843,7 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
17745
17843
|
export declare enum DevAiIssueScopingLabel {
|
|
17746
17844
|
Complex = "COMPLEX",
|
|
17747
17845
|
InScope = "IN_SCOPE",
|
|
17846
|
+
Optimal = "OPTIMAL",
|
|
17748
17847
|
Recoverable = "RECOVERABLE",
|
|
17749
17848
|
Unsolvable = "UNSOLVABLE"
|
|
17750
17849
|
}
|
|
@@ -19498,7 +19597,7 @@ export declare type EarliestViewViewedForUser = {
|
|
|
19498
19597
|
};
|
|
19499
19598
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
19500
19599
|
export declare type EcosystemAppInstallationOverridesInput = {
|
|
19501
|
-
|
|
19600
|
+
licenseModes?: InputMaybe<Array<EcosystemLicenseMode>>;
|
|
19502
19601
|
usersWithAccess?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
19503
19602
|
};
|
|
19504
19603
|
export declare type EcosystemAppNetworkEgressPermission = {
|
|
@@ -19702,6 +19801,7 @@ export declare type EcosystemQuery = {
|
|
|
19702
19801
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
19703
19802
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
19704
19803
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
19804
|
+
userAccess?: Maybe<UserAccess>;
|
|
19705
19805
|
userGrants?: Maybe<UserGrantConnection>;
|
|
19706
19806
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
19707
19807
|
};
|
|
@@ -19760,6 +19860,11 @@ export declare type EcosystemQueryForgeMetricsArgs = {
|
|
|
19760
19860
|
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
19761
19861
|
appKey: Scalars['ID']['input'];
|
|
19762
19862
|
};
|
|
19863
|
+
export declare type EcosystemQueryUserAccessArgs = {
|
|
19864
|
+
contextId: Scalars['ID']['input'];
|
|
19865
|
+
definitionId: Scalars['ID']['input'];
|
|
19866
|
+
userAaid?: InputMaybe<Scalars['ID']['input']>;
|
|
19867
|
+
};
|
|
19763
19868
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
19764
19869
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
19765
19870
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19883,11 +19988,15 @@ export declare type Extension = {
|
|
|
19883
19988
|
scopes: Array<Scalars['String']['output']>;
|
|
19884
19989
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
|
|
19885
19990
|
type: Scalars['String']['output'];
|
|
19991
|
+
userAccess: UserAccess;
|
|
19886
19992
|
versionId: Scalars['ID']['output'];
|
|
19887
19993
|
};
|
|
19888
19994
|
export declare type ExtensionDataClassificationPolicyDecisionArgs = {
|
|
19889
19995
|
input: DataClassificationPolicyDecisionInput;
|
|
19890
19996
|
};
|
|
19997
|
+
export declare type ExtensionUserAccessArgs = {
|
|
19998
|
+
userAaid?: InputMaybe<Scalars['ID']['input']>;
|
|
19999
|
+
};
|
|
19891
20000
|
export declare type ExtensionContext = {
|
|
19892
20001
|
__typename?: 'ExtensionContext';
|
|
19893
20002
|
appAuditLogs: AppAuditConnection;
|
|
@@ -19957,7 +20066,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
19957
20066
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
19958
20067
|
node?: Maybe<ExternalAssociation>;
|
|
19959
20068
|
};
|
|
19960
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
20069
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
19961
20070
|
export declare type ExternalAttachment = {
|
|
19962
20071
|
__typename?: 'ExternalAttachment';
|
|
19963
20072
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -20278,10 +20387,11 @@ export declare type ExternalEntities = {
|
|
|
20278
20387
|
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
20279
20388
|
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
20280
20389
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
20390
|
+
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
20281
20391
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
20282
20392
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
20283
20393
|
};
|
|
20284
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability;
|
|
20394
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability;
|
|
20285
20395
|
export declare type ExternalEnvironment = {
|
|
20286
20396
|
__typename?: 'ExternalEnvironment';
|
|
20287
20397
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -20368,7 +20478,7 @@ export declare type ExternalIcon = {
|
|
|
20368
20478
|
__typename?: 'ExternalIcon';
|
|
20369
20479
|
height?: Maybe<Scalars['Int']['output']>;
|
|
20370
20480
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
20371
|
-
|
|
20481
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20372
20482
|
width?: Maybe<Scalars['Int']['output']>;
|
|
20373
20483
|
};
|
|
20374
20484
|
export declare type ExternalLargeContent = {
|
|
@@ -20499,6 +20609,24 @@ export declare type ExternalReviewer = {
|
|
|
20499
20609
|
approvalStatus?: Maybe<ExternalApprovalStatus>;
|
|
20500
20610
|
user?: Maybe<ExternalUser>;
|
|
20501
20611
|
};
|
|
20612
|
+
export declare type ExternalSpace = Node & {
|
|
20613
|
+
__typename?: 'ExternalSpace';
|
|
20614
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
20615
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
20616
|
+
createdBy?: Maybe<ExternalUser>;
|
|
20617
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20618
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
20619
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
20620
|
+
icon?: Maybe<ExternalIcon>;
|
|
20621
|
+
id: Scalars['ID']['output'];
|
|
20622
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
20623
|
+
labels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
20624
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
20625
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
20626
|
+
spaceType?: Maybe<Scalars['String']['output']>;
|
|
20627
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
20628
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20629
|
+
};
|
|
20502
20630
|
export declare type ExternalTestInfo = {
|
|
20503
20631
|
__typename?: 'ExternalTestInfo';
|
|
20504
20632
|
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
@@ -25233,7 +25361,9 @@ export declare type GraphStore = {
|
|
|
25233
25361
|
appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
25234
25362
|
appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
25235
25363
|
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
25364
|
+
atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
|
|
25236
25365
|
atlasGoalHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection>;
|
|
25366
|
+
atlasGoalHasOwner?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerConnection>;
|
|
25237
25367
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
25238
25368
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
25239
25369
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
@@ -25243,8 +25373,11 @@ export declare type GraphStore = {
|
|
|
25243
25373
|
atlasProjectContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
25244
25374
|
atlasProjectDependsOnAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection>;
|
|
25245
25375
|
atlasProjectDependsOnAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection>;
|
|
25376
|
+
atlasProjectHasContributor?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorConnection>;
|
|
25246
25377
|
atlasProjectHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection>;
|
|
25378
|
+
atlasProjectHasFollower?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerConnection>;
|
|
25247
25379
|
atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
|
|
25380
|
+
atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
|
|
25248
25381
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
25249
25382
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
25250
25383
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
@@ -25265,6 +25398,8 @@ export declare type GraphStore = {
|
|
|
25265
25398
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
25266
25399
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
25267
25400
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
25401
|
+
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
25402
|
+
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
25268
25403
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
25269
25404
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
25270
25405
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
@@ -25358,6 +25493,7 @@ export declare type GraphStore = {
|
|
|
25358
25493
|
issueChangesComponentInverse?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseConnection>;
|
|
25359
25494
|
issueChangesComponentInverseRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
25360
25495
|
issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
25496
|
+
issueHasAssignee?: Maybe<GraphStoreSimplifiedIssueHasAssigneeConnection>;
|
|
25361
25497
|
issueHasAssigneeInverse?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseConnection>;
|
|
25362
25498
|
issueRecursiveAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection>;
|
|
25363
25499
|
issueRecursiveAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseConnection>;
|
|
@@ -25579,9 +25715,14 @@ export declare type GraphStore = {
|
|
|
25579
25715
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25580
25716
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25581
25717
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
25718
|
+
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
25582
25719
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
25720
|
+
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
25721
|
+
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
25583
25722
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
25723
|
+
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
25584
25724
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
25725
|
+
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
25585
25726
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
25586
25727
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
25587
25728
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -25651,6 +25792,13 @@ export declare type GraphStoreAtlasGoalHasContributorInverseArgs = {
|
|
|
25651
25792
|
id: Scalars['ID']['input'];
|
|
25652
25793
|
sort?: InputMaybe<GraphStoreAtlasGoalHasContributorSortInput>;
|
|
25653
25794
|
};
|
|
25795
|
+
export declare type GraphStoreAtlasGoalHasFollowerArgs = {
|
|
25796
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25797
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25798
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25799
|
+
id: Scalars['ID']['input'];
|
|
25800
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasFollowerSortInput>;
|
|
25801
|
+
};
|
|
25654
25802
|
export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
|
|
25655
25803
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25656
25804
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25658,6 +25806,13 @@ export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
|
|
|
25658
25806
|
id: Scalars['ID']['input'];
|
|
25659
25807
|
sort?: InputMaybe<GraphStoreAtlasGoalHasFollowerSortInput>;
|
|
25660
25808
|
};
|
|
25809
|
+
export declare type GraphStoreAtlasGoalHasOwnerArgs = {
|
|
25810
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25811
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25812
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25813
|
+
id: Scalars['ID']['input'];
|
|
25814
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasOwnerSortInput>;
|
|
25815
|
+
};
|
|
25661
25816
|
export declare type GraphStoreAtlasGoalHasOwnerInverseArgs = {
|
|
25662
25817
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25663
25818
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25717,6 +25872,13 @@ export declare type GraphStoreAtlasProjectDependsOnAtlasProjectInverseArgs = {
|
|
|
25717
25872
|
id: Scalars['ID']['input'];
|
|
25718
25873
|
sort?: InputMaybe<GraphStoreAtlasProjectDependsOnAtlasProjectSortInput>;
|
|
25719
25874
|
};
|
|
25875
|
+
export declare type GraphStoreAtlasProjectHasContributorArgs = {
|
|
25876
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25877
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25878
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25879
|
+
id: Scalars['ID']['input'];
|
|
25880
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasContributorSortInput>;
|
|
25881
|
+
};
|
|
25720
25882
|
export declare type GraphStoreAtlasProjectHasContributorInverseArgs = {
|
|
25721
25883
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25722
25884
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25724,6 +25886,13 @@ export declare type GraphStoreAtlasProjectHasContributorInverseArgs = {
|
|
|
25724
25886
|
id: Scalars['ID']['input'];
|
|
25725
25887
|
sort?: InputMaybe<GraphStoreAtlasProjectHasContributorSortInput>;
|
|
25726
25888
|
};
|
|
25889
|
+
export declare type GraphStoreAtlasProjectHasFollowerArgs = {
|
|
25890
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25891
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25892
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25893
|
+
id: Scalars['ID']['input'];
|
|
25894
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasFollowerSortInput>;
|
|
25895
|
+
};
|
|
25727
25896
|
export declare type GraphStoreAtlasProjectHasFollowerInverseArgs = {
|
|
25728
25897
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25729
25898
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25731,6 +25900,13 @@ export declare type GraphStoreAtlasProjectHasFollowerInverseArgs = {
|
|
|
25731
25900
|
id: Scalars['ID']['input'];
|
|
25732
25901
|
sort?: InputMaybe<GraphStoreAtlasProjectHasFollowerSortInput>;
|
|
25733
25902
|
};
|
|
25903
|
+
export declare type GraphStoreAtlasProjectHasOwnerArgs = {
|
|
25904
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25905
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25906
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25907
|
+
id: Scalars['ID']['input'];
|
|
25908
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
|
|
25909
|
+
};
|
|
25734
25910
|
export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
25735
25911
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25736
25912
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25855,6 +26031,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
|
25855
26031
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25856
26032
|
id: Scalars['ID']['input'];
|
|
25857
26033
|
};
|
|
26034
|
+
export declare type GraphStoreConfluencePageHasConfluenceCommentArgs = {
|
|
26035
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26036
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26037
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26038
|
+
id: Scalars['ID']['input'];
|
|
26039
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
26040
|
+
};
|
|
26041
|
+
export declare type GraphStoreConfluencePageHasConfluenceCommentInverseArgs = {
|
|
26042
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26043
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26044
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26045
|
+
id: Scalars['ID']['input'];
|
|
26046
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
26047
|
+
};
|
|
25858
26048
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
25859
26049
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25860
26050
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -26427,6 +26617,13 @@ export declare type GraphStoreIssueChangesComponentRelationshipArgs = {
|
|
|
26427
26617
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26428
26618
|
id: Scalars['ID']['input'];
|
|
26429
26619
|
};
|
|
26620
|
+
export declare type GraphStoreIssueHasAssigneeArgs = {
|
|
26621
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26622
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26623
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26624
|
+
id: Scalars['ID']['input'];
|
|
26625
|
+
sort?: InputMaybe<GraphStoreIssueHasAssigneeSortInput>;
|
|
26626
|
+
};
|
|
26430
26627
|
export declare type GraphStoreIssueHasAssigneeInverseArgs = {
|
|
26431
26628
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26432
26629
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -27829,6 +28026,13 @@ export declare type GraphStoreUserAuthoredPrArgs = {
|
|
|
27829
28026
|
id: Scalars['ID']['input'];
|
|
27830
28027
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
27831
28028
|
};
|
|
28029
|
+
export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
28030
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28031
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28032
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28033
|
+
id: Scalars['ID']['input'];
|
|
28034
|
+
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
28035
|
+
};
|
|
27832
28036
|
export declare type GraphStoreUserHasTopProjectArgs = {
|
|
27833
28037
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27834
28038
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -27836,6 +28040,20 @@ export declare type GraphStoreUserHasTopProjectArgs = {
|
|
|
27836
28040
|
id: Scalars['ID']['input'];
|
|
27837
28041
|
sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
|
|
27838
28042
|
};
|
|
28043
|
+
export declare type GraphStoreUserHasTopProjectInverseArgs = {
|
|
28044
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28045
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28046
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28047
|
+
id: Scalars['ID']['input'];
|
|
28048
|
+
sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
|
|
28049
|
+
};
|
|
28050
|
+
export declare type GraphStoreUserIsInTeamInverseArgs = {
|
|
28051
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28052
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28053
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28054
|
+
id: Scalars['ID']['input'];
|
|
28055
|
+
sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
|
|
28056
|
+
};
|
|
27839
28057
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
27840
28058
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27841
28059
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -27843,6 +28061,13 @@ export declare type GraphStoreUserOwnsComponentArgs = {
|
|
|
27843
28061
|
id: Scalars['ID']['input'];
|
|
27844
28062
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
27845
28063
|
};
|
|
28064
|
+
export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
28065
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28066
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28067
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28068
|
+
id: Scalars['ID']['input'];
|
|
28069
|
+
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
28070
|
+
};
|
|
27846
28071
|
export declare type GraphStoreUserReviewsPrArgs = {
|
|
27847
28072
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27848
28073
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -27850,6 +28075,13 @@ export declare type GraphStoreUserReviewsPrArgs = {
|
|
|
27850
28075
|
id: Scalars['ID']['input'];
|
|
27851
28076
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
27852
28077
|
};
|
|
28078
|
+
export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
28079
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28080
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28081
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28082
|
+
id: Scalars['ID']['input'];
|
|
28083
|
+
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
28084
|
+
};
|
|
27853
28085
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
27854
28086
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27855
28087
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28177,7 +28409,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
28177
28409
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
28178
28410
|
id: Scalars['ID']['output'];
|
|
28179
28411
|
};
|
|
28180
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
28412
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28181
28413
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
28182
28414
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
28183
28415
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -28202,7 +28434,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
28202
28434
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
28203
28435
|
id: Scalars['ID']['output'];
|
|
28204
28436
|
};
|
|
28205
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
|
|
28437
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28206
28438
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
28207
28439
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
28208
28440
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -28708,7 +28940,7 @@ export declare type GraphStoreBatchMediaAttachedToContentEndNode = {
|
|
|
28708
28940
|
data?: Maybe<GraphStoreBatchMediaAttachedToContentEndUnion>;
|
|
28709
28941
|
id: Scalars['ID']['output'];
|
|
28710
28942
|
};
|
|
28711
|
-
export declare type GraphStoreBatchMediaAttachedToContentEndUnion = ConfluencePage | JiraIssue;
|
|
28943
|
+
export declare type GraphStoreBatchMediaAttachedToContentEndUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28712
28944
|
export declare type GraphStoreBatchMediaAttachedToContentInnerConnection = {
|
|
28713
28945
|
__typename?: 'GraphStoreBatchMediaAttachedToContentInnerConnection';
|
|
28714
28946
|
edges: Array<Maybe<GraphStoreBatchMediaAttachedToContentInnerEdge>>;
|
|
@@ -28828,6 +29060,9 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
28828
29060
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28829
29061
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
28830
29062
|
};
|
|
29063
|
+
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
29064
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
29065
|
+
};
|
|
28831
29066
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
28832
29067
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28833
29068
|
};
|
|
@@ -29773,7 +30008,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
29773
30008
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
29774
30009
|
id: Scalars['ID']['output'];
|
|
29775
30010
|
};
|
|
29776
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
30011
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29777
30012
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
29778
30013
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
29779
30014
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -29787,7 +30022,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
29787
30022
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
29788
30023
|
id: Scalars['ID']['output'];
|
|
29789
30024
|
};
|
|
29790
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
|
|
30025
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29791
30026
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
29792
30027
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
29793
30028
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -33863,6 +34098,19 @@ export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseEdge = {
|
|
|
33863
34098
|
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion>;
|
|
33864
34099
|
};
|
|
33865
34100
|
export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion = TownsquareGoal;
|
|
34101
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerConnection = HasPageInfo & {
|
|
34102
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerConnection';
|
|
34103
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerEdge>>>;
|
|
34104
|
+
pageInfo: PageInfo;
|
|
34105
|
+
};
|
|
34106
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerEdge = {
|
|
34107
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerEdge';
|
|
34108
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34109
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34110
|
+
id: Scalars['ID']['output'];
|
|
34111
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34112
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerUnion>;
|
|
34113
|
+
};
|
|
33866
34114
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection = HasPageInfo & {
|
|
33867
34115
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection';
|
|
33868
34116
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge>>>;
|
|
@@ -33877,6 +34125,20 @@ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge = {
|
|
|
33877
34125
|
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion>;
|
|
33878
34126
|
};
|
|
33879
34127
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion = TownsquareGoal;
|
|
34128
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34129
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerConnection = HasPageInfo & {
|
|
34130
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerConnection';
|
|
34131
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerEdge>>>;
|
|
34132
|
+
pageInfo: PageInfo;
|
|
34133
|
+
};
|
|
34134
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerEdge = {
|
|
34135
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerEdge';
|
|
34136
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34137
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34138
|
+
id: Scalars['ID']['output'];
|
|
34139
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34140
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerUnion>;
|
|
34141
|
+
};
|
|
33880
34142
|
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection = HasPageInfo & {
|
|
33881
34143
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection';
|
|
33882
34144
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseEdge>>>;
|
|
@@ -33891,6 +34153,7 @@ export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseEdge = {
|
|
|
33891
34153
|
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseUnion>;
|
|
33892
34154
|
};
|
|
33893
34155
|
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseUnion = TownsquareGoal;
|
|
34156
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
33894
34157
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection = HasPageInfo & {
|
|
33895
34158
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection';
|
|
33896
34159
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge>>>;
|
|
@@ -33975,6 +34238,19 @@ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverse
|
|
|
33975
34238
|
};
|
|
33976
34239
|
export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseUnion = TownsquareProject;
|
|
33977
34240
|
export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectUnion = TownsquareProject;
|
|
34241
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasContributorConnection = HasPageInfo & {
|
|
34242
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorConnection';
|
|
34243
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasContributorEdge>>>;
|
|
34244
|
+
pageInfo: PageInfo;
|
|
34245
|
+
};
|
|
34246
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasContributorEdge = {
|
|
34247
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorEdge';
|
|
34248
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34249
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34250
|
+
id: Scalars['ID']['output'];
|
|
34251
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34252
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorUnion>;
|
|
34253
|
+
};
|
|
33978
34254
|
export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection = HasPageInfo & {
|
|
33979
34255
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection';
|
|
33980
34256
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge>>>;
|
|
@@ -33989,6 +34265,20 @@ export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge =
|
|
|
33989
34265
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion>;
|
|
33990
34266
|
};
|
|
33991
34267
|
export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion = TownsquareProject;
|
|
34268
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasContributorUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34269
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerConnection = HasPageInfo & {
|
|
34270
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerConnection';
|
|
34271
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerEdge>>>;
|
|
34272
|
+
pageInfo: PageInfo;
|
|
34273
|
+
};
|
|
34274
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerEdge = {
|
|
34275
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerEdge';
|
|
34276
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34277
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34278
|
+
id: Scalars['ID']['output'];
|
|
34279
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34280
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerUnion>;
|
|
34281
|
+
};
|
|
33992
34282
|
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection = HasPageInfo & {
|
|
33993
34283
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection';
|
|
33994
34284
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge>>>;
|
|
@@ -34003,6 +34293,20 @@ export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge = {
|
|
|
34003
34293
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseUnion>;
|
|
34004
34294
|
};
|
|
34005
34295
|
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseUnion = TownsquareProject;
|
|
34296
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34297
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerConnection = HasPageInfo & {
|
|
34298
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasOwnerConnection';
|
|
34299
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerEdge>>>;
|
|
34300
|
+
pageInfo: PageInfo;
|
|
34301
|
+
};
|
|
34302
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerEdge = {
|
|
34303
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasOwnerEdge';
|
|
34304
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34305
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34306
|
+
id: Scalars['ID']['output'];
|
|
34307
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34308
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerUnion>;
|
|
34309
|
+
};
|
|
34006
34310
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection = HasPageInfo & {
|
|
34007
34311
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection';
|
|
34008
34312
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge>>>;
|
|
@@ -34017,6 +34321,7 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
|
34017
34321
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion>;
|
|
34018
34322
|
};
|
|
34019
34323
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
34324
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34020
34325
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
34021
34326
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
34022
34327
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -34175,6 +34480,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
34175
34480
|
};
|
|
34176
34481
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
34177
34482
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
34483
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection = HasPageInfo & {
|
|
34484
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection';
|
|
34485
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge>>>;
|
|
34486
|
+
pageInfo: PageInfo;
|
|
34487
|
+
};
|
|
34488
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge = {
|
|
34489
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentEdge';
|
|
34490
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34491
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34492
|
+
id: Scalars['ID']['output'];
|
|
34493
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34494
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentUnion>;
|
|
34495
|
+
};
|
|
34496
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection = HasPageInfo & {
|
|
34497
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection';
|
|
34498
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseEdge>>>;
|
|
34499
|
+
pageInfo: PageInfo;
|
|
34500
|
+
};
|
|
34501
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseEdge = {
|
|
34502
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseEdge';
|
|
34503
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34504
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34505
|
+
id: Scalars['ID']['output'];
|
|
34506
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34507
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion>;
|
|
34508
|
+
};
|
|
34509
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
34510
|
+
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
34178
34511
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
34179
34512
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
34180
34513
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -34201,8 +34534,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
34201
34534
|
lastUpdated: Scalars['DateTime']['output'];
|
|
34202
34535
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
34203
34536
|
};
|
|
34204
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluencePage | JiraIssue;
|
|
34205
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
34537
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
34538
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
34206
34539
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitConnection = HasPageInfo & {
|
|
34207
34540
|
__typename?: 'GraphStoreSimplifiedDeploymentContainsCommitConnection';
|
|
34208
34541
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentContainsCommitEdge>>>;
|
|
@@ -34717,6 +35050,19 @@ export declare type GraphStoreSimplifiedIssueChangesComponentInverseEdge = {
|
|
|
34717
35050
|
};
|
|
34718
35051
|
export declare type GraphStoreSimplifiedIssueChangesComponentInverseUnion = JiraIssue;
|
|
34719
35052
|
export declare type GraphStoreSimplifiedIssueChangesComponentUnion = CompassComponent;
|
|
35053
|
+
export declare type GraphStoreSimplifiedIssueHasAssigneeConnection = HasPageInfo & {
|
|
35054
|
+
__typename?: 'GraphStoreSimplifiedIssueHasAssigneeConnection';
|
|
35055
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAssigneeEdge>>>;
|
|
35056
|
+
pageInfo: PageInfo;
|
|
35057
|
+
};
|
|
35058
|
+
export declare type GraphStoreSimplifiedIssueHasAssigneeEdge = {
|
|
35059
|
+
__typename?: 'GraphStoreSimplifiedIssueHasAssigneeEdge';
|
|
35060
|
+
createdAt: Scalars['DateTime']['output'];
|
|
35061
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
35062
|
+
id: Scalars['ID']['output'];
|
|
35063
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
35064
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasAssigneeUnion>;
|
|
35065
|
+
};
|
|
34720
35066
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseConnection = HasPageInfo & {
|
|
34721
35067
|
__typename?: 'GraphStoreSimplifiedIssueHasAssigneeInverseConnection';
|
|
34722
35068
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseEdge>>>;
|
|
@@ -34731,6 +35077,7 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
|
|
|
34731
35077
|
node?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseUnion>;
|
|
34732
35078
|
};
|
|
34733
35079
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
|
|
35080
|
+
export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34734
35081
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
34735
35082
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection';
|
|
34736
35083
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge>>>;
|
|
@@ -35092,7 +35439,7 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
35092
35439
|
lastUpdated: Scalars['DateTime']['output'];
|
|
35093
35440
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
35094
35441
|
};
|
|
35095
|
-
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluencePage | JiraIssue;
|
|
35442
|
+
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
35096
35443
|
export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
35097
35444
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
35098
35445
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -36404,6 +36751,20 @@ export declare type GraphStoreSimplifiedUserAuthoredPrEdge = {
|
|
|
36404
36751
|
lastUpdated: Scalars['DateTime']['output'];
|
|
36405
36752
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredPrUnion>;
|
|
36406
36753
|
};
|
|
36754
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrInverseConnection = HasPageInfo & {
|
|
36755
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredPrInverseConnection';
|
|
36756
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrInverseEdge>>>;
|
|
36757
|
+
pageInfo: PageInfo;
|
|
36758
|
+
};
|
|
36759
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
36760
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredPrInverseEdge';
|
|
36761
|
+
createdAt: Scalars['DateTime']['output'];
|
|
36762
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36763
|
+
id: Scalars['ID']['output'];
|
|
36764
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
36765
|
+
node?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseUnion>;
|
|
36766
|
+
};
|
|
36767
|
+
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36407
36768
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
|
|
36408
36769
|
export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
|
|
36409
36770
|
__typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
|
|
@@ -36418,7 +36779,35 @@ export declare type GraphStoreSimplifiedUserHasTopProjectEdge = {
|
|
|
36418
36779
|
lastUpdated: Scalars['DateTime']['output'];
|
|
36419
36780
|
node?: Maybe<GraphStoreSimplifiedUserHasTopProjectUnion>;
|
|
36420
36781
|
};
|
|
36782
|
+
export declare type GraphStoreSimplifiedUserHasTopProjectInverseConnection = HasPageInfo & {
|
|
36783
|
+
__typename?: 'GraphStoreSimplifiedUserHasTopProjectInverseConnection';
|
|
36784
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectInverseEdge>>>;
|
|
36785
|
+
pageInfo: PageInfo;
|
|
36786
|
+
};
|
|
36787
|
+
export declare type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
|
|
36788
|
+
__typename?: 'GraphStoreSimplifiedUserHasTopProjectInverseEdge';
|
|
36789
|
+
createdAt: Scalars['DateTime']['output'];
|
|
36790
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36791
|
+
id: Scalars['ID']['output'];
|
|
36792
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
36793
|
+
node?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseUnion>;
|
|
36794
|
+
};
|
|
36795
|
+
export declare type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36421
36796
|
export declare type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
|
|
36797
|
+
export declare type GraphStoreSimplifiedUserIsInTeamInverseConnection = HasPageInfo & {
|
|
36798
|
+
__typename?: 'GraphStoreSimplifiedUserIsInTeamInverseConnection';
|
|
36799
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamInverseEdge>>>;
|
|
36800
|
+
pageInfo: PageInfo;
|
|
36801
|
+
};
|
|
36802
|
+
export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
|
|
36803
|
+
__typename?: 'GraphStoreSimplifiedUserIsInTeamInverseEdge';
|
|
36804
|
+
createdAt: Scalars['DateTime']['output'];
|
|
36805
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36806
|
+
id: Scalars['ID']['output'];
|
|
36807
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
36808
|
+
node?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseUnion>;
|
|
36809
|
+
};
|
|
36810
|
+
export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36422
36811
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
36423
36812
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
36424
36813
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -36434,6 +36823,22 @@ export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
|
|
|
36434
36823
|
lastUpdated: Scalars['DateTime']['output'];
|
|
36435
36824
|
node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
|
|
36436
36825
|
};
|
|
36826
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentInverseConnection = HasPageInfo & HasTotal & {
|
|
36827
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsComponentInverseConnection';
|
|
36828
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentInverseEdge>>>;
|
|
36829
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
36830
|
+
pageInfo: PageInfo;
|
|
36831
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
36832
|
+
};
|
|
36833
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
|
|
36834
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsComponentInverseEdge';
|
|
36835
|
+
createdAt: Scalars['DateTime']['output'];
|
|
36836
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36837
|
+
id: Scalars['ID']['output'];
|
|
36838
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
36839
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseUnion>;
|
|
36840
|
+
};
|
|
36841
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36437
36842
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
36438
36843
|
export declare type GraphStoreSimplifiedUserReviewsPrConnection = HasPageInfo & {
|
|
36439
36844
|
__typename?: 'GraphStoreSimplifiedUserReviewsPrConnection';
|
|
@@ -36448,6 +36853,20 @@ export declare type GraphStoreSimplifiedUserReviewsPrEdge = {
|
|
|
36448
36853
|
lastUpdated: Scalars['DateTime']['output'];
|
|
36449
36854
|
node?: Maybe<GraphStoreSimplifiedUserReviewsPrUnion>;
|
|
36450
36855
|
};
|
|
36856
|
+
export declare type GraphStoreSimplifiedUserReviewsPrInverseConnection = HasPageInfo & {
|
|
36857
|
+
__typename?: 'GraphStoreSimplifiedUserReviewsPrInverseConnection';
|
|
36858
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReviewsPrInverseEdge>>>;
|
|
36859
|
+
pageInfo: PageInfo;
|
|
36860
|
+
};
|
|
36861
|
+
export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
36862
|
+
__typename?: 'GraphStoreSimplifiedUserReviewsPrInverseEdge';
|
|
36863
|
+
createdAt: Scalars['DateTime']['output'];
|
|
36864
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36865
|
+
id: Scalars['ID']['output'];
|
|
36866
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
36867
|
+
node?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseUnion>;
|
|
36868
|
+
};
|
|
36869
|
+
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
36451
36870
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails;
|
|
36452
36871
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
36453
36872
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
@@ -37111,6 +37530,9 @@ export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
|
37111
37530
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
37112
37531
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37113
37532
|
};
|
|
37533
|
+
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
37534
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37535
|
+
};
|
|
37114
37536
|
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
37115
37537
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
37116
37538
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -37389,12 +37811,14 @@ export declare enum GrowthUnifiedProfileJtbd {
|
|
|
37389
37811
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
37390
37812
|
ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
|
|
37391
37813
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
37814
|
+
RunSprints = "RUN_SPRINTS",
|
|
37392
37815
|
Stakeholders = "STAKEHOLDERS",
|
|
37393
37816
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
37394
37817
|
SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
|
|
37395
37818
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
37396
37819
|
TrackBugs = "TRACK_BUGS",
|
|
37397
|
-
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
37820
|
+
UseKanbanBoard = "USE_KANBAN_BOARD",
|
|
37821
|
+
WorkInScrum = "WORK_IN_SCRUM"
|
|
37398
37822
|
}
|
|
37399
37823
|
export declare enum GrowthUnifiedProfileJiraFamiliarity {
|
|
37400
37824
|
Experience = "EXPERIENCE",
|
|
@@ -37675,11 +38099,13 @@ export declare type HelpCenter = Node & {
|
|
|
37675
38099
|
__typename?: 'HelpCenter';
|
|
37676
38100
|
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
37677
38101
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
38102
|
+
hoistedProjectId?: Maybe<Scalars['ID']['output']>;
|
|
37678
38103
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
37679
38104
|
id: Scalars['ID']['output'];
|
|
37680
38105
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
37681
38106
|
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
37682
38107
|
name?: Maybe<HelpCenterName>;
|
|
38108
|
+
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
37683
38109
|
portals?: Maybe<HelpCenterPortals>;
|
|
37684
38110
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
37685
38111
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
@@ -37745,6 +38171,7 @@ export declare type HelpCenterBranding = {
|
|
|
37745
38171
|
__typename?: 'HelpCenterBranding';
|
|
37746
38172
|
banner?: Maybe<HelpCenterBanner>;
|
|
37747
38173
|
colors?: Maybe<HelpCenterBrandingColors>;
|
|
38174
|
+
hasTopBarBeenSplit?: Maybe<Scalars['Boolean']['output']>;
|
|
37748
38175
|
homePageTitle?: Maybe<HelpCenterHomePageTitle>;
|
|
37749
38176
|
isBannerAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
37750
38177
|
isLogoAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -43367,7 +43794,7 @@ export declare type JiraEstimateInput = {
|
|
|
43367
43794
|
};
|
|
43368
43795
|
export declare type JiraExtensionRenderingContextInput = {
|
|
43369
43796
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
43370
|
-
portalId?: InputMaybe<Scalars['
|
|
43797
|
+
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
43371
43798
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
43372
43799
|
};
|
|
43373
43800
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
@@ -43722,6 +44149,7 @@ export declare type JiraForgeExtension = {
|
|
|
43722
44149
|
properties: Scalars['JSON']['output'];
|
|
43723
44150
|
scopes: Array<Scalars['String']['output']>;
|
|
43724
44151
|
type: Scalars['String']['output'];
|
|
44152
|
+
userAccess?: Maybe<JiraUserAppAccess>;
|
|
43725
44153
|
};
|
|
43726
44154
|
export declare type JiraForgeExtensionLicense = {
|
|
43727
44155
|
__typename?: 'JiraForgeExtensionLicense';
|
|
@@ -45157,6 +45585,7 @@ export declare type JiraIssueItemPanelItem = {
|
|
|
45157
45585
|
export declare enum JiraIssueItemSystemContainerType {
|
|
45158
45586
|
Content = "CONTENT",
|
|
45159
45587
|
Context = "CONTEXT",
|
|
45588
|
+
CustomerContext = "CUSTOMER_CONTEXT",
|
|
45160
45589
|
HiddenItems = "HIDDEN_ITEMS",
|
|
45161
45590
|
Primary = "PRIMARY",
|
|
45162
45591
|
Request = "REQUEST",
|
|
@@ -45924,6 +46353,7 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
45924
46353
|
parentIssue?: Maybe<JiraJourneyParentIssue>;
|
|
45925
46354
|
status?: Maybe<JiraJourneyStatus>;
|
|
45926
46355
|
trigger?: Maybe<JiraJourneyTrigger>;
|
|
46356
|
+
triggerConfiguration?: Maybe<JiraJourneyTriggerConfiguration>;
|
|
45927
46357
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45928
46358
|
updatedBy?: Maybe<User>;
|
|
45929
46359
|
version?: Maybe<Scalars['Long']['output']>;
|
|
@@ -45950,6 +46380,13 @@ export declare type JiraJourneyParentIssueInput = {
|
|
|
45950
46380
|
type: JiraJourneyParentIssueType;
|
|
45951
46381
|
value: Scalars['String']['input'];
|
|
45952
46382
|
};
|
|
46383
|
+
export declare type JiraJourneyParentIssueTriggerConfiguration = {
|
|
46384
|
+
__typename?: 'JiraJourneyParentIssueTriggerConfiguration';
|
|
46385
|
+
type?: Maybe<JiraJourneyTriggerType>;
|
|
46386
|
+
};
|
|
46387
|
+
export declare type JiraJourneyParentIssueTriggerConfigurationInput = {
|
|
46388
|
+
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
46389
|
+
};
|
|
45953
46390
|
export declare enum JiraJourneyParentIssueType {
|
|
45954
46391
|
Request = "REQUEST"
|
|
45955
46392
|
}
|
|
@@ -45964,12 +46401,27 @@ export declare type JiraJourneyTrigger = {
|
|
|
45964
46401
|
__typename?: 'JiraJourneyTrigger';
|
|
45965
46402
|
type: JiraJourneyTriggerType;
|
|
45966
46403
|
};
|
|
46404
|
+
export declare type JiraJourneyTriggerConfiguration = JiraJourneyParentIssueTriggerConfiguration | JiraJourneyWorkdayIntegrationTriggerConfiguration;
|
|
46405
|
+
export declare type JiraJourneyTriggerConfigurationInput = {
|
|
46406
|
+
parentIssueTriggerConfiguration?: InputMaybe<JiraJourneyParentIssueTriggerConfigurationInput>;
|
|
46407
|
+
workdayIntegrationTriggerConfiguration?: InputMaybe<JiraJourneyWorkdayIntegrationTriggerConfigurationInput>;
|
|
46408
|
+
};
|
|
45967
46409
|
export declare type JiraJourneyTriggerInput = {
|
|
45968
46410
|
type: JiraJourneyTriggerType;
|
|
45969
46411
|
};
|
|
45970
46412
|
export declare enum JiraJourneyTriggerType {
|
|
45971
|
-
ParentIssueCreated = "PARENT_ISSUE_CREATED"
|
|
46413
|
+
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
46414
|
+
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
45972
46415
|
}
|
|
46416
|
+
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
46417
|
+
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
46418
|
+
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
46419
|
+
type?: Maybe<JiraJourneyTriggerType>;
|
|
46420
|
+
};
|
|
46421
|
+
export declare type JiraJourneyWorkdayIntegrationTriggerConfigurationInput = {
|
|
46422
|
+
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
46423
|
+
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
46424
|
+
};
|
|
45973
46425
|
export declare enum JiraJqlAutocompleteType {
|
|
45974
46426
|
Basic = "BASIC",
|
|
45975
46427
|
Cascadingoption = "CASCADINGOPTION",
|
|
@@ -47130,6 +47582,7 @@ export declare type JiraMutation = {
|
|
|
47130
47582
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
47131
47583
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47132
47584
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47585
|
+
updateJiraJourneyTriggerConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47133
47586
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
47134
47587
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
47135
47588
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
@@ -47571,6 +48024,10 @@ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
|
|
|
47571
48024
|
cloudId: Scalars['ID']['input'];
|
|
47572
48025
|
input: JiraUpdateJourneyConfigurationInput;
|
|
47573
48026
|
};
|
|
48027
|
+
export declare type JiraMutationUpdateJiraJourneyTriggerConfigurationArgs = {
|
|
48028
|
+
cloudId: Scalars['ID']['input'];
|
|
48029
|
+
input: JiraUpdateJourneyTriggerConfigurationInput;
|
|
48030
|
+
};
|
|
47574
48031
|
export declare type JiraMutationUpdateJiraVersionArgs = {
|
|
47575
48032
|
input: JiraVersionUpdateMutationInput;
|
|
47576
48033
|
};
|
|
@@ -48703,6 +49160,7 @@ export declare type JiraProject = Node & {
|
|
|
48703
49160
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48704
49161
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48705
49162
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
49163
|
+
isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48706
49164
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
48707
49165
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
48708
49166
|
jsmChatMsTeamsConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
@@ -52666,6 +53124,7 @@ export declare type JiraSpreadsheetGroup = {
|
|
|
52666
53124
|
export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
52667
53125
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52668
53126
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
53127
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
52669
53128
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52670
53129
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52671
53130
|
};
|
|
@@ -53394,6 +53853,7 @@ export declare type JiraUiModification = {
|
|
|
53394
53853
|
id: Scalars['ID']['output'];
|
|
53395
53854
|
};
|
|
53396
53855
|
export declare type JiraUiModificationsContextInput = {
|
|
53856
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
53397
53857
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
53398
53858
|
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
53399
53859
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -53599,8 +54059,14 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
53599
54059
|
__typename?: 'JiraUpdateJourneyConfigurationPayload';
|
|
53600
54060
|
errors?: Maybe<Array<MutationError>>;
|
|
53601
54061
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
54062
|
+
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
53602
54063
|
success: Scalars['Boolean']['output'];
|
|
53603
54064
|
};
|
|
54065
|
+
export declare type JiraUpdateJourneyTriggerConfigurationInput = {
|
|
54066
|
+
id: Scalars['ID']['input'];
|
|
54067
|
+
triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
|
|
54068
|
+
version: Scalars['Long']['input'];
|
|
54069
|
+
};
|
|
53604
54070
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
53605
54071
|
id: Scalars['ID']['input'];
|
|
53606
54072
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -53897,6 +54363,10 @@ export declare type JiraUser = {
|
|
|
53897
54363
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
53898
54364
|
email?: Maybe<Scalars['String']['output']>;
|
|
53899
54365
|
};
|
|
54366
|
+
export declare type JiraUserAppAccess = {
|
|
54367
|
+
__typename?: 'JiraUserAppAccess';
|
|
54368
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
54369
|
+
};
|
|
53900
54370
|
export declare type JiraUserBroadcastMessage = Node & {
|
|
53901
54371
|
__typename?: 'JiraUserBroadcastMessage';
|
|
53902
54372
|
id: Scalars['ID']['output'];
|
|
@@ -53984,6 +54454,7 @@ export declare type JiraUserPreferences = {
|
|
|
53984
54454
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
53985
54455
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
53986
54456
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
54457
|
+
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
53987
54458
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
53988
54459
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
53989
54460
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
@@ -55202,6 +55673,7 @@ export declare enum JsmChatConversationAnalyticsEvent {
|
|
|
55202
55673
|
export declare type JsmChatConversationAnalyticsMetadataInput = {
|
|
55203
55674
|
channelType?: InputMaybe<JsmChatConversationChannelType>;
|
|
55204
55675
|
csatScore?: InputMaybe<Scalars['Int']['input']>;
|
|
55676
|
+
helpCenterId?: InputMaybe<Scalars['String']['input']>;
|
|
55205
55677
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
55206
55678
|
};
|
|
55207
55679
|
export declare type JsmChatConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
@@ -55287,6 +55759,7 @@ export declare type JsmChatCreateWebConversationMessagePayload = Payload & {
|
|
|
55287
55759
|
success: Scalars['Boolean']['output'];
|
|
55288
55760
|
};
|
|
55289
55761
|
export declare enum JsmChatCreateWebConversationUserRole {
|
|
55762
|
+
Acknowledgment = "Acknowledgment",
|
|
55290
55763
|
Init = "Init",
|
|
55291
55764
|
JsmAgent = "JSM_Agent",
|
|
55292
55765
|
Participant = "Participant",
|
|
@@ -55618,6 +56091,7 @@ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
|
|
|
55618
56091
|
};
|
|
55619
56092
|
export declare enum JsmChatWebConversationActions {
|
|
55620
56093
|
CloseConversation = "CLOSE_CONVERSATION",
|
|
56094
|
+
DisableInput = "DISABLE_INPUT",
|
|
55621
56095
|
RedirectToSearch = "REDIRECT_TO_SEARCH"
|
|
55622
56096
|
}
|
|
55623
56097
|
export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
@@ -56283,6 +56757,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
56283
56757
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
56284
56758
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
56285
56759
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
56760
|
+
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
56286
56761
|
};
|
|
56287
56762
|
export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
|
|
56288
56763
|
input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
|
|
@@ -56299,6 +56774,9 @@ export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
|
56299
56774
|
export declare type KnowledgeDiscoveryMutationApiUpdateRelatedEntitiesArgs = {
|
|
56300
56775
|
input: KnowledgeDiscoveryUpdateRelatedEntitiesInput;
|
|
56301
56776
|
};
|
|
56777
|
+
export declare type KnowledgeDiscoveryMutationApiUpdateUserKeyPhraseInteractionArgs = {
|
|
56778
|
+
input: KnowledgeDiscoveryUpdateUserKeyPhraseInteractionInput;
|
|
56779
|
+
};
|
|
56302
56780
|
export declare type KnowledgeDiscoveryPageInfo = {
|
|
56303
56781
|
__typename?: 'KnowledgeDiscoveryPageInfo';
|
|
56304
56782
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -56490,6 +56968,16 @@ export declare type KnowledgeDiscoveryUpdateRelatedEntitiesPayload = Payload & {
|
|
|
56490
56968
|
errors?: Maybe<Array<MutationError>>;
|
|
56491
56969
|
success: Scalars['Boolean']['output'];
|
|
56492
56970
|
};
|
|
56971
|
+
export declare type KnowledgeDiscoveryUpdateUserKeyPhraseInteractionInput = {
|
|
56972
|
+
accountId: Scalars['ID']['input'];
|
|
56973
|
+
keyPhrase: Scalars['String']['input'];
|
|
56974
|
+
workspaceId: Scalars['String']['input'];
|
|
56975
|
+
};
|
|
56976
|
+
export declare type KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload = Payload & {
|
|
56977
|
+
__typename?: 'KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload';
|
|
56978
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56979
|
+
success: Scalars['Boolean']['output'];
|
|
56980
|
+
};
|
|
56493
56981
|
export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
56494
56982
|
__typename?: 'KnowledgeDiscoveryUser';
|
|
56495
56983
|
id: Scalars['ID']['output'];
|
|
@@ -56725,6 +57213,7 @@ export declare type MarketplaceApp = {
|
|
|
56725
57213
|
summary?: Maybe<Scalars['String']['output']>;
|
|
56726
57214
|
supportTicketSystemUrl?: Maybe<Scalars['URL']['output']>;
|
|
56727
57215
|
tagline?: Maybe<Scalars['String']['output']>;
|
|
57216
|
+
tags?: Maybe<MarketplaceAppTags>;
|
|
56728
57217
|
versions: MarketplaceAppVersionConnection;
|
|
56729
57218
|
watchersInfo?: Maybe<MarketplaceAppWatchersInfo>;
|
|
56730
57219
|
wikiUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -56783,6 +57272,17 @@ export declare type MarketplaceAppReviewSummary = {
|
|
|
56783
57272
|
rating?: Maybe<Scalars['Float']['output']>;
|
|
56784
57273
|
score?: Maybe<Scalars['Float']['output']>;
|
|
56785
57274
|
};
|
|
57275
|
+
export declare type MarketplaceAppTag = {
|
|
57276
|
+
__typename?: 'MarketplaceAppTag';
|
|
57277
|
+
id: Scalars['ID']['output'];
|
|
57278
|
+
name: Scalars['String']['output'];
|
|
57279
|
+
};
|
|
57280
|
+
export declare type MarketplaceAppTags = {
|
|
57281
|
+
__typename?: 'MarketplaceAppTags';
|
|
57282
|
+
categoryTags?: Maybe<Array<MarketplaceAppTag>>;
|
|
57283
|
+
keywordTags?: Maybe<Array<MarketplaceAppTag>>;
|
|
57284
|
+
marketingTags?: Maybe<Array<MarketplaceAppTag>>;
|
|
57285
|
+
};
|
|
56786
57286
|
export declare type MarketplaceAppTrustInformation = {
|
|
56787
57287
|
__typename?: 'MarketplaceAppTrustInformation';
|
|
56788
57288
|
dataAccessAndStorage?: Maybe<DataAccessAndStorage>;
|
|
@@ -56997,9 +57497,9 @@ export declare type MarketplaceConsoleAppSoftwareVersionListing = {
|
|
|
56997
57497
|
createdBy: Scalars['String']['output'];
|
|
56998
57498
|
deploymentInstructions?: Maybe<Array<Maybe<MarketplaceConsoleDeploymentInstruction>>>;
|
|
56999
57499
|
heroImage?: Maybe<Scalars['String']['output']>;
|
|
57000
|
-
highlights?: Maybe<Array<Maybe<
|
|
57500
|
+
highlights?: Maybe<Array<Maybe<MarketplaceConsoleListingHighLight>>>;
|
|
57001
57501
|
moreDetails?: Maybe<Scalars['String']['output']>;
|
|
57002
|
-
screenshots?: Maybe<Array<
|
|
57502
|
+
screenshots?: Maybe<Array<MarketplaceConsoleListingScreenshot>>;
|
|
57003
57503
|
status: Scalars['String']['output'];
|
|
57004
57504
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
57005
57505
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
@@ -57080,6 +57580,18 @@ export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
|
57080
57580
|
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
57081
57581
|
href: Scalars['String']['input'];
|
|
57082
57582
|
};
|
|
57583
|
+
export declare type MarketplaceConsoleCreatePrivateAppVersionError = MarketplaceConsoleError & {
|
|
57584
|
+
__typename?: 'MarketplaceConsoleCreatePrivateAppVersionError';
|
|
57585
|
+
id: Scalars['ID']['output'];
|
|
57586
|
+
message: Scalars['String']['output'];
|
|
57587
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
57588
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
57589
|
+
};
|
|
57590
|
+
export declare type MarketplaceConsoleCreatePrivateAppVersionKnownError = {
|
|
57591
|
+
__typename?: 'MarketplaceConsoleCreatePrivateAppVersionKnownError';
|
|
57592
|
+
errors?: Maybe<Array<Maybe<MarketplaceConsoleCreatePrivateAppVersionError>>>;
|
|
57593
|
+
};
|
|
57594
|
+
export declare type MarketplaceConsoleCreatePrivateAppVersionMutationOutput = MarketplaceConsoleCreatePrivateAppVersionKnownError | MarketplaceConsoleCreatePrivateAppVersionMutationResponse;
|
|
57083
57595
|
export declare type MarketplaceConsoleCreatePrivateAppVersionMutationResponse = {
|
|
57084
57596
|
__typename?: 'MarketplaceConsoleCreatePrivateAppVersionMutationResponse';
|
|
57085
57597
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -57089,7 +57601,7 @@ export declare type MarketplaceConsoleDeleteAppVersionResponse = MarketplaceCons
|
|
|
57089
57601
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
57090
57602
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
57091
57603
|
body: Scalars['String']['output'];
|
|
57092
|
-
|
|
57604
|
+
screenshot?: Maybe<MarketplaceConsoleListingScreenshot>;
|
|
57093
57605
|
};
|
|
57094
57606
|
export declare type MarketplaceConsoleDeploymentInstructionInput = {
|
|
57095
57607
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57263,7 +57775,6 @@ export declare type MarketplaceConsoleFrameworkAttributes = {
|
|
|
57263
57775
|
external?: Maybe<MarketplaceConsoleExternalFrameworkAttributes>;
|
|
57264
57776
|
forge?: Maybe<MarketplaceConsoleForgeFrameworkAttributes>;
|
|
57265
57777
|
plugin?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
|
|
57266
|
-
plugins?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
|
|
57267
57778
|
workflow?: Maybe<MarketplaceConsoleWorkflowFrameworkAttributes>;
|
|
57268
57779
|
};
|
|
57269
57780
|
export declare type MarketplaceConsoleFrameworkAttributesInput = {
|
|
@@ -57345,6 +57856,13 @@ export declare type MarketplaceConsoleLink = {
|
|
|
57345
57856
|
title?: Maybe<Scalars['String']['output']>;
|
|
57346
57857
|
type?: Maybe<Scalars['String']['output']>;
|
|
57347
57858
|
};
|
|
57859
|
+
export declare type MarketplaceConsoleListingHighLight = {
|
|
57860
|
+
__typename?: 'MarketplaceConsoleListingHighLight';
|
|
57861
|
+
caption?: Maybe<Scalars['String']['output']>;
|
|
57862
|
+
screenshot: MarketplaceConsoleListingScreenshot;
|
|
57863
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
57864
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
57865
|
+
};
|
|
57348
57866
|
export declare type MarketplaceConsoleListingHighLightInput = {
|
|
57349
57867
|
caption?: InputMaybe<Scalars['String']['input']>;
|
|
57350
57868
|
screenshotUrl: Scalars['String']['input'];
|
|
@@ -57352,23 +57870,32 @@ export declare type MarketplaceConsoleListingHighLightInput = {
|
|
|
57352
57870
|
thumbnailUrl: Scalars['String']['input'];
|
|
57353
57871
|
title: Scalars['String']['input'];
|
|
57354
57872
|
};
|
|
57355
|
-
export declare type MarketplaceConsoleListingHighLights = {
|
|
57356
|
-
__typename?: 'MarketplaceConsoleListingHighLights';
|
|
57357
|
-
caption?: Maybe<Scalars['String']['output']>;
|
|
57358
|
-
screenshot: MarketplaceConsoleListingScreenshot;
|
|
57359
|
-
summary?: Maybe<Scalars['String']['output']>;
|
|
57360
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
57361
|
-
};
|
|
57362
57873
|
export declare type MarketplaceConsoleListingScreenshot = {
|
|
57363
57874
|
__typename?: 'MarketplaceConsoleListingScreenshot';
|
|
57364
57875
|
caption?: Maybe<Scalars['String']['output']>;
|
|
57365
|
-
imageId: Scalars['String']['output'];
|
|
57366
57876
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
57367
57877
|
};
|
|
57368
57878
|
export declare type MarketplaceConsoleListingScreenshotInput = {
|
|
57369
57879
|
caption?: InputMaybe<Scalars['String']['input']>;
|
|
57370
57880
|
imageUrl: Scalars['String']['input'];
|
|
57371
57881
|
};
|
|
57882
|
+
export declare type MarketplaceConsoleMakeAppPublicError = MarketplaceConsoleError & {
|
|
57883
|
+
__typename?: 'MarketplaceConsoleMakeAppPublicError';
|
|
57884
|
+
id: Scalars['ID']['output'];
|
|
57885
|
+
message: Scalars['String']['output'];
|
|
57886
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
57887
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
57888
|
+
};
|
|
57889
|
+
export declare type MarketplaceConsoleMakeAppPublicKnownError = {
|
|
57890
|
+
__typename?: 'MarketplaceConsoleMakeAppPublicKnownError';
|
|
57891
|
+
errors?: Maybe<Array<Maybe<MarketplaceConsoleMakeAppPublicError>>>;
|
|
57892
|
+
};
|
|
57893
|
+
export declare type MarketplaceConsoleMakeAppVersionPublicChecks = {
|
|
57894
|
+
__typename?: 'MarketplaceConsoleMakeAppVersionPublicChecks';
|
|
57895
|
+
canBeMadePublic?: Maybe<Scalars['Boolean']['output']>;
|
|
57896
|
+
redirectToVersionsPage?: Maybe<Scalars['Boolean']['output']>;
|
|
57897
|
+
};
|
|
57898
|
+
export declare type MarketplaceConsoleMakeAppVersionPublicMutationOutput = MarketplaceConsoleMakeAppPublicKnownError | MarketplaceConsoleMutationVoidResponse;
|
|
57372
57899
|
export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
|
|
57373
57900
|
appKey: Scalars['ID']['input'];
|
|
57374
57901
|
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57417,11 +57944,11 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
57417
57944
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
57418
57945
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
57419
57946
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
57420
|
-
createPrivateAppSoftwareVersion?: Maybe<
|
|
57947
|
+
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
57421
57948
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
57422
57949
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
57423
57950
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
57424
|
-
makeAppVersionPublic?: Maybe<
|
|
57951
|
+
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
57425
57952
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
57426
57953
|
};
|
|
57427
57954
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
@@ -57655,6 +58182,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
57655
58182
|
developerSpaceByAppId?: Maybe<MarketplaceConsoleDevSpace>;
|
|
57656
58183
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
57657
58184
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
58185
|
+
makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
|
|
57658
58186
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
57659
58187
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
57660
58188
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
@@ -57705,6 +58233,10 @@ export declare type MarketplaceConsoleQueryApiEditionsArgs = {
|
|
|
57705
58233
|
export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
|
|
57706
58234
|
product: MarketplaceConsoleEditionsInput;
|
|
57707
58235
|
};
|
|
58236
|
+
export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
|
|
58237
|
+
appId: Scalars['ID']['input'];
|
|
58238
|
+
buildNumber: Scalars['ID']['input'];
|
|
58239
|
+
};
|
|
57708
58240
|
export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
57709
58241
|
appKey: Scalars['ID']['input'];
|
|
57710
58242
|
productId: Scalars['ID']['input'];
|
|
@@ -57724,7 +58256,7 @@ export declare type MarketplaceConsoleRemoteArtifactDetails = {
|
|
|
57724
58256
|
};
|
|
57725
58257
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
57726
58258
|
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
57727
|
-
binary
|
|
58259
|
+
binary?: Maybe<MarketplaceConsoleLink>;
|
|
57728
58260
|
remote?: Maybe<MarketplaceConsoleLink>;
|
|
57729
58261
|
self: MarketplaceConsoleLink;
|
|
57730
58262
|
};
|
|
@@ -59213,6 +59745,7 @@ export declare type MercuryPortfolio = Node & {
|
|
|
59213
59745
|
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
59214
59746
|
name: Scalars['String']['output'];
|
|
59215
59747
|
owner?: Maybe<User>;
|
|
59748
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
59216
59749
|
};
|
|
59217
59750
|
export declare type MercuryPortfolioAllocations = {
|
|
59218
59751
|
__typename?: 'MercuryPortfolioAllocations';
|
|
@@ -60053,6 +60586,8 @@ export declare type Mutation = {
|
|
|
60053
60586
|
confluenceV2_createPage?: Maybe<ConfluenceV2CreatePagePayload>;
|
|
60054
60587
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
60055
60588
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
60589
|
+
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
60590
|
+
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
60056
60591
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
60057
60592
|
createApp?: Maybe<CreateAppResponse>;
|
|
60058
60593
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
@@ -60136,7 +60671,7 @@ export declare type Mutation = {
|
|
|
60136
60671
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
60137
60672
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
60138
60673
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
60139
|
-
radar_updateFocusAreaMappings
|
|
60674
|
+
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
60140
60675
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
60141
60676
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
60142
60677
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
@@ -60723,6 +61258,14 @@ export declare type MutationConfluenceV2_DeletePageArgs = {
|
|
|
60723
61258
|
export declare type MutationConfluenceV2_UpdatePageArgs = {
|
|
60724
61259
|
input: ConfluenceV2UpdatePageInput;
|
|
60725
61260
|
};
|
|
61261
|
+
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
61262
|
+
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
61263
|
+
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
61264
|
+
};
|
|
61265
|
+
export declare type MutationConnectionManager_DeleteApiTokenConnectionForJiraProjectArgs = {
|
|
61266
|
+
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
61267
|
+
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
61268
|
+
};
|
|
60726
61269
|
export declare type MutationCopyPolarisInsightsArgs = {
|
|
60727
61270
|
input: CopyPolarisInsightsInput;
|
|
60728
61271
|
};
|
|
@@ -62995,6 +63538,7 @@ export declare type Query = {
|
|
|
62995
63538
|
confluenceV2_spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
62996
63539
|
confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
|
|
62997
63540
|
connectedData?: Maybe<ConnectedDataQuery>;
|
|
63541
|
+
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
62998
63542
|
contentFacet: ContentPlatformContentFacetConnection;
|
|
62999
63543
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
63000
63544
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
@@ -63112,8 +63656,8 @@ export declare type Query = {
|
|
|
63112
63656
|
pricings: ContentPlatformPricingSearchConnection;
|
|
63113
63657
|
productListing?: Maybe<ProductListingResult>;
|
|
63114
63658
|
productListings: Array<ProductListingResult>;
|
|
63115
|
-
radar_fieldValues
|
|
63116
|
-
radar_positions
|
|
63659
|
+
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
63660
|
+
radar_positions?: Maybe<RadarPositionConnection>;
|
|
63117
63661
|
radar_workspace: RadarWorkspace;
|
|
63118
63662
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
63119
63663
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
@@ -64198,6 +64742,10 @@ export declare type QueryConfluenceV2_SpaceThemeArgs = {
|
|
|
64198
64742
|
export declare type QueryConfluenceV2_SpacesArgs = {
|
|
64199
64743
|
ids: Array<Scalars['ID']['input']>;
|
|
64200
64744
|
};
|
|
64745
|
+
export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
|
|
64746
|
+
filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
|
|
64747
|
+
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
64748
|
+
};
|
|
64201
64749
|
export declare type QueryContentFacetArgs = {
|
|
64202
64750
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64203
64751
|
first?: Scalars['Int']['input'];
|
|
@@ -64684,7 +65232,7 @@ export declare type RadarEdge = {
|
|
|
64684
65232
|
cursor: Scalars['String']['output'];
|
|
64685
65233
|
};
|
|
64686
65234
|
export declare type RadarEntity = {
|
|
64687
|
-
fieldValues
|
|
65235
|
+
fieldValues: Array<RadarFieldValueIdPair>;
|
|
64688
65236
|
id: Scalars['ID']['output'];
|
|
64689
65237
|
type?: Maybe<RadarEntityType>;
|
|
64690
65238
|
};
|
|
@@ -64693,21 +65241,6 @@ export declare enum RadarEntityType {
|
|
|
64693
65241
|
Person = "person",
|
|
64694
65242
|
Position = "position"
|
|
64695
65243
|
}
|
|
64696
|
-
export declare type RadarError = {
|
|
64697
|
-
__typename?: 'RadarError';
|
|
64698
|
-
errorCode: Scalars['String']['output'];
|
|
64699
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
64700
|
-
extensions?: Maybe<Array<RadarErrorExtension>>;
|
|
64701
|
-
location?: Maybe<Array<RadarLocation>>;
|
|
64702
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
64703
|
-
stackTrace?: Maybe<Array<Scalars['String']['output']>>;
|
|
64704
|
-
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
64705
|
-
};
|
|
64706
|
-
export declare type RadarErrorExtension = {
|
|
64707
|
-
__typename?: 'RadarErrorExtension';
|
|
64708
|
-
property: Scalars['String']['output'];
|
|
64709
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
64710
|
-
};
|
|
64711
65244
|
export declare type RadarFieldDefinition = Node & {
|
|
64712
65245
|
__typename?: 'RadarFieldDefinition';
|
|
64713
65246
|
displayName: Scalars['String']['output'];
|
|
@@ -64728,7 +65261,6 @@ export declare enum RadarFieldType {
|
|
|
64728
65261
|
Url = "URL"
|
|
64729
65262
|
}
|
|
64730
65263
|
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
64731
|
-
export declare type RadarFieldValueConnectionResult = RadarError | RadarFieldValuesConnection;
|
|
64732
65264
|
export declare type RadarFieldValueIdPair = {
|
|
64733
65265
|
__typename?: 'RadarFieldValueIdPair';
|
|
64734
65266
|
fieldId: Scalars['ID']['output'];
|
|
@@ -64775,16 +65307,10 @@ export declare type RadarFocusAreaMappingsInput = {
|
|
|
64775
65307
|
focusAreaAri: Scalars['ID']['input'];
|
|
64776
65308
|
positionId: Scalars['ID']['input'];
|
|
64777
65309
|
};
|
|
64778
|
-
export declare type RadarLocation = {
|
|
64779
|
-
__typename?: 'RadarLocation';
|
|
64780
|
-
column: Scalars['Int']['output'];
|
|
64781
|
-
line: Scalars['Int']['output'];
|
|
64782
|
-
};
|
|
64783
65310
|
export declare type RadarMutationResponse = {
|
|
64784
65311
|
__typename?: 'RadarMutationResponse';
|
|
64785
|
-
success
|
|
65312
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
64786
65313
|
};
|
|
64787
|
-
export declare type RadarMutationResponseResult = RadarError | RadarMutationResponse;
|
|
64788
65314
|
export declare type RadarNumericFieldValue = {
|
|
64789
65315
|
__typename?: 'RadarNumericFieldValue';
|
|
64790
65316
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
@@ -64792,7 +65318,7 @@ export declare type RadarNumericFieldValue = {
|
|
|
64792
65318
|
};
|
|
64793
65319
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
64794
65320
|
__typename?: 'RadarPosition';
|
|
64795
|
-
fieldValues
|
|
65321
|
+
fieldValues: Array<RadarFieldValueIdPair>;
|
|
64796
65322
|
id: Scalars['ID']['output'];
|
|
64797
65323
|
type?: Maybe<RadarEntityType>;
|
|
64798
65324
|
};
|
|
@@ -64803,7 +65329,6 @@ export declare type RadarPositionConnection = RadarConnection & {
|
|
|
64803
65329
|
pageInfo: PageInfo;
|
|
64804
65330
|
totalCount: Scalars['Int']['output'];
|
|
64805
65331
|
};
|
|
64806
|
-
export declare type RadarPositionConnectionResult = RadarError | RadarPositionConnection;
|
|
64807
65332
|
export declare type RadarPositionEdge = RadarEdge & {
|
|
64808
65333
|
__typename?: 'RadarPositionEdge';
|
|
64809
65334
|
cursor: Scalars['String']['output'];
|
|
@@ -68279,6 +68804,7 @@ export declare type ShepherdWorkspace = {
|
|
|
68279
68804
|
currentUser?: Maybe<ShepherdCurrentUser>;
|
|
68280
68805
|
customDetections: Array<ShepherdCustomDetection>;
|
|
68281
68806
|
detections: Array<ShepherdDetection>;
|
|
68807
|
+
hasDataCenterAlert?: Maybe<Scalars['Boolean']['output']>;
|
|
68282
68808
|
id: Scalars['ID']['output'];
|
|
68283
68809
|
orgId: Scalars['ID']['output'];
|
|
68284
68810
|
shouldOnboard?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -70488,14 +71014,15 @@ export declare type TrelloArchiveCardPayload = Payload & {
|
|
|
70488
71014
|
};
|
|
70489
71015
|
export declare type TrelloAssignCardToPlannerCalendarEventInput = {
|
|
70490
71016
|
cardId: Scalars['ID']['input'];
|
|
71017
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
70491
71018
|
position?: InputMaybe<Scalars['Float']['input']>;
|
|
70492
|
-
|
|
71019
|
+
providerAccountId: Scalars['ID']['input'];
|
|
70493
71020
|
providerEventId: Scalars['ID']['input'];
|
|
70494
|
-
workspaceId: Scalars['ID']['input'];
|
|
70495
71021
|
};
|
|
70496
71022
|
export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
|
|
70497
71023
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
|
|
70498
71024
|
errors?: Maybe<Array<MutationError>>;
|
|
71025
|
+
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
70499
71026
|
eventCard?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
|
|
70500
71027
|
success: Scalars['Boolean']['output'];
|
|
70501
71028
|
};
|
|
@@ -71039,6 +71566,7 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
71039
71566
|
};
|
|
71040
71567
|
export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
71041
71568
|
enabled: Scalars['Boolean']['input'];
|
|
71569
|
+
providerAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
71042
71570
|
providerCalendarId: Scalars['ID']['input'];
|
|
71043
71571
|
type: TrelloSupportedPlannerProviders;
|
|
71044
71572
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -71047,6 +71575,7 @@ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
|
71047
71575
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
71048
71576
|
errors?: Maybe<Array<MutationError>>;
|
|
71049
71577
|
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
71578
|
+
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
|
|
71050
71579
|
success: Scalars['Boolean']['output'];
|
|
71051
71580
|
};
|
|
71052
71581
|
export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
|
|
@@ -71531,6 +72060,10 @@ export declare type TrelloPlannerCalendarConnection = {
|
|
|
71531
72060
|
pageInfo: PageInfo;
|
|
71532
72061
|
updateCursor?: Maybe<Scalars['String']['output']>;
|
|
71533
72062
|
};
|
|
72063
|
+
export declare type TrelloPlannerCalendarConnectionUpdated = {
|
|
72064
|
+
__typename?: 'TrelloPlannerCalendarConnectionUpdated';
|
|
72065
|
+
edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
|
|
72066
|
+
};
|
|
71534
72067
|
export declare type TrelloPlannerCalendarEdge = {
|
|
71535
72068
|
__typename?: 'TrelloPlannerCalendarEdge';
|
|
71536
72069
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -71696,7 +72229,6 @@ export declare type TrelloQueryApi = {
|
|
|
71696
72229
|
board?: Maybe<TrelloBoard>;
|
|
71697
72230
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
71698
72231
|
card?: Maybe<TrelloCard>;
|
|
71699
|
-
cardsForPlannerEvent?: Maybe<TrelloPlannerCalendarEventCardConnection>;
|
|
71700
72232
|
echo?: Maybe<Scalars['String']['output']>;
|
|
71701
72233
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
71702
72234
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -71704,6 +72236,10 @@ export declare type TrelloQueryApi = {
|
|
|
71704
72236
|
list?: Maybe<TrelloList>;
|
|
71705
72237
|
member?: Maybe<TrelloMember>;
|
|
71706
72238
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
72239
|
+
plannerByWorkspaceId?: Maybe<TrelloPlanner>;
|
|
72240
|
+
plannerCalendarAccountById?: Maybe<TrelloPlannerCalendarAccount>;
|
|
72241
|
+
plannerCalendarById?: Maybe<TrelloPlannerCalendar>;
|
|
72242
|
+
plannerCalendarEventById?: Maybe<TrelloPlannerCalendarEvent>;
|
|
71707
72243
|
plannerCalendarEventsByCalendarId?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
71708
72244
|
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
71709
72245
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
@@ -71721,13 +72257,6 @@ export declare type TrelloQueryApiBoardByShortLinkArgs = {
|
|
|
71721
72257
|
export declare type TrelloQueryApiCardArgs = {
|
|
71722
72258
|
id: Scalars['ID']['input'];
|
|
71723
72259
|
};
|
|
71724
|
-
export declare type TrelloQueryApiCardsForPlannerEventArgs = {
|
|
71725
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
71726
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71727
|
-
providerAccountId: Scalars['ID']['input'];
|
|
71728
|
-
providerEventId: Scalars['ID']['input'];
|
|
71729
|
-
workspaceId: Scalars['ID']['input'];
|
|
71730
|
-
};
|
|
71731
72260
|
export declare type TrelloQueryApiEchosArgs = {
|
|
71732
72261
|
echo: Array<Scalars['String']['input']>;
|
|
71733
72262
|
};
|
|
@@ -71752,6 +72281,22 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
|
|
|
71752
72281
|
id: Scalars['ID']['input'];
|
|
71753
72282
|
workspaceId: Scalars['ID']['input'];
|
|
71754
72283
|
};
|
|
72284
|
+
export declare type TrelloQueryApiPlannerByWorkspaceIdArgs = {
|
|
72285
|
+
id: Scalars['ID']['input'];
|
|
72286
|
+
};
|
|
72287
|
+
export declare type TrelloQueryApiPlannerCalendarAccountByIdArgs = {
|
|
72288
|
+
id: Scalars['ID']['input'];
|
|
72289
|
+
workspaceId: Scalars['ID']['input'];
|
|
72290
|
+
};
|
|
72291
|
+
export declare type TrelloQueryApiPlannerCalendarByIdArgs = {
|
|
72292
|
+
id: Scalars['ID']['input'];
|
|
72293
|
+
providerAccountId: Scalars['ID']['input'];
|
|
72294
|
+
};
|
|
72295
|
+
export declare type TrelloQueryApiPlannerCalendarEventByIdArgs = {
|
|
72296
|
+
id: Scalars['ID']['input'];
|
|
72297
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
72298
|
+
providerAccountId: Scalars['ID']['input'];
|
|
72299
|
+
};
|
|
71755
72300
|
export declare type TrelloQueryApiPlannerCalendarEventsByCalendarIdArgs = {
|
|
71756
72301
|
accountId: Scalars['ID']['input'];
|
|
71757
72302
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72097,6 +72642,23 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
72097
72642
|
linkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
72098
72643
|
parentAccount?: Maybe<UnifiedParentAccount>;
|
|
72099
72644
|
};
|
|
72645
|
+
export declare type UnifiedAccount2 = UnifiedINode & {
|
|
72646
|
+
__typename?: 'UnifiedAccount2';
|
|
72647
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
72648
|
+
id: Scalars['ID']['output'];
|
|
72649
|
+
internalId?: Maybe<Scalars['String']['output']>;
|
|
72650
|
+
isLinked?: Maybe<Scalars['Boolean']['output']>;
|
|
72651
|
+
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
72652
|
+
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
72653
|
+
linkedAccounts?: Maybe<UnifiedULinkedAccount2Result>;
|
|
72654
|
+
};
|
|
72655
|
+
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
72656
|
+
__typename?: 'UnifiedAccountDetails';
|
|
72657
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
72658
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
72659
|
+
id: Scalars['ID']['output'];
|
|
72660
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
72661
|
+
};
|
|
72100
72662
|
export declare type UnifiedAdmins = UnifiedINode & {
|
|
72101
72663
|
__typename?: 'UnifiedAdmins';
|
|
72102
72664
|
admins?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -72369,6 +72931,11 @@ export declare type UnifiedLearningCertificationEdge = UnifiedIEdge & {
|
|
|
72369
72931
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
72370
72932
|
node?: Maybe<UnifiedLearningCertification>;
|
|
72371
72933
|
};
|
|
72934
|
+
export declare type UnifiedLinkTransaction = {
|
|
72935
|
+
__typename?: 'UnifiedLinkTransaction';
|
|
72936
|
+
id: Scalars['ID']['output'];
|
|
72937
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
72938
|
+
};
|
|
72372
72939
|
export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
72373
72940
|
__typename?: 'UnifiedLinkedAccount';
|
|
72374
72941
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -72380,18 +72947,53 @@ export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
|
72380
72947
|
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
72381
72948
|
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
72382
72949
|
};
|
|
72950
|
+
export declare type UnifiedLinkedAccount2Connection = UnifiedIConnection & {
|
|
72951
|
+
__typename?: 'UnifiedLinkedAccount2Connection';
|
|
72952
|
+
edges?: Maybe<Array<Maybe<UnifiedLinkedAccount2Edge>>>;
|
|
72953
|
+
pageInfo: UnifiedPageInfo;
|
|
72954
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
72955
|
+
};
|
|
72956
|
+
export declare type UnifiedLinkedAccount2Edge = UnifiedIEdge & {
|
|
72957
|
+
__typename?: 'UnifiedLinkedAccount2Edge';
|
|
72958
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
72959
|
+
node?: Maybe<UnifiedAccount2>;
|
|
72960
|
+
};
|
|
72383
72961
|
export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
72384
72962
|
__typename?: 'UnifiedLinkedAccountPayload';
|
|
72385
72963
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
72386
72964
|
success: Scalars['Boolean']['output'];
|
|
72387
72965
|
unifiedLinkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
72388
72966
|
};
|
|
72967
|
+
export declare type UnifiedLinkingMutation = {
|
|
72968
|
+
__typename?: 'UnifiedLinkingMutation';
|
|
72969
|
+
authenticateTransaction?: Maybe<UnifiedLinkingPayload>;
|
|
72970
|
+
completeTransaction?: Maybe<UnifiedLinkingPayload>;
|
|
72971
|
+
initializeTransaction?: Maybe<UnifiedULinkTransactionPayload>;
|
|
72972
|
+
};
|
|
72973
|
+
export declare type UnifiedLinkingMutationAuthenticateTransactionArgs = {
|
|
72974
|
+
isLoggedInPrimary?: InputMaybe<Scalars['Boolean']['input']>;
|
|
72975
|
+
token: Scalars['String']['input'];
|
|
72976
|
+
};
|
|
72977
|
+
export declare type UnifiedLinkingMutationCompleteTransactionArgs = {
|
|
72978
|
+
token: Scalars['String']['input'];
|
|
72979
|
+
};
|
|
72980
|
+
export declare type UnifiedLinkingMutationInitializeTransactionArgs = {
|
|
72981
|
+
account2Aaid?: InputMaybe<Scalars['String']['input']>;
|
|
72982
|
+
primaryAccountType?: InputMaybe<UnifiedPrimaryAccountType>;
|
|
72983
|
+
};
|
|
72984
|
+
export declare type UnifiedLinkingPayload = UnifiedPayload & {
|
|
72985
|
+
__typename?: 'UnifiedLinkingPayload';
|
|
72986
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
72987
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
72988
|
+
success: Scalars['Boolean']['output'];
|
|
72989
|
+
};
|
|
72389
72990
|
export declare type UnifiedMutation = {
|
|
72390
72991
|
__typename?: 'UnifiedMutation';
|
|
72391
72992
|
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
|
|
72392
72993
|
createParentAccount?: Maybe<UnifiedParentAccountPayload>;
|
|
72393
72994
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
72394
72995
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
72996
|
+
linking?: Maybe<UnifiedLinkingMutation>;
|
|
72395
72997
|
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
|
|
72396
72998
|
};
|
|
72397
72999
|
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
@@ -72443,6 +73045,10 @@ export declare type UnifiedPayload = {
|
|
|
72443
73045
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
72444
73046
|
success: Scalars['Boolean']['output'];
|
|
72445
73047
|
};
|
|
73048
|
+
export declare enum UnifiedPrimaryAccountType {
|
|
73049
|
+
Input = "INPUT",
|
|
73050
|
+
LoggedIn = "LOGGED_IN"
|
|
73051
|
+
}
|
|
72446
73052
|
export declare type UnifiedProfile = UnifiedINode & {
|
|
72447
73053
|
__typename?: 'UnifiedProfile';
|
|
72448
73054
|
badges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
@@ -72517,6 +73123,8 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
72517
73123
|
};
|
|
72518
73124
|
export declare type UnifiedQuery = {
|
|
72519
73125
|
__typename?: 'UnifiedQuery';
|
|
73126
|
+
account?: Maybe<UnifiedUAccount2Result>;
|
|
73127
|
+
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
72520
73128
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
72521
73129
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
72522
73130
|
node?: Maybe<UnifiedINode>;
|
|
@@ -72525,6 +73133,13 @@ export declare type UnifiedQuery = {
|
|
|
72525
73133
|
unifiedProfile?: Maybe<UnifiedUProfileResult>;
|
|
72526
73134
|
unifiedProfiles?: Maybe<Array<Maybe<UnifiedUProfileResult>>>;
|
|
72527
73135
|
};
|
|
73136
|
+
export declare type UnifiedQueryAccountArgs = {
|
|
73137
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
73138
|
+
};
|
|
73139
|
+
export declare type UnifiedQueryAccountDetailsArgs = {
|
|
73140
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
73141
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
73142
|
+
};
|
|
72528
73143
|
export declare type UnifiedQueryAtlassianProductsArgs = {
|
|
72529
73144
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
72530
73145
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -72568,6 +73183,8 @@ export declare type UnifiedRecentCourseEdge = UnifiedIEdge & {
|
|
|
72568
73183
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
72569
73184
|
node?: Maybe<UnifiedRecentCourse>;
|
|
72570
73185
|
};
|
|
73186
|
+
export declare type UnifiedUAccount2Result = UnifiedAccount2 | UnifiedQueryError;
|
|
73187
|
+
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
72571
73188
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
72572
73189
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
72573
73190
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
@@ -72583,6 +73200,8 @@ export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQu
|
|
|
72583
73200
|
export declare type UnifiedUGatingStatusResult = UnifiedAccessStatus | UnifiedQueryError;
|
|
72584
73201
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
72585
73202
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
73203
|
+
export declare type UnifiedULinkTransactionPayload = UnifiedLinkTransaction | UnifiedLinkingPayload;
|
|
73204
|
+
export declare type UnifiedULinkedAccount2Result = UnifiedLinkedAccount2Connection | UnifiedQueryError;
|
|
72586
73205
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
72587
73206
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
72588
73207
|
export declare type UnifiedURecentCourseResult = UnifiedQueryError | UnifiedRecentCourseConnection;
|
|
@@ -72813,6 +73432,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
72813
73432
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
72814
73433
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
72815
73434
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
73435
|
+
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
72816
73436
|
updateCriteria?: InputMaybe<Array<UpdateCompassScorecardCriteriaInput>>;
|
|
72817
73437
|
};
|
|
72818
73438
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
@@ -73149,6 +73769,10 @@ export declare type User = {
|
|
|
73149
73769
|
name: Scalars['String']['output'];
|
|
73150
73770
|
picture: Scalars['URL']['output'];
|
|
73151
73771
|
};
|
|
73772
|
+
export declare type UserAccess = {
|
|
73773
|
+
__typename?: 'UserAccess';
|
|
73774
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
73775
|
+
};
|
|
73152
73776
|
export declare type UserAuthTokenForExtensionInput = {
|
|
73153
73777
|
contextIds: Array<Scalars['ID']['input']>;
|
|
73154
73778
|
extensionId: Scalars['ID']['input'];
|
|
@@ -73371,6 +73995,7 @@ export declare type VirtualAgentCreateChatChannelPayload = Payload & {
|
|
|
73371
73995
|
};
|
|
73372
73996
|
export declare type VirtualAgentCreateConfigurationInput = {
|
|
73373
73997
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
73998
|
+
isAiResponsesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73374
73999
|
respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73375
74000
|
};
|
|
73376
74001
|
export declare type VirtualAgentCreateConfigurationPayload = Payload & {
|
|
@@ -73908,7 +74533,6 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
73908
74533
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
73909
74534
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
73910
74535
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
73911
|
-
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
73912
74536
|
stuckIssueSuggestions?: Maybe<Array<WorkSuggestionsStuckIssueTask>>;
|
|
73913
74537
|
};
|
|
73914
74538
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
@@ -74130,10 +74754,6 @@ export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtensi
|
|
|
74130
74754
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
74131
74755
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
74132
74756
|
};
|
|
74133
|
-
export declare type WorkSuggestionsOrder = {
|
|
74134
|
-
__typename?: 'WorkSuggestionsOrder';
|
|
74135
|
-
defaultOrder: Array<Scalars['ID']['output']>;
|
|
74136
|
-
};
|
|
74137
74757
|
export declare type WorkSuggestionsOrderScore = {
|
|
74138
74758
|
__typename?: 'WorkSuggestionsOrderScore';
|
|
74139
74759
|
byTaskType?: Maybe<WorkSuggestionsOrderScores>;
|