@forge/cli-shared 6.3.1-next.1 → 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 +65 -0
- package/out/graphql/graphql-types.d.ts +672 -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>>;
|
|
@@ -6417,6 +6423,7 @@ export declare type CompassScorecardMetricCriterionScore = CompassScorecardCrite
|
|
|
6417
6423
|
export declare type CompassScorecardQueryFilter = {
|
|
6418
6424
|
componentTypeIds?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
6419
6425
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6426
|
+
state?: InputMaybe<Scalars['String']['input']>;
|
|
6420
6427
|
type?: InputMaybe<CompassScorecardTypesFilter>;
|
|
6421
6428
|
};
|
|
6422
6429
|
export declare type CompassScorecardQuerySort = {
|
|
@@ -14334,6 +14341,49 @@ export declare type ConnectedDataQueryServicesArgs = {
|
|
|
14334
14341
|
cloudId: Scalars['ID']['input'];
|
|
14335
14342
|
id: Scalars['ID']['input'];
|
|
14336
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
|
+
};
|
|
14337
14387
|
export declare type ContainerEventObject = {
|
|
14338
14388
|
__typename?: 'ContainerEventObject';
|
|
14339
14389
|
attributes: Scalars['JSON']['output'];
|
|
@@ -14960,11 +15010,13 @@ export declare type ContentPlatformIpmInlineDialog = {
|
|
|
14960
15010
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14961
15011
|
featuredImage?: Maybe<ContentPlatformIpmCompImage>;
|
|
14962
15012
|
id: Scalars['String']['output'];
|
|
15013
|
+
ipmNumber: Scalars['String']['output'];
|
|
14963
15014
|
primaryButton: ContentPlatformIpmComponentLinkButtonAndIpmComponentGsacButtonUnion;
|
|
14964
15015
|
secondaryButton?: Maybe<ContentPlatformIpmComponentRemindMeLater>;
|
|
14965
15016
|
title: Scalars['String']['output'];
|
|
14966
15017
|
trigger: ContentPlatformIpmTrigger;
|
|
14967
15018
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15019
|
+
variant: Scalars['String']['output'];
|
|
14968
15020
|
};
|
|
14969
15021
|
export declare type ContentPlatformIpmInlineDialogResultEdge = {
|
|
14970
15022
|
__typename?: 'ContentPlatformIpmInlineDialogResultEdge';
|
|
@@ -17071,6 +17123,7 @@ export declare type CustomerServiceQueryApi = {
|
|
|
17071
17123
|
organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
|
|
17072
17124
|
productConnections?: Maybe<CustomerServiceProductConnection>;
|
|
17073
17125
|
products?: Maybe<CustomerServiceProductQueryResult>;
|
|
17126
|
+
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
17074
17127
|
};
|
|
17075
17128
|
export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
17076
17129
|
customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
|
|
@@ -17097,11 +17150,33 @@ export declare type CustomerServiceQueryApiProductsArgs = {
|
|
|
17097
17150
|
filter?: InputMaybe<CustomerServiceProductFilterInput>;
|
|
17098
17151
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17099
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
|
+
};
|
|
17100
17166
|
export declare type CustomerServiceStatusPayload = Payload & {
|
|
17101
17167
|
__typename?: 'CustomerServiceStatusPayload';
|
|
17102
17168
|
errors?: Maybe<Array<MutationError>>;
|
|
17103
17169
|
success: Scalars['Boolean']['output'];
|
|
17104
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;
|
|
17105
17180
|
export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
|
|
17106
17181
|
__typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
|
|
17107
17182
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -17768,6 +17843,7 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
17768
17843
|
export declare enum DevAiIssueScopingLabel {
|
|
17769
17844
|
Complex = "COMPLEX",
|
|
17770
17845
|
InScope = "IN_SCOPE",
|
|
17846
|
+
Optimal = "OPTIMAL",
|
|
17771
17847
|
Recoverable = "RECOVERABLE",
|
|
17772
17848
|
Unsolvable = "UNSOLVABLE"
|
|
17773
17849
|
}
|
|
@@ -19521,7 +19597,7 @@ export declare type EarliestViewViewedForUser = {
|
|
|
19521
19597
|
};
|
|
19522
19598
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
19523
19599
|
export declare type EcosystemAppInstallationOverridesInput = {
|
|
19524
|
-
|
|
19600
|
+
licenseModes?: InputMaybe<Array<EcosystemLicenseMode>>;
|
|
19525
19601
|
usersWithAccess?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
19526
19602
|
};
|
|
19527
19603
|
export declare type EcosystemAppNetworkEgressPermission = {
|
|
@@ -19725,6 +19801,7 @@ export declare type EcosystemQuery = {
|
|
|
19725
19801
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
19726
19802
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
19727
19803
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
19804
|
+
userAccess?: Maybe<UserAccess>;
|
|
19728
19805
|
userGrants?: Maybe<UserGrantConnection>;
|
|
19729
19806
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
19730
19807
|
};
|
|
@@ -19783,6 +19860,11 @@ export declare type EcosystemQueryForgeMetricsArgs = {
|
|
|
19783
19860
|
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
19784
19861
|
appKey: Scalars['ID']['input'];
|
|
19785
19862
|
};
|
|
19863
|
+
export declare type EcosystemQueryUserAccessArgs = {
|
|
19864
|
+
contextId: Scalars['ID']['input'];
|
|
19865
|
+
definitionId: Scalars['ID']['input'];
|
|
19866
|
+
userAaid?: InputMaybe<Scalars['ID']['input']>;
|
|
19867
|
+
};
|
|
19786
19868
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
19787
19869
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
19788
19870
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -19906,11 +19988,15 @@ export declare type Extension = {
|
|
|
19906
19988
|
scopes: Array<Scalars['String']['output']>;
|
|
19907
19989
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
|
|
19908
19990
|
type: Scalars['String']['output'];
|
|
19991
|
+
userAccess: UserAccess;
|
|
19909
19992
|
versionId: Scalars['ID']['output'];
|
|
19910
19993
|
};
|
|
19911
19994
|
export declare type ExtensionDataClassificationPolicyDecisionArgs = {
|
|
19912
19995
|
input: DataClassificationPolicyDecisionInput;
|
|
19913
19996
|
};
|
|
19997
|
+
export declare type ExtensionUserAccessArgs = {
|
|
19998
|
+
userAaid?: InputMaybe<Scalars['ID']['input']>;
|
|
19999
|
+
};
|
|
19914
20000
|
export declare type ExtensionContext = {
|
|
19915
20001
|
__typename?: 'ExtensionContext';
|
|
19916
20002
|
appAuditLogs: AppAuditConnection;
|
|
@@ -19980,7 +20066,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
19980
20066
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
19981
20067
|
node?: Maybe<ExternalAssociation>;
|
|
19982
20068
|
};
|
|
19983
|
-
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;
|
|
19984
20070
|
export declare type ExternalAttachment = {
|
|
19985
20071
|
__typename?: 'ExternalAttachment';
|
|
19986
20072
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -20301,10 +20387,11 @@ export declare type ExternalEntities = {
|
|
|
20301
20387
|
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
20302
20388
|
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
20303
20389
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
20390
|
+
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
20304
20391
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
20305
20392
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
20306
20393
|
};
|
|
20307
|
-
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;
|
|
20308
20395
|
export declare type ExternalEnvironment = {
|
|
20309
20396
|
__typename?: 'ExternalEnvironment';
|
|
20310
20397
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -20391,7 +20478,7 @@ export declare type ExternalIcon = {
|
|
|
20391
20478
|
__typename?: 'ExternalIcon';
|
|
20392
20479
|
height?: Maybe<Scalars['Int']['output']>;
|
|
20393
20480
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
20394
|
-
|
|
20481
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20395
20482
|
width?: Maybe<Scalars['Int']['output']>;
|
|
20396
20483
|
};
|
|
20397
20484
|
export declare type ExternalLargeContent = {
|
|
@@ -20522,6 +20609,24 @@ export declare type ExternalReviewer = {
|
|
|
20522
20609
|
approvalStatus?: Maybe<ExternalApprovalStatus>;
|
|
20523
20610
|
user?: Maybe<ExternalUser>;
|
|
20524
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
|
+
};
|
|
20525
20630
|
export declare type ExternalTestInfo = {
|
|
20526
20631
|
__typename?: 'ExternalTestInfo';
|
|
20527
20632
|
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
@@ -25256,7 +25361,9 @@ export declare type GraphStore = {
|
|
|
25256
25361
|
appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
25257
25362
|
appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
25258
25363
|
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
25364
|
+
atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
|
|
25259
25365
|
atlasGoalHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection>;
|
|
25366
|
+
atlasGoalHasOwner?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerConnection>;
|
|
25260
25367
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
25261
25368
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
25262
25369
|
atlasGoalHasSubAtlasGoalInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalInverseConnection>;
|
|
@@ -25266,8 +25373,11 @@ export declare type GraphStore = {
|
|
|
25266
25373
|
atlasProjectContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
25267
25374
|
atlasProjectDependsOnAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection>;
|
|
25268
25375
|
atlasProjectDependsOnAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection>;
|
|
25376
|
+
atlasProjectHasContributor?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorConnection>;
|
|
25269
25377
|
atlasProjectHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection>;
|
|
25378
|
+
atlasProjectHasFollower?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerConnection>;
|
|
25270
25379
|
atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
|
|
25380
|
+
atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
|
|
25271
25381
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
25272
25382
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
25273
25383
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
@@ -25288,6 +25398,8 @@ export declare type GraphStore = {
|
|
|
25288
25398
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
25289
25399
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
25290
25400
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
25401
|
+
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
25402
|
+
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
25291
25403
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
25292
25404
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
25293
25405
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
@@ -25381,6 +25493,7 @@ export declare type GraphStore = {
|
|
|
25381
25493
|
issueChangesComponentInverse?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseConnection>;
|
|
25382
25494
|
issueChangesComponentInverseRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
25383
25495
|
issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
25496
|
+
issueHasAssignee?: Maybe<GraphStoreSimplifiedIssueHasAssigneeConnection>;
|
|
25384
25497
|
issueHasAssigneeInverse?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseConnection>;
|
|
25385
25498
|
issueRecursiveAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection>;
|
|
25386
25499
|
issueRecursiveAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseConnection>;
|
|
@@ -25602,9 +25715,14 @@ export declare type GraphStore = {
|
|
|
25602
25715
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25603
25716
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25604
25717
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
25718
|
+
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
25605
25719
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
25720
|
+
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
25721
|
+
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
25606
25722
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
25723
|
+
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
25607
25724
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
25725
|
+
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
25608
25726
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
25609
25727
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
25610
25728
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -25674,6 +25792,13 @@ export declare type GraphStoreAtlasGoalHasContributorInverseArgs = {
|
|
|
25674
25792
|
id: Scalars['ID']['input'];
|
|
25675
25793
|
sort?: InputMaybe<GraphStoreAtlasGoalHasContributorSortInput>;
|
|
25676
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
|
+
};
|
|
25677
25802
|
export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
|
|
25678
25803
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25679
25804
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25681,6 +25806,13 @@ export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
|
|
|
25681
25806
|
id: Scalars['ID']['input'];
|
|
25682
25807
|
sort?: InputMaybe<GraphStoreAtlasGoalHasFollowerSortInput>;
|
|
25683
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
|
+
};
|
|
25684
25816
|
export declare type GraphStoreAtlasGoalHasOwnerInverseArgs = {
|
|
25685
25817
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25686
25818
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25740,6 +25872,13 @@ export declare type GraphStoreAtlasProjectDependsOnAtlasProjectInverseArgs = {
|
|
|
25740
25872
|
id: Scalars['ID']['input'];
|
|
25741
25873
|
sort?: InputMaybe<GraphStoreAtlasProjectDependsOnAtlasProjectSortInput>;
|
|
25742
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
|
+
};
|
|
25743
25882
|
export declare type GraphStoreAtlasProjectHasContributorInverseArgs = {
|
|
25744
25883
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25745
25884
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25747,6 +25886,13 @@ export declare type GraphStoreAtlasProjectHasContributorInverseArgs = {
|
|
|
25747
25886
|
id: Scalars['ID']['input'];
|
|
25748
25887
|
sort?: InputMaybe<GraphStoreAtlasProjectHasContributorSortInput>;
|
|
25749
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
|
+
};
|
|
25750
25896
|
export declare type GraphStoreAtlasProjectHasFollowerInverseArgs = {
|
|
25751
25897
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25752
25898
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25754,6 +25900,13 @@ export declare type GraphStoreAtlasProjectHasFollowerInverseArgs = {
|
|
|
25754
25900
|
id: Scalars['ID']['input'];
|
|
25755
25901
|
sort?: InputMaybe<GraphStoreAtlasProjectHasFollowerSortInput>;
|
|
25756
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
|
+
};
|
|
25757
25910
|
export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
25758
25911
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25759
25912
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25878,6 +26031,20 @@ export declare type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
|
25878
26031
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25879
26032
|
id: Scalars['ID']['input'];
|
|
25880
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
|
+
};
|
|
25881
26048
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
25882
26049
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25883
26050
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -26450,6 +26617,13 @@ export declare type GraphStoreIssueChangesComponentRelationshipArgs = {
|
|
|
26450
26617
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26451
26618
|
id: Scalars['ID']['input'];
|
|
26452
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
|
+
};
|
|
26453
26627
|
export declare type GraphStoreIssueHasAssigneeInverseArgs = {
|
|
26454
26628
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26455
26629
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -27852,6 +28026,13 @@ export declare type GraphStoreUserAuthoredPrArgs = {
|
|
|
27852
28026
|
id: Scalars['ID']['input'];
|
|
27853
28027
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
27854
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
|
+
};
|
|
27855
28036
|
export declare type GraphStoreUserHasTopProjectArgs = {
|
|
27856
28037
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27857
28038
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -27859,6 +28040,20 @@ export declare type GraphStoreUserHasTopProjectArgs = {
|
|
|
27859
28040
|
id: Scalars['ID']['input'];
|
|
27860
28041
|
sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
|
|
27861
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
|
+
};
|
|
27862
28057
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
27863
28058
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27864
28059
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -27866,6 +28061,13 @@ export declare type GraphStoreUserOwnsComponentArgs = {
|
|
|
27866
28061
|
id: Scalars['ID']['input'];
|
|
27867
28062
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
27868
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
|
+
};
|
|
27869
28071
|
export declare type GraphStoreUserReviewsPrArgs = {
|
|
27870
28072
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27871
28073
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -27873,6 +28075,13 @@ export declare type GraphStoreUserReviewsPrArgs = {
|
|
|
27873
28075
|
id: Scalars['ID']['input'];
|
|
27874
28076
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
27875
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
|
+
};
|
|
27876
28085
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
27877
28086
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
27878
28087
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28200,7 +28409,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
28200
28409
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
28201
28410
|
id: Scalars['ID']['output'];
|
|
28202
28411
|
};
|
|
28203
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
28412
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28204
28413
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
28205
28414
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
28206
28415
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -28225,7 +28434,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
28225
28434
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
28226
28435
|
id: Scalars['ID']['output'];
|
|
28227
28436
|
};
|
|
28228
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
|
|
28437
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28229
28438
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
28230
28439
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
28231
28440
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -28731,7 +28940,7 @@ export declare type GraphStoreBatchMediaAttachedToContentEndNode = {
|
|
|
28731
28940
|
data?: Maybe<GraphStoreBatchMediaAttachedToContentEndUnion>;
|
|
28732
28941
|
id: Scalars['ID']['output'];
|
|
28733
28942
|
};
|
|
28734
|
-
export declare type GraphStoreBatchMediaAttachedToContentEndUnion = ConfluencePage | JiraIssue;
|
|
28943
|
+
export declare type GraphStoreBatchMediaAttachedToContentEndUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
28735
28944
|
export declare type GraphStoreBatchMediaAttachedToContentInnerConnection = {
|
|
28736
28945
|
__typename?: 'GraphStoreBatchMediaAttachedToContentInnerConnection';
|
|
28737
28946
|
edges: Array<Maybe<GraphStoreBatchMediaAttachedToContentInnerEdge>>;
|
|
@@ -28851,6 +29060,9 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
28851
29060
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28852
29061
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
28853
29062
|
};
|
|
29063
|
+
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
29064
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
29065
|
+
};
|
|
28854
29066
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
28855
29067
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28856
29068
|
};
|
|
@@ -29796,7 +30008,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
29796
30008
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
29797
30009
|
id: Scalars['ID']['output'];
|
|
29798
30010
|
};
|
|
29799
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
30011
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29800
30012
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
29801
30013
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
29802
30014
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -29810,7 +30022,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
29810
30022
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
29811
30023
|
id: Scalars['ID']['output'];
|
|
29812
30024
|
};
|
|
29813
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluencePage | JiraIssue;
|
|
30025
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
29814
30026
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
29815
30027
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
29816
30028
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -33886,6 +34098,19 @@ export declare type GraphStoreSimplifiedAtlasGoalHasContributorInverseEdge = {
|
|
|
33886
34098
|
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseUnion>;
|
|
33887
34099
|
};
|
|
33888
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
|
+
};
|
|
33889
34114
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection = HasPageInfo & {
|
|
33890
34115
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection';
|
|
33891
34116
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge>>>;
|
|
@@ -33900,6 +34125,20 @@ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge = {
|
|
|
33900
34125
|
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion>;
|
|
33901
34126
|
};
|
|
33902
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
|
+
};
|
|
33903
34142
|
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection = HasPageInfo & {
|
|
33904
34143
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection';
|
|
33905
34144
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseEdge>>>;
|
|
@@ -33914,6 +34153,7 @@ export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseEdge = {
|
|
|
33914
34153
|
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseUnion>;
|
|
33915
34154
|
};
|
|
33916
34155
|
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerInverseUnion = TownsquareGoal;
|
|
34156
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
33917
34157
|
export declare type GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection = HasPageInfo & {
|
|
33918
34158
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection';
|
|
33919
34159
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalEdge>>>;
|
|
@@ -33998,6 +34238,19 @@ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverse
|
|
|
33998
34238
|
};
|
|
33999
34239
|
export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseUnion = TownsquareProject;
|
|
34000
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
|
+
};
|
|
34001
34254
|
export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection = HasPageInfo & {
|
|
34002
34255
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection';
|
|
34003
34256
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge>>>;
|
|
@@ -34012,6 +34265,20 @@ export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge =
|
|
|
34012
34265
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion>;
|
|
34013
34266
|
};
|
|
34014
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
|
+
};
|
|
34015
34282
|
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection = HasPageInfo & {
|
|
34016
34283
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection';
|
|
34017
34284
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge>>>;
|
|
@@ -34026,6 +34293,20 @@ export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge = {
|
|
|
34026
34293
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseUnion>;
|
|
34027
34294
|
};
|
|
34028
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
|
+
};
|
|
34029
34310
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection = HasPageInfo & {
|
|
34030
34311
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection';
|
|
34031
34312
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge>>>;
|
|
@@ -34040,6 +34321,7 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
|
34040
34321
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion>;
|
|
34041
34322
|
};
|
|
34042
34323
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
34324
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34043
34325
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
34044
34326
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
34045
34327
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -34198,6 +34480,34 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
34198
34480
|
};
|
|
34199
34481
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
34200
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;
|
|
34201
34511
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
34202
34512
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
34203
34513
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -34224,8 +34534,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
34224
34534
|
lastUpdated: Scalars['DateTime']['output'];
|
|
34225
34535
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
34226
34536
|
};
|
|
34227
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluencePage | JiraIssue;
|
|
34228
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
34537
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
34538
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
34229
34539
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitConnection = HasPageInfo & {
|
|
34230
34540
|
__typename?: 'GraphStoreSimplifiedDeploymentContainsCommitConnection';
|
|
34231
34541
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentContainsCommitEdge>>>;
|
|
@@ -34740,6 +35050,19 @@ export declare type GraphStoreSimplifiedIssueChangesComponentInverseEdge = {
|
|
|
34740
35050
|
};
|
|
34741
35051
|
export declare type GraphStoreSimplifiedIssueChangesComponentInverseUnion = JiraIssue;
|
|
34742
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
|
+
};
|
|
34743
35066
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseConnection = HasPageInfo & {
|
|
34744
35067
|
__typename?: 'GraphStoreSimplifiedIssueHasAssigneeInverseConnection';
|
|
34745
35068
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseEdge>>>;
|
|
@@ -34754,6 +35077,7 @@ export declare type GraphStoreSimplifiedIssueHasAssigneeInverseEdge = {
|
|
|
34754
35077
|
node?: Maybe<GraphStoreSimplifiedIssueHasAssigneeInverseUnion>;
|
|
34755
35078
|
};
|
|
34756
35079
|
export declare type GraphStoreSimplifiedIssueHasAssigneeInverseUnion = JiraIssue;
|
|
35080
|
+
export declare type GraphStoreSimplifiedIssueHasAssigneeUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
34757
35081
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
34758
35082
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection';
|
|
34759
35083
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge>>>;
|
|
@@ -35115,7 +35439,7 @@ export declare type GraphStoreSimplifiedMediaAttachedToContentEdge = {
|
|
|
35115
35439
|
lastUpdated: Scalars['DateTime']['output'];
|
|
35116
35440
|
node?: Maybe<GraphStoreSimplifiedMediaAttachedToContentUnion>;
|
|
35117
35441
|
};
|
|
35118
|
-
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluencePage | JiraIssue;
|
|
35442
|
+
export declare type GraphStoreSimplifiedMediaAttachedToContentUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
35119
35443
|
export declare type GraphStoreSimplifiedOnPremProjectHasIssueConnection = HasPageInfo & {
|
|
35120
35444
|
__typename?: 'GraphStoreSimplifiedOnPremProjectHasIssueConnection';
|
|
35121
35445
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOnPremProjectHasIssueEdge>>>;
|
|
@@ -36427,6 +36751,20 @@ export declare type GraphStoreSimplifiedUserAuthoredPrEdge = {
|
|
|
36427
36751
|
lastUpdated: Scalars['DateTime']['output'];
|
|
36428
36752
|
node?: Maybe<GraphStoreSimplifiedUserAuthoredPrUnion>;
|
|
36429
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;
|
|
36430
36768
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails;
|
|
36431
36769
|
export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
|
|
36432
36770
|
__typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
|
|
@@ -36441,7 +36779,35 @@ export declare type GraphStoreSimplifiedUserHasTopProjectEdge = {
|
|
|
36441
36779
|
lastUpdated: Scalars['DateTime']['output'];
|
|
36442
36780
|
node?: Maybe<GraphStoreSimplifiedUserHasTopProjectUnion>;
|
|
36443
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;
|
|
36444
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;
|
|
36445
36811
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
36446
36812
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
36447
36813
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -36457,6 +36823,22 @@ export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
|
|
|
36457
36823
|
lastUpdated: Scalars['DateTime']['output'];
|
|
36458
36824
|
node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
|
|
36459
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;
|
|
36460
36842
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
36461
36843
|
export declare type GraphStoreSimplifiedUserReviewsPrConnection = HasPageInfo & {
|
|
36462
36844
|
__typename?: 'GraphStoreSimplifiedUserReviewsPrConnection';
|
|
@@ -36471,6 +36853,20 @@ export declare type GraphStoreSimplifiedUserReviewsPrEdge = {
|
|
|
36471
36853
|
lastUpdated: Scalars['DateTime']['output'];
|
|
36472
36854
|
node?: Maybe<GraphStoreSimplifiedUserReviewsPrUnion>;
|
|
36473
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;
|
|
36474
36870
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails;
|
|
36475
36871
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
36476
36872
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
@@ -37134,6 +37530,9 @@ export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
|
37134
37530
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
37135
37531
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37136
37532
|
};
|
|
37533
|
+
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
37534
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37535
|
+
};
|
|
37137
37536
|
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
37138
37537
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
37139
37538
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -37412,12 +37811,14 @@ export declare enum GrowthUnifiedProfileJtbd {
|
|
|
37412
37811
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
37413
37812
|
ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
|
|
37414
37813
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
37814
|
+
RunSprints = "RUN_SPRINTS",
|
|
37415
37815
|
Stakeholders = "STAKEHOLDERS",
|
|
37416
37816
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
37417
37817
|
SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
|
|
37418
37818
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
37419
37819
|
TrackBugs = "TRACK_BUGS",
|
|
37420
|
-
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
37820
|
+
UseKanbanBoard = "USE_KANBAN_BOARD",
|
|
37821
|
+
WorkInScrum = "WORK_IN_SCRUM"
|
|
37421
37822
|
}
|
|
37422
37823
|
export declare enum GrowthUnifiedProfileJiraFamiliarity {
|
|
37423
37824
|
Experience = "EXPERIENCE",
|
|
@@ -37698,11 +38099,13 @@ export declare type HelpCenter = Node & {
|
|
|
37698
38099
|
__typename?: 'HelpCenter';
|
|
37699
38100
|
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
37700
38101
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
38102
|
+
hoistedProjectId?: Maybe<Scalars['ID']['output']>;
|
|
37701
38103
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
37702
38104
|
id: Scalars['ID']['output'];
|
|
37703
38105
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
37704
38106
|
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
37705
38107
|
name?: Maybe<HelpCenterName>;
|
|
38108
|
+
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
37706
38109
|
portals?: Maybe<HelpCenterPortals>;
|
|
37707
38110
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
37708
38111
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
@@ -37768,6 +38171,7 @@ export declare type HelpCenterBranding = {
|
|
|
37768
38171
|
__typename?: 'HelpCenterBranding';
|
|
37769
38172
|
banner?: Maybe<HelpCenterBanner>;
|
|
37770
38173
|
colors?: Maybe<HelpCenterBrandingColors>;
|
|
38174
|
+
hasTopBarBeenSplit?: Maybe<Scalars['Boolean']['output']>;
|
|
37771
38175
|
homePageTitle?: Maybe<HelpCenterHomePageTitle>;
|
|
37772
38176
|
isBannerAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
37773
38177
|
isLogoAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -43390,7 +43794,7 @@ export declare type JiraEstimateInput = {
|
|
|
43390
43794
|
};
|
|
43391
43795
|
export declare type JiraExtensionRenderingContextInput = {
|
|
43392
43796
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
43393
|
-
portalId?: InputMaybe<Scalars['
|
|
43797
|
+
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
43394
43798
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
43395
43799
|
};
|
|
43396
43800
|
export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
@@ -43745,6 +44149,7 @@ export declare type JiraForgeExtension = {
|
|
|
43745
44149
|
properties: Scalars['JSON']['output'];
|
|
43746
44150
|
scopes: Array<Scalars['String']['output']>;
|
|
43747
44151
|
type: Scalars['String']['output'];
|
|
44152
|
+
userAccess?: Maybe<JiraUserAppAccess>;
|
|
43748
44153
|
};
|
|
43749
44154
|
export declare type JiraForgeExtensionLicense = {
|
|
43750
44155
|
__typename?: 'JiraForgeExtensionLicense';
|
|
@@ -45180,6 +45585,7 @@ export declare type JiraIssueItemPanelItem = {
|
|
|
45180
45585
|
export declare enum JiraIssueItemSystemContainerType {
|
|
45181
45586
|
Content = "CONTENT",
|
|
45182
45587
|
Context = "CONTEXT",
|
|
45588
|
+
CustomerContext = "CUSTOMER_CONTEXT",
|
|
45183
45589
|
HiddenItems = "HIDDEN_ITEMS",
|
|
45184
45590
|
Primary = "PRIMARY",
|
|
45185
45591
|
Request = "REQUEST",
|
|
@@ -45947,6 +46353,7 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
45947
46353
|
parentIssue?: Maybe<JiraJourneyParentIssue>;
|
|
45948
46354
|
status?: Maybe<JiraJourneyStatus>;
|
|
45949
46355
|
trigger?: Maybe<JiraJourneyTrigger>;
|
|
46356
|
+
triggerConfiguration?: Maybe<JiraJourneyTriggerConfiguration>;
|
|
45950
46357
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45951
46358
|
updatedBy?: Maybe<User>;
|
|
45952
46359
|
version?: Maybe<Scalars['Long']['output']>;
|
|
@@ -45973,6 +46380,13 @@ export declare type JiraJourneyParentIssueInput = {
|
|
|
45973
46380
|
type: JiraJourneyParentIssueType;
|
|
45974
46381
|
value: Scalars['String']['input'];
|
|
45975
46382
|
};
|
|
46383
|
+
export declare type JiraJourneyParentIssueTriggerConfiguration = {
|
|
46384
|
+
__typename?: 'JiraJourneyParentIssueTriggerConfiguration';
|
|
46385
|
+
type?: Maybe<JiraJourneyTriggerType>;
|
|
46386
|
+
};
|
|
46387
|
+
export declare type JiraJourneyParentIssueTriggerConfigurationInput = {
|
|
46388
|
+
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
46389
|
+
};
|
|
45976
46390
|
export declare enum JiraJourneyParentIssueType {
|
|
45977
46391
|
Request = "REQUEST"
|
|
45978
46392
|
}
|
|
@@ -45987,12 +46401,27 @@ export declare type JiraJourneyTrigger = {
|
|
|
45987
46401
|
__typename?: 'JiraJourneyTrigger';
|
|
45988
46402
|
type: JiraJourneyTriggerType;
|
|
45989
46403
|
};
|
|
46404
|
+
export declare type JiraJourneyTriggerConfiguration = JiraJourneyParentIssueTriggerConfiguration | JiraJourneyWorkdayIntegrationTriggerConfiguration;
|
|
46405
|
+
export declare type JiraJourneyTriggerConfigurationInput = {
|
|
46406
|
+
parentIssueTriggerConfiguration?: InputMaybe<JiraJourneyParentIssueTriggerConfigurationInput>;
|
|
46407
|
+
workdayIntegrationTriggerConfiguration?: InputMaybe<JiraJourneyWorkdayIntegrationTriggerConfigurationInput>;
|
|
46408
|
+
};
|
|
45990
46409
|
export declare type JiraJourneyTriggerInput = {
|
|
45991
46410
|
type: JiraJourneyTriggerType;
|
|
45992
46411
|
};
|
|
45993
46412
|
export declare enum JiraJourneyTriggerType {
|
|
45994
|
-
ParentIssueCreated = "PARENT_ISSUE_CREATED"
|
|
46413
|
+
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
46414
|
+
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
45995
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
|
+
};
|
|
45996
46425
|
export declare enum JiraJqlAutocompleteType {
|
|
45997
46426
|
Basic = "BASIC",
|
|
45998
46427
|
Cascadingoption = "CASCADINGOPTION",
|
|
@@ -47153,6 +47582,7 @@ export declare type JiraMutation = {
|
|
|
47153
47582
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
47154
47583
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47155
47584
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47585
|
+
updateJiraJourneyTriggerConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47156
47586
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
47157
47587
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
47158
47588
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
@@ -47594,6 +48024,10 @@ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
|
|
|
47594
48024
|
cloudId: Scalars['ID']['input'];
|
|
47595
48025
|
input: JiraUpdateJourneyConfigurationInput;
|
|
47596
48026
|
};
|
|
48027
|
+
export declare type JiraMutationUpdateJiraJourneyTriggerConfigurationArgs = {
|
|
48028
|
+
cloudId: Scalars['ID']['input'];
|
|
48029
|
+
input: JiraUpdateJourneyTriggerConfigurationInput;
|
|
48030
|
+
};
|
|
47597
48031
|
export declare type JiraMutationUpdateJiraVersionArgs = {
|
|
47598
48032
|
input: JiraVersionUpdateMutationInput;
|
|
47599
48033
|
};
|
|
@@ -48726,6 +49160,7 @@ export declare type JiraProject = Node & {
|
|
|
48726
49160
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48727
49161
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48728
49162
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
49163
|
+
isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48729
49164
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
48730
49165
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
48731
49166
|
jsmChatMsTeamsConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
@@ -52689,6 +53124,7 @@ export declare type JiraSpreadsheetGroup = {
|
|
|
52689
53124
|
export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
52690
53125
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52691
53126
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
53127
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
52692
53128
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52693
53129
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52694
53130
|
};
|
|
@@ -53417,6 +53853,7 @@ export declare type JiraUiModification = {
|
|
|
53417
53853
|
id: Scalars['ID']['output'];
|
|
53418
53854
|
};
|
|
53419
53855
|
export declare type JiraUiModificationsContextInput = {
|
|
53856
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
53420
53857
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
53421
53858
|
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
53422
53859
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -53622,8 +54059,14 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
53622
54059
|
__typename?: 'JiraUpdateJourneyConfigurationPayload';
|
|
53623
54060
|
errors?: Maybe<Array<MutationError>>;
|
|
53624
54061
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
54062
|
+
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
53625
54063
|
success: Scalars['Boolean']['output'];
|
|
53626
54064
|
};
|
|
54065
|
+
export declare type JiraUpdateJourneyTriggerConfigurationInput = {
|
|
54066
|
+
id: Scalars['ID']['input'];
|
|
54067
|
+
triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
|
|
54068
|
+
version: Scalars['Long']['input'];
|
|
54069
|
+
};
|
|
53627
54070
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
53628
54071
|
id: Scalars['ID']['input'];
|
|
53629
54072
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -53920,6 +54363,10 @@ export declare type JiraUser = {
|
|
|
53920
54363
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
53921
54364
|
email?: Maybe<Scalars['String']['output']>;
|
|
53922
54365
|
};
|
|
54366
|
+
export declare type JiraUserAppAccess = {
|
|
54367
|
+
__typename?: 'JiraUserAppAccess';
|
|
54368
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
54369
|
+
};
|
|
53923
54370
|
export declare type JiraUserBroadcastMessage = Node & {
|
|
53924
54371
|
__typename?: 'JiraUserBroadcastMessage';
|
|
53925
54372
|
id: Scalars['ID']['output'];
|
|
@@ -54007,6 +54454,7 @@ export declare type JiraUserPreferences = {
|
|
|
54007
54454
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
54008
54455
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
54009
54456
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
54457
|
+
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
54010
54458
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
54011
54459
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
54012
54460
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
@@ -55225,6 +55673,7 @@ export declare enum JsmChatConversationAnalyticsEvent {
|
|
|
55225
55673
|
export declare type JsmChatConversationAnalyticsMetadataInput = {
|
|
55226
55674
|
channelType?: InputMaybe<JsmChatConversationChannelType>;
|
|
55227
55675
|
csatScore?: InputMaybe<Scalars['Int']['input']>;
|
|
55676
|
+
helpCenterId?: InputMaybe<Scalars['String']['input']>;
|
|
55228
55677
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
55229
55678
|
};
|
|
55230
55679
|
export declare type JsmChatConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
@@ -55310,6 +55759,7 @@ export declare type JsmChatCreateWebConversationMessagePayload = Payload & {
|
|
|
55310
55759
|
success: Scalars['Boolean']['output'];
|
|
55311
55760
|
};
|
|
55312
55761
|
export declare enum JsmChatCreateWebConversationUserRole {
|
|
55762
|
+
Acknowledgment = "Acknowledgment",
|
|
55313
55763
|
Init = "Init",
|
|
55314
55764
|
JsmAgent = "JSM_Agent",
|
|
55315
55765
|
Participant = "Participant",
|
|
@@ -55641,6 +56091,7 @@ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
|
|
|
55641
56091
|
};
|
|
55642
56092
|
export declare enum JsmChatWebConversationActions {
|
|
55643
56093
|
CloseConversation = "CLOSE_CONVERSATION",
|
|
56094
|
+
DisableInput = "DISABLE_INPUT",
|
|
55644
56095
|
RedirectToSearch = "REDIRECT_TO_SEARCH"
|
|
55645
56096
|
}
|
|
55646
56097
|
export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
@@ -56306,6 +56757,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
56306
56757
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
56307
56758
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
56308
56759
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
56760
|
+
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
56309
56761
|
};
|
|
56310
56762
|
export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
|
|
56311
56763
|
input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
|
|
@@ -56322,6 +56774,9 @@ export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
|
56322
56774
|
export declare type KnowledgeDiscoveryMutationApiUpdateRelatedEntitiesArgs = {
|
|
56323
56775
|
input: KnowledgeDiscoveryUpdateRelatedEntitiesInput;
|
|
56324
56776
|
};
|
|
56777
|
+
export declare type KnowledgeDiscoveryMutationApiUpdateUserKeyPhraseInteractionArgs = {
|
|
56778
|
+
input: KnowledgeDiscoveryUpdateUserKeyPhraseInteractionInput;
|
|
56779
|
+
};
|
|
56325
56780
|
export declare type KnowledgeDiscoveryPageInfo = {
|
|
56326
56781
|
__typename?: 'KnowledgeDiscoveryPageInfo';
|
|
56327
56782
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -56513,6 +56968,16 @@ export declare type KnowledgeDiscoveryUpdateRelatedEntitiesPayload = Payload & {
|
|
|
56513
56968
|
errors?: Maybe<Array<MutationError>>;
|
|
56514
56969
|
success: Scalars['Boolean']['output'];
|
|
56515
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
|
+
};
|
|
56516
56981
|
export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
56517
56982
|
__typename?: 'KnowledgeDiscoveryUser';
|
|
56518
56983
|
id: Scalars['ID']['output'];
|
|
@@ -56748,6 +57213,7 @@ export declare type MarketplaceApp = {
|
|
|
56748
57213
|
summary?: Maybe<Scalars['String']['output']>;
|
|
56749
57214
|
supportTicketSystemUrl?: Maybe<Scalars['URL']['output']>;
|
|
56750
57215
|
tagline?: Maybe<Scalars['String']['output']>;
|
|
57216
|
+
tags?: Maybe<MarketplaceAppTags>;
|
|
56751
57217
|
versions: MarketplaceAppVersionConnection;
|
|
56752
57218
|
watchersInfo?: Maybe<MarketplaceAppWatchersInfo>;
|
|
56753
57219
|
wikiUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -56806,6 +57272,17 @@ export declare type MarketplaceAppReviewSummary = {
|
|
|
56806
57272
|
rating?: Maybe<Scalars['Float']['output']>;
|
|
56807
57273
|
score?: Maybe<Scalars['Float']['output']>;
|
|
56808
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
|
+
};
|
|
56809
57286
|
export declare type MarketplaceAppTrustInformation = {
|
|
56810
57287
|
__typename?: 'MarketplaceAppTrustInformation';
|
|
56811
57288
|
dataAccessAndStorage?: Maybe<DataAccessAndStorage>;
|
|
@@ -57020,9 +57497,9 @@ export declare type MarketplaceConsoleAppSoftwareVersionListing = {
|
|
|
57020
57497
|
createdBy: Scalars['String']['output'];
|
|
57021
57498
|
deploymentInstructions?: Maybe<Array<Maybe<MarketplaceConsoleDeploymentInstruction>>>;
|
|
57022
57499
|
heroImage?: Maybe<Scalars['String']['output']>;
|
|
57023
|
-
highlights?: Maybe<Array<Maybe<
|
|
57500
|
+
highlights?: Maybe<Array<Maybe<MarketplaceConsoleListingHighLight>>>;
|
|
57024
57501
|
moreDetails?: Maybe<Scalars['String']['output']>;
|
|
57025
|
-
screenshots?: Maybe<Array<
|
|
57502
|
+
screenshots?: Maybe<Array<MarketplaceConsoleListingScreenshot>>;
|
|
57026
57503
|
status: Scalars['String']['output'];
|
|
57027
57504
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
57028
57505
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
@@ -57103,6 +57580,18 @@ export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
|
57103
57580
|
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
57104
57581
|
href: Scalars['String']['input'];
|
|
57105
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;
|
|
57106
57595
|
export declare type MarketplaceConsoleCreatePrivateAppVersionMutationResponse = {
|
|
57107
57596
|
__typename?: 'MarketplaceConsoleCreatePrivateAppVersionMutationResponse';
|
|
57108
57597
|
resourceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -57112,7 +57601,7 @@ export declare type MarketplaceConsoleDeleteAppVersionResponse = MarketplaceCons
|
|
|
57112
57601
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
57113
57602
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
57114
57603
|
body: Scalars['String']['output'];
|
|
57115
|
-
|
|
57604
|
+
screenshot?: Maybe<MarketplaceConsoleListingScreenshot>;
|
|
57116
57605
|
};
|
|
57117
57606
|
export declare type MarketplaceConsoleDeploymentInstructionInput = {
|
|
57118
57607
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57286,7 +57775,6 @@ export declare type MarketplaceConsoleFrameworkAttributes = {
|
|
|
57286
57775
|
external?: Maybe<MarketplaceConsoleExternalFrameworkAttributes>;
|
|
57287
57776
|
forge?: Maybe<MarketplaceConsoleForgeFrameworkAttributes>;
|
|
57288
57777
|
plugin?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
|
|
57289
|
-
plugins?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
|
|
57290
57778
|
workflow?: Maybe<MarketplaceConsoleWorkflowFrameworkAttributes>;
|
|
57291
57779
|
};
|
|
57292
57780
|
export declare type MarketplaceConsoleFrameworkAttributesInput = {
|
|
@@ -57368,6 +57856,13 @@ export declare type MarketplaceConsoleLink = {
|
|
|
57368
57856
|
title?: Maybe<Scalars['String']['output']>;
|
|
57369
57857
|
type?: Maybe<Scalars['String']['output']>;
|
|
57370
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
|
+
};
|
|
57371
57866
|
export declare type MarketplaceConsoleListingHighLightInput = {
|
|
57372
57867
|
caption?: InputMaybe<Scalars['String']['input']>;
|
|
57373
57868
|
screenshotUrl: Scalars['String']['input'];
|
|
@@ -57375,23 +57870,32 @@ export declare type MarketplaceConsoleListingHighLightInput = {
|
|
|
57375
57870
|
thumbnailUrl: Scalars['String']['input'];
|
|
57376
57871
|
title: Scalars['String']['input'];
|
|
57377
57872
|
};
|
|
57378
|
-
export declare type MarketplaceConsoleListingHighLights = {
|
|
57379
|
-
__typename?: 'MarketplaceConsoleListingHighLights';
|
|
57380
|
-
caption?: Maybe<Scalars['String']['output']>;
|
|
57381
|
-
screenshot: MarketplaceConsoleListingScreenshot;
|
|
57382
|
-
summary?: Maybe<Scalars['String']['output']>;
|
|
57383
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
57384
|
-
};
|
|
57385
57873
|
export declare type MarketplaceConsoleListingScreenshot = {
|
|
57386
57874
|
__typename?: 'MarketplaceConsoleListingScreenshot';
|
|
57387
57875
|
caption?: Maybe<Scalars['String']['output']>;
|
|
57388
|
-
imageId: Scalars['String']['output'];
|
|
57389
57876
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
57390
57877
|
};
|
|
57391
57878
|
export declare type MarketplaceConsoleListingScreenshotInput = {
|
|
57392
57879
|
caption?: InputMaybe<Scalars['String']['input']>;
|
|
57393
57880
|
imageUrl: Scalars['String']['input'];
|
|
57394
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;
|
|
57395
57899
|
export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
|
|
57396
57900
|
appKey: Scalars['ID']['input'];
|
|
57397
57901
|
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -57440,11 +57944,11 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
57440
57944
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
57441
57945
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
57442
57946
|
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
57443
|
-
createPrivateAppSoftwareVersion?: Maybe<
|
|
57947
|
+
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
57444
57948
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
57445
57949
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
57446
57950
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
57447
|
-
makeAppVersionPublic?: Maybe<
|
|
57951
|
+
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
57448
57952
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
57449
57953
|
};
|
|
57450
57954
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
@@ -57678,6 +58182,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
57678
58182
|
developerSpaceByAppId?: Maybe<MarketplaceConsoleDevSpace>;
|
|
57679
58183
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
57680
58184
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
58185
|
+
makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
|
|
57681
58186
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
57682
58187
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
57683
58188
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
@@ -57728,6 +58233,10 @@ export declare type MarketplaceConsoleQueryApiEditionsArgs = {
|
|
|
57728
58233
|
export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
|
|
57729
58234
|
product: MarketplaceConsoleEditionsInput;
|
|
57730
58235
|
};
|
|
58236
|
+
export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
|
|
58237
|
+
appId: Scalars['ID']['input'];
|
|
58238
|
+
buildNumber: Scalars['ID']['input'];
|
|
58239
|
+
};
|
|
57731
58240
|
export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
57732
58241
|
appKey: Scalars['ID']['input'];
|
|
57733
58242
|
productId: Scalars['ID']['input'];
|
|
@@ -57747,7 +58256,7 @@ export declare type MarketplaceConsoleRemoteArtifactDetails = {
|
|
|
57747
58256
|
};
|
|
57748
58257
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
57749
58258
|
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
57750
|
-
binary
|
|
58259
|
+
binary?: Maybe<MarketplaceConsoleLink>;
|
|
57751
58260
|
remote?: Maybe<MarketplaceConsoleLink>;
|
|
57752
58261
|
self: MarketplaceConsoleLink;
|
|
57753
58262
|
};
|
|
@@ -59236,6 +59745,7 @@ export declare type MercuryPortfolio = Node & {
|
|
|
59236
59745
|
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
59237
59746
|
name: Scalars['String']['output'];
|
|
59238
59747
|
owner?: Maybe<User>;
|
|
59748
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
59239
59749
|
};
|
|
59240
59750
|
export declare type MercuryPortfolioAllocations = {
|
|
59241
59751
|
__typename?: 'MercuryPortfolioAllocations';
|
|
@@ -60076,6 +60586,8 @@ export declare type Mutation = {
|
|
|
60076
60586
|
confluenceV2_createPage?: Maybe<ConfluenceV2CreatePagePayload>;
|
|
60077
60587
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
60078
60588
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
60589
|
+
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
60590
|
+
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
60079
60591
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
60080
60592
|
createApp?: Maybe<CreateAppResponse>;
|
|
60081
60593
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
@@ -60159,7 +60671,7 @@ export declare type Mutation = {
|
|
|
60159
60671
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
60160
60672
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
60161
60673
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
60162
|
-
radar_updateFocusAreaMappings
|
|
60674
|
+
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
60163
60675
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
60164
60676
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
60165
60677
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
@@ -60746,6 +61258,14 @@ export declare type MutationConfluenceV2_DeletePageArgs = {
|
|
|
60746
61258
|
export declare type MutationConfluenceV2_UpdatePageArgs = {
|
|
60747
61259
|
input: ConfluenceV2UpdatePageInput;
|
|
60748
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
|
+
};
|
|
60749
61269
|
export declare type MutationCopyPolarisInsightsArgs = {
|
|
60750
61270
|
input: CopyPolarisInsightsInput;
|
|
60751
61271
|
};
|
|
@@ -63018,6 +63538,7 @@ export declare type Query = {
|
|
|
63018
63538
|
confluenceV2_spaceTheme?: Maybe<ConfluenceV2Theme>;
|
|
63019
63539
|
confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
|
|
63020
63540
|
connectedData?: Maybe<ConnectedDataQuery>;
|
|
63541
|
+
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
63021
63542
|
contentFacet: ContentPlatformContentFacetConnection;
|
|
63022
63543
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
63023
63544
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
@@ -63135,8 +63656,8 @@ export declare type Query = {
|
|
|
63135
63656
|
pricings: ContentPlatformPricingSearchConnection;
|
|
63136
63657
|
productListing?: Maybe<ProductListingResult>;
|
|
63137
63658
|
productListings: Array<ProductListingResult>;
|
|
63138
|
-
radar_fieldValues
|
|
63139
|
-
radar_positions
|
|
63659
|
+
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
63660
|
+
radar_positions?: Maybe<RadarPositionConnection>;
|
|
63140
63661
|
radar_workspace: RadarWorkspace;
|
|
63141
63662
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
63142
63663
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
@@ -64221,6 +64742,10 @@ export declare type QueryConfluenceV2_SpaceThemeArgs = {
|
|
|
64221
64742
|
export declare type QueryConfluenceV2_SpacesArgs = {
|
|
64222
64743
|
ids: Array<Scalars['ID']['input']>;
|
|
64223
64744
|
};
|
|
64745
|
+
export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
|
|
64746
|
+
filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
|
|
64747
|
+
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
64748
|
+
};
|
|
64224
64749
|
export declare type QueryContentFacetArgs = {
|
|
64225
64750
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64226
64751
|
first?: Scalars['Int']['input'];
|
|
@@ -64707,7 +65232,7 @@ export declare type RadarEdge = {
|
|
|
64707
65232
|
cursor: Scalars['String']['output'];
|
|
64708
65233
|
};
|
|
64709
65234
|
export declare type RadarEntity = {
|
|
64710
|
-
fieldValues
|
|
65235
|
+
fieldValues: Array<RadarFieldValueIdPair>;
|
|
64711
65236
|
id: Scalars['ID']['output'];
|
|
64712
65237
|
type?: Maybe<RadarEntityType>;
|
|
64713
65238
|
};
|
|
@@ -64716,21 +65241,6 @@ export declare enum RadarEntityType {
|
|
|
64716
65241
|
Person = "person",
|
|
64717
65242
|
Position = "position"
|
|
64718
65243
|
}
|
|
64719
|
-
export declare type RadarError = {
|
|
64720
|
-
__typename?: 'RadarError';
|
|
64721
|
-
errorCode: Scalars['String']['output'];
|
|
64722
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
64723
|
-
extensions?: Maybe<Array<RadarErrorExtension>>;
|
|
64724
|
-
location?: Maybe<Array<RadarLocation>>;
|
|
64725
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
64726
|
-
stackTrace?: Maybe<Array<Scalars['String']['output']>>;
|
|
64727
|
-
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
64728
|
-
};
|
|
64729
|
-
export declare type RadarErrorExtension = {
|
|
64730
|
-
__typename?: 'RadarErrorExtension';
|
|
64731
|
-
property: Scalars['String']['output'];
|
|
64732
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
64733
|
-
};
|
|
64734
65244
|
export declare type RadarFieldDefinition = Node & {
|
|
64735
65245
|
__typename?: 'RadarFieldDefinition';
|
|
64736
65246
|
displayName: Scalars['String']['output'];
|
|
@@ -64751,7 +65261,6 @@ export declare enum RadarFieldType {
|
|
|
64751
65261
|
Url = "URL"
|
|
64752
65262
|
}
|
|
64753
65263
|
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
64754
|
-
export declare type RadarFieldValueConnectionResult = RadarError | RadarFieldValuesConnection;
|
|
64755
65264
|
export declare type RadarFieldValueIdPair = {
|
|
64756
65265
|
__typename?: 'RadarFieldValueIdPair';
|
|
64757
65266
|
fieldId: Scalars['ID']['output'];
|
|
@@ -64798,16 +65307,10 @@ export declare type RadarFocusAreaMappingsInput = {
|
|
|
64798
65307
|
focusAreaAri: Scalars['ID']['input'];
|
|
64799
65308
|
positionId: Scalars['ID']['input'];
|
|
64800
65309
|
};
|
|
64801
|
-
export declare type RadarLocation = {
|
|
64802
|
-
__typename?: 'RadarLocation';
|
|
64803
|
-
column: Scalars['Int']['output'];
|
|
64804
|
-
line: Scalars['Int']['output'];
|
|
64805
|
-
};
|
|
64806
65310
|
export declare type RadarMutationResponse = {
|
|
64807
65311
|
__typename?: 'RadarMutationResponse';
|
|
64808
|
-
success
|
|
65312
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
64809
65313
|
};
|
|
64810
|
-
export declare type RadarMutationResponseResult = RadarError | RadarMutationResponse;
|
|
64811
65314
|
export declare type RadarNumericFieldValue = {
|
|
64812
65315
|
__typename?: 'RadarNumericFieldValue';
|
|
64813
65316
|
displayValue?: Maybe<Scalars['Int']['output']>;
|
|
@@ -64815,7 +65318,7 @@ export declare type RadarNumericFieldValue = {
|
|
|
64815
65318
|
};
|
|
64816
65319
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
64817
65320
|
__typename?: 'RadarPosition';
|
|
64818
|
-
fieldValues
|
|
65321
|
+
fieldValues: Array<RadarFieldValueIdPair>;
|
|
64819
65322
|
id: Scalars['ID']['output'];
|
|
64820
65323
|
type?: Maybe<RadarEntityType>;
|
|
64821
65324
|
};
|
|
@@ -64826,7 +65329,6 @@ export declare type RadarPositionConnection = RadarConnection & {
|
|
|
64826
65329
|
pageInfo: PageInfo;
|
|
64827
65330
|
totalCount: Scalars['Int']['output'];
|
|
64828
65331
|
};
|
|
64829
|
-
export declare type RadarPositionConnectionResult = RadarError | RadarPositionConnection;
|
|
64830
65332
|
export declare type RadarPositionEdge = RadarEdge & {
|
|
64831
65333
|
__typename?: 'RadarPositionEdge';
|
|
64832
65334
|
cursor: Scalars['String']['output'];
|
|
@@ -68302,6 +68804,7 @@ export declare type ShepherdWorkspace = {
|
|
|
68302
68804
|
currentUser?: Maybe<ShepherdCurrentUser>;
|
|
68303
68805
|
customDetections: Array<ShepherdCustomDetection>;
|
|
68304
68806
|
detections: Array<ShepherdDetection>;
|
|
68807
|
+
hasDataCenterAlert?: Maybe<Scalars['Boolean']['output']>;
|
|
68305
68808
|
id: Scalars['ID']['output'];
|
|
68306
68809
|
orgId: Scalars['ID']['output'];
|
|
68307
68810
|
shouldOnboard?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -70511,14 +71014,15 @@ export declare type TrelloArchiveCardPayload = Payload & {
|
|
|
70511
71014
|
};
|
|
70512
71015
|
export declare type TrelloAssignCardToPlannerCalendarEventInput = {
|
|
70513
71016
|
cardId: Scalars['ID']['input'];
|
|
71017
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
70514
71018
|
position?: InputMaybe<Scalars['Float']['input']>;
|
|
70515
|
-
|
|
71019
|
+
providerAccountId: Scalars['ID']['input'];
|
|
70516
71020
|
providerEventId: Scalars['ID']['input'];
|
|
70517
|
-
workspaceId: Scalars['ID']['input'];
|
|
70518
71021
|
};
|
|
70519
71022
|
export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
|
|
70520
71023
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
|
|
70521
71024
|
errors?: Maybe<Array<MutationError>>;
|
|
71025
|
+
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
70522
71026
|
eventCard?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
|
|
70523
71027
|
success: Scalars['Boolean']['output'];
|
|
70524
71028
|
};
|
|
@@ -71062,6 +71566,7 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
71062
71566
|
};
|
|
71063
71567
|
export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
71064
71568
|
enabled: Scalars['Boolean']['input'];
|
|
71569
|
+
providerAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
71065
71570
|
providerCalendarId: Scalars['ID']['input'];
|
|
71066
71571
|
type: TrelloSupportedPlannerProviders;
|
|
71067
71572
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -71070,6 +71575,7 @@ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
|
|
|
71070
71575
|
__typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
|
|
71071
71576
|
errors?: Maybe<Array<MutationError>>;
|
|
71072
71577
|
plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
|
|
71578
|
+
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
|
|
71073
71579
|
success: Scalars['Boolean']['output'];
|
|
71074
71580
|
};
|
|
71075
71581
|
export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
|
|
@@ -71554,6 +72060,10 @@ export declare type TrelloPlannerCalendarConnection = {
|
|
|
71554
72060
|
pageInfo: PageInfo;
|
|
71555
72061
|
updateCursor?: Maybe<Scalars['String']['output']>;
|
|
71556
72062
|
};
|
|
72063
|
+
export declare type TrelloPlannerCalendarConnectionUpdated = {
|
|
72064
|
+
__typename?: 'TrelloPlannerCalendarConnectionUpdated';
|
|
72065
|
+
edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
|
|
72066
|
+
};
|
|
71557
72067
|
export declare type TrelloPlannerCalendarEdge = {
|
|
71558
72068
|
__typename?: 'TrelloPlannerCalendarEdge';
|
|
71559
72069
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -71719,7 +72229,6 @@ export declare type TrelloQueryApi = {
|
|
|
71719
72229
|
board?: Maybe<TrelloBoard>;
|
|
71720
72230
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
71721
72231
|
card?: Maybe<TrelloCard>;
|
|
71722
|
-
cardsForPlannerEvent?: Maybe<TrelloPlannerCalendarEventCardConnection>;
|
|
71723
72232
|
echo?: Maybe<Scalars['String']['output']>;
|
|
71724
72233
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
71725
72234
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -71727,6 +72236,10 @@ export declare type TrelloQueryApi = {
|
|
|
71727
72236
|
list?: Maybe<TrelloList>;
|
|
71728
72237
|
member?: Maybe<TrelloMember>;
|
|
71729
72238
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
72239
|
+
plannerByWorkspaceId?: Maybe<TrelloPlanner>;
|
|
72240
|
+
plannerCalendarAccountById?: Maybe<TrelloPlannerCalendarAccount>;
|
|
72241
|
+
plannerCalendarById?: Maybe<TrelloPlannerCalendar>;
|
|
72242
|
+
plannerCalendarEventById?: Maybe<TrelloPlannerCalendarEvent>;
|
|
71730
72243
|
plannerCalendarEventsByCalendarId?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
71731
72244
|
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
71732
72245
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
@@ -71744,13 +72257,6 @@ export declare type TrelloQueryApiBoardByShortLinkArgs = {
|
|
|
71744
72257
|
export declare type TrelloQueryApiCardArgs = {
|
|
71745
72258
|
id: Scalars['ID']['input'];
|
|
71746
72259
|
};
|
|
71747
|
-
export declare type TrelloQueryApiCardsForPlannerEventArgs = {
|
|
71748
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
71749
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71750
|
-
providerAccountId: Scalars['ID']['input'];
|
|
71751
|
-
providerEventId: Scalars['ID']['input'];
|
|
71752
|
-
workspaceId: Scalars['ID']['input'];
|
|
71753
|
-
};
|
|
71754
72260
|
export declare type TrelloQueryApiEchosArgs = {
|
|
71755
72261
|
echo: Array<Scalars['String']['input']>;
|
|
71756
72262
|
};
|
|
@@ -71775,6 +72281,22 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
|
|
|
71775
72281
|
id: Scalars['ID']['input'];
|
|
71776
72282
|
workspaceId: Scalars['ID']['input'];
|
|
71777
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
|
+
};
|
|
71778
72300
|
export declare type TrelloQueryApiPlannerCalendarEventsByCalendarIdArgs = {
|
|
71779
72301
|
accountId: Scalars['ID']['input'];
|
|
71780
72302
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72120,6 +72642,23 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
72120
72642
|
linkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
72121
72643
|
parentAccount?: Maybe<UnifiedParentAccount>;
|
|
72122
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
|
+
};
|
|
72123
72662
|
export declare type UnifiedAdmins = UnifiedINode & {
|
|
72124
72663
|
__typename?: 'UnifiedAdmins';
|
|
72125
72664
|
admins?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -72392,6 +72931,11 @@ export declare type UnifiedLearningCertificationEdge = UnifiedIEdge & {
|
|
|
72392
72931
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
72393
72932
|
node?: Maybe<UnifiedLearningCertification>;
|
|
72394
72933
|
};
|
|
72934
|
+
export declare type UnifiedLinkTransaction = {
|
|
72935
|
+
__typename?: 'UnifiedLinkTransaction';
|
|
72936
|
+
id: Scalars['ID']['output'];
|
|
72937
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
72938
|
+
};
|
|
72395
72939
|
export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
72396
72940
|
__typename?: 'UnifiedLinkedAccount';
|
|
72397
72941
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -72403,18 +72947,53 @@ export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
|
72403
72947
|
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
72404
72948
|
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
72405
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
|
+
};
|
|
72406
72961
|
export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
72407
72962
|
__typename?: 'UnifiedLinkedAccountPayload';
|
|
72408
72963
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
72409
72964
|
success: Scalars['Boolean']['output'];
|
|
72410
72965
|
unifiedLinkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
72411
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
|
+
};
|
|
72412
72990
|
export declare type UnifiedMutation = {
|
|
72413
72991
|
__typename?: 'UnifiedMutation';
|
|
72414
72992
|
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
|
|
72415
72993
|
createParentAccount?: Maybe<UnifiedParentAccountPayload>;
|
|
72416
72994
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
72417
72995
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
72996
|
+
linking?: Maybe<UnifiedLinkingMutation>;
|
|
72418
72997
|
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
|
|
72419
72998
|
};
|
|
72420
72999
|
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
@@ -72466,6 +73045,10 @@ export declare type UnifiedPayload = {
|
|
|
72466
73045
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
72467
73046
|
success: Scalars['Boolean']['output'];
|
|
72468
73047
|
};
|
|
73048
|
+
export declare enum UnifiedPrimaryAccountType {
|
|
73049
|
+
Input = "INPUT",
|
|
73050
|
+
LoggedIn = "LOGGED_IN"
|
|
73051
|
+
}
|
|
72469
73052
|
export declare type UnifiedProfile = UnifiedINode & {
|
|
72470
73053
|
__typename?: 'UnifiedProfile';
|
|
72471
73054
|
badges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
@@ -72540,6 +73123,8 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
72540
73123
|
};
|
|
72541
73124
|
export declare type UnifiedQuery = {
|
|
72542
73125
|
__typename?: 'UnifiedQuery';
|
|
73126
|
+
account?: Maybe<UnifiedUAccount2Result>;
|
|
73127
|
+
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
72543
73128
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
72544
73129
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
72545
73130
|
node?: Maybe<UnifiedINode>;
|
|
@@ -72548,6 +73133,13 @@ export declare type UnifiedQuery = {
|
|
|
72548
73133
|
unifiedProfile?: Maybe<UnifiedUProfileResult>;
|
|
72549
73134
|
unifiedProfiles?: Maybe<Array<Maybe<UnifiedUProfileResult>>>;
|
|
72550
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
|
+
};
|
|
72551
73143
|
export declare type UnifiedQueryAtlassianProductsArgs = {
|
|
72552
73144
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
72553
73145
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -72591,6 +73183,8 @@ export declare type UnifiedRecentCourseEdge = UnifiedIEdge & {
|
|
|
72591
73183
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
72592
73184
|
node?: Maybe<UnifiedRecentCourse>;
|
|
72593
73185
|
};
|
|
73186
|
+
export declare type UnifiedUAccount2Result = UnifiedAccount2 | UnifiedQueryError;
|
|
73187
|
+
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
72594
73188
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
72595
73189
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
72596
73190
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
@@ -72606,6 +73200,8 @@ export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQu
|
|
|
72606
73200
|
export declare type UnifiedUGatingStatusResult = UnifiedAccessStatus | UnifiedQueryError;
|
|
72607
73201
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
72608
73202
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
73203
|
+
export declare type UnifiedULinkTransactionPayload = UnifiedLinkTransaction | UnifiedLinkingPayload;
|
|
73204
|
+
export declare type UnifiedULinkedAccount2Result = UnifiedLinkedAccount2Connection | UnifiedQueryError;
|
|
72609
73205
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
72610
73206
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
72611
73207
|
export declare type UnifiedURecentCourseResult = UnifiedQueryError | UnifiedRecentCourseConnection;
|
|
@@ -73173,6 +73769,10 @@ export declare type User = {
|
|
|
73173
73769
|
name: Scalars['String']['output'];
|
|
73174
73770
|
picture: Scalars['URL']['output'];
|
|
73175
73771
|
};
|
|
73772
|
+
export declare type UserAccess = {
|
|
73773
|
+
__typename?: 'UserAccess';
|
|
73774
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
73775
|
+
};
|
|
73176
73776
|
export declare type UserAuthTokenForExtensionInput = {
|
|
73177
73777
|
contextIds: Array<Scalars['ID']['input']>;
|
|
73178
73778
|
extensionId: Scalars['ID']['input'];
|
|
@@ -73395,6 +73995,7 @@ export declare type VirtualAgentCreateChatChannelPayload = Payload & {
|
|
|
73395
73995
|
};
|
|
73396
73996
|
export declare type VirtualAgentCreateConfigurationInput = {
|
|
73397
73997
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
73998
|
+
isAiResponsesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73398
73999
|
respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73399
74000
|
};
|
|
73400
74001
|
export declare type VirtualAgentCreateConfigurationPayload = Payload & {
|
|
@@ -73932,7 +74533,6 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
73932
74533
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
73933
74534
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
73934
74535
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
73935
|
-
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
73936
74536
|
stuckIssueSuggestions?: Maybe<Array<WorkSuggestionsStuckIssueTask>>;
|
|
73937
74537
|
};
|
|
73938
74538
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
@@ -74154,10 +74754,6 @@ export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtensi
|
|
|
74154
74754
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
74155
74755
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
74156
74756
|
};
|
|
74157
|
-
export declare type WorkSuggestionsOrder = {
|
|
74158
|
-
__typename?: 'WorkSuggestionsOrder';
|
|
74159
|
-
defaultOrder: Array<Scalars['ID']['output']>;
|
|
74160
|
-
};
|
|
74161
74757
|
export declare type WorkSuggestionsOrderScore = {
|
|
74162
74758
|
__typename?: 'WorkSuggestionsOrderScore';
|
|
74163
74759
|
byTaskType?: Maybe<WorkSuggestionsOrderScores>;
|