@forge/cli-shared 6.6.1-next.20 → 6.6.1-next.21
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 +7 -0
- package/out/graphql/graphql-types.d.ts +638 -101
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +34 -13
- package/package.json +2 -2
|
@@ -1050,6 +1050,7 @@ export declare enum ApiGroup {
|
|
|
1050
1050
|
Actions = "ACTIONS",
|
|
1051
1051
|
AgentStudio = "AGENT_STUDIO",
|
|
1052
1052
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
1053
|
+
AtlassianStudio = "ATLASSIAN_STUDIO",
|
|
1053
1054
|
Caas = "CAAS",
|
|
1054
1055
|
CloudAdmin = "CLOUD_ADMIN",
|
|
1055
1056
|
CollaborationGraph = "COLLABORATION_GRAPH",
|
|
@@ -1684,74 +1685,6 @@ export declare type AppPrincipal = {
|
|
|
1684
1685
|
__typename?: 'AppPrincipal';
|
|
1685
1686
|
id?: Maybe<Scalars['ID']['output']>;
|
|
1686
1687
|
};
|
|
1687
|
-
export declare type AppRecContext = {
|
|
1688
|
-
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
1689
|
-
containers?: InputMaybe<Scalars['JSON']['input']>;
|
|
1690
|
-
locale?: InputMaybe<Scalars['String']['input']>;
|
|
1691
|
-
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
1692
|
-
product?: InputMaybe<Scalars['String']['input']>;
|
|
1693
|
-
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
1694
|
-
subproduct?: InputMaybe<Scalars['String']['input']>;
|
|
1695
|
-
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
1696
|
-
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
1697
|
-
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
1698
|
-
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1699
|
-
};
|
|
1700
|
-
export declare type AppRecDismissRecommendationInput = {
|
|
1701
|
-
context?: InputMaybe<AppRecContext>;
|
|
1702
|
-
productId: Scalars['ID']['input'];
|
|
1703
|
-
};
|
|
1704
|
-
export declare type AppRecDismissRecommendationPayload = Payload & {
|
|
1705
|
-
__typename?: 'AppRecDismissRecommendationPayload';
|
|
1706
|
-
dismissal?: Maybe<AppRecDismissal>;
|
|
1707
|
-
errors?: Maybe<Array<MutationError>>;
|
|
1708
|
-
success: Scalars['Boolean']['output'];
|
|
1709
|
-
};
|
|
1710
|
-
export declare type AppRecDismissal = {
|
|
1711
|
-
__typename?: 'AppRecDismissal';
|
|
1712
|
-
dismissedAt: Scalars['String']['output'];
|
|
1713
|
-
productId: Scalars['ID']['output'];
|
|
1714
|
-
};
|
|
1715
|
-
export declare type AppRecMutation = {
|
|
1716
|
-
__typename?: 'AppRecMutation';
|
|
1717
|
-
dismissRecommendation?: Maybe<AppRecDismissRecommendationPayload>;
|
|
1718
|
-
undoDismissal?: Maybe<AppRecUndoDismissalPayload>;
|
|
1719
|
-
};
|
|
1720
|
-
export declare type AppRecMutationDismissRecommendationArgs = {
|
|
1721
|
-
input: AppRecDismissRecommendationInput;
|
|
1722
|
-
};
|
|
1723
|
-
export declare type AppRecMutationUndoDismissalArgs = {
|
|
1724
|
-
input: AppRecUndoDismissalInput;
|
|
1725
|
-
};
|
|
1726
|
-
export declare type AppRecQuery = {
|
|
1727
|
-
__typename?: 'AppRecQuery';
|
|
1728
|
-
recommendations?: Maybe<Array<AppRecRecommendationResult>>;
|
|
1729
|
-
};
|
|
1730
|
-
export declare type AppRecQueryRecommendationsArgs = {
|
|
1731
|
-
context?: InputMaybe<AppRecContext>;
|
|
1732
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1733
|
-
};
|
|
1734
|
-
export declare type AppRecRecommendation = {
|
|
1735
|
-
__typename?: 'AppRecRecommendation';
|
|
1736
|
-
productId: Scalars['ID']['output'];
|
|
1737
|
-
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
1738
|
-
};
|
|
1739
|
-
export declare type AppRecRecommendationResult = AppRecRecommendation | QueryError;
|
|
1740
|
-
export declare type AppRecUndoDismissalInput = {
|
|
1741
|
-
context: AppRecContext;
|
|
1742
|
-
productId: Scalars['ID']['input'];
|
|
1743
|
-
};
|
|
1744
|
-
export declare type AppRecUndoDismissalPayload = Payload & {
|
|
1745
|
-
__typename?: 'AppRecUndoDismissalPayload';
|
|
1746
|
-
errors?: Maybe<Array<MutationError>>;
|
|
1747
|
-
result?: Maybe<AppRecUndoDismissalResult>;
|
|
1748
|
-
success: Scalars['Boolean']['output'];
|
|
1749
|
-
};
|
|
1750
|
-
export declare type AppRecUndoDismissalResult = {
|
|
1751
|
-
__typename?: 'AppRecUndoDismissalResult';
|
|
1752
|
-
description: Scalars['String']['output'];
|
|
1753
|
-
undone: Scalars['Boolean']['output'];
|
|
1754
|
-
};
|
|
1755
1688
|
export declare type AppRollout = {
|
|
1756
1689
|
__typename?: 'AppRollout';
|
|
1757
1690
|
appId: Scalars['ID']['output'];
|
|
@@ -2356,6 +2289,23 @@ export declare enum AtlassianProductHostingType {
|
|
|
2356
2289
|
DataCenter = "DATA_CENTER",
|
|
2357
2290
|
Server = "SERVER"
|
|
2358
2291
|
}
|
|
2292
|
+
export declare type AtlassianStudioUserProductPermissions = {
|
|
2293
|
+
__typename?: 'AtlassianStudioUserProductPermissions';
|
|
2294
|
+
isConfluenceGlobalAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2295
|
+
isJiraGlobalAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2296
|
+
};
|
|
2297
|
+
export declare type AtlassianStudioUserSiteContextOutput = {
|
|
2298
|
+
__typename?: 'AtlassianStudioUserSiteContextOutput';
|
|
2299
|
+
isAssetsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2300
|
+
isCompanyHubAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2301
|
+
isConfluenceAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2302
|
+
isCustomAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2303
|
+
isJSMAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2304
|
+
isJiraAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2305
|
+
isVirtualAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2306
|
+
userPermissions?: Maybe<AtlassianStudioUserProductPermissions>;
|
|
2307
|
+
};
|
|
2308
|
+
export declare type AtlassianStudioUserSiteContextResult = AtlassianStudioUserSiteContextOutput | QueryError;
|
|
2359
2309
|
export declare type AtlassianUser = {
|
|
2360
2310
|
__typename?: 'AtlassianUser';
|
|
2361
2311
|
companyName?: Maybe<Scalars['String']['output']>;
|
|
@@ -3484,7 +3434,7 @@ export declare enum CcpEntitlementPreDunningStatus {
|
|
|
3484
3434
|
InPreDunning = "IN_PRE_DUNNING",
|
|
3485
3435
|
NotInPreDunning = "NOT_IN_PRE_DUNNING"
|
|
3486
3436
|
}
|
|
3487
|
-
export declare type CcpEntitlementRelationship = {
|
|
3437
|
+
export declare type CcpEntitlementRelationship = CommerceEntitlementRelationship & {
|
|
3488
3438
|
__typename?: 'CcpEntitlementRelationship';
|
|
3489
3439
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
3490
3440
|
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -4224,6 +4174,8 @@ export declare type CommerceEntitlement = {
|
|
|
4224
4174
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
4225
4175
|
offering?: Maybe<CommerceOffering>;
|
|
4226
4176
|
preDunning?: Maybe<CommerceEntitlementPreDunning>;
|
|
4177
|
+
relatesFromEntitlements?: Maybe<Array<Maybe<CommerceEntitlementRelationship>>>;
|
|
4178
|
+
relatesToEntitlements?: Maybe<Array<Maybe<CommerceEntitlementRelationship>>>;
|
|
4227
4179
|
subscription?: Maybe<CommerceSubscription>;
|
|
4228
4180
|
transactionAccount?: Maybe<CommerceTransactionAccount>;
|
|
4229
4181
|
};
|
|
@@ -4276,6 +4228,11 @@ export declare type CommerceEntitlementPreDunning = {
|
|
|
4276
4228
|
firstPreDunningEndTimestampV2?: Maybe<Scalars['Float']['output']>;
|
|
4277
4229
|
status?: Maybe<CcpEntitlementPreDunningStatus>;
|
|
4278
4230
|
};
|
|
4231
|
+
export declare type CommerceEntitlementRelationship = {
|
|
4232
|
+
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
4233
|
+
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
4234
|
+
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
4235
|
+
};
|
|
4279
4236
|
export declare type CommerceExperienceCapability = {
|
|
4280
4237
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
4281
4238
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -6002,12 +5959,12 @@ export declare type CompassCreateVulnerabilityEventInput = {
|
|
|
6002
5959
|
};
|
|
6003
5960
|
export declare type CompassCreateVulnerabilityEventPropertiesInput = {
|
|
6004
5961
|
discoverySource?: InputMaybe<Scalars['String']['input']>;
|
|
6005
|
-
discoveryTime: Scalars['DateTime']['input'];
|
|
6006
5962
|
id: Scalars['ID']['input'];
|
|
6007
5963
|
remediationTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6008
5964
|
score?: InputMaybe<Scalars['Float']['input']>;
|
|
6009
5965
|
severity: CompassVulnerabilityEventSeverityInput;
|
|
6010
5966
|
state: CompassVulnerabilityEventState;
|
|
5967
|
+
vulnerabilityStartTime: Scalars['DateTime']['input'];
|
|
6011
5968
|
vulnerableTarget?: InputMaybe<Scalars['String']['input']>;
|
|
6012
5969
|
};
|
|
6013
5970
|
export declare type CompassCreateWebhookInput = {
|
|
@@ -6560,7 +6517,7 @@ export declare type CompassDynamicScorecardCriteria = CompassScorecardCriteria &
|
|
|
6560
6517
|
id: Scalars['ID']['output'];
|
|
6561
6518
|
name?: Maybe<Scalars['String']['output']>;
|
|
6562
6519
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
6563
|
-
scoringStrategyRules
|
|
6520
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
6564
6521
|
weight: Scalars['Int']['output'];
|
|
6565
6522
|
};
|
|
6566
6523
|
export declare type CompassDynamicScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -8106,6 +8063,7 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
8106
8063
|
since: Scalars['DateTime']['output'];
|
|
8107
8064
|
};
|
|
8108
8065
|
export declare enum CompassScorecardScoringStrategyType {
|
|
8066
|
+
PercentageBased = "PERCENTAGE_BASED",
|
|
8109
8067
|
PointBased = "POINT_BASED",
|
|
8110
8068
|
WeightBased = "WEIGHT_BASED"
|
|
8111
8069
|
}
|
|
@@ -8708,12 +8666,13 @@ export declare type CompassVulnerabilityEvent = CompassEvent & {
|
|
|
8708
8666
|
export declare type CompassVulnerabilityEventProperties = {
|
|
8709
8667
|
__typename?: 'CompassVulnerabilityEventProperties';
|
|
8710
8668
|
discoverySource?: Maybe<Scalars['String']['output']>;
|
|
8711
|
-
discoveryTime
|
|
8669
|
+
discoveryTime?: Maybe<Scalars['DateTime']['output']>;
|
|
8712
8670
|
id: Scalars['ID']['output'];
|
|
8713
8671
|
remediationTime?: Maybe<Scalars['DateTime']['output']>;
|
|
8714
8672
|
score?: Maybe<Scalars['Float']['output']>;
|
|
8715
8673
|
severity?: Maybe<CompassVulnerabilityEventSeverity>;
|
|
8716
8674
|
state: Scalars['String']['output'];
|
|
8675
|
+
vulnerabilityStartTime?: Maybe<Scalars['DateTime']['output']>;
|
|
8717
8676
|
vulnerableTarget?: Maybe<Scalars['String']['output']>;
|
|
8718
8677
|
};
|
|
8719
8678
|
export declare type CompassVulnerabilityEventSeverity = {
|
|
@@ -9065,6 +9024,10 @@ export declare enum ConfluenceCommentType {
|
|
|
9065
9024
|
Footer = "FOOTER",
|
|
9066
9025
|
Inline = "INLINE"
|
|
9067
9026
|
}
|
|
9027
|
+
export declare type ConfluenceContent = {
|
|
9028
|
+
__typename?: 'ConfluenceContent';
|
|
9029
|
+
contentType: Scalars['String']['output'];
|
|
9030
|
+
};
|
|
9068
9031
|
export declare type ConfluenceContentBody = {
|
|
9069
9032
|
__typename?: 'ConfluenceContentBody';
|
|
9070
9033
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -17833,6 +17796,7 @@ export declare type ContentPlatformPricing = {
|
|
|
17833
17796
|
headline?: Maybe<Scalars['String']['output']>;
|
|
17834
17797
|
pageDescription?: Maybe<Scalars['String']['output']>;
|
|
17835
17798
|
pricingTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
17799
|
+
pricingTitleInternal: Scalars['String']['output'];
|
|
17836
17800
|
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
17837
17801
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
17838
17802
|
};
|
|
@@ -18899,6 +18863,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
18899
18863
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
18900
18864
|
metricDefinitionId: Scalars['ID']['input'];
|
|
18901
18865
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
18866
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
18902
18867
|
weight: Scalars['Int']['input'];
|
|
18903
18868
|
};
|
|
18904
18869
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
@@ -21310,9 +21275,16 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
21310
21275
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
21311
21276
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
21312
21277
|
};
|
|
21278
|
+
export declare type DevAiInvokeAutodevRovoAgentInBulkIssueResult = {
|
|
21279
|
+
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkIssueResult';
|
|
21280
|
+
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
21281
|
+
issueId?: Maybe<Scalars['ID']['output']>;
|
|
21282
|
+
};
|
|
21313
21283
|
export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
|
|
21314
21284
|
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkPayload';
|
|
21315
21285
|
errors?: Maybe<Array<MutationError>>;
|
|
21286
|
+
failedIssues?: Maybe<Array<Maybe<DevAiInvokeAutodevRovoAgentInBulkIssueResult>>>;
|
|
21287
|
+
succeededIssues?: Maybe<Array<Maybe<DevAiInvokeAutodevRovoAgentInBulkIssueResult>>>;
|
|
21316
21288
|
success: Scalars['Boolean']['output'];
|
|
21317
21289
|
};
|
|
21318
21290
|
export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
@@ -29950,6 +29922,8 @@ export declare type GraphStore = {
|
|
|
29950
29922
|
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
29951
29923
|
atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
|
|
29952
29924
|
atlasGoalHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection>;
|
|
29925
|
+
atlasGoalHasGoalUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateConnection>;
|
|
29926
|
+
atlasGoalHasGoalUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseConnection>;
|
|
29953
29927
|
atlasGoalHasOwner?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerConnection>;
|
|
29954
29928
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
29955
29929
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
@@ -29969,6 +29943,8 @@ export declare type GraphStore = {
|
|
|
29969
29943
|
atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
|
|
29970
29944
|
atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
|
|
29971
29945
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
29946
|
+
atlasProjectHasProjectUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection>;
|
|
29947
|
+
atlasProjectHasProjectUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection>;
|
|
29972
29948
|
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
29973
29949
|
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
29974
29950
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
@@ -30433,6 +30409,8 @@ export declare type GraphStore = {
|
|
|
30433
30409
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
30434
30410
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
30435
30411
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
30412
|
+
userCreatedLoomVideoComment?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentConnection>;
|
|
30413
|
+
userCreatedLoomVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseConnection>;
|
|
30436
30414
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
30437
30415
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
30438
30416
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
@@ -30498,6 +30476,8 @@ export declare type GraphStore = {
|
|
|
30498
30476
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
30499
30477
|
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
30500
30478
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
30479
|
+
userTaggedInLoomVideoComment?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentConnection>;
|
|
30480
|
+
userTaggedInLoomVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseConnection>;
|
|
30501
30481
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
30502
30482
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
30503
30483
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
@@ -30573,6 +30553,8 @@ export declare type GraphStore = {
|
|
|
30573
30553
|
versionUserAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseConnection>;
|
|
30574
30554
|
versionUserAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagConnection>;
|
|
30575
30555
|
versionUserAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagConnection>;
|
|
30556
|
+
videoHasComment?: Maybe<GraphStoreSimplifiedVideoHasCommentConnection>;
|
|
30557
|
+
videoHasCommentInverse?: Maybe<GraphStoreSimplifiedVideoHasCommentInverseConnection>;
|
|
30576
30558
|
vulnerabilityAssociatedIssue?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection>;
|
|
30577
30559
|
vulnerabilityAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseConnection>;
|
|
30578
30560
|
vulnerabilityAssociatedIssueInverseRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
@@ -30626,6 +30608,20 @@ export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
|
|
|
30626
30608
|
id: Scalars['ID']['input'];
|
|
30627
30609
|
sort?: InputMaybe<GraphStoreAtlasGoalHasFollowerSortInput>;
|
|
30628
30610
|
};
|
|
30611
|
+
export declare type GraphStoreAtlasGoalHasGoalUpdateArgs = {
|
|
30612
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30613
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30614
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30615
|
+
id: Scalars['ID']['input'];
|
|
30616
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasGoalUpdateSortInput>;
|
|
30617
|
+
};
|
|
30618
|
+
export declare type GraphStoreAtlasGoalHasGoalUpdateInverseArgs = {
|
|
30619
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30620
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30621
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30622
|
+
id: Scalars['ID']['input'];
|
|
30623
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasGoalUpdateSortInput>;
|
|
30624
|
+
};
|
|
30629
30625
|
export declare type GraphStoreAtlasGoalHasOwnerArgs = {
|
|
30630
30626
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30631
30627
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30754,6 +30750,20 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
|
30754
30750
|
id: Scalars['ID']['input'];
|
|
30755
30751
|
sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
|
|
30756
30752
|
};
|
|
30753
|
+
export declare type GraphStoreAtlasProjectHasProjectUpdateArgs = {
|
|
30754
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30755
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30756
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30757
|
+
id: Scalars['ID']['input'];
|
|
30758
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasProjectUpdateSortInput>;
|
|
30759
|
+
};
|
|
30760
|
+
export declare type GraphStoreAtlasProjectHasProjectUpdateInverseArgs = {
|
|
30761
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30762
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30763
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30764
|
+
id: Scalars['ID']['input'];
|
|
30765
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasProjectUpdateSortInput>;
|
|
30766
|
+
};
|
|
30757
30767
|
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
30758
30768
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30759
30769
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33771,6 +33781,20 @@ export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
|
33771
33781
|
id: Scalars['ID']['input'];
|
|
33772
33782
|
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoSortInput>;
|
|
33773
33783
|
};
|
|
33784
|
+
export declare type GraphStoreUserCreatedLoomVideoCommentArgs = {
|
|
33785
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33786
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33787
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33788
|
+
id: Scalars['ID']['input'];
|
|
33789
|
+
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoCommentSortInput>;
|
|
33790
|
+
};
|
|
33791
|
+
export declare type GraphStoreUserCreatedLoomVideoCommentInverseArgs = {
|
|
33792
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33793
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33794
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33795
|
+
id: Scalars['ID']['input'];
|
|
33796
|
+
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoCommentSortInput>;
|
|
33797
|
+
};
|
|
33774
33798
|
export declare type GraphStoreUserCreatedLoomVideoInverseArgs = {
|
|
33775
33799
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33776
33800
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34228,6 +34252,20 @@ export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
|
34228
34252
|
id: Scalars['ID']['input'];
|
|
34229
34253
|
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
34230
34254
|
};
|
|
34255
|
+
export declare type GraphStoreUserTaggedInLoomVideoCommentArgs = {
|
|
34256
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34257
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34258
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34259
|
+
id: Scalars['ID']['input'];
|
|
34260
|
+
sort?: InputMaybe<GraphStoreUserTaggedInLoomVideoCommentSortInput>;
|
|
34261
|
+
};
|
|
34262
|
+
export declare type GraphStoreUserTaggedInLoomVideoCommentInverseArgs = {
|
|
34263
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34264
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34265
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34266
|
+
id: Scalars['ID']['input'];
|
|
34267
|
+
sort?: InputMaybe<GraphStoreUserTaggedInLoomVideoCommentSortInput>;
|
|
34268
|
+
};
|
|
34231
34269
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
34232
34270
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34233
34271
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34719,6 +34757,20 @@ export declare type GraphStoreVersionUserAssociatedFeatureFlagRelationshipArgs =
|
|
|
34719
34757
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34720
34758
|
id: Scalars['ID']['input'];
|
|
34721
34759
|
};
|
|
34760
|
+
export declare type GraphStoreVideoHasCommentArgs = {
|
|
34761
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34762
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34763
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34764
|
+
id: Scalars['ID']['input'];
|
|
34765
|
+
sort?: InputMaybe<GraphStoreVideoHasCommentSortInput>;
|
|
34766
|
+
};
|
|
34767
|
+
export declare type GraphStoreVideoHasCommentInverseArgs = {
|
|
34768
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34769
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34770
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34771
|
+
id: Scalars['ID']['input'];
|
|
34772
|
+
sort?: InputMaybe<GraphStoreVideoHasCommentSortInput>;
|
|
34773
|
+
};
|
|
34722
34774
|
export declare type GraphStoreVulnerabilityAssociatedIssueArgs = {
|
|
34723
34775
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34724
34776
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34779,6 +34831,9 @@ export declare type GraphStoreAtlasGoalHasContributorSortInput = {
|
|
|
34779
34831
|
export declare type GraphStoreAtlasGoalHasFollowerSortInput = {
|
|
34780
34832
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34781
34833
|
};
|
|
34834
|
+
export declare type GraphStoreAtlasGoalHasGoalUpdateSortInput = {
|
|
34835
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34836
|
+
};
|
|
34782
34837
|
export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
34783
34838
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34784
34839
|
};
|
|
@@ -34931,6 +34986,9 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
|
|
|
34931
34986
|
export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
34932
34987
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34933
34988
|
};
|
|
34989
|
+
export declare type GraphStoreAtlasProjectHasProjectUpdateSortInput = {
|
|
34990
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34991
|
+
};
|
|
34934
34992
|
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
34935
34993
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34936
34994
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -36995,11 +37053,13 @@ export declare type GraphStoreFullIncidentLinkedJswIssueStartNode = {
|
|
|
36995
37053
|
id: Scalars['ID']['output'];
|
|
36996
37054
|
};
|
|
36997
37055
|
export declare type GraphStoreFullIncidentLinkedJswIssueStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
36998
|
-
export declare type GraphStoreFullIssueAssociatedBranchConnection = HasPageInfo & {
|
|
37056
|
+
export declare type GraphStoreFullIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
36999
37057
|
__typename?: 'GraphStoreFullIssueAssociatedBranchConnection';
|
|
37000
37058
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedBranchEdge>>;
|
|
37059
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37001
37060
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedBranchNode>>;
|
|
37002
37061
|
pageInfo: PageInfo;
|
|
37062
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37003
37063
|
};
|
|
37004
37064
|
export declare type GraphStoreFullIssueAssociatedBranchEdge = {
|
|
37005
37065
|
__typename?: 'GraphStoreFullIssueAssociatedBranchEdge';
|
|
@@ -37079,11 +37139,13 @@ export declare type GraphStoreFullIssueAssociatedBuildTestInfoOutput = {
|
|
|
37079
37139
|
numberSkipped?: Maybe<Scalars['Long']['output']>;
|
|
37080
37140
|
totalNumber?: Maybe<Scalars['Long']['output']>;
|
|
37081
37141
|
};
|
|
37082
|
-
export declare type GraphStoreFullIssueAssociatedCommitConnection = HasPageInfo & {
|
|
37142
|
+
export declare type GraphStoreFullIssueAssociatedCommitConnection = HasPageInfo & HasTotal & {
|
|
37083
37143
|
__typename?: 'GraphStoreFullIssueAssociatedCommitConnection';
|
|
37084
37144
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedCommitEdge>>;
|
|
37145
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37085
37146
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedCommitNode>>;
|
|
37086
37147
|
pageInfo: PageInfo;
|
|
37148
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37087
37149
|
};
|
|
37088
37150
|
export declare type GraphStoreFullIssueAssociatedCommitEdge = {
|
|
37089
37151
|
__typename?: 'GraphStoreFullIssueAssociatedCommitEdge';
|
|
@@ -37224,11 +37286,13 @@ export declare type GraphStoreFullIssueAssociatedDesignStartNode = {
|
|
|
37224
37286
|
id: Scalars['ID']['output'];
|
|
37225
37287
|
};
|
|
37226
37288
|
export declare type GraphStoreFullIssueAssociatedDesignStartUnion = JiraIssue;
|
|
37227
|
-
export declare type GraphStoreFullIssueAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
37289
|
+
export declare type GraphStoreFullIssueAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
37228
37290
|
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagConnection';
|
|
37229
37291
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedFeatureFlagEdge>>;
|
|
37292
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37230
37293
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedFeatureFlagNode>>;
|
|
37231
37294
|
pageInfo: PageInfo;
|
|
37295
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37232
37296
|
};
|
|
37233
37297
|
export declare type GraphStoreFullIssueAssociatedFeatureFlagEdge = {
|
|
37234
37298
|
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagEdge';
|
|
@@ -37331,11 +37395,13 @@ export declare type GraphStoreFullIssueAssociatedPrAuthorOutput = {
|
|
|
37331
37395
|
__typename?: 'GraphStoreFullIssueAssociatedPrAuthorOutput';
|
|
37332
37396
|
authorAri?: Maybe<Scalars['String']['output']>;
|
|
37333
37397
|
};
|
|
37334
|
-
export declare type GraphStoreFullIssueAssociatedPrConnection = HasPageInfo & {
|
|
37398
|
+
export declare type GraphStoreFullIssueAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
37335
37399
|
__typename?: 'GraphStoreFullIssueAssociatedPrConnection';
|
|
37336
37400
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedPrEdge>>;
|
|
37401
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37337
37402
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedPrNode>>;
|
|
37338
37403
|
pageInfo: PageInfo;
|
|
37404
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37339
37405
|
};
|
|
37340
37406
|
export declare type GraphStoreFullIssueAssociatedPrEdge = {
|
|
37341
37407
|
__typename?: 'GraphStoreFullIssueAssociatedPrEdge';
|
|
@@ -37388,11 +37454,13 @@ export declare type GraphStoreFullIssueAssociatedPrStartNode = {
|
|
|
37388
37454
|
id: Scalars['ID']['output'];
|
|
37389
37455
|
};
|
|
37390
37456
|
export declare type GraphStoreFullIssueAssociatedPrStartUnion = JiraIssue;
|
|
37391
|
-
export declare type GraphStoreFullIssueAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
37457
|
+
export declare type GraphStoreFullIssueAssociatedRemoteLinkConnection = HasPageInfo & HasTotal & {
|
|
37392
37458
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkConnection';
|
|
37393
37459
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedRemoteLinkEdge>>;
|
|
37460
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37394
37461
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedRemoteLinkNode>>;
|
|
37395
37462
|
pageInfo: PageInfo;
|
|
37463
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37396
37464
|
};
|
|
37397
37465
|
export declare type GraphStoreFullIssueAssociatedRemoteLinkEdge = {
|
|
37398
37466
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkEdge';
|
|
@@ -39880,11 +39948,13 @@ export declare type GraphStoreFullVersionAssociatedPullRequestStartNode = {
|
|
|
39880
39948
|
id: Scalars['ID']['output'];
|
|
39881
39949
|
};
|
|
39882
39950
|
export declare type GraphStoreFullVersionAssociatedPullRequestStartUnion = JiraVersion;
|
|
39883
|
-
export declare type GraphStoreFullVersionAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
39951
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkConnection = HasPageInfo & HasTotal & {
|
|
39884
39952
|
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkConnection';
|
|
39885
39953
|
edges: Array<Maybe<GraphStoreFullVersionAssociatedRemoteLinkEdge>>;
|
|
39954
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39886
39955
|
nodes: Array<Maybe<GraphStoreFullVersionAssociatedRemoteLinkNode>>;
|
|
39887
39956
|
pageInfo: PageInfo;
|
|
39957
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39888
39958
|
};
|
|
39889
39959
|
export declare type GraphStoreFullVersionAssociatedRemoteLinkEdge = {
|
|
39890
39960
|
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkEdge';
|
|
@@ -40054,13 +40124,19 @@ export declare type GraphStoreIntFilterInput = {
|
|
|
40054
40124
|
lessThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
40055
40125
|
};
|
|
40056
40126
|
export declare type GraphStoreIssueAssociatedBranchSortInput = {
|
|
40127
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40128
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40057
40129
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40130
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40058
40131
|
};
|
|
40059
40132
|
export declare type GraphStoreIssueAssociatedBuildSortInput = {
|
|
40060
40133
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40061
40134
|
};
|
|
40062
40135
|
export declare type GraphStoreIssueAssociatedCommitSortInput = {
|
|
40136
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40137
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40063
40138
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40139
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40064
40140
|
};
|
|
40065
40141
|
export declare type GraphStoreIssueAssociatedDeploymentAuthorFilterInput = {
|
|
40066
40142
|
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>>>;
|
|
@@ -40122,16 +40198,36 @@ export declare type GraphStoreIssueAssociatedDesignSortInput = {
|
|
|
40122
40198
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40123
40199
|
};
|
|
40124
40200
|
export declare type GraphStoreIssueAssociatedFeatureFlagSortInput = {
|
|
40201
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40202
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40125
40203
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40204
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40126
40205
|
};
|
|
40127
40206
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkSortInput = {
|
|
40128
40207
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40129
40208
|
};
|
|
40209
|
+
export declare type GraphStoreIssueAssociatedPrAuthorSortInput = {
|
|
40210
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
40211
|
+
};
|
|
40212
|
+
export declare type GraphStoreIssueAssociatedPrReviewerSortInput = {
|
|
40213
|
+
approvalStatus?: InputMaybe<GraphStoreSortInput>;
|
|
40214
|
+
reviewerAri?: InputMaybe<GraphStoreSortInput>;
|
|
40215
|
+
};
|
|
40130
40216
|
export declare type GraphStoreIssueAssociatedPrSortInput = {
|
|
40217
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40218
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40131
40219
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40220
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40221
|
+
to_author?: InputMaybe<GraphStoreIssueAssociatedPrAuthorSortInput>;
|
|
40222
|
+
to_reviewers?: InputMaybe<GraphStoreIssueAssociatedPrReviewerSortInput>;
|
|
40223
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
40224
|
+
to_taskCount?: InputMaybe<GraphStoreSortInput>;
|
|
40132
40225
|
};
|
|
40133
40226
|
export declare type GraphStoreIssueAssociatedRemoteLinkSortInput = {
|
|
40227
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40228
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40134
40229
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40230
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40135
40231
|
};
|
|
40136
40232
|
export declare type GraphStoreIssueChangesComponentSortInput = {
|
|
40137
40233
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41142,6 +41238,34 @@ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge = {
|
|
|
41142
41238
|
};
|
|
41143
41239
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion = TownsquareGoal;
|
|
41144
41240
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41241
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateConnection = HasPageInfo & {
|
|
41242
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasGoalUpdateConnection';
|
|
41243
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateEdge>>>;
|
|
41244
|
+
pageInfo: PageInfo;
|
|
41245
|
+
};
|
|
41246
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateEdge = {
|
|
41247
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasGoalUpdateEdge';
|
|
41248
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41249
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41250
|
+
id: Scalars['ID']['output'];
|
|
41251
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41252
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateUnion>;
|
|
41253
|
+
};
|
|
41254
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseConnection = HasPageInfo & {
|
|
41255
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseConnection';
|
|
41256
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseEdge>>>;
|
|
41257
|
+
pageInfo: PageInfo;
|
|
41258
|
+
};
|
|
41259
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseEdge = {
|
|
41260
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseEdge';
|
|
41261
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41262
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41263
|
+
id: Scalars['ID']['output'];
|
|
41264
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41265
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseUnion>;
|
|
41266
|
+
};
|
|
41267
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseUnion = TownsquareGoal;
|
|
41268
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateUnion = TownsquareGoalUpdate;
|
|
41145
41269
|
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerConnection = HasPageInfo & {
|
|
41146
41270
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerConnection';
|
|
41147
41271
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerEdge>>>;
|
|
@@ -41370,6 +41494,34 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
|
41370
41494
|
};
|
|
41371
41495
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
41372
41496
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41497
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection = HasPageInfo & {
|
|
41498
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection';
|
|
41499
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateEdge>>>;
|
|
41500
|
+
pageInfo: PageInfo;
|
|
41501
|
+
};
|
|
41502
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateEdge = {
|
|
41503
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasProjectUpdateEdge';
|
|
41504
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41505
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41506
|
+
id: Scalars['ID']['output'];
|
|
41507
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41508
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateUnion>;
|
|
41509
|
+
};
|
|
41510
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection = HasPageInfo & {
|
|
41511
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection';
|
|
41512
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge>>>;
|
|
41513
|
+
pageInfo: PageInfo;
|
|
41514
|
+
};
|
|
41515
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge = {
|
|
41516
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge';
|
|
41517
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41518
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41519
|
+
id: Scalars['ID']['output'];
|
|
41520
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41521
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseUnion>;
|
|
41522
|
+
};
|
|
41523
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseUnion = TownsquareProject;
|
|
41524
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateUnion = TownsquareProjectUpdate;
|
|
41373
41525
|
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
41374
41526
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
41375
41527
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
@@ -42346,10 +42498,12 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge = {
|
|
|
42346
42498
|
};
|
|
42347
42499
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
42348
42500
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueUnion = JiraIssue;
|
|
42349
|
-
export declare type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & {
|
|
42501
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
42350
42502
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
|
|
42351
42503
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchEdge>>>;
|
|
42504
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42352
42505
|
pageInfo: PageInfo;
|
|
42506
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42353
42507
|
};
|
|
42354
42508
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchEdge = {
|
|
42355
42509
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchEdge';
|
|
@@ -42359,10 +42513,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedBranchEdge = {
|
|
|
42359
42513
|
lastUpdated: Scalars['DateTime']['output'];
|
|
42360
42514
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchUnion>;
|
|
42361
42515
|
};
|
|
42362
|
-
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & {
|
|
42516
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
42363
42517
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseConnection';
|
|
42364
42518
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseEdge>>>;
|
|
42519
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42365
42520
|
pageInfo: PageInfo;
|
|
42521
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42366
42522
|
};
|
|
42367
42523
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
42368
42524
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseEdge';
|
|
@@ -42402,10 +42558,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseEdge = {
|
|
|
42402
42558
|
};
|
|
42403
42559
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseUnion = JiraIssue;
|
|
42404
42560
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildUnion = ExternalBuildInfo;
|
|
42405
|
-
export declare type GraphStoreSimplifiedIssueAssociatedCommitConnection = HasPageInfo & {
|
|
42561
|
+
export declare type GraphStoreSimplifiedIssueAssociatedCommitConnection = HasPageInfo & HasTotal & {
|
|
42406
42562
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitConnection';
|
|
42407
42563
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedCommitEdge>>>;
|
|
42564
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42408
42565
|
pageInfo: PageInfo;
|
|
42566
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42409
42567
|
};
|
|
42410
42568
|
export declare type GraphStoreSimplifiedIssueAssociatedCommitEdge = {
|
|
42411
42569
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitEdge';
|
|
@@ -42415,10 +42573,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedCommitEdge = {
|
|
|
42415
42573
|
lastUpdated: Scalars['DateTime']['output'];
|
|
42416
42574
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitUnion>;
|
|
42417
42575
|
};
|
|
42418
|
-
export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseConnection = HasPageInfo & {
|
|
42576
|
+
export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseConnection = HasPageInfo & HasTotal & {
|
|
42419
42577
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitInverseConnection';
|
|
42420
42578
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseEdge>>>;
|
|
42579
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42421
42580
|
pageInfo: PageInfo;
|
|
42581
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42422
42582
|
};
|
|
42423
42583
|
export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
|
|
42424
42584
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitInverseEdge';
|
|
@@ -42490,10 +42650,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseEdge = {
|
|
|
42490
42650
|
};
|
|
42491
42651
|
export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseUnion = JiraIssue;
|
|
42492
42652
|
export declare type GraphStoreSimplifiedIssueAssociatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
42493
|
-
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
42653
|
+
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
42494
42654
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagConnection';
|
|
42495
42655
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge>>>;
|
|
42656
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42496
42657
|
pageInfo: PageInfo;
|
|
42658
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42497
42659
|
};
|
|
42498
42660
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge = {
|
|
42499
42661
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge';
|
|
@@ -42503,10 +42665,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge = {
|
|
|
42503
42665
|
lastUpdated: Scalars['DateTime']['output'];
|
|
42504
42666
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion>;
|
|
42505
42667
|
};
|
|
42506
|
-
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection = HasPageInfo & {
|
|
42668
|
+
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection = HasPageInfo & HasTotal & {
|
|
42507
42669
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection';
|
|
42508
42670
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge>>>;
|
|
42671
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42509
42672
|
pageInfo: PageInfo;
|
|
42673
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42510
42674
|
};
|
|
42511
42675
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge = {
|
|
42512
42676
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge';
|
|
@@ -42546,10 +42710,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdg
|
|
|
42546
42710
|
};
|
|
42547
42711
|
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion = JiraIssue;
|
|
42548
42712
|
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkUnion = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
42549
|
-
export declare type GraphStoreSimplifiedIssueAssociatedPrConnection = HasPageInfo & {
|
|
42713
|
+
export declare type GraphStoreSimplifiedIssueAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
42550
42714
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrConnection';
|
|
42551
42715
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedPrEdge>>>;
|
|
42716
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42552
42717
|
pageInfo: PageInfo;
|
|
42718
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42553
42719
|
};
|
|
42554
42720
|
export declare type GraphStoreSimplifiedIssueAssociatedPrEdge = {
|
|
42555
42721
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrEdge';
|
|
@@ -42559,10 +42725,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrEdge = {
|
|
|
42559
42725
|
lastUpdated: Scalars['DateTime']['output'];
|
|
42560
42726
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrUnion>;
|
|
42561
42727
|
};
|
|
42562
|
-
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseConnection = HasPageInfo & {
|
|
42728
|
+
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseConnection = HasPageInfo & HasTotal & {
|
|
42563
42729
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrInverseConnection';
|
|
42564
42730
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseEdge>>>;
|
|
42731
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42565
42732
|
pageInfo: PageInfo;
|
|
42733
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42566
42734
|
};
|
|
42567
42735
|
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
42568
42736
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrInverseEdge';
|
|
@@ -42574,10 +42742,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
|
42574
42742
|
};
|
|
42575
42743
|
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseUnion = JiraIssue;
|
|
42576
42744
|
export declare type GraphStoreSimplifiedIssueAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
42577
|
-
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
42745
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection = HasPageInfo & HasTotal & {
|
|
42578
42746
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection';
|
|
42579
42747
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge>>>;
|
|
42748
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42580
42749
|
pageInfo: PageInfo;
|
|
42750
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42581
42751
|
};
|
|
42582
42752
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge = {
|
|
42583
42753
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge';
|
|
@@ -42587,10 +42757,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge = {
|
|
|
42587
42757
|
lastUpdated: Scalars['DateTime']['output'];
|
|
42588
42758
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkUnion>;
|
|
42589
42759
|
};
|
|
42590
|
-
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
42760
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection = HasPageInfo & HasTotal & {
|
|
42591
42761
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection';
|
|
42592
42762
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge>>>;
|
|
42763
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42593
42764
|
pageInfo: PageInfo;
|
|
42765
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42594
42766
|
};
|
|
42595
42767
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
42596
42768
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge';
|
|
@@ -45606,6 +45778,34 @@ export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge = {
|
|
|
45606
45778
|
};
|
|
45607
45779
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45608
45780
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogUnion = JiraWorklog;
|
|
45781
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentConnection = HasPageInfo & {
|
|
45782
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentConnection';
|
|
45783
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentEdge>>>;
|
|
45784
|
+
pageInfo: PageInfo;
|
|
45785
|
+
};
|
|
45786
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentEdge = {
|
|
45787
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentEdge';
|
|
45788
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45789
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45790
|
+
id: Scalars['ID']['output'];
|
|
45791
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45792
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentUnion>;
|
|
45793
|
+
};
|
|
45794
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseConnection = HasPageInfo & {
|
|
45795
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseConnection';
|
|
45796
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseEdge>>>;
|
|
45797
|
+
pageInfo: PageInfo;
|
|
45798
|
+
};
|
|
45799
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseEdge = {
|
|
45800
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseEdge';
|
|
45801
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45802
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45803
|
+
id: Scalars['ID']['output'];
|
|
45804
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45805
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseUnion>;
|
|
45806
|
+
};
|
|
45807
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45808
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentUnion = LoomComment;
|
|
45609
45809
|
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
45610
45810
|
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
45611
45811
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
@@ -46542,6 +46742,34 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
46542
46742
|
};
|
|
46543
46743
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46544
46744
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
46745
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentConnection = HasPageInfo & {
|
|
46746
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentConnection';
|
|
46747
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentEdge>>>;
|
|
46748
|
+
pageInfo: PageInfo;
|
|
46749
|
+
};
|
|
46750
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentEdge = {
|
|
46751
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentEdge';
|
|
46752
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46753
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46754
|
+
id: Scalars['ID']['output'];
|
|
46755
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46756
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentUnion>;
|
|
46757
|
+
};
|
|
46758
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseConnection = HasPageInfo & {
|
|
46759
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseConnection';
|
|
46760
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseEdge>>>;
|
|
46761
|
+
pageInfo: PageInfo;
|
|
46762
|
+
};
|
|
46763
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseEdge = {
|
|
46764
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseEdge';
|
|
46765
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46766
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46767
|
+
id: Scalars['ID']['output'];
|
|
46768
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46769
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseUnion>;
|
|
46770
|
+
};
|
|
46771
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46772
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentUnion = LoomComment;
|
|
46545
46773
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
46546
46774
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
46547
46775
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -47284,10 +47512,12 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
47284
47512
|
};
|
|
47285
47513
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion = JiraVersion;
|
|
47286
47514
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47287
|
-
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
47515
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection = HasPageInfo & HasTotal & {
|
|
47288
47516
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection';
|
|
47289
47517
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge>>>;
|
|
47518
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
47290
47519
|
pageInfo: PageInfo;
|
|
47520
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
47291
47521
|
};
|
|
47292
47522
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge = {
|
|
47293
47523
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge';
|
|
@@ -47297,10 +47527,12 @@ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge = {
|
|
|
47297
47527
|
lastUpdated: Scalars['DateTime']['output'];
|
|
47298
47528
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkUnion>;
|
|
47299
47529
|
};
|
|
47300
|
-
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
47530
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & HasTotal & {
|
|
47301
47531
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection';
|
|
47302
47532
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge>>>;
|
|
47533
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
47303
47534
|
pageInfo: PageInfo;
|
|
47535
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
47304
47536
|
};
|
|
47305
47537
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge = {
|
|
47306
47538
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge';
|
|
@@ -47344,6 +47576,34 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseE
|
|
|
47344
47576
|
};
|
|
47345
47577
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseUnion = JiraVersion;
|
|
47346
47578
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
47579
|
+
export declare type GraphStoreSimplifiedVideoHasCommentConnection = HasPageInfo & {
|
|
47580
|
+
__typename?: 'GraphStoreSimplifiedVideoHasCommentConnection';
|
|
47581
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVideoHasCommentEdge>>>;
|
|
47582
|
+
pageInfo: PageInfo;
|
|
47583
|
+
};
|
|
47584
|
+
export declare type GraphStoreSimplifiedVideoHasCommentEdge = {
|
|
47585
|
+
__typename?: 'GraphStoreSimplifiedVideoHasCommentEdge';
|
|
47586
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47587
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47588
|
+
id: Scalars['ID']['output'];
|
|
47589
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47590
|
+
node?: Maybe<GraphStoreSimplifiedVideoHasCommentUnion>;
|
|
47591
|
+
};
|
|
47592
|
+
export declare type GraphStoreSimplifiedVideoHasCommentInverseConnection = HasPageInfo & {
|
|
47593
|
+
__typename?: 'GraphStoreSimplifiedVideoHasCommentInverseConnection';
|
|
47594
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVideoHasCommentInverseEdge>>>;
|
|
47595
|
+
pageInfo: PageInfo;
|
|
47596
|
+
};
|
|
47597
|
+
export declare type GraphStoreSimplifiedVideoHasCommentInverseEdge = {
|
|
47598
|
+
__typename?: 'GraphStoreSimplifiedVideoHasCommentInverseEdge';
|
|
47599
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47600
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47601
|
+
id: Scalars['ID']['output'];
|
|
47602
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47603
|
+
node?: Maybe<GraphStoreSimplifiedVideoHasCommentInverseUnion>;
|
|
47604
|
+
};
|
|
47605
|
+
export declare type GraphStoreSimplifiedVideoHasCommentInverseUnion = LoomVideo;
|
|
47606
|
+
export declare type GraphStoreSimplifiedVideoHasCommentUnion = LoomComment;
|
|
47347
47607
|
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection = HasPageInfo & HasTotal & {
|
|
47348
47608
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection';
|
|
47349
47609
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge>>>;
|
|
@@ -47839,6 +48099,9 @@ export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
|
47839
48099
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
47840
48100
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47841
48101
|
};
|
|
48102
|
+
export declare type GraphStoreUserCreatedLoomVideoCommentSortInput = {
|
|
48103
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48104
|
+
};
|
|
47842
48105
|
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
47843
48106
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47844
48107
|
};
|
|
@@ -47965,6 +48228,9 @@ export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
|
47965
48228
|
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
47966
48229
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47967
48230
|
};
|
|
48231
|
+
export declare type GraphStoreUserTaggedInLoomVideoCommentSortInput = {
|
|
48232
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48233
|
+
};
|
|
47968
48234
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
47969
48235
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47970
48236
|
};
|
|
@@ -48104,7 +48370,10 @@ export declare type GraphStoreVersionAssociatedPullRequestSortInput = {
|
|
|
48104
48370
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48105
48371
|
};
|
|
48106
48372
|
export declare type GraphStoreVersionAssociatedRemoteLinkSortInput = {
|
|
48373
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48374
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48107
48375
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48376
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48108
48377
|
};
|
|
48109
48378
|
export declare type GraphStoreVersionUserAssociatedFeatureFlagSortInput = {
|
|
48110
48379
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48112,6 +48381,9 @@ export declare type GraphStoreVersionUserAssociatedFeatureFlagSortInput = {
|
|
|
48112
48381
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48113
48382
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48114
48383
|
};
|
|
48384
|
+
export declare type GraphStoreVideoHasCommentSortInput = {
|
|
48385
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48386
|
+
};
|
|
48115
48387
|
export declare type GraphStoreVulnerabilityAssociatedIssueContainerSortInput = {
|
|
48116
48388
|
containerAri?: InputMaybe<GraphStoreSortInput>;
|
|
48117
48389
|
};
|
|
@@ -48555,6 +48827,8 @@ export declare type HamsEntitlement = CommerceEntitlement & {
|
|
|
48555
48827
|
overriddenEdition?: Maybe<Scalars['String']['output']>;
|
|
48556
48828
|
preDunning?: Maybe<HamsEntitlementPreDunning>;
|
|
48557
48829
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
48830
|
+
relatesFromEntitlements?: Maybe<Array<Maybe<HamsEntitlementRelationship>>>;
|
|
48831
|
+
relatesToEntitlements?: Maybe<Array<Maybe<HamsEntitlementRelationship>>>;
|
|
48558
48832
|
sen?: Maybe<Scalars['String']['output']>;
|
|
48559
48833
|
shortTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
48560
48834
|
slug?: Maybe<Scalars['String']['output']>;
|
|
@@ -48595,6 +48869,12 @@ export declare type HamsEntitlementPreDunning = CommerceEntitlementPreDunning &
|
|
|
48595
48869
|
firstPreDunningEndTimestampV2?: Maybe<Scalars['Float']['output']>;
|
|
48596
48870
|
status?: Maybe<CcpEntitlementPreDunningStatus>;
|
|
48597
48871
|
};
|
|
48872
|
+
export declare type HamsEntitlementRelationship = CommerceEntitlementRelationship & {
|
|
48873
|
+
__typename?: 'HamsEntitlementRelationship';
|
|
48874
|
+
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
48875
|
+
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
48876
|
+
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
48877
|
+
};
|
|
48598
48878
|
export declare type HamsExperienceCapability = CommerceExperienceCapability & {
|
|
48599
48879
|
__typename?: 'HamsExperienceCapability';
|
|
48600
48880
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -50100,6 +50380,7 @@ export declare type HelpObjectStoreArticleSearchResult = {
|
|
|
50100
50380
|
displayLink: Scalars['String']['output'];
|
|
50101
50381
|
excerpt: Scalars['String']['output'];
|
|
50102
50382
|
metadata: HelpObjectStoreArticleMetadata;
|
|
50383
|
+
sourceSystem?: Maybe<HelpObjectStoreArticleSourceSystem>;
|
|
50103
50384
|
title: Scalars['String']['output'];
|
|
50104
50385
|
};
|
|
50105
50386
|
export declare type HelpObjectStoreArticleSearchResults = {
|
|
@@ -50111,6 +50392,12 @@ export declare enum HelpObjectStoreArticleSearchStrategy {
|
|
|
50111
50392
|
Cql = "CQL",
|
|
50112
50393
|
Proxy = "PROXY"
|
|
50113
50394
|
}
|
|
50395
|
+
export declare enum HelpObjectStoreArticleSourceSystem {
|
|
50396
|
+
Confluence = "CONFLUENCE",
|
|
50397
|
+
External = "EXTERNAL",
|
|
50398
|
+
GoogleDrive = "GOOGLE_DRIVE",
|
|
50399
|
+
Sharepoint = "SHAREPOINT"
|
|
50400
|
+
}
|
|
50114
50401
|
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
50115
50402
|
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
50116
50403
|
};
|
|
@@ -52395,6 +52682,7 @@ export declare type JiraBoardView = {
|
|
|
52395
52682
|
error?: Maybe<QueryError>;
|
|
52396
52683
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
52397
52684
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
52685
|
+
groupByOptions?: Maybe<Array<JiraViewGroupByConfig>>;
|
|
52398
52686
|
id: Scalars['ID']['output'];
|
|
52399
52687
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
52400
52688
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -61829,6 +62117,7 @@ export declare type JiraQuery = {
|
|
|
61829
62117
|
jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
|
|
61830
62118
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
61831
62119
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
62120
|
+
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
61832
62121
|
jiraProject?: Maybe<JiraProject>;
|
|
61833
62122
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
61834
62123
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
@@ -62386,6 +62675,11 @@ export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
|
62386
62675
|
cloudId: Scalars['ID']['input'];
|
|
62387
62676
|
id: Scalars['ID']['input'];
|
|
62388
62677
|
};
|
|
62678
|
+
export declare type JiraQueryJiraJourneyItemArgs = {
|
|
62679
|
+
cloudId: Scalars['ID']['input'];
|
|
62680
|
+
id: Scalars['ID']['input'];
|
|
62681
|
+
journeyId: Scalars['ID']['input'];
|
|
62682
|
+
};
|
|
62389
62683
|
export declare type JiraQueryJiraProjectArgs = {
|
|
62390
62684
|
id: Scalars['ID']['input'];
|
|
62391
62685
|
};
|
|
@@ -69082,6 +69376,17 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
|
69082
69376
|
};
|
|
69083
69377
|
export declare type KnowledgeDiscoveryAdminhubBookmarkResult = KnowledgeDiscoveryAdminhubBookmark | QueryError;
|
|
69084
69378
|
export declare type KnowledgeDiscoveryAdminhubBookmarksResult = KnowledgeDiscoveryAdminhubBookmarkConnection | QueryError;
|
|
69379
|
+
export declare type KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionInput = {
|
|
69380
|
+
bookmarkAdminhubId: Scalars['ID']['input'];
|
|
69381
|
+
cloudId: Scalars['ID']['input'];
|
|
69382
|
+
orgId: Scalars['String']['input'];
|
|
69383
|
+
};
|
|
69384
|
+
export declare type KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionPayload = Payload & {
|
|
69385
|
+
__typename?: 'KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionPayload';
|
|
69386
|
+
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmark>;
|
|
69387
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69388
|
+
success: Scalars['Boolean']['output'];
|
|
69389
|
+
};
|
|
69085
69390
|
export declare type KnowledgeDiscoveryAutoDefinition = {
|
|
69086
69391
|
__typename?: 'KnowledgeDiscoveryAutoDefinition';
|
|
69087
69392
|
confluenceEntity?: Maybe<KnowledgeDiscoveryConfluenceEntity>;
|
|
@@ -69282,6 +69587,7 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
|
|
|
69282
69587
|
export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
|
|
69283
69588
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
69284
69589
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
69590
|
+
approveBookmarkSuggestion?: Maybe<KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionPayload>;
|
|
69285
69591
|
createBookmark?: Maybe<KnowledgeDiscoveryCreateAdminhubBookmarkPayload>;
|
|
69286
69592
|
createBookmarks?: Maybe<KnowledgeDiscoveryCreateAdminhubBookmarksPayload>;
|
|
69287
69593
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
@@ -69290,6 +69596,9 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
69290
69596
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
69291
69597
|
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
69292
69598
|
};
|
|
69599
|
+
export declare type KnowledgeDiscoveryMutationApiApproveBookmarkSuggestionArgs = {
|
|
69600
|
+
input: KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionInput;
|
|
69601
|
+
};
|
|
69293
69602
|
export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
|
|
69294
69603
|
input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
|
|
69295
69604
|
};
|
|
@@ -69408,6 +69717,7 @@ export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
|
69408
69717
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
69409
69718
|
locale: Scalars['String']['input'];
|
|
69410
69719
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
69720
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
69411
69721
|
query: Scalars['String']['input'];
|
|
69412
69722
|
siteId: Scalars['String']['input'];
|
|
69413
69723
|
};
|
|
@@ -70540,6 +70850,7 @@ export declare type MarketplaceConsoleDevSpaceListing = {
|
|
|
70540
70850
|
description?: Maybe<Scalars['String']['output']>;
|
|
70541
70851
|
displayLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
70542
70852
|
supportDetails?: Maybe<MarketplaceConsoleDevSpaceSupportDetails>;
|
|
70853
|
+
trustCenterUrl?: Maybe<Scalars['String']['output']>;
|
|
70543
70854
|
};
|
|
70544
70855
|
export declare enum MarketplaceConsoleDevSpaceProgram {
|
|
70545
70856
|
AtlassianParter = "ATLASSIAN_PARTER",
|
|
@@ -72253,6 +72564,46 @@ export declare type MercuryBudgetAggregation = {
|
|
|
72253
72564
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
72254
72565
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
72255
72566
|
};
|
|
72567
|
+
export declare type MercuryChangeProposal = Node & {
|
|
72568
|
+
__typename?: 'MercuryChangeProposal';
|
|
72569
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
72570
|
+
id: Scalars['ID']['output'];
|
|
72571
|
+
name: Scalars['String']['output'];
|
|
72572
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
72573
|
+
statusTransitions?: Maybe<Array<Maybe<MercuryChangeProposalStatusTransition>>>;
|
|
72574
|
+
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
72575
|
+
};
|
|
72576
|
+
export declare type MercuryChangeProposalConnection = {
|
|
72577
|
+
__typename?: 'MercuryChangeProposalConnection';
|
|
72578
|
+
edges?: Maybe<Array<Maybe<MercuryChangeProposalEdge>>>;
|
|
72579
|
+
pageInfo: PageInfo;
|
|
72580
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
72581
|
+
};
|
|
72582
|
+
export declare type MercuryChangeProposalEdge = {
|
|
72583
|
+
__typename?: 'MercuryChangeProposalEdge';
|
|
72584
|
+
cursor: Scalars['String']['output'];
|
|
72585
|
+
node?: Maybe<MercuryChangeProposal>;
|
|
72586
|
+
};
|
|
72587
|
+
export declare type MercuryChangeProposalSort = {
|
|
72588
|
+
field: MercuryChangeProposalSortField;
|
|
72589
|
+
order: SortOrder;
|
|
72590
|
+
};
|
|
72591
|
+
export declare enum MercuryChangeProposalSortField {
|
|
72592
|
+
Name = "NAME"
|
|
72593
|
+
}
|
|
72594
|
+
export declare type MercuryChangeProposalStatus = {
|
|
72595
|
+
__typename?: 'MercuryChangeProposalStatus';
|
|
72596
|
+
color: Scalars['String']['output'];
|
|
72597
|
+
displayName: Scalars['String']['output'];
|
|
72598
|
+
id: Scalars['ID']['output'];
|
|
72599
|
+
key: Scalars['String']['output'];
|
|
72600
|
+
order: Scalars['Int']['output'];
|
|
72601
|
+
};
|
|
72602
|
+
export declare type MercuryChangeProposalStatusTransition = {
|
|
72603
|
+
__typename?: 'MercuryChangeProposalStatusTransition';
|
|
72604
|
+
id: Scalars['ID']['output'];
|
|
72605
|
+
to: MercuryChangeProposalStatus;
|
|
72606
|
+
};
|
|
72256
72607
|
export declare type MercuryComment = Node & {
|
|
72257
72608
|
__typename?: 'MercuryComment';
|
|
72258
72609
|
ari: Scalars['String']['output'];
|
|
@@ -72273,6 +72624,17 @@ export declare type MercuryCommentEdge = {
|
|
|
72273
72624
|
cursor: Scalars['String']['output'];
|
|
72274
72625
|
node?: Maybe<MercuryComment>;
|
|
72275
72626
|
};
|
|
72627
|
+
export declare type MercuryCreateChangeProposalInput = {
|
|
72628
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
72629
|
+
name: Scalars['String']['input'];
|
|
72630
|
+
strategicEventId: Scalars['String']['input'];
|
|
72631
|
+
};
|
|
72632
|
+
export declare type MercuryCreateChangeProposalPayload = Payload & {
|
|
72633
|
+
__typename?: 'MercuryCreateChangeProposalPayload';
|
|
72634
|
+
createdChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
72635
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72636
|
+
success: Scalars['Boolean']['output'];
|
|
72637
|
+
};
|
|
72276
72638
|
export declare type MercuryCreateCommentInput = {
|
|
72277
72639
|
cloudId: Scalars['ID']['input'];
|
|
72278
72640
|
commentText: Scalars['MercuryJSONString']['input'];
|
|
@@ -72322,6 +72684,17 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
72322
72684
|
errors?: Maybe<Array<MutationError>>;
|
|
72323
72685
|
success: Scalars['Boolean']['output'];
|
|
72324
72686
|
};
|
|
72687
|
+
export declare type MercuryCreateStrategicEventInput = {
|
|
72688
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
72689
|
+
name: Scalars['String']['input'];
|
|
72690
|
+
targetDate: Scalars['String']['input'];
|
|
72691
|
+
};
|
|
72692
|
+
export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
72693
|
+
__typename?: 'MercuryCreateStrategicEventPayload';
|
|
72694
|
+
createdStrategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
72695
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72696
|
+
success: Scalars['Boolean']['output'];
|
|
72697
|
+
};
|
|
72325
72698
|
export declare type MercuryDeleteAllPreferenceInput = {
|
|
72326
72699
|
cloudId: Scalars['ID']['input'];
|
|
72327
72700
|
};
|
|
@@ -73351,6 +73724,109 @@ export declare type MercurySpendAggregation = {
|
|
|
73351
73724
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
73352
73725
|
totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
73353
73726
|
};
|
|
73727
|
+
export declare type MercuryStrategicEvent = Node & {
|
|
73728
|
+
__typename?: 'MercuryStrategicEvent';
|
|
73729
|
+
id: Scalars['ID']['output'];
|
|
73730
|
+
name: Scalars['String']['output'];
|
|
73731
|
+
status?: Maybe<MercuryStrategicEventStatus>;
|
|
73732
|
+
statusTransitions?: Maybe<Array<Maybe<MercuryStrategicEventStatusTransition>>>;
|
|
73733
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
73734
|
+
};
|
|
73735
|
+
export declare type MercuryStrategicEventConnection = {
|
|
73736
|
+
__typename?: 'MercuryStrategicEventConnection';
|
|
73737
|
+
edges?: Maybe<Array<Maybe<MercuryStrategicEventEdge>>>;
|
|
73738
|
+
pageInfo: PageInfo;
|
|
73739
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
73740
|
+
};
|
|
73741
|
+
export declare type MercuryStrategicEventEdge = {
|
|
73742
|
+
__typename?: 'MercuryStrategicEventEdge';
|
|
73743
|
+
cursor: Scalars['String']['output'];
|
|
73744
|
+
node?: Maybe<MercuryStrategicEvent>;
|
|
73745
|
+
};
|
|
73746
|
+
export declare type MercuryStrategicEventSort = {
|
|
73747
|
+
field: MercuryStrategicEventSortField;
|
|
73748
|
+
order: SortOrder;
|
|
73749
|
+
};
|
|
73750
|
+
export declare enum MercuryStrategicEventSortField {
|
|
73751
|
+
Name = "NAME",
|
|
73752
|
+
Status = "STATUS",
|
|
73753
|
+
TargetDate = "TARGET_DATE"
|
|
73754
|
+
}
|
|
73755
|
+
export declare type MercuryStrategicEventStatus = {
|
|
73756
|
+
__typename?: 'MercuryStrategicEventStatus';
|
|
73757
|
+
color: Scalars['String']['output'];
|
|
73758
|
+
displayName: Scalars['String']['output'];
|
|
73759
|
+
id: Scalars['ID']['output'];
|
|
73760
|
+
key: Scalars['String']['output'];
|
|
73761
|
+
order: Scalars['Int']['output'];
|
|
73762
|
+
};
|
|
73763
|
+
export declare type MercuryStrategicEventStatusTransition = {
|
|
73764
|
+
__typename?: 'MercuryStrategicEventStatusTransition';
|
|
73765
|
+
id: Scalars['ID']['output'];
|
|
73766
|
+
to: MercuryStrategicEventStatus;
|
|
73767
|
+
};
|
|
73768
|
+
export declare type MercuryStrategicEventsMutationApi = {
|
|
73769
|
+
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
73770
|
+
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
73771
|
+
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
73772
|
+
};
|
|
73773
|
+
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
|
|
73774
|
+
input: MercuryCreateChangeProposalInput;
|
|
73775
|
+
};
|
|
73776
|
+
export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
|
|
73777
|
+
input: MercuryCreateStrategicEventInput;
|
|
73778
|
+
};
|
|
73779
|
+
export declare type MercuryStrategicEventsQueryApi = {
|
|
73780
|
+
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
73781
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
73782
|
+
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
73783
|
+
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
73784
|
+
changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
|
|
73785
|
+
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
73786
|
+
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
73787
|
+
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
73788
|
+
strategicEventsSearch?: Maybe<MercuryStrategicEventConnection>;
|
|
73789
|
+
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
73790
|
+
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
73791
|
+
};
|
|
73792
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
73793
|
+
id: Scalars['ID']['input'];
|
|
73794
|
+
};
|
|
73795
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalStatusesArgs = {
|
|
73796
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73797
|
+
};
|
|
73798
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalsArgs = {
|
|
73799
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73800
|
+
};
|
|
73801
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
|
|
73802
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
73803
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73804
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73805
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
73806
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
|
|
73807
|
+
};
|
|
73808
|
+
export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
|
|
73809
|
+
id: Scalars['ID']['input'];
|
|
73810
|
+
};
|
|
73811
|
+
export declare type MercuryStrategicEventsQueryApiStrategicEventStatusesArgs = {
|
|
73812
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73813
|
+
};
|
|
73814
|
+
export declare type MercuryStrategicEventsQueryApiStrategicEventsArgs = {
|
|
73815
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73816
|
+
};
|
|
73817
|
+
export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
73818
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
73819
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73820
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73821
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
73822
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
73823
|
+
};
|
|
73824
|
+
export declare type MercuryStrategicEventsQueryApiTransitionChangeProposalStatusArgs = {
|
|
73825
|
+
input: MercuryTransitionChangeProposalStatusInput;
|
|
73826
|
+
};
|
|
73827
|
+
export declare type MercuryStrategicEventsQueryApiTransitionStrategicEventStatusArgs = {
|
|
73828
|
+
input: MercuryTransitionStrategicEventStatusInput;
|
|
73829
|
+
};
|
|
73354
73830
|
export declare type MercuryTargetDate = {
|
|
73355
73831
|
__typename?: 'MercuryTargetDate';
|
|
73356
73832
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -73418,11 +73894,33 @@ export declare type MercuryTeamSort = {
|
|
|
73418
73894
|
export declare enum MercuryTeamSortField {
|
|
73419
73895
|
Name = "NAME"
|
|
73420
73896
|
}
|
|
73897
|
+
export declare type MercuryTransitionChangeProposalPayload = Payload & {
|
|
73898
|
+
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
73899
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73900
|
+
success: Scalars['Boolean']['output'];
|
|
73901
|
+
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
73902
|
+
};
|
|
73903
|
+
export declare type MercuryTransitionChangeProposalStatusInput = {
|
|
73904
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73905
|
+
id: Scalars['ID']['input'];
|
|
73906
|
+
statusTransitionId: Scalars['ID']['input'];
|
|
73907
|
+
};
|
|
73421
73908
|
export declare type MercuryTransitionFocusAreaStatusInput = {
|
|
73422
73909
|
cloudId: Scalars['ID']['input'];
|
|
73423
73910
|
id: Scalars['ID']['input'];
|
|
73424
73911
|
statusTransitionId: Scalars['ID']['input'];
|
|
73425
73912
|
};
|
|
73913
|
+
export declare type MercuryTransitionStrategicEventPayload = Payload & {
|
|
73914
|
+
__typename?: 'MercuryTransitionStrategicEventPayload';
|
|
73915
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73916
|
+
success: Scalars['Boolean']['output'];
|
|
73917
|
+
updatedStrategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
73918
|
+
};
|
|
73919
|
+
export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
73920
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73921
|
+
id: Scalars['ID']['input'];
|
|
73922
|
+
statusTransitionId: Scalars['ID']['input'];
|
|
73923
|
+
};
|
|
73426
73924
|
export declare type MercuryUpdateCommentInput = {
|
|
73427
73925
|
cloudId: Scalars['ID']['input'];
|
|
73428
73926
|
commentText: Scalars['MercuryJSONString']['input'];
|
|
@@ -73749,7 +74247,6 @@ export declare type Mutation = {
|
|
|
73749
74247
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
73750
74248
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
73751
74249
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
73752
|
-
appRecommendations?: Maybe<AppRecMutation>;
|
|
73753
74250
|
appStorage?: Maybe<AppStorageMutation>;
|
|
73754
74251
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
73755
74252
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
@@ -74107,6 +74604,7 @@ export declare type Mutation = {
|
|
|
74107
74604
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
74108
74605
|
mercury?: Maybe<MercuryMutationApi>;
|
|
74109
74606
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
74607
|
+
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
74110
74608
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
74111
74609
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
74112
74610
|
movePageAfter?: Maybe<MovePagePayload>;
|
|
@@ -78564,15 +79062,14 @@ export declare type Query = {
|
|
|
78564
79062
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
78565
79063
|
appLogs?: Maybe<AppLogConnection>;
|
|
78566
79064
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
78567
|
-
appRecommendations?: Maybe<AppRecQuery>;
|
|
78568
79065
|
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
78569
79066
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
78570
79067
|
appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
|
|
78571
79068
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
78572
|
-
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
78573
79069
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
78574
79070
|
apps?: Maybe<AppConnection>;
|
|
78575
79071
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
79072
|
+
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
78576
79073
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
78577
79074
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
78578
79075
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
@@ -78816,6 +79313,7 @@ export declare type Query = {
|
|
|
78816
79313
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
78817
79314
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
78818
79315
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
79316
|
+
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
78819
79317
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
78820
79318
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
78821
79319
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -79040,6 +79538,7 @@ export declare type Query = {
|
|
|
79040
79538
|
me: AuthenticationContext;
|
|
79041
79539
|
mercury?: Maybe<MercuryQueryApi>;
|
|
79042
79540
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
79541
|
+
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
79043
79542
|
migration: MigrationQuery;
|
|
79044
79543
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
79045
79544
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -79348,12 +79847,6 @@ export declare type QueryAppStoredEntitiesArgs = {
|
|
|
79348
79847
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79349
79848
|
where?: InputMaybe<Array<AppStoredEntityFilter>>;
|
|
79350
79849
|
};
|
|
79351
|
-
export declare type QueryAppStoredEntitiesForCleanupArgs = {
|
|
79352
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
79353
|
-
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79354
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79355
|
-
where?: InputMaybe<Array<AppStoredEntityFilter>>;
|
|
79356
|
-
};
|
|
79357
79850
|
export declare type QueryAppStoredEntityArgs = {
|
|
79358
79851
|
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79359
79852
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79369,6 +79862,9 @@ export declare type QueryAppsArgs = {
|
|
|
79369
79862
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
79370
79863
|
cloudId: Scalars['ID']['input'];
|
|
79371
79864
|
};
|
|
79865
|
+
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
79866
|
+
cloudId: Scalars['ID']['input'];
|
|
79867
|
+
};
|
|
79372
79868
|
export declare type QueryAvailableContentStatesArgs = {
|
|
79373
79869
|
contentId: Scalars['ID']['input'];
|
|
79374
79870
|
};
|
|
@@ -80405,6 +80901,9 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
80405
80901
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
80406
80902
|
cloudId: Scalars['ID']['input'];
|
|
80407
80903
|
};
|
|
80904
|
+
export declare type QueryConfluence_EmptyArgs = {
|
|
80905
|
+
id: Scalars['ID']['input'];
|
|
80906
|
+
};
|
|
80408
80907
|
export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
80409
80908
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80410
80909
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -84205,6 +84704,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
84205
84704
|
experimentContext?: InputMaybe<SearchExperimentContextInput>;
|
|
84206
84705
|
filters: SearchFilterInput;
|
|
84207
84706
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84707
|
+
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84208
84708
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
84209
84709
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
84210
84710
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
@@ -84306,7 +84806,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
84306
84806
|
type: SearchResultType;
|
|
84307
84807
|
url: Scalars['URL']['output'];
|
|
84308
84808
|
};
|
|
84309
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
84809
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
84310
84810
|
export declare type SearchResultFederated = SearchResult & {
|
|
84311
84811
|
__typename?: 'SearchResultFederated';
|
|
84312
84812
|
description: Scalars['String']['output'];
|
|
@@ -84635,6 +85135,7 @@ export declare enum SearchSortOrder {
|
|
|
84635
85135
|
}
|
|
84636
85136
|
export declare type SearchThirdPartyFilter = {
|
|
84637
85137
|
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
85138
|
+
assignees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84638
85139
|
containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84639
85140
|
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84640
85141
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -87711,10 +88212,12 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
87711
88212
|
};
|
|
87712
88213
|
export declare type Subscription = {
|
|
87713
88214
|
__typename?: 'Subscription';
|
|
88215
|
+
confluence_onContentUpdated?: Maybe<ConfluenceContent>;
|
|
87714
88216
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
87715
88217
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
87716
88218
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
87717
88219
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
88220
|
+
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
87718
88221
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
87719
88222
|
jira?: Maybe<JiraSubscription>;
|
|
87720
88223
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
@@ -87725,6 +88228,9 @@ export declare type Subscription = {
|
|
|
87725
88228
|
testing?: Maybe<TestingSubscription>;
|
|
87726
88229
|
trello: TrelloSubscriptionApi;
|
|
87727
88230
|
};
|
|
88231
|
+
export declare type SubscriptionConfluence_OnContentUpdatedArgs = {
|
|
88232
|
+
id: Scalars['ID']['input'];
|
|
88233
|
+
};
|
|
87728
88234
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
87729
88235
|
cloudId: Scalars['ID']['input'];
|
|
87730
88236
|
jobId: Scalars['ID']['input'];
|
|
@@ -87737,6 +88243,10 @@ export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
|
87737
88243
|
cloudId: Scalars['ID']['input'];
|
|
87738
88244
|
jobId: Scalars['ID']['input'];
|
|
87739
88245
|
};
|
|
88246
|
+
export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
|
|
88247
|
+
cloudId: Scalars['ID']['input'];
|
|
88248
|
+
jobId: Scalars['ID']['input'];
|
|
88249
|
+
};
|
|
87740
88250
|
export declare enum SummaryType {
|
|
87741
88251
|
Blogpost = "BLOGPOST",
|
|
87742
88252
|
Page = "PAGE"
|
|
@@ -90376,6 +90886,7 @@ export declare type TrelloBoardUpdatedEdge = {
|
|
|
90376
90886
|
export declare type TrelloBoardViewer = {
|
|
90377
90887
|
__typename?: 'TrelloBoardViewer';
|
|
90378
90888
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
90889
|
+
aiMSTeamsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
90379
90890
|
aiSlackEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
90380
90891
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
90381
90892
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
@@ -90607,6 +91118,7 @@ export declare type TrelloCardEdge = {
|
|
|
90607
91118
|
};
|
|
90608
91119
|
export declare enum TrelloCardExternalSource {
|
|
90609
91120
|
Email = "EMAIL",
|
|
91121
|
+
Msteams = "MSTEAMS",
|
|
90610
91122
|
Siri = "SIRI",
|
|
90611
91123
|
Slack = "SLACK"
|
|
90612
91124
|
}
|
|
@@ -91206,6 +91718,7 @@ export declare type TrelloMutationApi = {
|
|
|
91206
91718
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
91207
91719
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
91208
91720
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
91721
|
+
updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
|
|
91209
91722
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
91210
91723
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
91211
91724
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
@@ -91262,6 +91775,9 @@ export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
|
91262
91775
|
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
91263
91776
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
91264
91777
|
};
|
|
91778
|
+
export declare type TrelloMutationApiUpdateBoardViewerAimsTeamsArgs = {
|
|
91779
|
+
input: TrelloUpdateBoardViewerAimsTeamsInput;
|
|
91780
|
+
};
|
|
91265
91781
|
export declare type TrelloMutationApiUpdateBoardViewerAiSlackArgs = {
|
|
91266
91782
|
input: TrelloUpdateBoardViewerAiSlackInput;
|
|
91267
91783
|
};
|
|
@@ -91329,8 +91845,8 @@ export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
|
91329
91845
|
};
|
|
91330
91846
|
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
91331
91847
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91848
|
+
filter?: InputMaybe<TrelloPlannerCalendarProviderCalendarsFilter>;
|
|
91332
91849
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91333
|
-
syncToken?: InputMaybe<Scalars['String']['input']>;
|
|
91334
91850
|
};
|
|
91335
91851
|
export declare type TrelloPlannerCalendarAccountConnection = {
|
|
91336
91852
|
__typename?: 'TrelloPlannerCalendarAccountConnection';
|
|
@@ -91486,6 +92002,7 @@ export declare type TrelloPlannerCalendarEventDeleted = {
|
|
|
91486
92002
|
export declare type TrelloPlannerCalendarEventEdge = {
|
|
91487
92003
|
__typename?: 'TrelloPlannerCalendarEventEdge';
|
|
91488
92004
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
92005
|
+
deletedEvent?: Maybe<TrelloPlannerCalendarEventDeleted>;
|
|
91489
92006
|
node?: Maybe<TrelloPlannerCalendarEvent>;
|
|
91490
92007
|
};
|
|
91491
92008
|
export declare type TrelloPlannerCalendarEventEdgeUpdated = {
|
|
@@ -91494,6 +92011,7 @@ export declare type TrelloPlannerCalendarEventEdgeUpdated = {
|
|
|
91494
92011
|
};
|
|
91495
92012
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
91496
92013
|
Accepted = "ACCEPTED",
|
|
92014
|
+
Cancelled = "CANCELLED",
|
|
91497
92015
|
Declined = "DECLINED",
|
|
91498
92016
|
NeedsAction = "NEEDS_ACTION",
|
|
91499
92017
|
Tentative = "TENTATIVE"
|
|
@@ -91517,8 +92035,12 @@ export declare enum TrelloPlannerCalendarEventVisibility {
|
|
|
91517
92035
|
export declare type TrelloPlannerCalendarEventsFilter = {
|
|
91518
92036
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
91519
92037
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
92038
|
+
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
91520
92039
|
};
|
|
91521
92040
|
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
92041
|
+
export declare type TrelloPlannerCalendarProviderCalendarsFilter = {
|
|
92042
|
+
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
92043
|
+
};
|
|
91522
92044
|
export declare type TrelloPlannerCalendarUpdated = {
|
|
91523
92045
|
__typename?: 'TrelloPlannerCalendarUpdated';
|
|
91524
92046
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
@@ -91820,6 +92342,7 @@ export declare type TrelloStickerUpdatedConnection = {
|
|
|
91820
92342
|
export declare type TrelloSubscriptionApi = {
|
|
91821
92343
|
__typename?: 'TrelloSubscriptionApi';
|
|
91822
92344
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
92345
|
+
onCardsUpdated?: Maybe<TrelloBoardUpdated>;
|
|
91823
92346
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
91824
92347
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
91825
92348
|
};
|
|
@@ -91827,6 +92350,10 @@ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
|
91827
92350
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
91828
92351
|
id: Scalars['ID']['input'];
|
|
91829
92352
|
};
|
|
92353
|
+
export declare type TrelloSubscriptionApiOnCardsUpdatedArgs = {
|
|
92354
|
+
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
92355
|
+
id: Scalars['ID']['input'];
|
|
92356
|
+
};
|
|
91830
92357
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
91831
92358
|
id: Scalars['ID']['input'];
|
|
91832
92359
|
};
|
|
@@ -91937,6 +92464,16 @@ export declare type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
|
91937
92464
|
success: Scalars['Boolean']['output'];
|
|
91938
92465
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
91939
92466
|
};
|
|
92467
|
+
export declare type TrelloUpdateBoardViewerAimsTeamsInput = {
|
|
92468
|
+
boardId: Scalars['ID']['input'];
|
|
92469
|
+
value: Scalars['Boolean']['input'];
|
|
92470
|
+
};
|
|
92471
|
+
export declare type TrelloUpdateBoardViewerAimsTeamsPayload = Payload & {
|
|
92472
|
+
__typename?: 'TrelloUpdateBoardViewerAIMSTeamsPayload';
|
|
92473
|
+
errors?: Maybe<Array<MutationError>>;
|
|
92474
|
+
success: Scalars['Boolean']['output'];
|
|
92475
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
92476
|
+
};
|
|
91940
92477
|
export declare type TrelloUpdateBoardViewerAiSlackInput = {
|
|
91941
92478
|
boardId: Scalars['ID']['input'];
|
|
91942
92479
|
value: Scalars['Boolean']['input'];
|