@forge/cli-shared 6.6.1-next.20 → 6.6.1-next.22
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 +17 -0
- package/out/graphql/graphql-types.d.ts +755 -143
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +47 -20
- package/package.json +7 -4
|
@@ -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,94 +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
|
-
export declare type AppRollout = {
|
|
1756
|
-
__typename?: 'AppRollout';
|
|
1757
|
-
appId: Scalars['ID']['output'];
|
|
1758
|
-
cancelledByAccountId?: Maybe<Scalars['String']['output']>;
|
|
1759
|
-
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1760
|
-
completedUpgradeCount: Scalars['Int']['output'];
|
|
1761
|
-
createdAt: Scalars['DateTime']['output'];
|
|
1762
|
-
createdByAccountId: Scalars['String']['output'];
|
|
1763
|
-
failedUpgradeCount: Scalars['Int']['output'];
|
|
1764
|
-
fromVersionId: Scalars['ID']['output'];
|
|
1765
|
-
id: Scalars['ID']['output'];
|
|
1766
|
-
pendingUpgradeCount: Scalars['Int']['output'];
|
|
1767
|
-
status: AppRolloutStatus;
|
|
1768
|
-
toVersionId: Scalars['ID']['output'];
|
|
1769
|
-
};
|
|
1770
|
-
export declare enum AppRolloutStatus {
|
|
1771
|
-
Cancelled = "CANCELLED",
|
|
1772
|
-
Complete = "COMPLETE",
|
|
1773
|
-
Running = "RUNNING"
|
|
1774
|
-
}
|
|
1775
1688
|
export declare type AppSecurityPoliciesPermission = {
|
|
1776
1689
|
__typename?: 'AppSecurityPoliciesPermission';
|
|
1777
1690
|
policies?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -2011,6 +1924,27 @@ export declare type AppVersionExtensions = {
|
|
|
2011
1924
|
__typename?: 'AppVersionExtensions';
|
|
2012
1925
|
nodes?: Maybe<Array<Maybe<AppVersionExtension>>>;
|
|
2013
1926
|
};
|
|
1927
|
+
export declare type AppVersionRollout = {
|
|
1928
|
+
__typename?: 'AppVersionRollout';
|
|
1929
|
+
appEnvironmentId: Scalars['ID']['output'];
|
|
1930
|
+
appId: Scalars['ID']['output'];
|
|
1931
|
+
cancelledByAccountId?: Maybe<Scalars['String']['output']>;
|
|
1932
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1933
|
+
completedUpgradeCount: Scalars['Int']['output'];
|
|
1934
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1935
|
+
createdByAccountId: Scalars['String']['output'];
|
|
1936
|
+
failedUpgradeCount: Scalars['Int']['output'];
|
|
1937
|
+
id: Scalars['ID']['output'];
|
|
1938
|
+
pendingUpgradeCount: Scalars['Int']['output'];
|
|
1939
|
+
sourceVersionId: Scalars['ID']['output'];
|
|
1940
|
+
status: AppVersionRolloutStatus;
|
|
1941
|
+
targetVersionId: Scalars['ID']['output'];
|
|
1942
|
+
};
|
|
1943
|
+
export declare enum AppVersionRolloutStatus {
|
|
1944
|
+
Cancelled = "CANCELLED",
|
|
1945
|
+
Complete = "COMPLETE",
|
|
1946
|
+
Running = "RUNNING"
|
|
1947
|
+
}
|
|
2014
1948
|
export declare type ApplyCompassScorecardToComponentPayload = Payload & {
|
|
2015
1949
|
__typename?: 'ApplyCompassScorecardToComponentPayload';
|
|
2016
1950
|
componentDetails?: Maybe<CompassComponent>;
|
|
@@ -2356,6 +2290,23 @@ export declare enum AtlassianProductHostingType {
|
|
|
2356
2290
|
DataCenter = "DATA_CENTER",
|
|
2357
2291
|
Server = "SERVER"
|
|
2358
2292
|
}
|
|
2293
|
+
export declare type AtlassianStudioUserProductPermissions = {
|
|
2294
|
+
__typename?: 'AtlassianStudioUserProductPermissions';
|
|
2295
|
+
isConfluenceGlobalAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2296
|
+
isJiraGlobalAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
2297
|
+
};
|
|
2298
|
+
export declare type AtlassianStudioUserSiteContextOutput = {
|
|
2299
|
+
__typename?: 'AtlassianStudioUserSiteContextOutput';
|
|
2300
|
+
isAssetsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2301
|
+
isCompanyHubAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2302
|
+
isConfluenceAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2303
|
+
isCustomAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2304
|
+
isJSMAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2305
|
+
isJiraAutomationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2306
|
+
isVirtualAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
2307
|
+
userPermissions?: Maybe<AtlassianStudioUserProductPermissions>;
|
|
2308
|
+
};
|
|
2309
|
+
export declare type AtlassianStudioUserSiteContextResult = AtlassianStudioUserSiteContextOutput | QueryError;
|
|
2359
2310
|
export declare type AtlassianUser = {
|
|
2360
2311
|
__typename?: 'AtlassianUser';
|
|
2361
2312
|
companyName?: Maybe<Scalars['String']['output']>;
|
|
@@ -3118,11 +3069,11 @@ export declare type CqlDisplayableType = {
|
|
|
3118
3069
|
label?: Maybe<Scalars['String']['output']>;
|
|
3119
3070
|
type?: Maybe<Scalars['String']['output']>;
|
|
3120
3071
|
};
|
|
3121
|
-
export declare type
|
|
3072
|
+
export declare type CancelAppVersionRolloutInput = {
|
|
3122
3073
|
id: Scalars['ID']['input'];
|
|
3123
3074
|
};
|
|
3124
|
-
export declare type
|
|
3125
|
-
__typename?: '
|
|
3075
|
+
export declare type CancelAppVersionRolloutPayload = Payload & {
|
|
3076
|
+
__typename?: 'CancelAppVersionRolloutPayload';
|
|
3126
3077
|
errors?: Maybe<Array<MutationError>>;
|
|
3127
3078
|
success: Scalars['Boolean']['output'];
|
|
3128
3079
|
};
|
|
@@ -3484,7 +3435,7 @@ export declare enum CcpEntitlementPreDunningStatus {
|
|
|
3484
3435
|
InPreDunning = "IN_PRE_DUNNING",
|
|
3485
3436
|
NotInPreDunning = "NOT_IN_PRE_DUNNING"
|
|
3486
3437
|
}
|
|
3487
|
-
export declare type CcpEntitlementRelationship = {
|
|
3438
|
+
export declare type CcpEntitlementRelationship = CommerceEntitlementRelationship & {
|
|
3488
3439
|
__typename?: 'CcpEntitlementRelationship';
|
|
3489
3440
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
3490
3441
|
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -4224,6 +4175,8 @@ export declare type CommerceEntitlement = {
|
|
|
4224
4175
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
4225
4176
|
offering?: Maybe<CommerceOffering>;
|
|
4226
4177
|
preDunning?: Maybe<CommerceEntitlementPreDunning>;
|
|
4178
|
+
relatesFromEntitlements?: Maybe<Array<Maybe<CommerceEntitlementRelationship>>>;
|
|
4179
|
+
relatesToEntitlements?: Maybe<Array<Maybe<CommerceEntitlementRelationship>>>;
|
|
4227
4180
|
subscription?: Maybe<CommerceSubscription>;
|
|
4228
4181
|
transactionAccount?: Maybe<CommerceTransactionAccount>;
|
|
4229
4182
|
};
|
|
@@ -4276,6 +4229,11 @@ export declare type CommerceEntitlementPreDunning = {
|
|
|
4276
4229
|
firstPreDunningEndTimestampV2?: Maybe<Scalars['Float']['output']>;
|
|
4277
4230
|
status?: Maybe<CcpEntitlementPreDunningStatus>;
|
|
4278
4231
|
};
|
|
4232
|
+
export declare type CommerceEntitlementRelationship = {
|
|
4233
|
+
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
4234
|
+
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
4235
|
+
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
4236
|
+
};
|
|
4279
4237
|
export declare type CommerceExperienceCapability = {
|
|
4280
4238
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
4281
4239
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -6002,12 +5960,12 @@ export declare type CompassCreateVulnerabilityEventInput = {
|
|
|
6002
5960
|
};
|
|
6003
5961
|
export declare type CompassCreateVulnerabilityEventPropertiesInput = {
|
|
6004
5962
|
discoverySource?: InputMaybe<Scalars['String']['input']>;
|
|
6005
|
-
discoveryTime: Scalars['DateTime']['input'];
|
|
6006
5963
|
id: Scalars['ID']['input'];
|
|
6007
5964
|
remediationTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6008
5965
|
score?: InputMaybe<Scalars['Float']['input']>;
|
|
6009
5966
|
severity: CompassVulnerabilityEventSeverityInput;
|
|
6010
5967
|
state: CompassVulnerabilityEventState;
|
|
5968
|
+
vulnerabilityStartTime: Scalars['DateTime']['input'];
|
|
6011
5969
|
vulnerableTarget?: InputMaybe<Scalars['String']['input']>;
|
|
6012
5970
|
};
|
|
6013
5971
|
export declare type CompassCreateWebhookInput = {
|
|
@@ -6560,7 +6518,7 @@ export declare type CompassDynamicScorecardCriteria = CompassScorecardCriteria &
|
|
|
6560
6518
|
id: Scalars['ID']['output'];
|
|
6561
6519
|
name?: Maybe<Scalars['String']['output']>;
|
|
6562
6520
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
6563
|
-
scoringStrategyRules
|
|
6521
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
6564
6522
|
weight: Scalars['Int']['output'];
|
|
6565
6523
|
};
|
|
6566
6524
|
export declare type CompassDynamicScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -8106,6 +8064,7 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
8106
8064
|
since: Scalars['DateTime']['output'];
|
|
8107
8065
|
};
|
|
8108
8066
|
export declare enum CompassScorecardScoringStrategyType {
|
|
8067
|
+
PercentageBased = "PERCENTAGE_BASED",
|
|
8109
8068
|
PointBased = "POINT_BASED",
|
|
8110
8069
|
WeightBased = "WEIGHT_BASED"
|
|
8111
8070
|
}
|
|
@@ -8708,12 +8667,13 @@ export declare type CompassVulnerabilityEvent = CompassEvent & {
|
|
|
8708
8667
|
export declare type CompassVulnerabilityEventProperties = {
|
|
8709
8668
|
__typename?: 'CompassVulnerabilityEventProperties';
|
|
8710
8669
|
discoverySource?: Maybe<Scalars['String']['output']>;
|
|
8711
|
-
discoveryTime
|
|
8670
|
+
discoveryTime?: Maybe<Scalars['DateTime']['output']>;
|
|
8712
8671
|
id: Scalars['ID']['output'];
|
|
8713
8672
|
remediationTime?: Maybe<Scalars['DateTime']['output']>;
|
|
8714
8673
|
score?: Maybe<Scalars['Float']['output']>;
|
|
8715
8674
|
severity?: Maybe<CompassVulnerabilityEventSeverity>;
|
|
8716
8675
|
state: Scalars['String']['output'];
|
|
8676
|
+
vulnerabilityStartTime?: Maybe<Scalars['DateTime']['output']>;
|
|
8717
8677
|
vulnerableTarget?: Maybe<Scalars['String']['output']>;
|
|
8718
8678
|
};
|
|
8719
8679
|
export declare type CompassVulnerabilityEventSeverity = {
|
|
@@ -8885,11 +8845,13 @@ export declare type ConfluenceBlogPost = {
|
|
|
8885
8845
|
blogPostId: Scalars['ID']['output'];
|
|
8886
8846
|
body?: Maybe<ConfluenceBodies>;
|
|
8887
8847
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
8848
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
8888
8849
|
id: Scalars['ID']['output'];
|
|
8889
8850
|
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
8890
8851
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
8891
8852
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
8892
8853
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
8854
|
+
nativeProperties?: Maybe<ConfluenceContentNativeProperties>;
|
|
8893
8855
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
8894
8856
|
properties?: Maybe<Array<Maybe<ConfluenceBlogPostProperty>>>;
|
|
8895
8857
|
space?: Maybe<ConfluenceSpace>;
|
|
@@ -9065,6 +9027,10 @@ export declare enum ConfluenceCommentType {
|
|
|
9065
9027
|
Footer = "FOOTER",
|
|
9066
9028
|
Inline = "INLINE"
|
|
9067
9029
|
}
|
|
9030
|
+
export declare type ConfluenceContent = {
|
|
9031
|
+
__typename?: 'ConfluenceContent';
|
|
9032
|
+
contentType: Scalars['String']['output'];
|
|
9033
|
+
};
|
|
9068
9034
|
export declare type ConfluenceContentBody = {
|
|
9069
9035
|
__typename?: 'ConfluenceContentBody';
|
|
9070
9036
|
adf?: Maybe<Scalars['String']['output']>;
|
|
@@ -9085,6 +9051,11 @@ export declare type ConfluenceContentMetadata = {
|
|
|
9085
9051
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
9086
9052
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
9087
9053
|
};
|
|
9054
|
+
export declare type ConfluenceContentNativeProperties = {
|
|
9055
|
+
__typename?: 'ConfluenceContentNativeProperties';
|
|
9056
|
+
current?: Maybe<ConfluenceCurrentContentNativeProperties>;
|
|
9057
|
+
draft?: Maybe<ConfluenceDraftContentNativeProperties>;
|
|
9058
|
+
};
|
|
9088
9059
|
export declare enum ConfluenceContentRepresentation {
|
|
9089
9060
|
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
9090
9061
|
Editor = "EDITOR",
|
|
@@ -9097,6 +9068,12 @@ export declare enum ConfluenceContentRepresentation {
|
|
|
9097
9068
|
View = "VIEW",
|
|
9098
9069
|
Wiki = "WIKI"
|
|
9099
9070
|
}
|
|
9071
|
+
export declare type ConfluenceContentState = {
|
|
9072
|
+
__typename?: 'ConfluenceContentState';
|
|
9073
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
9074
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
9075
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9076
|
+
};
|
|
9100
9077
|
export declare type ConfluenceContentTitleEmoji = {
|
|
9101
9078
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
9102
9079
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -9222,6 +9199,10 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
9222
9199
|
space?: Maybe<ConfluenceSpace>;
|
|
9223
9200
|
success: Scalars['Boolean']['output'];
|
|
9224
9201
|
};
|
|
9202
|
+
export declare type ConfluenceCurrentContentNativeProperties = {
|
|
9203
|
+
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
9204
|
+
contentState?: Maybe<ConfluenceContentState>;
|
|
9205
|
+
};
|
|
9225
9206
|
export declare type ConfluenceDatabase = {
|
|
9226
9207
|
__typename?: 'ConfluenceDatabase';
|
|
9227
9208
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -9337,6 +9318,10 @@ export declare type ConfluenceDeleteSubCalendarSingleEventPayload = Payload & {
|
|
|
9337
9318
|
errors?: Maybe<Array<MutationError>>;
|
|
9338
9319
|
success: Scalars['Boolean']['output'];
|
|
9339
9320
|
};
|
|
9321
|
+
export declare type ConfluenceDraftContentNativeProperties = {
|
|
9322
|
+
__typename?: 'ConfluenceDraftContentNativeProperties';
|
|
9323
|
+
contentState?: Maybe<ConfluenceContentState>;
|
|
9324
|
+
};
|
|
9340
9325
|
export declare enum ConfluenceEdition {
|
|
9341
9326
|
Free = "FREE",
|
|
9342
9327
|
Premium = "PREMIUM",
|
|
@@ -15286,12 +15271,14 @@ export declare type ConfluencePage = {
|
|
|
15286
15271
|
body?: Maybe<ConfluenceBodies>;
|
|
15287
15272
|
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
15288
15273
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
15274
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15289
15275
|
id: Scalars['ID']['output'];
|
|
15290
15276
|
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
15291
15277
|
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
15292
15278
|
likesSummary?: Maybe<ConfluenceLikesSummary>;
|
|
15293
15279
|
links?: Maybe<ConfluencePageLinks>;
|
|
15294
15280
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
15281
|
+
nativeProperties?: Maybe<ConfluenceContentNativeProperties>;
|
|
15295
15282
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
15296
15283
|
pageId: Scalars['ID']['output'];
|
|
15297
15284
|
properties?: Maybe<Array<Maybe<ConfluencePageProperty>>>;
|
|
@@ -17833,6 +17820,7 @@ export declare type ContentPlatformPricing = {
|
|
|
17833
17820
|
headline?: Maybe<Scalars['String']['output']>;
|
|
17834
17821
|
pageDescription?: Maybe<Scalars['String']['output']>;
|
|
17835
17822
|
pricingTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
17823
|
+
pricingTitleInternal: Scalars['String']['output'];
|
|
17836
17824
|
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
17837
17825
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
17838
17826
|
};
|
|
@@ -18739,17 +18727,6 @@ export declare type CreateAppResponse = Payload & {
|
|
|
18739
18727
|
errors?: Maybe<Array<MutationError>>;
|
|
18740
18728
|
success: Scalars['Boolean']['output'];
|
|
18741
18729
|
};
|
|
18742
|
-
export declare type CreateAppRolloutInput = {
|
|
18743
|
-
appId: Scalars['ID']['input'];
|
|
18744
|
-
fromVersionId: Scalars['ID']['input'];
|
|
18745
|
-
toVersionId: Scalars['ID']['input'];
|
|
18746
|
-
};
|
|
18747
|
-
export declare type CreateAppRolloutPayload = Payload & {
|
|
18748
|
-
__typename?: 'CreateAppRolloutPayload';
|
|
18749
|
-
appRollout?: Maybe<AppRollout>;
|
|
18750
|
-
errors?: Maybe<Array<MutationError>>;
|
|
18751
|
-
success: Scalars['Boolean']['output'];
|
|
18752
|
-
};
|
|
18753
18730
|
export declare type CreateAppTunnelResponse = Payload & {
|
|
18754
18731
|
__typename?: 'CreateAppTunnelResponse';
|
|
18755
18732
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -18763,6 +18740,18 @@ export declare type CreateAppTunnelsInput = {
|
|
|
18763
18740
|
force?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18764
18741
|
tunnelDefinitions: TunnelDefinitionsInput;
|
|
18765
18742
|
};
|
|
18743
|
+
export declare type CreateAppVersionRolloutInput = {
|
|
18744
|
+
appEnvironmentId: Scalars['ID']['input'];
|
|
18745
|
+
appId: Scalars['ID']['input'];
|
|
18746
|
+
sourceVersionId: Scalars['ID']['input'];
|
|
18747
|
+
targetVersionId: Scalars['ID']['input'];
|
|
18748
|
+
};
|
|
18749
|
+
export declare type CreateAppVersionRolloutPayload = Payload & {
|
|
18750
|
+
__typename?: 'CreateAppVersionRolloutPayload';
|
|
18751
|
+
appVersionRollout?: Maybe<AppVersionRollout>;
|
|
18752
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18753
|
+
success: Scalars['Boolean']['output'];
|
|
18754
|
+
};
|
|
18766
18755
|
export declare type CreateCardsOutput = {
|
|
18767
18756
|
__typename?: 'CreateCardsOutput';
|
|
18768
18757
|
boardScope?: Maybe<BoardScope>;
|
|
@@ -18899,6 +18888,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
18899
18888
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
18900
18889
|
metricDefinitionId: Scalars['ID']['input'];
|
|
18901
18890
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
18891
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
18902
18892
|
weight: Scalars['Int']['input'];
|
|
18903
18893
|
};
|
|
18904
18894
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
@@ -21310,9 +21300,16 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
21310
21300
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
21311
21301
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
21312
21302
|
};
|
|
21303
|
+
export declare type DevAiInvokeAutodevRovoAgentInBulkIssueResult = {
|
|
21304
|
+
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkIssueResult';
|
|
21305
|
+
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
21306
|
+
issueId?: Maybe<Scalars['ID']['output']>;
|
|
21307
|
+
};
|
|
21313
21308
|
export declare type DevAiInvokeAutodevRovoAgentInBulkPayload = Payload & {
|
|
21314
21309
|
__typename?: 'DevAiInvokeAutodevRovoAgentInBulkPayload';
|
|
21315
21310
|
errors?: Maybe<Array<MutationError>>;
|
|
21311
|
+
failedIssues?: Maybe<Array<Maybe<DevAiInvokeAutodevRovoAgentInBulkIssueResult>>>;
|
|
21312
|
+
succeededIssues?: Maybe<Array<Maybe<DevAiInvokeAutodevRovoAgentInBulkIssueResult>>>;
|
|
21316
21313
|
success: Scalars['Boolean']['output'];
|
|
21317
21314
|
};
|
|
21318
21315
|
export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
@@ -23447,9 +23444,9 @@ export declare type EcosystemMutation = {
|
|
|
23447
23444
|
__typename?: 'EcosystemMutation';
|
|
23448
23445
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
23449
23446
|
addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
|
|
23450
|
-
|
|
23447
|
+
cancelAppVersionRollout?: Maybe<CancelAppVersionRolloutPayload>;
|
|
23451
23448
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
23452
|
-
|
|
23449
|
+
createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
|
|
23453
23450
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
23454
23451
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
23455
23452
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
@@ -23471,14 +23468,14 @@ export declare type EcosystemMutationAddAppContributorArgs = {
|
|
|
23471
23468
|
export declare type EcosystemMutationAddMultipleAppContributorArgs = {
|
|
23472
23469
|
input: AddMultipleAppContributorInput;
|
|
23473
23470
|
};
|
|
23474
|
-
export declare type
|
|
23475
|
-
input:
|
|
23471
|
+
export declare type EcosystemMutationCancelAppVersionRolloutArgs = {
|
|
23472
|
+
input: CancelAppVersionRolloutInput;
|
|
23476
23473
|
};
|
|
23477
23474
|
export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
23478
23475
|
input: CreateAppEnvironmentInput;
|
|
23479
23476
|
};
|
|
23480
|
-
export declare type
|
|
23481
|
-
input:
|
|
23477
|
+
export declare type EcosystemMutationCreateAppVersionRolloutArgs = {
|
|
23478
|
+
input: CreateAppVersionRolloutInput;
|
|
23482
23479
|
};
|
|
23483
23480
|
export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
23484
23481
|
input: DeleteAppEnvironmentInput;
|
|
@@ -23543,7 +23540,7 @@ export declare type EcosystemQuery = {
|
|
|
23543
23540
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
23544
23541
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
23545
23542
|
appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
|
|
23546
|
-
|
|
23543
|
+
appVersionRollout?: Maybe<AppVersionRollout>;
|
|
23547
23544
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
23548
23545
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
23549
23546
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
@@ -23581,7 +23578,7 @@ export declare type EcosystemQueryAppInstallationsByContextArgs = {
|
|
|
23581
23578
|
export declare type EcosystemQueryAppPoliciesByAppIdsArgs = {
|
|
23582
23579
|
appIds: Array<Scalars['ID']['input']>;
|
|
23583
23580
|
};
|
|
23584
|
-
export declare type
|
|
23581
|
+
export declare type EcosystemQueryAppVersionRolloutArgs = {
|
|
23585
23582
|
id: Scalars['ID']['input'];
|
|
23586
23583
|
};
|
|
23587
23584
|
export declare type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
@@ -29950,6 +29947,8 @@ export declare type GraphStore = {
|
|
|
29950
29947
|
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
29951
29948
|
atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
|
|
29952
29949
|
atlasGoalHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerInverseConnection>;
|
|
29950
|
+
atlasGoalHasGoalUpdate?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateConnection>;
|
|
29951
|
+
atlasGoalHasGoalUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseConnection>;
|
|
29953
29952
|
atlasGoalHasOwner?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerConnection>;
|
|
29954
29953
|
atlasGoalHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerInverseConnection>;
|
|
29955
29954
|
atlasGoalHasSubAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasGoalHasSubAtlasGoalConnection>;
|
|
@@ -29969,6 +29968,8 @@ export declare type GraphStore = {
|
|
|
29969
29968
|
atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
|
|
29970
29969
|
atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
|
|
29971
29970
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
29971
|
+
atlasProjectHasProjectUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection>;
|
|
29972
|
+
atlasProjectHasProjectUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection>;
|
|
29972
29973
|
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
29973
29974
|
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
29974
29975
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
@@ -30433,6 +30434,8 @@ export declare type GraphStore = {
|
|
|
30433
30434
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
30434
30435
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
30435
30436
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
30437
|
+
userCreatedLoomVideoComment?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentConnection>;
|
|
30438
|
+
userCreatedLoomVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseConnection>;
|
|
30436
30439
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
30437
30440
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
30438
30441
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
@@ -30498,6 +30501,8 @@ export declare type GraphStore = {
|
|
|
30498
30501
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
30499
30502
|
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
30500
30503
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
30504
|
+
userTaggedInLoomVideoComment?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentConnection>;
|
|
30505
|
+
userTaggedInLoomVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseConnection>;
|
|
30501
30506
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
30502
30507
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
30503
30508
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
@@ -30573,6 +30578,8 @@ export declare type GraphStore = {
|
|
|
30573
30578
|
versionUserAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseConnection>;
|
|
30574
30579
|
versionUserAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagConnection>;
|
|
30575
30580
|
versionUserAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagConnection>;
|
|
30581
|
+
videoHasComment?: Maybe<GraphStoreSimplifiedVideoHasCommentConnection>;
|
|
30582
|
+
videoHasCommentInverse?: Maybe<GraphStoreSimplifiedVideoHasCommentInverseConnection>;
|
|
30576
30583
|
vulnerabilityAssociatedIssue?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection>;
|
|
30577
30584
|
vulnerabilityAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseConnection>;
|
|
30578
30585
|
vulnerabilityAssociatedIssueInverseRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
@@ -30626,6 +30633,20 @@ export declare type GraphStoreAtlasGoalHasFollowerInverseArgs = {
|
|
|
30626
30633
|
id: Scalars['ID']['input'];
|
|
30627
30634
|
sort?: InputMaybe<GraphStoreAtlasGoalHasFollowerSortInput>;
|
|
30628
30635
|
};
|
|
30636
|
+
export declare type GraphStoreAtlasGoalHasGoalUpdateArgs = {
|
|
30637
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30638
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30639
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30640
|
+
id: Scalars['ID']['input'];
|
|
30641
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasGoalUpdateSortInput>;
|
|
30642
|
+
};
|
|
30643
|
+
export declare type GraphStoreAtlasGoalHasGoalUpdateInverseArgs = {
|
|
30644
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30645
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30646
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30647
|
+
id: Scalars['ID']['input'];
|
|
30648
|
+
sort?: InputMaybe<GraphStoreAtlasGoalHasGoalUpdateSortInput>;
|
|
30649
|
+
};
|
|
30629
30650
|
export declare type GraphStoreAtlasGoalHasOwnerArgs = {
|
|
30630
30651
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30631
30652
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30754,6 +30775,20 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
|
30754
30775
|
id: Scalars['ID']['input'];
|
|
30755
30776
|
sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
|
|
30756
30777
|
};
|
|
30778
|
+
export declare type GraphStoreAtlasProjectHasProjectUpdateArgs = {
|
|
30779
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30780
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30781
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30782
|
+
id: Scalars['ID']['input'];
|
|
30783
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasProjectUpdateSortInput>;
|
|
30784
|
+
};
|
|
30785
|
+
export declare type GraphStoreAtlasProjectHasProjectUpdateInverseArgs = {
|
|
30786
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30787
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30789
|
+
id: Scalars['ID']['input'];
|
|
30790
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasProjectUpdateSortInput>;
|
|
30791
|
+
};
|
|
30757
30792
|
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
30758
30793
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30759
30794
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33771,6 +33806,20 @@ export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
|
33771
33806
|
id: Scalars['ID']['input'];
|
|
33772
33807
|
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoSortInput>;
|
|
33773
33808
|
};
|
|
33809
|
+
export declare type GraphStoreUserCreatedLoomVideoCommentArgs = {
|
|
33810
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33811
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33812
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33813
|
+
id: Scalars['ID']['input'];
|
|
33814
|
+
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoCommentSortInput>;
|
|
33815
|
+
};
|
|
33816
|
+
export declare type GraphStoreUserCreatedLoomVideoCommentInverseArgs = {
|
|
33817
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33818
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33819
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33820
|
+
id: Scalars['ID']['input'];
|
|
33821
|
+
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoCommentSortInput>;
|
|
33822
|
+
};
|
|
33774
33823
|
export declare type GraphStoreUserCreatedLoomVideoInverseArgs = {
|
|
33775
33824
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33776
33825
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34228,6 +34277,20 @@ export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
|
34228
34277
|
id: Scalars['ID']['input'];
|
|
34229
34278
|
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
34230
34279
|
};
|
|
34280
|
+
export declare type GraphStoreUserTaggedInLoomVideoCommentArgs = {
|
|
34281
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34282
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34283
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34284
|
+
id: Scalars['ID']['input'];
|
|
34285
|
+
sort?: InputMaybe<GraphStoreUserTaggedInLoomVideoCommentSortInput>;
|
|
34286
|
+
};
|
|
34287
|
+
export declare type GraphStoreUserTaggedInLoomVideoCommentInverseArgs = {
|
|
34288
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34289
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34290
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34291
|
+
id: Scalars['ID']['input'];
|
|
34292
|
+
sort?: InputMaybe<GraphStoreUserTaggedInLoomVideoCommentSortInput>;
|
|
34293
|
+
};
|
|
34231
34294
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
34232
34295
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34233
34296
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34719,6 +34782,20 @@ export declare type GraphStoreVersionUserAssociatedFeatureFlagRelationshipArgs =
|
|
|
34719
34782
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34720
34783
|
id: Scalars['ID']['input'];
|
|
34721
34784
|
};
|
|
34785
|
+
export declare type GraphStoreVideoHasCommentArgs = {
|
|
34786
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34787
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34789
|
+
id: Scalars['ID']['input'];
|
|
34790
|
+
sort?: InputMaybe<GraphStoreVideoHasCommentSortInput>;
|
|
34791
|
+
};
|
|
34792
|
+
export declare type GraphStoreVideoHasCommentInverseArgs = {
|
|
34793
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34794
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34795
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34796
|
+
id: Scalars['ID']['input'];
|
|
34797
|
+
sort?: InputMaybe<GraphStoreVideoHasCommentSortInput>;
|
|
34798
|
+
};
|
|
34722
34799
|
export declare type GraphStoreVulnerabilityAssociatedIssueArgs = {
|
|
34723
34800
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34724
34801
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34779,6 +34856,9 @@ export declare type GraphStoreAtlasGoalHasContributorSortInput = {
|
|
|
34779
34856
|
export declare type GraphStoreAtlasGoalHasFollowerSortInput = {
|
|
34780
34857
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34781
34858
|
};
|
|
34859
|
+
export declare type GraphStoreAtlasGoalHasGoalUpdateSortInput = {
|
|
34860
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34861
|
+
};
|
|
34782
34862
|
export declare type GraphStoreAtlasGoalHasOwnerSortInput = {
|
|
34783
34863
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34784
34864
|
};
|
|
@@ -34931,6 +35011,9 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
|
|
|
34931
35011
|
export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
34932
35012
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34933
35013
|
};
|
|
35014
|
+
export declare type GraphStoreAtlasProjectHasProjectUpdateSortInput = {
|
|
35015
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35016
|
+
};
|
|
34934
35017
|
export declare type GraphStoreAtlasProjectHasUpdateConditionalFilterInput = {
|
|
34935
35018
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
34936
35019
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -36995,11 +37078,13 @@ export declare type GraphStoreFullIncidentLinkedJswIssueStartNode = {
|
|
|
36995
37078
|
id: Scalars['ID']['output'];
|
|
36996
37079
|
};
|
|
36997
37080
|
export declare type GraphStoreFullIncidentLinkedJswIssueStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
36998
|
-
export declare type GraphStoreFullIssueAssociatedBranchConnection = HasPageInfo & {
|
|
37081
|
+
export declare type GraphStoreFullIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
36999
37082
|
__typename?: 'GraphStoreFullIssueAssociatedBranchConnection';
|
|
37000
37083
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedBranchEdge>>;
|
|
37084
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37001
37085
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedBranchNode>>;
|
|
37002
37086
|
pageInfo: PageInfo;
|
|
37087
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37003
37088
|
};
|
|
37004
37089
|
export declare type GraphStoreFullIssueAssociatedBranchEdge = {
|
|
37005
37090
|
__typename?: 'GraphStoreFullIssueAssociatedBranchEdge';
|
|
@@ -37079,11 +37164,13 @@ export declare type GraphStoreFullIssueAssociatedBuildTestInfoOutput = {
|
|
|
37079
37164
|
numberSkipped?: Maybe<Scalars['Long']['output']>;
|
|
37080
37165
|
totalNumber?: Maybe<Scalars['Long']['output']>;
|
|
37081
37166
|
};
|
|
37082
|
-
export declare type GraphStoreFullIssueAssociatedCommitConnection = HasPageInfo & {
|
|
37167
|
+
export declare type GraphStoreFullIssueAssociatedCommitConnection = HasPageInfo & HasTotal & {
|
|
37083
37168
|
__typename?: 'GraphStoreFullIssueAssociatedCommitConnection';
|
|
37084
37169
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedCommitEdge>>;
|
|
37170
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37085
37171
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedCommitNode>>;
|
|
37086
37172
|
pageInfo: PageInfo;
|
|
37173
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37087
37174
|
};
|
|
37088
37175
|
export declare type GraphStoreFullIssueAssociatedCommitEdge = {
|
|
37089
37176
|
__typename?: 'GraphStoreFullIssueAssociatedCommitEdge';
|
|
@@ -37224,11 +37311,13 @@ export declare type GraphStoreFullIssueAssociatedDesignStartNode = {
|
|
|
37224
37311
|
id: Scalars['ID']['output'];
|
|
37225
37312
|
};
|
|
37226
37313
|
export declare type GraphStoreFullIssueAssociatedDesignStartUnion = JiraIssue;
|
|
37227
|
-
export declare type GraphStoreFullIssueAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
37314
|
+
export declare type GraphStoreFullIssueAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
37228
37315
|
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagConnection';
|
|
37229
37316
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedFeatureFlagEdge>>;
|
|
37317
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37230
37318
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedFeatureFlagNode>>;
|
|
37231
37319
|
pageInfo: PageInfo;
|
|
37320
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37232
37321
|
};
|
|
37233
37322
|
export declare type GraphStoreFullIssueAssociatedFeatureFlagEdge = {
|
|
37234
37323
|
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagEdge';
|
|
@@ -37331,11 +37420,13 @@ export declare type GraphStoreFullIssueAssociatedPrAuthorOutput = {
|
|
|
37331
37420
|
__typename?: 'GraphStoreFullIssueAssociatedPrAuthorOutput';
|
|
37332
37421
|
authorAri?: Maybe<Scalars['String']['output']>;
|
|
37333
37422
|
};
|
|
37334
|
-
export declare type GraphStoreFullIssueAssociatedPrConnection = HasPageInfo & {
|
|
37423
|
+
export declare type GraphStoreFullIssueAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
37335
37424
|
__typename?: 'GraphStoreFullIssueAssociatedPrConnection';
|
|
37336
37425
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedPrEdge>>;
|
|
37426
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37337
37427
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedPrNode>>;
|
|
37338
37428
|
pageInfo: PageInfo;
|
|
37429
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37339
37430
|
};
|
|
37340
37431
|
export declare type GraphStoreFullIssueAssociatedPrEdge = {
|
|
37341
37432
|
__typename?: 'GraphStoreFullIssueAssociatedPrEdge';
|
|
@@ -37388,11 +37479,13 @@ export declare type GraphStoreFullIssueAssociatedPrStartNode = {
|
|
|
37388
37479
|
id: Scalars['ID']['output'];
|
|
37389
37480
|
};
|
|
37390
37481
|
export declare type GraphStoreFullIssueAssociatedPrStartUnion = JiraIssue;
|
|
37391
|
-
export declare type GraphStoreFullIssueAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
37482
|
+
export declare type GraphStoreFullIssueAssociatedRemoteLinkConnection = HasPageInfo & HasTotal & {
|
|
37392
37483
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkConnection';
|
|
37393
37484
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedRemoteLinkEdge>>;
|
|
37485
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
37394
37486
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedRemoteLinkNode>>;
|
|
37395
37487
|
pageInfo: PageInfo;
|
|
37488
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37396
37489
|
};
|
|
37397
37490
|
export declare type GraphStoreFullIssueAssociatedRemoteLinkEdge = {
|
|
37398
37491
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkEdge';
|
|
@@ -39880,11 +39973,13 @@ export declare type GraphStoreFullVersionAssociatedPullRequestStartNode = {
|
|
|
39880
39973
|
id: Scalars['ID']['output'];
|
|
39881
39974
|
};
|
|
39882
39975
|
export declare type GraphStoreFullVersionAssociatedPullRequestStartUnion = JiraVersion;
|
|
39883
|
-
export declare type GraphStoreFullVersionAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
39976
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkConnection = HasPageInfo & HasTotal & {
|
|
39884
39977
|
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkConnection';
|
|
39885
39978
|
edges: Array<Maybe<GraphStoreFullVersionAssociatedRemoteLinkEdge>>;
|
|
39979
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39886
39980
|
nodes: Array<Maybe<GraphStoreFullVersionAssociatedRemoteLinkNode>>;
|
|
39887
39981
|
pageInfo: PageInfo;
|
|
39982
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39888
39983
|
};
|
|
39889
39984
|
export declare type GraphStoreFullVersionAssociatedRemoteLinkEdge = {
|
|
39890
39985
|
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkEdge';
|
|
@@ -40054,13 +40149,19 @@ export declare type GraphStoreIntFilterInput = {
|
|
|
40054
40149
|
lessThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
40055
40150
|
};
|
|
40056
40151
|
export declare type GraphStoreIssueAssociatedBranchSortInput = {
|
|
40152
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40153
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40057
40154
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40155
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40058
40156
|
};
|
|
40059
40157
|
export declare type GraphStoreIssueAssociatedBuildSortInput = {
|
|
40060
40158
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40061
40159
|
};
|
|
40062
40160
|
export declare type GraphStoreIssueAssociatedCommitSortInput = {
|
|
40161
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40162
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40063
40163
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40164
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40064
40165
|
};
|
|
40065
40166
|
export declare type GraphStoreIssueAssociatedDeploymentAuthorFilterInput = {
|
|
40066
40167
|
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>>>;
|
|
@@ -40122,16 +40223,36 @@ export declare type GraphStoreIssueAssociatedDesignSortInput = {
|
|
|
40122
40223
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40123
40224
|
};
|
|
40124
40225
|
export declare type GraphStoreIssueAssociatedFeatureFlagSortInput = {
|
|
40226
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40227
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40125
40228
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40229
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40126
40230
|
};
|
|
40127
40231
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkSortInput = {
|
|
40128
40232
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40129
40233
|
};
|
|
40234
|
+
export declare type GraphStoreIssueAssociatedPrAuthorSortInput = {
|
|
40235
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
40236
|
+
};
|
|
40237
|
+
export declare type GraphStoreIssueAssociatedPrReviewerSortInput = {
|
|
40238
|
+
approvalStatus?: InputMaybe<GraphStoreSortInput>;
|
|
40239
|
+
reviewerAri?: InputMaybe<GraphStoreSortInput>;
|
|
40240
|
+
};
|
|
40130
40241
|
export declare type GraphStoreIssueAssociatedPrSortInput = {
|
|
40242
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40243
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40131
40244
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40245
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40246
|
+
to_author?: InputMaybe<GraphStoreIssueAssociatedPrAuthorSortInput>;
|
|
40247
|
+
to_reviewers?: InputMaybe<GraphStoreIssueAssociatedPrReviewerSortInput>;
|
|
40248
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
40249
|
+
to_taskCount?: InputMaybe<GraphStoreSortInput>;
|
|
40132
40250
|
};
|
|
40133
40251
|
export declare type GraphStoreIssueAssociatedRemoteLinkSortInput = {
|
|
40252
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
40253
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
40134
40254
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
40255
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40135
40256
|
};
|
|
40136
40257
|
export declare type GraphStoreIssueChangesComponentSortInput = {
|
|
40137
40258
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41142,6 +41263,34 @@ export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseEdge = {
|
|
|
41142
41263
|
};
|
|
41143
41264
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerInverseUnion = TownsquareGoal;
|
|
41144
41265
|
export declare type GraphStoreSimplifiedAtlasGoalHasFollowerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41266
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateConnection = HasPageInfo & {
|
|
41267
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasGoalUpdateConnection';
|
|
41268
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateEdge>>>;
|
|
41269
|
+
pageInfo: PageInfo;
|
|
41270
|
+
};
|
|
41271
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateEdge = {
|
|
41272
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasGoalUpdateEdge';
|
|
41273
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41274
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41275
|
+
id: Scalars['ID']['output'];
|
|
41276
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41277
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateUnion>;
|
|
41278
|
+
};
|
|
41279
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseConnection = HasPageInfo & {
|
|
41280
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseConnection';
|
|
41281
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseEdge>>>;
|
|
41282
|
+
pageInfo: PageInfo;
|
|
41283
|
+
};
|
|
41284
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseEdge = {
|
|
41285
|
+
__typename?: 'GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseEdge';
|
|
41286
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41287
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41288
|
+
id: Scalars['ID']['output'];
|
|
41289
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41290
|
+
node?: Maybe<GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseUnion>;
|
|
41291
|
+
};
|
|
41292
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateInverseUnion = TownsquareGoal;
|
|
41293
|
+
export declare type GraphStoreSimplifiedAtlasGoalHasGoalUpdateUnion = TownsquareGoalUpdate;
|
|
41145
41294
|
export declare type GraphStoreSimplifiedAtlasGoalHasOwnerConnection = HasPageInfo & {
|
|
41146
41295
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasOwnerConnection';
|
|
41147
41296
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasOwnerEdge>>>;
|
|
@@ -41370,6 +41519,34 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
|
41370
41519
|
};
|
|
41371
41520
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
41372
41521
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41522
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection = HasPageInfo & {
|
|
41523
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasProjectUpdateConnection';
|
|
41524
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateEdge>>>;
|
|
41525
|
+
pageInfo: PageInfo;
|
|
41526
|
+
};
|
|
41527
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateEdge = {
|
|
41528
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasProjectUpdateEdge';
|
|
41529
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41530
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41531
|
+
id: Scalars['ID']['output'];
|
|
41532
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41533
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateUnion>;
|
|
41534
|
+
};
|
|
41535
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection = HasPageInfo & {
|
|
41536
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseConnection';
|
|
41537
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge>>>;
|
|
41538
|
+
pageInfo: PageInfo;
|
|
41539
|
+
};
|
|
41540
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge = {
|
|
41541
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseEdge';
|
|
41542
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41543
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41544
|
+
id: Scalars['ID']['output'];
|
|
41545
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41546
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseUnion>;
|
|
41547
|
+
};
|
|
41548
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateInverseUnion = TownsquareProject;
|
|
41549
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasProjectUpdateUnion = TownsquareProjectUpdate;
|
|
41373
41550
|
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & HasTotal & {
|
|
41374
41551
|
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
41375
41552
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
@@ -42346,10 +42523,12 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge = {
|
|
|
42346
42523
|
};
|
|
42347
42524
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
42348
42525
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueUnion = JiraIssue;
|
|
42349
|
-
export declare type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & {
|
|
42526
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
42350
42527
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
|
|
42351
42528
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchEdge>>>;
|
|
42529
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42352
42530
|
pageInfo: PageInfo;
|
|
42531
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42353
42532
|
};
|
|
42354
42533
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchEdge = {
|
|
42355
42534
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchEdge';
|
|
@@ -42359,10 +42538,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedBranchEdge = {
|
|
|
42359
42538
|
lastUpdated: Scalars['DateTime']['output'];
|
|
42360
42539
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchUnion>;
|
|
42361
42540
|
};
|
|
42362
|
-
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & {
|
|
42541
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
42363
42542
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseConnection';
|
|
42364
42543
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseEdge>>>;
|
|
42544
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42365
42545
|
pageInfo: PageInfo;
|
|
42546
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42366
42547
|
};
|
|
42367
42548
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
42368
42549
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseEdge';
|
|
@@ -42402,10 +42583,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseEdge = {
|
|
|
42402
42583
|
};
|
|
42403
42584
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseUnion = JiraIssue;
|
|
42404
42585
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildUnion = ExternalBuildInfo;
|
|
42405
|
-
export declare type GraphStoreSimplifiedIssueAssociatedCommitConnection = HasPageInfo & {
|
|
42586
|
+
export declare type GraphStoreSimplifiedIssueAssociatedCommitConnection = HasPageInfo & HasTotal & {
|
|
42406
42587
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitConnection';
|
|
42407
42588
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedCommitEdge>>>;
|
|
42589
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42408
42590
|
pageInfo: PageInfo;
|
|
42591
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42409
42592
|
};
|
|
42410
42593
|
export declare type GraphStoreSimplifiedIssueAssociatedCommitEdge = {
|
|
42411
42594
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitEdge';
|
|
@@ -42415,10 +42598,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedCommitEdge = {
|
|
|
42415
42598
|
lastUpdated: Scalars['DateTime']['output'];
|
|
42416
42599
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitUnion>;
|
|
42417
42600
|
};
|
|
42418
|
-
export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseConnection = HasPageInfo & {
|
|
42601
|
+
export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseConnection = HasPageInfo & HasTotal & {
|
|
42419
42602
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitInverseConnection';
|
|
42420
42603
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseEdge>>>;
|
|
42604
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42421
42605
|
pageInfo: PageInfo;
|
|
42606
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42422
42607
|
};
|
|
42423
42608
|
export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
|
|
42424
42609
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitInverseEdge';
|
|
@@ -42490,10 +42675,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseEdge = {
|
|
|
42490
42675
|
};
|
|
42491
42676
|
export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseUnion = JiraIssue;
|
|
42492
42677
|
export declare type GraphStoreSimplifiedIssueAssociatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
42493
|
-
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
42678
|
+
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
42494
42679
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagConnection';
|
|
42495
42680
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge>>>;
|
|
42681
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42496
42682
|
pageInfo: PageInfo;
|
|
42683
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42497
42684
|
};
|
|
42498
42685
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge = {
|
|
42499
42686
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge';
|
|
@@ -42503,10 +42690,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge = {
|
|
|
42503
42690
|
lastUpdated: Scalars['DateTime']['output'];
|
|
42504
42691
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion>;
|
|
42505
42692
|
};
|
|
42506
|
-
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection = HasPageInfo & {
|
|
42693
|
+
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection = HasPageInfo & HasTotal & {
|
|
42507
42694
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection';
|
|
42508
42695
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge>>>;
|
|
42696
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42509
42697
|
pageInfo: PageInfo;
|
|
42698
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42510
42699
|
};
|
|
42511
42700
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge = {
|
|
42512
42701
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge';
|
|
@@ -42546,10 +42735,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdg
|
|
|
42546
42735
|
};
|
|
42547
42736
|
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion = JiraIssue;
|
|
42548
42737
|
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkUnion = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
42549
|
-
export declare type GraphStoreSimplifiedIssueAssociatedPrConnection = HasPageInfo & {
|
|
42738
|
+
export declare type GraphStoreSimplifiedIssueAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
42550
42739
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrConnection';
|
|
42551
42740
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedPrEdge>>>;
|
|
42741
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42552
42742
|
pageInfo: PageInfo;
|
|
42743
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42553
42744
|
};
|
|
42554
42745
|
export declare type GraphStoreSimplifiedIssueAssociatedPrEdge = {
|
|
42555
42746
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrEdge';
|
|
@@ -42559,10 +42750,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrEdge = {
|
|
|
42559
42750
|
lastUpdated: Scalars['DateTime']['output'];
|
|
42560
42751
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrUnion>;
|
|
42561
42752
|
};
|
|
42562
|
-
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseConnection = HasPageInfo & {
|
|
42753
|
+
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseConnection = HasPageInfo & HasTotal & {
|
|
42563
42754
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrInverseConnection';
|
|
42564
42755
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseEdge>>>;
|
|
42756
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42565
42757
|
pageInfo: PageInfo;
|
|
42758
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42566
42759
|
};
|
|
42567
42760
|
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
42568
42761
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrInverseEdge';
|
|
@@ -42574,10 +42767,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
|
42574
42767
|
};
|
|
42575
42768
|
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseUnion = JiraIssue;
|
|
42576
42769
|
export declare type GraphStoreSimplifiedIssueAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
42577
|
-
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
42770
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection = HasPageInfo & HasTotal & {
|
|
42578
42771
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection';
|
|
42579
42772
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge>>>;
|
|
42773
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42580
42774
|
pageInfo: PageInfo;
|
|
42775
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42581
42776
|
};
|
|
42582
42777
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge = {
|
|
42583
42778
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge';
|
|
@@ -42587,10 +42782,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge = {
|
|
|
42587
42782
|
lastUpdated: Scalars['DateTime']['output'];
|
|
42588
42783
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkUnion>;
|
|
42589
42784
|
};
|
|
42590
|
-
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
42785
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection = HasPageInfo & HasTotal & {
|
|
42591
42786
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection';
|
|
42592
42787
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge>>>;
|
|
42788
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42593
42789
|
pageInfo: PageInfo;
|
|
42790
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42594
42791
|
};
|
|
42595
42792
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
42596
42793
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge';
|
|
@@ -45606,6 +45803,34 @@ export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseEdge = {
|
|
|
45606
45803
|
};
|
|
45607
45804
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45608
45805
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogUnion = JiraWorklog;
|
|
45806
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentConnection = HasPageInfo & {
|
|
45807
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentConnection';
|
|
45808
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentEdge>>>;
|
|
45809
|
+
pageInfo: PageInfo;
|
|
45810
|
+
};
|
|
45811
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentEdge = {
|
|
45812
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentEdge';
|
|
45813
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45814
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45815
|
+
id: Scalars['ID']['output'];
|
|
45816
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45817
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentUnion>;
|
|
45818
|
+
};
|
|
45819
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseConnection = HasPageInfo & {
|
|
45820
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseConnection';
|
|
45821
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseEdge>>>;
|
|
45822
|
+
pageInfo: PageInfo;
|
|
45823
|
+
};
|
|
45824
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseEdge = {
|
|
45825
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseEdge';
|
|
45826
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45827
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45828
|
+
id: Scalars['ID']['output'];
|
|
45829
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45830
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseUnion>;
|
|
45831
|
+
};
|
|
45832
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
45833
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoCommentUnion = LoomComment;
|
|
45609
45834
|
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
45610
45835
|
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
45611
45836
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
@@ -46542,6 +46767,34 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
46542
46767
|
};
|
|
46543
46768
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46544
46769
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
46770
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentConnection = HasPageInfo & {
|
|
46771
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentConnection';
|
|
46772
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentEdge>>>;
|
|
46773
|
+
pageInfo: PageInfo;
|
|
46774
|
+
};
|
|
46775
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentEdge = {
|
|
46776
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentEdge';
|
|
46777
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46778
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46779
|
+
id: Scalars['ID']['output'];
|
|
46780
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46781
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentUnion>;
|
|
46782
|
+
};
|
|
46783
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseConnection = HasPageInfo & {
|
|
46784
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseConnection';
|
|
46785
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseEdge>>>;
|
|
46786
|
+
pageInfo: PageInfo;
|
|
46787
|
+
};
|
|
46788
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseEdge = {
|
|
46789
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseEdge';
|
|
46790
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46791
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46792
|
+
id: Scalars['ID']['output'];
|
|
46793
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46794
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseUnion>;
|
|
46795
|
+
};
|
|
46796
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46797
|
+
export declare type GraphStoreSimplifiedUserTaggedInLoomVideoCommentUnion = LoomComment;
|
|
46545
46798
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
46546
46799
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
46547
46800
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -47284,10 +47537,12 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
47284
47537
|
};
|
|
47285
47538
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion = JiraVersion;
|
|
47286
47539
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
47287
|
-
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
47540
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection = HasPageInfo & HasTotal & {
|
|
47288
47541
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection';
|
|
47289
47542
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge>>>;
|
|
47543
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
47290
47544
|
pageInfo: PageInfo;
|
|
47545
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
47291
47546
|
};
|
|
47292
47547
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge = {
|
|
47293
47548
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge';
|
|
@@ -47297,10 +47552,12 @@ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge = {
|
|
|
47297
47552
|
lastUpdated: Scalars['DateTime']['output'];
|
|
47298
47553
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkUnion>;
|
|
47299
47554
|
};
|
|
47300
|
-
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
47555
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & HasTotal & {
|
|
47301
47556
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection';
|
|
47302
47557
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge>>>;
|
|
47558
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
47303
47559
|
pageInfo: PageInfo;
|
|
47560
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
47304
47561
|
};
|
|
47305
47562
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge = {
|
|
47306
47563
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge';
|
|
@@ -47344,6 +47601,34 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseE
|
|
|
47344
47601
|
};
|
|
47345
47602
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseUnion = JiraVersion;
|
|
47346
47603
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion = DevOpsFeatureFlag | ExternalFeatureFlag;
|
|
47604
|
+
export declare type GraphStoreSimplifiedVideoHasCommentConnection = HasPageInfo & {
|
|
47605
|
+
__typename?: 'GraphStoreSimplifiedVideoHasCommentConnection';
|
|
47606
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVideoHasCommentEdge>>>;
|
|
47607
|
+
pageInfo: PageInfo;
|
|
47608
|
+
};
|
|
47609
|
+
export declare type GraphStoreSimplifiedVideoHasCommentEdge = {
|
|
47610
|
+
__typename?: 'GraphStoreSimplifiedVideoHasCommentEdge';
|
|
47611
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47612
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47613
|
+
id: Scalars['ID']['output'];
|
|
47614
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47615
|
+
node?: Maybe<GraphStoreSimplifiedVideoHasCommentUnion>;
|
|
47616
|
+
};
|
|
47617
|
+
export declare type GraphStoreSimplifiedVideoHasCommentInverseConnection = HasPageInfo & {
|
|
47618
|
+
__typename?: 'GraphStoreSimplifiedVideoHasCommentInverseConnection';
|
|
47619
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVideoHasCommentInverseEdge>>>;
|
|
47620
|
+
pageInfo: PageInfo;
|
|
47621
|
+
};
|
|
47622
|
+
export declare type GraphStoreSimplifiedVideoHasCommentInverseEdge = {
|
|
47623
|
+
__typename?: 'GraphStoreSimplifiedVideoHasCommentInverseEdge';
|
|
47624
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47625
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47626
|
+
id: Scalars['ID']['output'];
|
|
47627
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47628
|
+
node?: Maybe<GraphStoreSimplifiedVideoHasCommentInverseUnion>;
|
|
47629
|
+
};
|
|
47630
|
+
export declare type GraphStoreSimplifiedVideoHasCommentInverseUnion = LoomVideo;
|
|
47631
|
+
export declare type GraphStoreSimplifiedVideoHasCommentUnion = LoomComment;
|
|
47347
47632
|
export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection = HasPageInfo & HasTotal & {
|
|
47348
47633
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueConnection';
|
|
47349
47634
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge>>>;
|
|
@@ -47839,6 +48124,9 @@ export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
|
47839
48124
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
47840
48125
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47841
48126
|
};
|
|
48127
|
+
export declare type GraphStoreUserCreatedLoomVideoCommentSortInput = {
|
|
48128
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48129
|
+
};
|
|
47842
48130
|
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
47843
48131
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47844
48132
|
};
|
|
@@ -47965,6 +48253,9 @@ export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
|
47965
48253
|
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
47966
48254
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47967
48255
|
};
|
|
48256
|
+
export declare type GraphStoreUserTaggedInLoomVideoCommentSortInput = {
|
|
48257
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48258
|
+
};
|
|
47968
48259
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
47969
48260
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47970
48261
|
};
|
|
@@ -48104,7 +48395,10 @@ export declare type GraphStoreVersionAssociatedPullRequestSortInput = {
|
|
|
48104
48395
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48105
48396
|
};
|
|
48106
48397
|
export declare type GraphStoreVersionAssociatedRemoteLinkSortInput = {
|
|
48398
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
48399
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
48107
48400
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48401
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48108
48402
|
};
|
|
48109
48403
|
export declare type GraphStoreVersionUserAssociatedFeatureFlagSortInput = {
|
|
48110
48404
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -48112,6 +48406,9 @@ export declare type GraphStoreVersionUserAssociatedFeatureFlagSortInput = {
|
|
|
48112
48406
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48113
48407
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
48114
48408
|
};
|
|
48409
|
+
export declare type GraphStoreVideoHasCommentSortInput = {
|
|
48410
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48411
|
+
};
|
|
48115
48412
|
export declare type GraphStoreVulnerabilityAssociatedIssueContainerSortInput = {
|
|
48116
48413
|
containerAri?: InputMaybe<GraphStoreSortInput>;
|
|
48117
48414
|
};
|
|
@@ -48555,6 +48852,8 @@ export declare type HamsEntitlement = CommerceEntitlement & {
|
|
|
48555
48852
|
overriddenEdition?: Maybe<Scalars['String']['output']>;
|
|
48556
48853
|
preDunning?: Maybe<HamsEntitlementPreDunning>;
|
|
48557
48854
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
48855
|
+
relatesFromEntitlements?: Maybe<Array<Maybe<HamsEntitlementRelationship>>>;
|
|
48856
|
+
relatesToEntitlements?: Maybe<Array<Maybe<HamsEntitlementRelationship>>>;
|
|
48558
48857
|
sen?: Maybe<Scalars['String']['output']>;
|
|
48559
48858
|
shortTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
48560
48859
|
slug?: Maybe<Scalars['String']['output']>;
|
|
@@ -48595,6 +48894,12 @@ export declare type HamsEntitlementPreDunning = CommerceEntitlementPreDunning &
|
|
|
48595
48894
|
firstPreDunningEndTimestampV2?: Maybe<Scalars['Float']['output']>;
|
|
48596
48895
|
status?: Maybe<CcpEntitlementPreDunningStatus>;
|
|
48597
48896
|
};
|
|
48897
|
+
export declare type HamsEntitlementRelationship = CommerceEntitlementRelationship & {
|
|
48898
|
+
__typename?: 'HamsEntitlementRelationship';
|
|
48899
|
+
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
48900
|
+
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
48901
|
+
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
48902
|
+
};
|
|
48598
48903
|
export declare type HamsExperienceCapability = CommerceExperienceCapability & {
|
|
48599
48904
|
__typename?: 'HamsExperienceCapability';
|
|
48600
48905
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -50100,6 +50405,7 @@ export declare type HelpObjectStoreArticleSearchResult = {
|
|
|
50100
50405
|
displayLink: Scalars['String']['output'];
|
|
50101
50406
|
excerpt: Scalars['String']['output'];
|
|
50102
50407
|
metadata: HelpObjectStoreArticleMetadata;
|
|
50408
|
+
sourceSystem?: Maybe<HelpObjectStoreArticleSourceSystem>;
|
|
50103
50409
|
title: Scalars['String']['output'];
|
|
50104
50410
|
};
|
|
50105
50411
|
export declare type HelpObjectStoreArticleSearchResults = {
|
|
@@ -50111,6 +50417,12 @@ export declare enum HelpObjectStoreArticleSearchStrategy {
|
|
|
50111
50417
|
Cql = "CQL",
|
|
50112
50418
|
Proxy = "PROXY"
|
|
50113
50419
|
}
|
|
50420
|
+
export declare enum HelpObjectStoreArticleSourceSystem {
|
|
50421
|
+
Confluence = "CONFLUENCE",
|
|
50422
|
+
External = "EXTERNAL",
|
|
50423
|
+
GoogleDrive = "GOOGLE_DRIVE",
|
|
50424
|
+
Sharepoint = "SHAREPOINT"
|
|
50425
|
+
}
|
|
50114
50426
|
export declare type HelpObjectStoreBulkCreateEntityMappingInput = {
|
|
50115
50427
|
helpObjectStoreCreateEntityMappingInputItems: Array<HelpObjectStoreCreateEntityMappingInput>;
|
|
50116
50428
|
};
|
|
@@ -52395,6 +52707,7 @@ export declare type JiraBoardView = {
|
|
|
52395
52707
|
error?: Maybe<QueryError>;
|
|
52396
52708
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
52397
52709
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
52710
|
+
groupByOptions?: Maybe<Array<JiraViewGroupByConfig>>;
|
|
52398
52711
|
id: Scalars['ID']['output'];
|
|
52399
52712
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
52400
52713
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -61703,6 +62016,28 @@ export declare type JiraProjectsMappedToHelpCenterFilterInput = {
|
|
|
61703
62016
|
helpCenterId: Scalars['ID']['input'];
|
|
61704
62017
|
helpCenterMappingStatus?: InputMaybe<JiraProjectsHelpCenterMappingStatus>;
|
|
61705
62018
|
};
|
|
62019
|
+
export declare type JiraProjectsSidebarMenu = {
|
|
62020
|
+
__typename?: 'JiraProjectsSidebarMenu';
|
|
62021
|
+
current?: Maybe<JiraProject>;
|
|
62022
|
+
displayMode?: Maybe<JiraSidebarMenuDisplayMode>;
|
|
62023
|
+
favouriteLimit?: Maybe<Scalars['Int']['output']>;
|
|
62024
|
+
favourites?: Maybe<JiraProjectConnection>;
|
|
62025
|
+
id: Scalars['ID']['output'];
|
|
62026
|
+
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
62027
|
+
recents?: Maybe<JiraProjectConnection>;
|
|
62028
|
+
};
|
|
62029
|
+
export declare type JiraProjectsSidebarMenuFavouritesArgs = {
|
|
62030
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62031
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
62032
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62033
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62034
|
+
};
|
|
62035
|
+
export declare type JiraProjectsSidebarMenuRecentsArgs = {
|
|
62036
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62037
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
62038
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62039
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62040
|
+
};
|
|
61706
62041
|
export declare type JiraPublishBoardViewConfigInput = {
|
|
61707
62042
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
61708
62043
|
viewId: Scalars['ID']['input'];
|
|
@@ -61829,6 +62164,7 @@ export declare type JiraQuery = {
|
|
|
61829
62164
|
jiraFieldConfigs?: Maybe<JiraFieldConfigConnection>;
|
|
61830
62165
|
jiraIssueSearchView?: Maybe<JiraView>;
|
|
61831
62166
|
jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
|
|
62167
|
+
jiraJourneyItem?: Maybe<JiraJourneyItem>;
|
|
61832
62168
|
jiraProject?: Maybe<JiraProject>;
|
|
61833
62169
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
61834
62170
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
@@ -62386,6 +62722,11 @@ export declare type JiraQueryJiraJourneyConfigurationArgs = {
|
|
|
62386
62722
|
cloudId: Scalars['ID']['input'];
|
|
62387
62723
|
id: Scalars['ID']['input'];
|
|
62388
62724
|
};
|
|
62725
|
+
export declare type JiraQueryJiraJourneyItemArgs = {
|
|
62726
|
+
cloudId: Scalars['ID']['input'];
|
|
62727
|
+
id: Scalars['ID']['input'];
|
|
62728
|
+
journeyId: Scalars['ID']['input'];
|
|
62729
|
+
};
|
|
62389
62730
|
export declare type JiraQueryJiraProjectArgs = {
|
|
62390
62731
|
id: Scalars['ID']['input'];
|
|
62391
62732
|
};
|
|
@@ -65125,6 +65466,11 @@ export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
|
65125
65466
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
65126
65467
|
url?: Maybe<Scalars['String']['output']>;
|
|
65127
65468
|
};
|
|
65469
|
+
export declare enum JiraSidebarMenuDisplayMode {
|
|
65470
|
+
MostRecentOnly = "MOST_RECENT_ONLY",
|
|
65471
|
+
Starred = "STARRED",
|
|
65472
|
+
StarredAndRecent = "STARRED_AND_RECENT"
|
|
65473
|
+
}
|
|
65128
65474
|
export declare type JiraSimilarIssues = {
|
|
65129
65475
|
__typename?: 'JiraSimilarIssues';
|
|
65130
65476
|
featureEnabled: Scalars['Boolean']['output'];
|
|
@@ -66506,6 +66852,12 @@ export declare type JiraUpdateShortcutInput = {
|
|
|
66506
66852
|
shortcutData: JiraShortcutDataInput;
|
|
66507
66853
|
shortcutId: Scalars['ID']['input'];
|
|
66508
66854
|
};
|
|
66855
|
+
export declare type JiraUpdateSidebarMenuDisplaySettingInput = {
|
|
66856
|
+
cloudId: Scalars['ID']['input'];
|
|
66857
|
+
displayMode?: InputMaybe<JiraSidebarMenuDisplayMode>;
|
|
66858
|
+
favouriteLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
66859
|
+
recentLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
66860
|
+
};
|
|
66509
66861
|
export declare type JiraUpdateSingleGroupPickerFieldInput = {
|
|
66510
66862
|
id: Scalars['ID']['input'];
|
|
66511
66863
|
operation: JiraSingleGroupPickerFieldOperationInput;
|
|
@@ -69082,6 +69434,17 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
|
69082
69434
|
};
|
|
69083
69435
|
export declare type KnowledgeDiscoveryAdminhubBookmarkResult = KnowledgeDiscoveryAdminhubBookmark | QueryError;
|
|
69084
69436
|
export declare type KnowledgeDiscoveryAdminhubBookmarksResult = KnowledgeDiscoveryAdminhubBookmarkConnection | QueryError;
|
|
69437
|
+
export declare type KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionInput = {
|
|
69438
|
+
bookmarkAdminhubId: Scalars['ID']['input'];
|
|
69439
|
+
cloudId: Scalars['ID']['input'];
|
|
69440
|
+
orgId: Scalars['String']['input'];
|
|
69441
|
+
};
|
|
69442
|
+
export declare type KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionPayload = Payload & {
|
|
69443
|
+
__typename?: 'KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionPayload';
|
|
69444
|
+
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmark>;
|
|
69445
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69446
|
+
success: Scalars['Boolean']['output'];
|
|
69447
|
+
};
|
|
69085
69448
|
export declare type KnowledgeDiscoveryAutoDefinition = {
|
|
69086
69449
|
__typename?: 'KnowledgeDiscoveryAutoDefinition';
|
|
69087
69450
|
confluenceEntity?: Maybe<KnowledgeDiscoveryConfluenceEntity>;
|
|
@@ -69282,6 +69645,7 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
|
|
|
69282
69645
|
export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
|
|
69283
69646
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
69284
69647
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
69648
|
+
approveBookmarkSuggestion?: Maybe<KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionPayload>;
|
|
69285
69649
|
createBookmark?: Maybe<KnowledgeDiscoveryCreateAdminhubBookmarkPayload>;
|
|
69286
69650
|
createBookmarks?: Maybe<KnowledgeDiscoveryCreateAdminhubBookmarksPayload>;
|
|
69287
69651
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
@@ -69290,6 +69654,9 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
69290
69654
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
69291
69655
|
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
69292
69656
|
};
|
|
69657
|
+
export declare type KnowledgeDiscoveryMutationApiApproveBookmarkSuggestionArgs = {
|
|
69658
|
+
input: KnowledgeDiscoveryApproveAdminhubBookmarkSuggestionInput;
|
|
69659
|
+
};
|
|
69293
69660
|
export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
|
|
69294
69661
|
input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
|
|
69295
69662
|
};
|
|
@@ -69408,6 +69775,7 @@ export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
|
69408
69775
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
69409
69776
|
locale: Scalars['String']['input'];
|
|
69410
69777
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
69778
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
69411
69779
|
query: Scalars['String']['input'];
|
|
69412
69780
|
siteId: Scalars['String']['input'];
|
|
69413
69781
|
};
|
|
@@ -70540,6 +70908,7 @@ export declare type MarketplaceConsoleDevSpaceListing = {
|
|
|
70540
70908
|
description?: Maybe<Scalars['String']['output']>;
|
|
70541
70909
|
displayLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
70542
70910
|
supportDetails?: Maybe<MarketplaceConsoleDevSpaceSupportDetails>;
|
|
70911
|
+
trustCenterUrl?: Maybe<Scalars['String']['output']>;
|
|
70543
70912
|
};
|
|
70544
70913
|
export declare enum MarketplaceConsoleDevSpaceProgram {
|
|
70545
70914
|
AtlassianParter = "ATLASSIAN_PARTER",
|
|
@@ -72253,6 +72622,50 @@ export declare type MercuryBudgetAggregation = {
|
|
|
72253
72622
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
72254
72623
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
72255
72624
|
};
|
|
72625
|
+
export declare type MercuryChangeProposal = Node & {
|
|
72626
|
+
__typename?: 'MercuryChangeProposal';
|
|
72627
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
72628
|
+
id: Scalars['ID']['output'];
|
|
72629
|
+
name: Scalars['String']['output'];
|
|
72630
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
72631
|
+
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
72632
|
+
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
72633
|
+
};
|
|
72634
|
+
export declare type MercuryChangeProposalConnection = {
|
|
72635
|
+
__typename?: 'MercuryChangeProposalConnection';
|
|
72636
|
+
edges?: Maybe<Array<Maybe<MercuryChangeProposalEdge>>>;
|
|
72637
|
+
pageInfo: PageInfo;
|
|
72638
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
72639
|
+
};
|
|
72640
|
+
export declare type MercuryChangeProposalEdge = {
|
|
72641
|
+
__typename?: 'MercuryChangeProposalEdge';
|
|
72642
|
+
cursor: Scalars['String']['output'];
|
|
72643
|
+
node?: Maybe<MercuryChangeProposal>;
|
|
72644
|
+
};
|
|
72645
|
+
export declare type MercuryChangeProposalSort = {
|
|
72646
|
+
field: MercuryChangeProposalSortField;
|
|
72647
|
+
order: SortOrder;
|
|
72648
|
+
};
|
|
72649
|
+
export declare enum MercuryChangeProposalSortField {
|
|
72650
|
+
Name = "NAME"
|
|
72651
|
+
}
|
|
72652
|
+
export declare type MercuryChangeProposalStatus = {
|
|
72653
|
+
__typename?: 'MercuryChangeProposalStatus';
|
|
72654
|
+
color: Scalars['String']['output'];
|
|
72655
|
+
displayName: Scalars['String']['output'];
|
|
72656
|
+
id: Scalars['ID']['output'];
|
|
72657
|
+
key: Scalars['String']['output'];
|
|
72658
|
+
order: Scalars['Int']['output'];
|
|
72659
|
+
};
|
|
72660
|
+
export declare type MercuryChangeProposalStatusTransition = {
|
|
72661
|
+
__typename?: 'MercuryChangeProposalStatusTransition';
|
|
72662
|
+
id: Scalars['ID']['output'];
|
|
72663
|
+
to: MercuryChangeProposalStatus;
|
|
72664
|
+
};
|
|
72665
|
+
export declare type MercuryChangeProposalStatusTransitions = {
|
|
72666
|
+
__typename?: 'MercuryChangeProposalStatusTransitions';
|
|
72667
|
+
available: Array<MercuryChangeProposalStatusTransition>;
|
|
72668
|
+
};
|
|
72256
72669
|
export declare type MercuryComment = Node & {
|
|
72257
72670
|
__typename?: 'MercuryComment';
|
|
72258
72671
|
ari: Scalars['String']['output'];
|
|
@@ -72273,6 +72686,17 @@ export declare type MercuryCommentEdge = {
|
|
|
72273
72686
|
cursor: Scalars['String']['output'];
|
|
72274
72687
|
node?: Maybe<MercuryComment>;
|
|
72275
72688
|
};
|
|
72689
|
+
export declare type MercuryCreateChangeProposalInput = {
|
|
72690
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
72691
|
+
name: Scalars['String']['input'];
|
|
72692
|
+
strategicEventId: Scalars['String']['input'];
|
|
72693
|
+
};
|
|
72694
|
+
export declare type MercuryCreateChangeProposalPayload = Payload & {
|
|
72695
|
+
__typename?: 'MercuryCreateChangeProposalPayload';
|
|
72696
|
+
createdChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
72697
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72698
|
+
success: Scalars['Boolean']['output'];
|
|
72699
|
+
};
|
|
72276
72700
|
export declare type MercuryCreateCommentInput = {
|
|
72277
72701
|
cloudId: Scalars['ID']['input'];
|
|
72278
72702
|
commentText: Scalars['MercuryJSONString']['input'];
|
|
@@ -72322,6 +72746,17 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
72322
72746
|
errors?: Maybe<Array<MutationError>>;
|
|
72323
72747
|
success: Scalars['Boolean']['output'];
|
|
72324
72748
|
};
|
|
72749
|
+
export declare type MercuryCreateStrategicEventInput = {
|
|
72750
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
72751
|
+
name: Scalars['String']['input'];
|
|
72752
|
+
targetDate: Scalars['String']['input'];
|
|
72753
|
+
};
|
|
72754
|
+
export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
72755
|
+
__typename?: 'MercuryCreateStrategicEventPayload';
|
|
72756
|
+
createdStrategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
72757
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72758
|
+
success: Scalars['Boolean']['output'];
|
|
72759
|
+
};
|
|
72325
72760
|
export declare type MercuryDeleteAllPreferenceInput = {
|
|
72326
72761
|
cloudId: Scalars['ID']['input'];
|
|
72327
72762
|
};
|
|
@@ -73351,6 +73786,113 @@ export declare type MercurySpendAggregation = {
|
|
|
73351
73786
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
73352
73787
|
totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
73353
73788
|
};
|
|
73789
|
+
export declare type MercuryStrategicEvent = Node & {
|
|
73790
|
+
__typename?: 'MercuryStrategicEvent';
|
|
73791
|
+
id: Scalars['ID']['output'];
|
|
73792
|
+
name: Scalars['String']['output'];
|
|
73793
|
+
status?: Maybe<MercuryStrategicEventStatus>;
|
|
73794
|
+
statusTransitions?: Maybe<MercuryStrategicEventStatusTransitions>;
|
|
73795
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
73796
|
+
};
|
|
73797
|
+
export declare type MercuryStrategicEventConnection = {
|
|
73798
|
+
__typename?: 'MercuryStrategicEventConnection';
|
|
73799
|
+
edges?: Maybe<Array<Maybe<MercuryStrategicEventEdge>>>;
|
|
73800
|
+
pageInfo: PageInfo;
|
|
73801
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
73802
|
+
};
|
|
73803
|
+
export declare type MercuryStrategicEventEdge = {
|
|
73804
|
+
__typename?: 'MercuryStrategicEventEdge';
|
|
73805
|
+
cursor: Scalars['String']['output'];
|
|
73806
|
+
node?: Maybe<MercuryStrategicEvent>;
|
|
73807
|
+
};
|
|
73808
|
+
export declare type MercuryStrategicEventSort = {
|
|
73809
|
+
field: MercuryStrategicEventSortField;
|
|
73810
|
+
order: SortOrder;
|
|
73811
|
+
};
|
|
73812
|
+
export declare enum MercuryStrategicEventSortField {
|
|
73813
|
+
Name = "NAME",
|
|
73814
|
+
Status = "STATUS",
|
|
73815
|
+
TargetDate = "TARGET_DATE"
|
|
73816
|
+
}
|
|
73817
|
+
export declare type MercuryStrategicEventStatus = {
|
|
73818
|
+
__typename?: 'MercuryStrategicEventStatus';
|
|
73819
|
+
color: Scalars['String']['output'];
|
|
73820
|
+
displayName: Scalars['String']['output'];
|
|
73821
|
+
id: Scalars['ID']['output'];
|
|
73822
|
+
key: Scalars['String']['output'];
|
|
73823
|
+
order: Scalars['Int']['output'];
|
|
73824
|
+
};
|
|
73825
|
+
export declare type MercuryStrategicEventStatusTransition = {
|
|
73826
|
+
__typename?: 'MercuryStrategicEventStatusTransition';
|
|
73827
|
+
id: Scalars['ID']['output'];
|
|
73828
|
+
to: MercuryStrategicEventStatus;
|
|
73829
|
+
};
|
|
73830
|
+
export declare type MercuryStrategicEventStatusTransitions = {
|
|
73831
|
+
__typename?: 'MercuryStrategicEventStatusTransitions';
|
|
73832
|
+
available: Array<MercuryStrategicEventStatusTransition>;
|
|
73833
|
+
};
|
|
73834
|
+
export declare type MercuryStrategicEventsMutationApi = {
|
|
73835
|
+
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
73836
|
+
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
73837
|
+
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
73838
|
+
};
|
|
73839
|
+
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
|
|
73840
|
+
input: MercuryCreateChangeProposalInput;
|
|
73841
|
+
};
|
|
73842
|
+
export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
|
|
73843
|
+
input: MercuryCreateStrategicEventInput;
|
|
73844
|
+
};
|
|
73845
|
+
export declare type MercuryStrategicEventsQueryApi = {
|
|
73846
|
+
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
73847
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
73848
|
+
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
73849
|
+
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
73850
|
+
changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
|
|
73851
|
+
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
73852
|
+
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
73853
|
+
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
73854
|
+
strategicEventsSearch?: Maybe<MercuryStrategicEventConnection>;
|
|
73855
|
+
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
73856
|
+
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
73857
|
+
};
|
|
73858
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
73859
|
+
id: Scalars['ID']['input'];
|
|
73860
|
+
};
|
|
73861
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalStatusesArgs = {
|
|
73862
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73863
|
+
};
|
|
73864
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalsArgs = {
|
|
73865
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73866
|
+
};
|
|
73867
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
|
|
73868
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
73869
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73870
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73871
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
73872
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
|
|
73873
|
+
};
|
|
73874
|
+
export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
|
|
73875
|
+
id: Scalars['ID']['input'];
|
|
73876
|
+
};
|
|
73877
|
+
export declare type MercuryStrategicEventsQueryApiStrategicEventStatusesArgs = {
|
|
73878
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73879
|
+
};
|
|
73880
|
+
export declare type MercuryStrategicEventsQueryApiStrategicEventsArgs = {
|
|
73881
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73882
|
+
};
|
|
73883
|
+
export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
73884
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
73885
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73886
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73887
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
73888
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
73889
|
+
};
|
|
73890
|
+
export declare type MercuryStrategicEventsQueryApiTransitionChangeProposalStatusArgs = {
|
|
73891
|
+
input: MercuryTransitionChangeProposalStatusInput;
|
|
73892
|
+
};
|
|
73893
|
+
export declare type MercuryStrategicEventsQueryApiTransitionStrategicEventStatusArgs = {
|
|
73894
|
+
input: MercuryTransitionStrategicEventStatusInput;
|
|
73895
|
+
};
|
|
73354
73896
|
export declare type MercuryTargetDate = {
|
|
73355
73897
|
__typename?: 'MercuryTargetDate';
|
|
73356
73898
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -73418,11 +73960,33 @@ export declare type MercuryTeamSort = {
|
|
|
73418
73960
|
export declare enum MercuryTeamSortField {
|
|
73419
73961
|
Name = "NAME"
|
|
73420
73962
|
}
|
|
73963
|
+
export declare type MercuryTransitionChangeProposalPayload = Payload & {
|
|
73964
|
+
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
73965
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73966
|
+
success: Scalars['Boolean']['output'];
|
|
73967
|
+
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
73968
|
+
};
|
|
73969
|
+
export declare type MercuryTransitionChangeProposalStatusInput = {
|
|
73970
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73971
|
+
id: Scalars['ID']['input'];
|
|
73972
|
+
statusTransitionId: Scalars['ID']['input'];
|
|
73973
|
+
};
|
|
73421
73974
|
export declare type MercuryTransitionFocusAreaStatusInput = {
|
|
73422
73975
|
cloudId: Scalars['ID']['input'];
|
|
73423
73976
|
id: Scalars['ID']['input'];
|
|
73424
73977
|
statusTransitionId: Scalars['ID']['input'];
|
|
73425
73978
|
};
|
|
73979
|
+
export declare type MercuryTransitionStrategicEventPayload = Payload & {
|
|
73980
|
+
__typename?: 'MercuryTransitionStrategicEventPayload';
|
|
73981
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73982
|
+
success: Scalars['Boolean']['output'];
|
|
73983
|
+
updatedStrategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
73984
|
+
};
|
|
73985
|
+
export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
73986
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
73987
|
+
id: Scalars['ID']['input'];
|
|
73988
|
+
statusTransitionId: Scalars['ID']['input'];
|
|
73989
|
+
};
|
|
73426
73990
|
export declare type MercuryUpdateCommentInput = {
|
|
73427
73991
|
cloudId: Scalars['ID']['input'];
|
|
73428
73992
|
commentText: Scalars['MercuryJSONString']['input'];
|
|
@@ -73749,7 +74313,6 @@ export declare type Mutation = {
|
|
|
73749
74313
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
73750
74314
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
73751
74315
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
73752
|
-
appRecommendations?: Maybe<AppRecMutation>;
|
|
73753
74316
|
appStorage?: Maybe<AppStorageMutation>;
|
|
73754
74317
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
73755
74318
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
@@ -74095,6 +74658,7 @@ export declare type Mutation = {
|
|
|
74095
74658
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
74096
74659
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
74097
74660
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
74661
|
+
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
74098
74662
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
74099
74663
|
jsw?: Maybe<JswMutation>;
|
|
74100
74664
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -74107,6 +74671,7 @@ export declare type Mutation = {
|
|
|
74107
74671
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
74108
74672
|
mercury?: Maybe<MercuryMutationApi>;
|
|
74109
74673
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
74674
|
+
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
74110
74675
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
74111
74676
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
74112
74677
|
movePageAfter?: Maybe<MovePagePayload>;
|
|
@@ -75386,6 +75951,9 @@ export declare type MutationJira_SetViewGroupByArgs = {
|
|
|
75386
75951
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
75387
75952
|
input: JiraUpdateBackgroundInput;
|
|
75388
75953
|
};
|
|
75954
|
+
export declare type MutationJira_UpdateProjectsSidebarMenuArgs = {
|
|
75955
|
+
input: JiraUpdateSidebarMenuDisplaySettingInput;
|
|
75956
|
+
};
|
|
75389
75957
|
export declare type MutationKnowledgeBaseArgs = {
|
|
75390
75958
|
cloudId: Scalars['ID']['input'];
|
|
75391
75959
|
};
|
|
@@ -78564,15 +79132,14 @@ export declare type Query = {
|
|
|
78564
79132
|
appLogLines?: Maybe<AppLogLineConnection>;
|
|
78565
79133
|
appLogs?: Maybe<AppLogConnection>;
|
|
78566
79134
|
appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
|
|
78567
|
-
appRecommendations?: Maybe<AppRecQuery>;
|
|
78568
79135
|
appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
|
|
78569
79136
|
appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
|
|
78570
79137
|
appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
|
|
78571
79138
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
78572
|
-
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
78573
79139
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
78574
79140
|
apps?: Maybe<AppConnection>;
|
|
78575
79141
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
79142
|
+
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
78576
79143
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
78577
79144
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
78578
79145
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
@@ -78816,6 +79383,7 @@ export declare type Query = {
|
|
|
78816
79383
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
78817
79384
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
78818
79385
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
79386
|
+
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
78819
79387
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
78820
79388
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
78821
79389
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -79003,6 +79571,7 @@ export declare type Query = {
|
|
|
79003
79571
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
79004
79572
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
79005
79573
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
79574
|
+
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
79006
79575
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
79007
79576
|
jsw?: Maybe<JswQuery>;
|
|
79008
79577
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -79040,6 +79609,7 @@ export declare type Query = {
|
|
|
79040
79609
|
me: AuthenticationContext;
|
|
79041
79610
|
mercury?: Maybe<MercuryQueryApi>;
|
|
79042
79611
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
79612
|
+
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
79043
79613
|
migration: MigrationQuery;
|
|
79044
79614
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
79045
79615
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -79348,12 +79918,6 @@ export declare type QueryAppStoredEntitiesArgs = {
|
|
|
79348
79918
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79349
79919
|
where?: InputMaybe<Array<AppStoredEntityFilter>>;
|
|
79350
79920
|
};
|
|
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
79921
|
export declare type QueryAppStoredEntityArgs = {
|
|
79358
79922
|
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79359
79923
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -79369,6 +79933,9 @@ export declare type QueryAppsArgs = {
|
|
|
79369
79933
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
79370
79934
|
cloudId: Scalars['ID']['input'];
|
|
79371
79935
|
};
|
|
79936
|
+
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
79937
|
+
cloudId: Scalars['ID']['input'];
|
|
79938
|
+
};
|
|
79372
79939
|
export declare type QueryAvailableContentStatesArgs = {
|
|
79373
79940
|
contentId: Scalars['ID']['input'];
|
|
79374
79941
|
};
|
|
@@ -80405,6 +80972,9 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
80405
80972
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
80406
80973
|
cloudId: Scalars['ID']['input'];
|
|
80407
80974
|
};
|
|
80975
|
+
export declare type QueryConfluence_EmptyArgs = {
|
|
80976
|
+
id: Scalars['ID']['input'];
|
|
80977
|
+
};
|
|
80408
80978
|
export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
80409
80979
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
80410
80980
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -81138,6 +81708,10 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
81138
81708
|
cloudId: Scalars['ID']['input'];
|
|
81139
81709
|
idOrKey: Scalars['String']['input'];
|
|
81140
81710
|
};
|
|
81711
|
+
export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
81712
|
+
cloudId: Scalars['ID']['input'];
|
|
81713
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
81714
|
+
};
|
|
81141
81715
|
export declare type QueryKnowledgeBaseArgs = {
|
|
81142
81716
|
cloudId: Scalars['ID']['input'];
|
|
81143
81717
|
};
|
|
@@ -84205,6 +84779,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
84205
84779
|
experimentContext?: InputMaybe<SearchExperimentContextInput>;
|
|
84206
84780
|
filters: SearchFilterInput;
|
|
84207
84781
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84782
|
+
interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84208
84783
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
84209
84784
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
84210
84785
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
@@ -84306,7 +84881,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
84306
84881
|
type: SearchResultType;
|
|
84307
84882
|
url: Scalars['URL']['output'];
|
|
84308
84883
|
};
|
|
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;
|
|
84884
|
+
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
84885
|
export declare type SearchResultFederated = SearchResult & {
|
|
84311
84886
|
__typename?: 'SearchResultFederated';
|
|
84312
84887
|
description: Scalars['String']['output'];
|
|
@@ -84635,6 +85210,7 @@ export declare enum SearchSortOrder {
|
|
|
84635
85210
|
}
|
|
84636
85211
|
export declare type SearchThirdPartyFilter = {
|
|
84637
85212
|
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
85213
|
+
assignees?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84638
85214
|
containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84639
85215
|
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
84640
85216
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -87711,10 +88287,12 @@ export declare type SubjectsByTypeUserWithRestrictionsArgs = {
|
|
|
87711
88287
|
};
|
|
87712
88288
|
export declare type Subscription = {
|
|
87713
88289
|
__typename?: 'Subscription';
|
|
88290
|
+
confluence_onContentUpdated?: Maybe<ConfluenceContent>;
|
|
87714
88291
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
87715
88292
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
87716
88293
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
87717
88294
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
88295
|
+
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
87718
88296
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
87719
88297
|
jira?: Maybe<JiraSubscription>;
|
|
87720
88298
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
@@ -87725,6 +88303,9 @@ export declare type Subscription = {
|
|
|
87725
88303
|
testing?: Maybe<TestingSubscription>;
|
|
87726
88304
|
trello: TrelloSubscriptionApi;
|
|
87727
88305
|
};
|
|
88306
|
+
export declare type SubscriptionConfluence_OnContentUpdatedArgs = {
|
|
88307
|
+
id: Scalars['ID']['input'];
|
|
88308
|
+
};
|
|
87728
88309
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
87729
88310
|
cloudId: Scalars['ID']['input'];
|
|
87730
88311
|
jobId: Scalars['ID']['input'];
|
|
@@ -87737,6 +88318,10 @@ export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
|
87737
88318
|
cloudId: Scalars['ID']['input'];
|
|
87738
88319
|
jobId: Scalars['ID']['input'];
|
|
87739
88320
|
};
|
|
88321
|
+
export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
|
|
88322
|
+
cloudId: Scalars['ID']['input'];
|
|
88323
|
+
jobId: Scalars['ID']['input'];
|
|
88324
|
+
};
|
|
87740
88325
|
export declare enum SummaryType {
|
|
87741
88326
|
Blogpost = "BLOGPOST",
|
|
87742
88327
|
Page = "PAGE"
|
|
@@ -90376,6 +90961,7 @@ export declare type TrelloBoardUpdatedEdge = {
|
|
|
90376
90961
|
export declare type TrelloBoardViewer = {
|
|
90377
90962
|
__typename?: 'TrelloBoardViewer';
|
|
90378
90963
|
aiEmailEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
90964
|
+
aiMSTeamsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
90379
90965
|
aiSlackEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
90380
90966
|
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
90381
90967
|
email?: Maybe<TrelloBoardViewerEmail>;
|
|
@@ -90607,6 +91193,7 @@ export declare type TrelloCardEdge = {
|
|
|
90607
91193
|
};
|
|
90608
91194
|
export declare enum TrelloCardExternalSource {
|
|
90609
91195
|
Email = "EMAIL",
|
|
91196
|
+
Msteams = "MSTEAMS",
|
|
90610
91197
|
Siri = "SIRI",
|
|
90611
91198
|
Slack = "SLACK"
|
|
90612
91199
|
}
|
|
@@ -91206,6 +91793,7 @@ export declare type TrelloMutationApi = {
|
|
|
91206
91793
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
91207
91794
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
91208
91795
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
91796
|
+
updateBoardViewerAIMSTeams?: Maybe<TrelloUpdateBoardViewerAimsTeamsPayload>;
|
|
91209
91797
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
91210
91798
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
91211
91799
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
@@ -91262,6 +91850,9 @@ export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
|
91262
91850
|
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
91263
91851
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
91264
91852
|
};
|
|
91853
|
+
export declare type TrelloMutationApiUpdateBoardViewerAimsTeamsArgs = {
|
|
91854
|
+
input: TrelloUpdateBoardViewerAimsTeamsInput;
|
|
91855
|
+
};
|
|
91265
91856
|
export declare type TrelloMutationApiUpdateBoardViewerAiSlackArgs = {
|
|
91266
91857
|
input: TrelloUpdateBoardViewerAiSlackInput;
|
|
91267
91858
|
};
|
|
@@ -91329,8 +91920,8 @@ export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
|
91329
91920
|
};
|
|
91330
91921
|
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
91331
91922
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91923
|
+
filter?: InputMaybe<TrelloPlannerCalendarProviderCalendarsFilter>;
|
|
91332
91924
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91333
|
-
syncToken?: InputMaybe<Scalars['String']['input']>;
|
|
91334
91925
|
};
|
|
91335
91926
|
export declare type TrelloPlannerCalendarAccountConnection = {
|
|
91336
91927
|
__typename?: 'TrelloPlannerCalendarAccountConnection';
|
|
@@ -91486,6 +92077,7 @@ export declare type TrelloPlannerCalendarEventDeleted = {
|
|
|
91486
92077
|
export declare type TrelloPlannerCalendarEventEdge = {
|
|
91487
92078
|
__typename?: 'TrelloPlannerCalendarEventEdge';
|
|
91488
92079
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
92080
|
+
deletedEvent?: Maybe<TrelloPlannerCalendarEventDeleted>;
|
|
91489
92081
|
node?: Maybe<TrelloPlannerCalendarEvent>;
|
|
91490
92082
|
};
|
|
91491
92083
|
export declare type TrelloPlannerCalendarEventEdgeUpdated = {
|
|
@@ -91494,6 +92086,7 @@ export declare type TrelloPlannerCalendarEventEdgeUpdated = {
|
|
|
91494
92086
|
};
|
|
91495
92087
|
export declare enum TrelloPlannerCalendarEventStatus {
|
|
91496
92088
|
Accepted = "ACCEPTED",
|
|
92089
|
+
Cancelled = "CANCELLED",
|
|
91497
92090
|
Declined = "DECLINED",
|
|
91498
92091
|
NeedsAction = "NEEDS_ACTION",
|
|
91499
92092
|
Tentative = "TENTATIVE"
|
|
@@ -91517,8 +92110,12 @@ export declare enum TrelloPlannerCalendarEventVisibility {
|
|
|
91517
92110
|
export declare type TrelloPlannerCalendarEventsFilter = {
|
|
91518
92111
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
91519
92112
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
92113
|
+
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
91520
92114
|
};
|
|
91521
92115
|
export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
|
|
92116
|
+
export declare type TrelloPlannerCalendarProviderCalendarsFilter = {
|
|
92117
|
+
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
92118
|
+
};
|
|
91522
92119
|
export declare type TrelloPlannerCalendarUpdated = {
|
|
91523
92120
|
__typename?: 'TrelloPlannerCalendarUpdated';
|
|
91524
92121
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
@@ -91820,6 +92417,7 @@ export declare type TrelloStickerUpdatedConnection = {
|
|
|
91820
92417
|
export declare type TrelloSubscriptionApi = {
|
|
91821
92418
|
__typename?: 'TrelloSubscriptionApi';
|
|
91822
92419
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
92420
|
+
onCardsUpdated?: Maybe<TrelloBoardUpdated>;
|
|
91823
92421
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
91824
92422
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
91825
92423
|
};
|
|
@@ -91827,6 +92425,10 @@ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
|
91827
92425
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
91828
92426
|
id: Scalars['ID']['input'];
|
|
91829
92427
|
};
|
|
92428
|
+
export declare type TrelloSubscriptionApiOnCardsUpdatedArgs = {
|
|
92429
|
+
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
92430
|
+
id: Scalars['ID']['input'];
|
|
92431
|
+
};
|
|
91830
92432
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
91831
92433
|
id: Scalars['ID']['input'];
|
|
91832
92434
|
};
|
|
@@ -91937,6 +92539,16 @@ export declare type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
|
91937
92539
|
success: Scalars['Boolean']['output'];
|
|
91938
92540
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
91939
92541
|
};
|
|
92542
|
+
export declare type TrelloUpdateBoardViewerAimsTeamsInput = {
|
|
92543
|
+
boardId: Scalars['ID']['input'];
|
|
92544
|
+
value: Scalars['Boolean']['input'];
|
|
92545
|
+
};
|
|
92546
|
+
export declare type TrelloUpdateBoardViewerAimsTeamsPayload = Payload & {
|
|
92547
|
+
__typename?: 'TrelloUpdateBoardViewerAIMSTeamsPayload';
|
|
92548
|
+
errors?: Maybe<Array<MutationError>>;
|
|
92549
|
+
success: Scalars['Boolean']['output'];
|
|
92550
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
92551
|
+
};
|
|
91940
92552
|
export declare type TrelloUpdateBoardViewerAiSlackInput = {
|
|
91941
92553
|
boardId: Scalars['ID']['input'];
|
|
91942
92554
|
value: Scalars['Boolean']['input'];
|