@forge/cli-shared 6.5.3-next.0 → 6.5.3-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/out/graphql/graphql-types.d.ts +386 -11
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +51 -24
- package/package.json +2 -2
|
@@ -2585,6 +2585,13 @@ export declare type BordersAndDividersLookAndFeel = {
|
|
|
2585
2585
|
__typename?: 'BordersAndDividersLookAndFeel';
|
|
2586
2586
|
color?: Maybe<Scalars['String']['output']>;
|
|
2587
2587
|
};
|
|
2588
|
+
export declare type Breadcrumb = {
|
|
2589
|
+
__typename?: 'Breadcrumb';
|
|
2590
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
2591
|
+
links?: Maybe<LinksContextBase>;
|
|
2592
|
+
separator?: Maybe<Scalars['String']['output']>;
|
|
2593
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
2594
|
+
};
|
|
2588
2595
|
export declare enum BuiltinPolarisIdeaField {
|
|
2589
2596
|
Archived = "ARCHIVED",
|
|
2590
2597
|
ArchivedBy = "ARCHIVED_BY",
|
|
@@ -2914,6 +2921,11 @@ export declare type CcpApplicationReason = {
|
|
|
2914
2921
|
__typename?: 'CcpApplicationReason';
|
|
2915
2922
|
id?: Maybe<Scalars['ID']['output']>;
|
|
2916
2923
|
};
|
|
2924
|
+
export declare enum CcpBehaviourAtEndOfTrial {
|
|
2925
|
+
Cancel = "CANCEL",
|
|
2926
|
+
ConvertToPaid = "CONVERT_TO_PAID",
|
|
2927
|
+
RevertTrial = "REVERT_TRIAL"
|
|
2928
|
+
}
|
|
2917
2929
|
export declare type CcpBenefit = {
|
|
2918
2930
|
__typename?: 'CcpBenefit';
|
|
2919
2931
|
duration?: Maybe<CcpDuration>;
|
|
@@ -2981,6 +2993,34 @@ export declare type CcpContext = {
|
|
|
2981
2993
|
subject?: Maybe<Scalars['String']['output']>;
|
|
2982
2994
|
subjectType?: Maybe<Scalars['String']['output']>;
|
|
2983
2995
|
};
|
|
2996
|
+
export declare type CcpCreateEntitlementExperienceCapability = CommerceExperienceCapability & {
|
|
2997
|
+
__typename?: 'CcpCreateEntitlementExperienceCapability';
|
|
2998
|
+
errorDescription?: Maybe<Scalars['String']['output']>;
|
|
2999
|
+
errorReasonCode?: Maybe<CcpCreateEntitlementExperienceCapabilityErrorReasonCode>;
|
|
3000
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
3001
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
3002
|
+
};
|
|
3003
|
+
export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
|
|
3004
|
+
MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
|
|
3005
|
+
UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
|
|
3006
|
+
}
|
|
3007
|
+
export declare type CcpCreateEntitlementInput = {
|
|
3008
|
+
offeringKey: Scalars['ID']['input'];
|
|
3009
|
+
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
3010
|
+
relatesToEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelatesTo>>;
|
|
3011
|
+
};
|
|
3012
|
+
export declare type CcpCreateEntitlementOrderOptions = {
|
|
3013
|
+
billingCycle?: InputMaybe<CcpBillingInterval>;
|
|
3014
|
+
provisioningRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
3015
|
+
trial?: InputMaybe<CcpCreateEntitlementTrialIntent>;
|
|
3016
|
+
};
|
|
3017
|
+
export declare type CcpCreateEntitlementRelatesTo = {
|
|
3018
|
+
entitlement?: InputMaybe<CcpEntitlementDetailsForCreateEntitlement>;
|
|
3019
|
+
};
|
|
3020
|
+
export declare type CcpCreateEntitlementTrialIntent = {
|
|
3021
|
+
behaviourAtEndOfTrial?: InputMaybe<CcpBehaviourAtEndOfTrial>;
|
|
3022
|
+
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3023
|
+
};
|
|
2984
3024
|
export declare enum CcpCurrency {
|
|
2985
3025
|
Jpy = "JPY",
|
|
2986
3026
|
Usd = "USD"
|
|
@@ -3056,6 +3096,9 @@ export declare type CcpEntitlementDefaultOfferingTransitionsArgs = {
|
|
|
3056
3096
|
export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
3057
3097
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
3058
3098
|
};
|
|
3099
|
+
export declare type CcpEntitlementDetailsForCreateEntitlement = {
|
|
3100
|
+
entitlementId: Scalars['ID']['input'];
|
|
3101
|
+
};
|
|
3059
3102
|
export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
3060
3103
|
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
3061
3104
|
cancelEntitlement?: Maybe<CcpCancelEntitlementExperienceCapability>;
|
|
@@ -3243,7 +3286,7 @@ export declare enum CcpOfferingStatus {
|
|
|
3243
3286
|
Draft = "DRAFT",
|
|
3244
3287
|
Expired = "EXPIRED"
|
|
3245
3288
|
}
|
|
3246
|
-
export declare type CcpOfferingTrial = {
|
|
3289
|
+
export declare type CcpOfferingTrial = CommerceOfferingTrial & {
|
|
3247
3290
|
__typename?: 'CcpOfferingTrial';
|
|
3248
3291
|
lengthDays?: Maybe<Scalars['Int']['output']>;
|
|
3249
3292
|
};
|
|
@@ -3362,6 +3405,7 @@ export declare type CcpQueryApi = {
|
|
|
3362
3405
|
__typename?: 'CcpQueryApi';
|
|
3363
3406
|
entitlement?: Maybe<CcpEntitlement>;
|
|
3364
3407
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
3408
|
+
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
3365
3409
|
offering?: Maybe<CcpOffering>;
|
|
3366
3410
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
3367
3411
|
product?: Maybe<CcpProduct>;
|
|
@@ -3428,6 +3472,13 @@ export declare enum CcpRelationshipType {
|
|
|
3428
3472
|
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
3429
3473
|
SandboxGrant = "SANDBOX_GRANT"
|
|
3430
3474
|
}
|
|
3475
|
+
export declare type CcpRootExperienceCapabilities = {
|
|
3476
|
+
__typename?: 'CcpRootExperienceCapabilities';
|
|
3477
|
+
createEntitlement?: Maybe<CcpCreateEntitlementExperienceCapability>;
|
|
3478
|
+
};
|
|
3479
|
+
export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
|
|
3480
|
+
input: CcpCreateEntitlementInput;
|
|
3481
|
+
};
|
|
3431
3482
|
export declare type CcpSubscription = CommerceSubscription & {
|
|
3432
3483
|
__typename?: 'CcpSubscription';
|
|
3433
3484
|
accountDetails?: Maybe<CcpAccountDetails>;
|
|
@@ -3881,6 +3932,10 @@ export declare type CommerceInvoiceGroupExperienceCapabilities = {
|
|
|
3881
3932
|
};
|
|
3882
3933
|
export declare type CommerceOffering = {
|
|
3883
3934
|
name?: Maybe<Scalars['String']['output']>;
|
|
3935
|
+
trial?: Maybe<CommerceOfferingTrial>;
|
|
3936
|
+
};
|
|
3937
|
+
export declare type CommerceOfferingTrial = {
|
|
3938
|
+
lengthDays?: Maybe<Scalars['Int']['output']>;
|
|
3884
3939
|
};
|
|
3885
3940
|
export declare type CommercePricingPlan = {
|
|
3886
3941
|
currency?: Maybe<CcpCurrency>;
|
|
@@ -4727,7 +4782,6 @@ export declare type CompassComponent = Node & {
|
|
|
4727
4782
|
__typename?: 'CompassComponent';
|
|
4728
4783
|
announcements?: Maybe<Array<CompassAnnouncement>>;
|
|
4729
4784
|
api?: Maybe<CompassComponentApi>;
|
|
4730
|
-
applicableScorecards?: Maybe<Array<CompassScorecard>>;
|
|
4731
4785
|
appliedScorecards?: Maybe<CompassComponentHasScorecardsAppliedConnection>;
|
|
4732
4786
|
changeMetadata: CompassChangeMetadata;
|
|
4733
4787
|
componentDescriptionDetails?: Maybe<CompassComponentDescriptionDetails>;
|
|
@@ -14567,6 +14621,20 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
14567
14621
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
14568
14622
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
14569
14623
|
};
|
|
14624
|
+
export declare type ConfluencePerson = Person & {
|
|
14625
|
+
__typename?: 'ConfluencePerson';
|
|
14626
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
14627
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
14628
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14629
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
14630
|
+
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
14631
|
+
permissionType?: Maybe<SitePermissionType>;
|
|
14632
|
+
publicName?: Maybe<Scalars['String']['output']>;
|
|
14633
|
+
timeZone?: Maybe<Scalars['String']['output']>;
|
|
14634
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
14635
|
+
userKey?: Maybe<Scalars['String']['output']>;
|
|
14636
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
14637
|
+
};
|
|
14570
14638
|
export declare enum ConfluencePrincipalType {
|
|
14571
14639
|
Group = "GROUP",
|
|
14572
14640
|
User = "USER"
|
|
@@ -14754,6 +14822,37 @@ export declare type ConfluenceResolveInlineCommentPayload = {
|
|
|
14754
14822
|
errors?: Maybe<Array<MutationError>>;
|
|
14755
14823
|
success: Scalars['Boolean']['output'];
|
|
14756
14824
|
};
|
|
14825
|
+
export declare type ConfluenceSearchConnection = {
|
|
14826
|
+
__typename?: 'ConfluenceSearchConnection';
|
|
14827
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
14828
|
+
edges?: Maybe<Array<Maybe<ConfluenceSearchResponseEdge>>>;
|
|
14829
|
+
links?: Maybe<LinksContextBase>;
|
|
14830
|
+
nodes?: Maybe<Array<Maybe<ConfluenceSearchResponse>>>;
|
|
14831
|
+
pageInfo?: Maybe<PageInfo>;
|
|
14832
|
+
};
|
|
14833
|
+
export declare type ConfluenceSearchResponse = {
|
|
14834
|
+
__typename?: 'ConfluenceSearchResponse';
|
|
14835
|
+
breadcrumbs: Array<Maybe<Breadcrumb>>;
|
|
14836
|
+
confluencePerson?: Maybe<ConfluencePerson>;
|
|
14837
|
+
content?: Maybe<Content>;
|
|
14838
|
+
entityType?: Maybe<Scalars['String']['output']>;
|
|
14839
|
+
excerpt?: Maybe<Scalars['String']['output']>;
|
|
14840
|
+
friendlyLastModified?: Maybe<Scalars['String']['output']>;
|
|
14841
|
+
iconCssClass?: Maybe<Scalars['String']['output']>;
|
|
14842
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
14843
|
+
links?: Maybe<LinksContextBase>;
|
|
14844
|
+
resultGlobalContainer?: Maybe<ContainerSummary>;
|
|
14845
|
+
resultParentContainer?: Maybe<ContainerSummary>;
|
|
14846
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
14847
|
+
space?: Maybe<Space>;
|
|
14848
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14849
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
14850
|
+
};
|
|
14851
|
+
export declare type ConfluenceSearchResponseEdge = {
|
|
14852
|
+
__typename?: 'ConfluenceSearchResponseEdge';
|
|
14853
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14854
|
+
node?: Maybe<ConfluenceSearchResponse>;
|
|
14855
|
+
};
|
|
14757
14856
|
export declare type ConfluenceSpace = {
|
|
14758
14857
|
__typename?: 'ConfluenceSpace';
|
|
14759
14858
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
@@ -14852,6 +14951,10 @@ export declare type ConfluenceStorage = {
|
|
|
14852
14951
|
gracePeriodEndDate?: Maybe<Scalars['String']['output']>;
|
|
14853
14952
|
isStorageEnforcementGracePeriodComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
14854
14953
|
};
|
|
14954
|
+
export declare type ConfluenceTeamPresenceSpaceSettings = {
|
|
14955
|
+
__typename?: 'ConfluenceTeamPresenceSpaceSettings';
|
|
14956
|
+
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14957
|
+
};
|
|
14855
14958
|
export declare type ConfluenceTenantContext = {
|
|
14856
14959
|
__typename?: 'ConfluenceTenantContext';
|
|
14857
14960
|
baseUrl: Scalars['String']['output'];
|
|
@@ -14960,6 +15063,16 @@ export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = ConfluenceC
|
|
|
14960
15063
|
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
14961
15064
|
success: Scalars['Boolean']['output'];
|
|
14962
15065
|
};
|
|
15066
|
+
export declare type ConfluenceUpdateTeamPresenceSpaceSettingsInput = {
|
|
15067
|
+
isEnabledOnContentView: Scalars['Boolean']['input'];
|
|
15068
|
+
spaceId: Scalars['Long']['input'];
|
|
15069
|
+
};
|
|
15070
|
+
export declare type ConfluenceUpdateTeamPresenceSpaceSettingsPayload = {
|
|
15071
|
+
__typename?: 'ConfluenceUpdateTeamPresenceSpaceSettingsPayload';
|
|
15072
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
15073
|
+
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
15074
|
+
success: Scalars['Boolean']['output'];
|
|
15075
|
+
};
|
|
14963
15076
|
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
14964
15077
|
blogPostId: Scalars['ID']['input'];
|
|
14965
15078
|
key: Scalars['String']['input'];
|
|
@@ -15779,6 +15892,12 @@ export declare type ContainerLookAndFeel = {
|
|
|
15779
15892
|
borderRadius?: Maybe<Scalars['String']['output']>;
|
|
15780
15893
|
padding?: Maybe<Scalars['String']['output']>;
|
|
15781
15894
|
};
|
|
15895
|
+
export declare type ContainerSummary = {
|
|
15896
|
+
__typename?: 'ContainerSummary';
|
|
15897
|
+
displayUrl?: Maybe<Scalars['String']['output']>;
|
|
15898
|
+
links?: Maybe<LinksContextBase>;
|
|
15899
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
15900
|
+
};
|
|
15782
15901
|
export declare enum ContainerType {
|
|
15783
15902
|
Blogpost = "BLOGPOST",
|
|
15784
15903
|
Database = "DATABASE",
|
|
@@ -18090,6 +18209,7 @@ export declare type CreateContentInput = {
|
|
|
18090
18209
|
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
18091
18210
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
18092
18211
|
status: GraphQlContentStatus;
|
|
18212
|
+
subType?: InputMaybe<ConfluencePageSubType>;
|
|
18093
18213
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
18094
18214
|
type: Scalars['String']['input'];
|
|
18095
18215
|
};
|
|
@@ -19518,6 +19638,7 @@ export declare type DataRetention = {
|
|
|
19518
19638
|
retentionDurationInDays?: Maybe<RetentionDurationInDays>;
|
|
19519
19639
|
};
|
|
19520
19640
|
export declare enum DataSecurityPolicyAction {
|
|
19641
|
+
AiAccess = "AI_ACCESS",
|
|
19521
19642
|
AppAccess = "APP_ACCESS",
|
|
19522
19643
|
PageExport = "PAGE_EXPORT",
|
|
19523
19644
|
PublicLinks = "PUBLIC_LINKS"
|
|
@@ -23676,6 +23797,7 @@ export declare type FilterQuery = {
|
|
|
23676
23797
|
};
|
|
23677
23798
|
export declare type FilteredPrincipalSubjectKey = {
|
|
23678
23799
|
__typename?: 'FilteredPrincipalSubjectKey';
|
|
23800
|
+
confluencePerson?: Maybe<ConfluencePerson>;
|
|
23679
23801
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
23680
23802
|
group?: Maybe<Group>;
|
|
23681
23803
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -33809,6 +33931,7 @@ export declare type GraphStoreCypherQueryConnection = {
|
|
|
33809
33931
|
__typename?: 'GraphStoreCypherQueryConnection';
|
|
33810
33932
|
edges: Array<GraphStoreCypherQueryEdge>;
|
|
33811
33933
|
pageInfo: PageInfo;
|
|
33934
|
+
queryResult?: Maybe<GraphStoreCypherQueryResult>;
|
|
33812
33935
|
};
|
|
33813
33936
|
export declare type GraphStoreCypherQueryEdge = {
|
|
33814
33937
|
__typename?: 'GraphStoreCypherQueryEdge';
|
|
@@ -33825,12 +33948,32 @@ export declare type GraphStoreCypherQueryNode = {
|
|
|
33825
33948
|
from: GraphStoreCypherQueryFromNode;
|
|
33826
33949
|
to: GraphStoreCypherQueryToNode;
|
|
33827
33950
|
};
|
|
33951
|
+
export declare type GraphStoreCypherQueryResult = {
|
|
33952
|
+
__typename?: 'GraphStoreCypherQueryResult';
|
|
33953
|
+
columns: Array<Scalars['String']['output']>;
|
|
33954
|
+
rows: Array<GraphStoreCypherQueryResultRow>;
|
|
33955
|
+
};
|
|
33956
|
+
export declare type GraphStoreCypherQueryResultRow = {
|
|
33957
|
+
__typename?: 'GraphStoreCypherQueryResultRow';
|
|
33958
|
+
rowItems: Array<GraphStoreCypherQueryResultRowItem>;
|
|
33959
|
+
};
|
|
33960
|
+
export declare type GraphStoreCypherQueryResultRowItem = {
|
|
33961
|
+
__typename?: 'GraphStoreCypherQueryResultRowItem';
|
|
33962
|
+
key: Scalars['String']['output'];
|
|
33963
|
+
value: Array<GraphStoreCypherQueryValueNode>;
|
|
33964
|
+
};
|
|
33828
33965
|
export declare type GraphStoreCypherQueryToNode = {
|
|
33829
33966
|
__typename?: 'GraphStoreCypherQueryToNode';
|
|
33830
33967
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
33831
33968
|
id: Scalars['ID']['output'];
|
|
33832
33969
|
};
|
|
33833
33970
|
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
33971
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
33972
|
+
export declare type GraphStoreCypherQueryValueNode = {
|
|
33973
|
+
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
33974
|
+
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
33975
|
+
id: Scalars['ID']['output'];
|
|
33976
|
+
};
|
|
33834
33977
|
export declare type GraphStoreDateFilterInput = {
|
|
33835
33978
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
33836
33979
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -44836,6 +44979,11 @@ export declare type HamsInvoiceGroupExperienceCapabilities = CommerceInvoiceGrou
|
|
|
44836
44979
|
export declare type HamsOffering = CommerceOffering & {
|
|
44837
44980
|
__typename?: 'HamsOffering';
|
|
44838
44981
|
name?: Maybe<Scalars['String']['output']>;
|
|
44982
|
+
trial?: Maybe<HamsOfferingTrial>;
|
|
44983
|
+
};
|
|
44984
|
+
export declare type HamsOfferingTrial = CommerceOfferingTrial & {
|
|
44985
|
+
__typename?: 'HamsOfferingTrial';
|
|
44986
|
+
lengthDays?: Maybe<Scalars['Int']['output']>;
|
|
44839
44987
|
};
|
|
44840
44988
|
export declare type HamsPricingPlan = CommercePricingPlan & {
|
|
44841
44989
|
__typename?: 'HamsPricingPlan';
|
|
@@ -46626,7 +46774,14 @@ export declare type HydratingJiraIssueEdge = {
|
|
|
46626
46774
|
};
|
|
46627
46775
|
export declare type Icon = {
|
|
46628
46776
|
__typename?: 'Icon';
|
|
46777
|
+
height?: Maybe<Scalars['Int']['output']>;
|
|
46778
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
46779
|
+
path: Scalars['String']['output'];
|
|
46629
46780
|
url?: Maybe<Scalars['String']['output']>;
|
|
46781
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
46782
|
+
};
|
|
46783
|
+
export declare type IconPathArgs = {
|
|
46784
|
+
type?: InputMaybe<PathType>;
|
|
46630
46785
|
};
|
|
46631
46786
|
export declare type InCompleteCardsDestination = {
|
|
46632
46787
|
__typename?: 'InCompleteCardsDestination';
|
|
@@ -50890,6 +51045,7 @@ export declare type JiraDevOpsPullRequestDetails = {
|
|
|
50890
51045
|
};
|
|
50891
51046
|
export declare type JiraDevOpsQuery = {
|
|
50892
51047
|
__typename?: 'JiraDevOpsQuery';
|
|
51048
|
+
autodevJobById?: Maybe<JiraAutodevJob>;
|
|
50893
51049
|
autodevJobs?: Maybe<JiraAutodevJobConnection>;
|
|
50894
51050
|
autodevJobsByIssues?: Maybe<JiraAutodevJobConnection>;
|
|
50895
51051
|
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
@@ -50900,6 +51056,10 @@ export declare type JiraDevOpsQuery = {
|
|
|
50900
51056
|
isInContextConfigPromptDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
50901
51057
|
toolchain?: Maybe<JiraToolchain>;
|
|
50902
51058
|
};
|
|
51059
|
+
export declare type JiraDevOpsQueryAutodevJobByIdArgs = {
|
|
51060
|
+
cloudId: Scalars['ID']['input'];
|
|
51061
|
+
jobId: Scalars['ID']['input'];
|
|
51062
|
+
};
|
|
50903
51063
|
export declare type JiraDevOpsQueryAutodevJobsArgs = {
|
|
50904
51064
|
issueAri: Scalars['ID']['input'];
|
|
50905
51065
|
jobIdFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -51021,6 +51181,12 @@ export declare type JiraEnableAtlassianIntelligenceDeepLink = {
|
|
|
51021
51181
|
__typename?: 'JiraEnableAtlassianIntelligenceDeepLink';
|
|
51022
51182
|
link?: Maybe<Scalars['String']['output']>;
|
|
51023
51183
|
};
|
|
51184
|
+
export declare type JiraEnablePlanFeaturePayloadGraphQl = Payload & {
|
|
51185
|
+
__typename?: 'JiraEnablePlanFeaturePayloadGraphQL';
|
|
51186
|
+
errors?: Maybe<Array<MutationError>>;
|
|
51187
|
+
plan?: Maybe<JiraPlan>;
|
|
51188
|
+
success: Scalars['Boolean']['output'];
|
|
51189
|
+
};
|
|
51024
51190
|
export declare type JiraEntitlementFieldInput = {
|
|
51025
51191
|
entitlement: JiraEntitlementInput;
|
|
51026
51192
|
fieldId: Scalars['ID']['input'];
|
|
@@ -51313,7 +51479,7 @@ export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
|
|
|
51313
51479
|
errors?: Maybe<Array<MutationError>>;
|
|
51314
51480
|
success: Scalars['Boolean']['output'];
|
|
51315
51481
|
};
|
|
51316
|
-
export declare type JiraFieldSetView = Node & {
|
|
51482
|
+
export declare type JiraFieldSetView = JiraFieldSetsViewMetadata & Node & {
|
|
51317
51483
|
__typename?: 'JiraFieldSetView';
|
|
51318
51484
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
51319
51485
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -51331,6 +51497,24 @@ export declare type JiraFieldSetsMutationInput = {
|
|
|
51331
51497
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
51332
51498
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51333
51499
|
};
|
|
51500
|
+
export declare type JiraFieldSetsViewMetadata = {
|
|
51501
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
51502
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
51503
|
+
id: Scalars['ID']['output'];
|
|
51504
|
+
};
|
|
51505
|
+
export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
51506
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51507
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
51508
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
51509
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51510
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51511
|
+
};
|
|
51512
|
+
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
51513
|
+
__typename?: 'JiraFieldSetsViewPayload';
|
|
51514
|
+
errors?: Maybe<Array<MutationError>>;
|
|
51515
|
+
success: Scalars['Boolean']['output'];
|
|
51516
|
+
view?: Maybe<JiraFieldSetsViewMetadata>;
|
|
51517
|
+
};
|
|
51334
51518
|
export declare type JiraFieldType = {
|
|
51335
51519
|
__typename?: 'JiraFieldType';
|
|
51336
51520
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -54003,6 +54187,7 @@ export declare type JiraJqlCascadingOptionFieldValue = JiraJqlFieldValue & {
|
|
|
54003
54187
|
__typename?: 'JiraJqlCascadingOptionFieldValue';
|
|
54004
54188
|
displayName: Scalars['String']['output'];
|
|
54005
54189
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54190
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54006
54191
|
jqlTerm: Scalars['String']['output'];
|
|
54007
54192
|
optionId?: Maybe<Scalars['ID']['output']>;
|
|
54008
54193
|
parentOption?: Maybe<JiraJqlCascadingOptionFieldValue>;
|
|
@@ -54028,6 +54213,7 @@ export declare type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
|
|
|
54028
54213
|
component?: Maybe<JiraComponent>;
|
|
54029
54214
|
displayName: Scalars['String']['output'];
|
|
54030
54215
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54216
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54031
54217
|
jqlTerm: Scalars['String']['output'];
|
|
54032
54218
|
};
|
|
54033
54219
|
export declare type JiraJqlField = {
|
|
@@ -54066,6 +54252,7 @@ export declare type JiraJqlFieldType = {
|
|
|
54066
54252
|
export declare type JiraJqlFieldValue = {
|
|
54067
54253
|
displayName: Scalars['String']['output'];
|
|
54068
54254
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54255
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54069
54256
|
jqlTerm: Scalars['String']['output'];
|
|
54070
54257
|
};
|
|
54071
54258
|
export declare type JiraJqlFieldValueConnection = {
|
|
@@ -54082,6 +54269,7 @@ export declare type JiraJqlFieldValueEdge = {
|
|
|
54082
54269
|
export declare type JiraJqlFieldWithAliases = {
|
|
54083
54270
|
__typename?: 'JiraJqlFieldWithAliases';
|
|
54084
54271
|
aliases?: Maybe<Array<Scalars['String']['output']>>;
|
|
54272
|
+
fieldId?: Maybe<Scalars['ID']['output']>;
|
|
54085
54273
|
jqlTerm: Scalars['ID']['output'];
|
|
54086
54274
|
};
|
|
54087
54275
|
export declare type JiraJqlFunction = {
|
|
@@ -54107,6 +54295,7 @@ export declare type JiraJqlGoalsFieldValue = JiraJqlFieldValue & {
|
|
|
54107
54295
|
displayName: Scalars['String']['output'];
|
|
54108
54296
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54109
54297
|
goal: JiraGoal;
|
|
54298
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54110
54299
|
jqlTerm: Scalars['String']['output'];
|
|
54111
54300
|
};
|
|
54112
54301
|
export declare type JiraJqlGroupFieldValue = JiraJqlFieldValue & {
|
|
@@ -54114,6 +54303,7 @@ export declare type JiraJqlGroupFieldValue = JiraJqlFieldValue & {
|
|
|
54114
54303
|
displayName: Scalars['String']['output'];
|
|
54115
54304
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54116
54305
|
group: JiraGroup;
|
|
54306
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54117
54307
|
jqlTerm: Scalars['String']['output'];
|
|
54118
54308
|
};
|
|
54119
54309
|
export declare type JiraJqlGroupFieldValueConnection = {
|
|
@@ -54137,6 +54327,7 @@ export declare type JiraJqlIssueFieldValue = JiraJqlFieldValue & {
|
|
|
54137
54327
|
__typename?: 'JiraJqlIssueFieldValue';
|
|
54138
54328
|
displayName: Scalars['String']['output'];
|
|
54139
54329
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54330
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54140
54331
|
issue: JiraIssue;
|
|
54141
54332
|
jqlTerm: Scalars['String']['output'];
|
|
54142
54333
|
};
|
|
@@ -54144,6 +54335,7 @@ export declare type JiraJqlIssueTypeFieldValue = JiraJqlFieldValue & {
|
|
|
54144
54335
|
__typename?: 'JiraJqlIssueTypeFieldValue';
|
|
54145
54336
|
displayName: Scalars['String']['output'];
|
|
54146
54337
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54338
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54147
54339
|
issueTypes: Array<JiraIssueType>;
|
|
54148
54340
|
jqlTerm: Scalars['String']['output'];
|
|
54149
54341
|
};
|
|
@@ -54186,6 +54378,7 @@ export declare type JiraJqlLabelFieldValue = JiraJqlFieldValue & {
|
|
|
54186
54378
|
__typename?: 'JiraJqlLabelFieldValue';
|
|
54187
54379
|
displayName: Scalars['String']['output'];
|
|
54188
54380
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54381
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54189
54382
|
jqlTerm: Scalars['String']['output'];
|
|
54190
54383
|
label?: Maybe<JiraLabel>;
|
|
54191
54384
|
};
|
|
@@ -54193,6 +54386,7 @@ export declare type JiraJqlNumberFieldValue = JiraJqlFieldValue & {
|
|
|
54193
54386
|
__typename?: 'JiraJqlNumberFieldValue';
|
|
54194
54387
|
displayName: Scalars['String']['output'];
|
|
54195
54388
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54389
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54196
54390
|
jqlTerm: Scalars['String']['output'];
|
|
54197
54391
|
number?: Maybe<Scalars['Float']['output']>;
|
|
54198
54392
|
};
|
|
@@ -54219,6 +54413,7 @@ export declare type JiraJqlOptionFieldValue = JiraJqlFieldValue & {
|
|
|
54219
54413
|
__typename?: 'JiraJqlOptionFieldValue';
|
|
54220
54414
|
displayName: Scalars['String']['output'];
|
|
54221
54415
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54416
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54222
54417
|
jqlTerm: Scalars['String']['output'];
|
|
54223
54418
|
option?: Maybe<JiraOption>;
|
|
54224
54419
|
};
|
|
@@ -54237,12 +54432,14 @@ export declare type JiraJqlPlainTextFieldValue = JiraJqlFieldValue & {
|
|
|
54237
54432
|
__typename?: 'JiraJqlPlainTextFieldValue';
|
|
54238
54433
|
displayName: Scalars['String']['output'];
|
|
54239
54434
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54435
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54240
54436
|
jqlTerm: Scalars['String']['output'];
|
|
54241
54437
|
};
|
|
54242
54438
|
export declare type JiraJqlPriorityFieldValue = JiraJqlFieldValue & {
|
|
54243
54439
|
__typename?: 'JiraJqlPriorityFieldValue';
|
|
54244
54440
|
displayName: Scalars['String']['output'];
|
|
54245
54441
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54442
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54246
54443
|
jqlTerm: Scalars['String']['output'];
|
|
54247
54444
|
priority: JiraPriority;
|
|
54248
54445
|
};
|
|
@@ -54250,6 +54447,7 @@ export declare type JiraJqlProjectFieldValue = JiraJqlFieldValue & {
|
|
|
54250
54447
|
__typename?: 'JiraJqlProjectFieldValue';
|
|
54251
54448
|
displayName: Scalars['String']['output'];
|
|
54252
54449
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54450
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54253
54451
|
jqlTerm: Scalars['String']['output'];
|
|
54254
54452
|
project: JiraProject;
|
|
54255
54453
|
};
|
|
@@ -54288,6 +54486,7 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
|
54288
54486
|
__typename?: 'JiraJqlResolutionFieldValue';
|
|
54289
54487
|
displayName: Scalars['String']['output'];
|
|
54290
54488
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54489
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54291
54490
|
jqlTerm: Scalars['String']['output'];
|
|
54292
54491
|
resolution?: Maybe<JiraResolution>;
|
|
54293
54492
|
};
|
|
@@ -54302,6 +54501,7 @@ export declare type JiraJqlSprintFieldValue = JiraJqlFieldValue & {
|
|
|
54302
54501
|
__typename?: 'JiraJqlSprintFieldValue';
|
|
54303
54502
|
displayName: Scalars['String']['output'];
|
|
54304
54503
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54504
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54305
54505
|
jqlTerm: Scalars['String']['output'];
|
|
54306
54506
|
sprint: JiraSprint;
|
|
54307
54507
|
};
|
|
@@ -54320,6 +54520,7 @@ export declare type JiraJqlStatusCategoryFieldValue = JiraJqlFieldValue & {
|
|
|
54320
54520
|
__typename?: 'JiraJqlStatusCategoryFieldValue';
|
|
54321
54521
|
displayName: Scalars['String']['output'];
|
|
54322
54522
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54523
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54323
54524
|
jqlTerm: Scalars['String']['output'];
|
|
54324
54525
|
statusCategory: JiraStatusCategory;
|
|
54325
54526
|
};
|
|
@@ -54327,6 +54528,7 @@ export declare type JiraJqlStatusFieldValue = JiraJqlFieldValue & {
|
|
|
54327
54528
|
__typename?: 'JiraJqlStatusFieldValue';
|
|
54328
54529
|
displayName: Scalars['String']['output'];
|
|
54329
54530
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54531
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54330
54532
|
jqlTerm: Scalars['String']['output'];
|
|
54331
54533
|
status?: Maybe<JiraStatus>;
|
|
54332
54534
|
statusCategory: JiraStatusCategory;
|
|
@@ -54358,6 +54560,7 @@ export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
|
|
|
54358
54560
|
__typename?: 'JiraJqlUserFieldValue';
|
|
54359
54561
|
displayName: Scalars['String']['output'];
|
|
54360
54562
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54563
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54361
54564
|
jqlTerm: Scalars['String']['output'];
|
|
54362
54565
|
user?: Maybe<User>;
|
|
54363
54566
|
};
|
|
@@ -54376,6 +54579,7 @@ export declare type JiraJqlVersionFieldValue = JiraJqlFieldValue & {
|
|
|
54376
54579
|
__typename?: 'JiraJqlVersionFieldValue';
|
|
54377
54580
|
displayName: Scalars['String']['output'];
|
|
54378
54581
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54582
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54379
54583
|
jqlTerm: Scalars['String']['output'];
|
|
54380
54584
|
version?: Maybe<JiraVersion>;
|
|
54381
54585
|
};
|
|
@@ -54418,6 +54622,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
54418
54622
|
};
|
|
54419
54623
|
export declare enum JiraJqlViewContext {
|
|
54420
54624
|
FilterRefinement = "FILTER_REFINEMENT",
|
|
54625
|
+
JpdRoadmaps = "JPD_ROADMAPS",
|
|
54421
54626
|
JswPlans = "JSW_PLANS",
|
|
54422
54627
|
Jwm = "JWM",
|
|
54423
54628
|
ShadowRequest = "SHADOW_REQUEST"
|
|
@@ -55037,6 +55242,8 @@ export declare type JiraMutation = {
|
|
|
55037
55242
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
55038
55243
|
setFieldAssociationWithIssueTypes?: Maybe<JiraSetFieldAssociationWithIssueTypesPayload>;
|
|
55039
55244
|
setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
|
|
55245
|
+
setPlanAutoSchedulerEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
55246
|
+
setPlanMultiScenarioEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
55040
55247
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
55041
55248
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
55042
55249
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
@@ -55053,6 +55260,7 @@ export declare type JiraMutation = {
|
|
|
55053
55260
|
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
55054
55261
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
55055
55262
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
55263
|
+
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
55056
55264
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
55057
55265
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
55058
55266
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -55448,6 +55656,12 @@ export declare type JiraMutationSetFieldAssociationWithIssueTypesArgs = {
|
|
|
55448
55656
|
export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
|
|
55449
55657
|
id: Scalars['ID']['input'];
|
|
55450
55658
|
};
|
|
55659
|
+
export declare type JiraMutationSetPlanAutoSchedulerEnabledArgs = {
|
|
55660
|
+
input?: InputMaybe<JiraPlanFeatureMutationInput>;
|
|
55661
|
+
};
|
|
55662
|
+
export declare type JiraMutationSetPlanMultiScenarioEnabledArgs = {
|
|
55663
|
+
input?: InputMaybe<JiraPlanMultiScenarioFeatureMutationInput>;
|
|
55664
|
+
};
|
|
55451
55665
|
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
55452
55666
|
cloudId: Scalars['ID']['input'];
|
|
55453
55667
|
id: Scalars['ID']['input'];
|
|
@@ -55498,6 +55712,10 @@ export declare type JiraMutationUpdateDateTimeFieldArgs = {
|
|
|
55498
55712
|
export declare type JiraMutationUpdateEntitlementFieldArgs = {
|
|
55499
55713
|
input: JiraServiceManagementUpdateEntitlementFieldInput;
|
|
55500
55714
|
};
|
|
55715
|
+
export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
55716
|
+
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
55717
|
+
id: Scalars['ID']['input'];
|
|
55718
|
+
};
|
|
55501
55719
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
55502
55720
|
input: JiraUpdateForgeObjectFieldInput;
|
|
55503
55721
|
};
|
|
@@ -55797,6 +56015,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
55797
56015
|
Calendar = "CALENDAR",
|
|
55798
56016
|
Code = "CODE",
|
|
55799
56017
|
Components = "COMPONENTS",
|
|
56018
|
+
Dependencies = "DEPENDENCIES",
|
|
55800
56019
|
Deployments = "DEPLOYMENTS",
|
|
55801
56020
|
Development = "DEVELOPMENT",
|
|
55802
56021
|
Forms = "FORMS",
|
|
@@ -55814,6 +56033,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
55814
56033
|
PlanSummary = "PLAN_SUMMARY",
|
|
55815
56034
|
PlanTeams = "PLAN_TEAMS",
|
|
55816
56035
|
PlanTimeline = "PLAN_TIMELINE",
|
|
56036
|
+
Program = "PROGRAM",
|
|
55817
56037
|
Queue = "QUEUE",
|
|
55818
56038
|
Releases = "RELEASES",
|
|
55819
56039
|
Reports = "REPORTS",
|
|
@@ -55821,6 +56041,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
55821
56041
|
Security = "SECURITY",
|
|
55822
56042
|
Shortcuts = "SHORTCUTS",
|
|
55823
56043
|
Summary = "SUMMARY",
|
|
56044
|
+
Teams = "TEAMS",
|
|
55824
56045
|
Timeline = "TIMELINE"
|
|
55825
56046
|
}
|
|
55826
56047
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
@@ -56543,8 +56764,11 @@ export declare enum JiraPermissionType {
|
|
|
56543
56764
|
}
|
|
56544
56765
|
export declare type JiraPlan = Node & {
|
|
56545
56766
|
__typename?: 'JiraPlan';
|
|
56767
|
+
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
56546
56768
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
56547
56769
|
id: Scalars['ID']['output'];
|
|
56770
|
+
isAutoSchedulerEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
56771
|
+
isMultiScenarioEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
56548
56772
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
56549
56773
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
56550
56774
|
owner?: Maybe<User>;
|
|
@@ -56554,6 +56778,15 @@ export declare type JiraPlan = Node & {
|
|
|
56554
56778
|
scenario?: Maybe<JiraScenario>;
|
|
56555
56779
|
title?: Maybe<Scalars['String']['output']>;
|
|
56556
56780
|
};
|
|
56781
|
+
export declare type JiraPlanFeatureMutationInput = {
|
|
56782
|
+
enabled: Scalars['Boolean']['input'];
|
|
56783
|
+
planId: Scalars['ID']['input'];
|
|
56784
|
+
};
|
|
56785
|
+
export declare type JiraPlanMultiScenarioFeatureMutationInput = {
|
|
56786
|
+
enabled: Scalars['Boolean']['input'];
|
|
56787
|
+
planId: Scalars['ID']['input'];
|
|
56788
|
+
scenarioId: Scalars['ID']['input'];
|
|
56789
|
+
};
|
|
56557
56790
|
export declare enum JiraPlanStatus {
|
|
56558
56791
|
Active = "ACTIVE",
|
|
56559
56792
|
Archived = "ARCHIVED",
|
|
@@ -59165,7 +59398,7 @@ export declare type JiraResourceUsageCustomFieldRecommendationEdge = {
|
|
|
59165
59398
|
cursor: Scalars['String']['output'];
|
|
59166
59399
|
node?: Maybe<JiraResourceUsageCustomFieldRecommendation>;
|
|
59167
59400
|
};
|
|
59168
|
-
export declare type JiraResourceUsageMetric = {
|
|
59401
|
+
export declare type JiraResourceUsageMetric = Node & {
|
|
59169
59402
|
__typename?: 'JiraResourceUsageMetric';
|
|
59170
59403
|
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
59171
59404
|
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
@@ -65284,6 +65517,7 @@ export declare type LikeContentPayload = {
|
|
|
65284
65517
|
};
|
|
65285
65518
|
export declare type LikeEntity = {
|
|
65286
65519
|
__typename?: 'LikeEntity';
|
|
65520
|
+
confluencePerson?: Maybe<ConfluencePerson>;
|
|
65287
65521
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
65288
65522
|
currentUserIsFollowing?: Maybe<Scalars['Boolean']['output']>;
|
|
65289
65523
|
};
|
|
@@ -65305,9 +65539,13 @@ export declare type LikesResponse = {
|
|
|
65305
65539
|
count?: Maybe<Scalars['Int']['output']>;
|
|
65306
65540
|
currentUserLikes?: Maybe<Scalars['Boolean']['output']>;
|
|
65307
65541
|
edges?: Maybe<Array<Maybe<LikeEntityEdge>>>;
|
|
65542
|
+
followeePersons: Array<Maybe<ConfluencePerson>>;
|
|
65308
65543
|
nodes?: Maybe<Array<Maybe<LikeEntity>>>;
|
|
65309
65544
|
pageInfo?: Maybe<PageInfo>;
|
|
65310
65545
|
};
|
|
65546
|
+
export declare type LikesResponseFolloweePersonsArgs = {
|
|
65547
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
65548
|
+
};
|
|
65311
65549
|
export declare type LinksContextBase = {
|
|
65312
65550
|
__typename?: 'LinksContextBase';
|
|
65313
65551
|
base?: Maybe<Scalars['String']['output']>;
|
|
@@ -66016,6 +66254,7 @@ export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
|
66016
66254
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
66017
66255
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
66018
66256
|
dcBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
66257
|
+
editionDetails?: InputMaybe<MarketplaceConsoleEditionDetailsInput>;
|
|
66019
66258
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
66020
66259
|
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
66021
66260
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66164,6 +66403,9 @@ export declare type MarketplaceConsoleEdition = {
|
|
|
66164
66403
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
66165
66404
|
type: MarketplaceConsoleEditionType;
|
|
66166
66405
|
};
|
|
66406
|
+
export declare type MarketplaceConsoleEditionDetailsInput = {
|
|
66407
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66408
|
+
};
|
|
66167
66409
|
export declare type MarketplaceConsoleEditionInput = {
|
|
66168
66410
|
features: Array<MarketplaceConsoleFeatureInput>;
|
|
66169
66411
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -67124,6 +67366,14 @@ export declare type MarketplaceStoreAnonymousUserLinks = {
|
|
|
67124
67366
|
__typename?: 'MarketplaceStoreAnonymousUserLinks';
|
|
67125
67367
|
login: Scalars['String']['output'];
|
|
67126
67368
|
};
|
|
67369
|
+
export declare type MarketplaceStoreAppDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
67370
|
+
__typename?: 'MarketplaceStoreAppDetails';
|
|
67371
|
+
id: Scalars['ID']['output'];
|
|
67372
|
+
isMultiInstance: Scalars['Boolean']['output'];
|
|
67373
|
+
multiInstanceEntitlementEditionType: Scalars['String']['output'];
|
|
67374
|
+
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
67375
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
67376
|
+
};
|
|
67127
67377
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
67128
67378
|
Cloud = "CLOUD",
|
|
67129
67379
|
Datacenter = "DATACENTER",
|
|
@@ -67241,6 +67491,10 @@ export declare type MarketplaceStoreEditionsByAppKeyInput = {
|
|
|
67241
67491
|
export declare type MarketplaceStoreEditionsInput = {
|
|
67242
67492
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
67243
67493
|
};
|
|
67494
|
+
export declare enum MarketplaceStoreEnterpriseProduct {
|
|
67495
|
+
Confluence = "CONFLUENCE",
|
|
67496
|
+
Jira = "JIRA"
|
|
67497
|
+
}
|
|
67244
67498
|
export declare type MarketplaceStoreGeoIpResponse = {
|
|
67245
67499
|
__typename?: 'MarketplaceStoreGeoIPResponse';
|
|
67246
67500
|
countryCode: Scalars['String']['output'];
|
|
@@ -67386,6 +67640,28 @@ export declare type MarketplaceStoreLoggedInUserLinksManageDeveloperSpaceArgs =
|
|
|
67386
67640
|
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
67387
67641
|
vendorId: Scalars['ID']['input'];
|
|
67388
67642
|
};
|
|
67643
|
+
export declare type MarketplaceStoreMultiInstanceDetails = {
|
|
67644
|
+
isMultiInstance: Scalars['Boolean']['output'];
|
|
67645
|
+
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
67646
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
67647
|
+
};
|
|
67648
|
+
export declare type MarketplaceStoreMultiInstanceEntitlementForAppInput = {
|
|
67649
|
+
cloudId: Scalars['String']['input'];
|
|
67650
|
+
product: MarketplaceStoreProduct;
|
|
67651
|
+
};
|
|
67652
|
+
export declare type MarketplaceStoreMultiInstanceEntitlementForAppResponse = {
|
|
67653
|
+
__typename?: 'MarketplaceStoreMultiInstanceEntitlementForAppResponse';
|
|
67654
|
+
appDetails?: Maybe<MarketplaceStoreAppDetails>;
|
|
67655
|
+
cloudId: Scalars['String']['output'];
|
|
67656
|
+
};
|
|
67657
|
+
export declare type MarketplaceStoreMultiInstanceEntitlementsForUserInput = {
|
|
67658
|
+
cloudIds: Array<Scalars['String']['input']>;
|
|
67659
|
+
product: MarketplaceStoreEnterpriseProduct;
|
|
67660
|
+
};
|
|
67661
|
+
export declare type MarketplaceStoreMultiInstanceEntitlementsForUserResponse = {
|
|
67662
|
+
__typename?: 'MarketplaceStoreMultiInstanceEntitlementsForUserResponse';
|
|
67663
|
+
orgMultiInstanceEntitlements?: Maybe<Array<MarketplaceStoreOrgMultiInstanceEntitlement>>;
|
|
67664
|
+
};
|
|
67389
67665
|
export declare type MarketplaceStoreMutationApi = {
|
|
67390
67666
|
__typename?: 'MarketplaceStoreMutationApi';
|
|
67391
67667
|
installApp: MarketplaceStoreInstallAppResponse;
|
|
@@ -67393,6 +67669,18 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
67393
67669
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
67394
67670
|
input: MarketplaceStoreInstallAppInput;
|
|
67395
67671
|
};
|
|
67672
|
+
export declare type MarketplaceStoreOrgDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
67673
|
+
__typename?: 'MarketplaceStoreOrgDetails';
|
|
67674
|
+
id: Scalars['ID']['output'];
|
|
67675
|
+
isMultiInstance: Scalars['Boolean']['output'];
|
|
67676
|
+
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
67677
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
67678
|
+
};
|
|
67679
|
+
export declare type MarketplaceStoreOrgMultiInstanceEntitlement = {
|
|
67680
|
+
__typename?: 'MarketplaceStoreOrgMultiInstanceEntitlement';
|
|
67681
|
+
cloudId: Scalars['String']['output'];
|
|
67682
|
+
orgDetails?: Maybe<MarketplaceStoreOrgDetails>;
|
|
67683
|
+
};
|
|
67396
67684
|
export declare type MarketplaceStorePartnerAddress = {
|
|
67397
67685
|
__typename?: 'MarketplaceStorePartnerAddress';
|
|
67398
67686
|
city?: Maybe<Scalars['String']['output']>;
|
|
@@ -67505,6 +67793,9 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
|
|
|
67505
67793
|
floor: Scalars['Float']['output'];
|
|
67506
67794
|
unitAmount?: Maybe<Scalars['Float']['output']>;
|
|
67507
67795
|
};
|
|
67796
|
+
export declare type MarketplaceStoreProduct = {
|
|
67797
|
+
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
67798
|
+
};
|
|
67508
67799
|
export declare type MarketplaceStoreQueryApi = {
|
|
67509
67800
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
67510
67801
|
appReviews: MarketplaceStoreReviewsResponse;
|
|
@@ -67519,6 +67810,8 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
67519
67810
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
67520
67811
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
67521
67812
|
installedAppDetails: MarketplaceStoreInstalledAppDetailsResponse;
|
|
67813
|
+
multiInstanceEntitlementForApp: MarketplaceStoreMultiInstanceEntitlementForAppResponse;
|
|
67814
|
+
multiInstanceEntitlementsForUser: MarketplaceStoreMultiInstanceEntitlementsForUserResponse;
|
|
67522
67815
|
myReview: MarketplaceStoreCurrentUserReviewResponse;
|
|
67523
67816
|
partner: MarketplaceStorePartnerResponse;
|
|
67524
67817
|
};
|
|
@@ -67555,6 +67848,12 @@ export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
|
67555
67848
|
export declare type MarketplaceStoreQueryApiInstalledAppDetailsArgs = {
|
|
67556
67849
|
input: MarketplaceStoreInstallAppInput;
|
|
67557
67850
|
};
|
|
67851
|
+
export declare type MarketplaceStoreQueryApiMultiInstanceEntitlementForAppArgs = {
|
|
67852
|
+
input: MarketplaceStoreMultiInstanceEntitlementForAppInput;
|
|
67853
|
+
};
|
|
67854
|
+
export declare type MarketplaceStoreQueryApiMultiInstanceEntitlementsForUserArgs = {
|
|
67855
|
+
input: MarketplaceStoreMultiInstanceEntitlementsForUserInput;
|
|
67856
|
+
};
|
|
67558
67857
|
export declare type MarketplaceStoreQueryApiMyReviewArgs = {
|
|
67559
67858
|
appKey: Scalars['String']['input'];
|
|
67560
67859
|
};
|
|
@@ -69374,6 +69673,7 @@ export declare type Mutation = {
|
|
|
69374
69673
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
69375
69674
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
69376
69675
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
69676
|
+
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
69377
69677
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
69378
69678
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
69379
69679
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -70229,6 +70529,10 @@ export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
|
70229
70529
|
cloudId: Scalars['ID']['input'];
|
|
70230
70530
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
70231
70531
|
};
|
|
70532
|
+
export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
|
|
70533
|
+
cloudId: Scalars['ID']['input'];
|
|
70534
|
+
input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
|
|
70535
|
+
};
|
|
70232
70536
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
70233
70537
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
70234
70538
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -71640,6 +71944,7 @@ export declare type PeapProgramEnrollmentQueryJiraArgs = {
|
|
|
71640
71944
|
};
|
|
71641
71945
|
export declare type PeapProgramInternalData = {
|
|
71642
71946
|
__typename?: 'PEAPProgramInternalData';
|
|
71947
|
+
availableStatusTransitions: Array<PeapProgramStatus>;
|
|
71643
71948
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
71644
71949
|
cdacGroupURL?: Maybe<Scalars['String']['output']>;
|
|
71645
71950
|
changeTicketURL?: Maybe<Scalars['String']['output']>;
|
|
@@ -72550,6 +72855,11 @@ export declare type PatchCommentsSummaryPayload = {
|
|
|
72550
72855
|
summary: Scalars['String']['output'];
|
|
72551
72856
|
summaryId: Scalars['ID']['output'];
|
|
72552
72857
|
};
|
|
72858
|
+
export declare enum PathType {
|
|
72859
|
+
Absolute = "ABSOLUTE",
|
|
72860
|
+
Relative = "RELATIVE",
|
|
72861
|
+
RelativeNoContext = "RELATIVE_NO_CONTEXT"
|
|
72862
|
+
}
|
|
72553
72863
|
export declare type Payload = {
|
|
72554
72864
|
errors?: Maybe<Array<MutationError>>;
|
|
72555
72865
|
success: Scalars['Boolean']['output'];
|
|
@@ -73551,6 +73861,7 @@ export declare type PushNotificationCustomSettings = {
|
|
|
73551
73861
|
commentReply: Scalars['Boolean']['output'];
|
|
73552
73862
|
createBlogPost: Scalars['Boolean']['output'];
|
|
73553
73863
|
createPage: Scalars['Boolean']['output'];
|
|
73864
|
+
dailyDigest?: Maybe<Scalars['Boolean']['output']>;
|
|
73554
73865
|
editBlogPost: Scalars['Boolean']['output'];
|
|
73555
73866
|
editPage: Scalars['Boolean']['output'];
|
|
73556
73867
|
grantContentAccessEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -73575,6 +73886,7 @@ export declare type PushNotificationCustomSettingsInput = {
|
|
|
73575
73886
|
commentReply: Scalars['Boolean']['input'];
|
|
73576
73887
|
createBlogPost: Scalars['Boolean']['input'];
|
|
73577
73888
|
createPage: Scalars['Boolean']['input'];
|
|
73889
|
+
dailyDigest?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73578
73890
|
editBlogPost: Scalars['Boolean']['input'];
|
|
73579
73891
|
editPage: Scalars['Boolean']['input'];
|
|
73580
73892
|
grantContentAccessEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -73884,8 +74196,12 @@ export declare type Query = {
|
|
|
73884
74196
|
confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
|
|
73885
74197
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
73886
74198
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
74199
|
+
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
74200
|
+
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
73887
74201
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
74202
|
+
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
73888
74203
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
74204
|
+
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
73889
74205
|
confluence_template?: Maybe<ContentTemplate>;
|
|
73890
74206
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
73891
74207
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
@@ -75434,14 +75750,44 @@ export declare type QueryConfluenceV2_SpacesArgs = {
|
|
|
75434
75750
|
export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
75435
75751
|
cloudId: Scalars['ID']['input'];
|
|
75436
75752
|
};
|
|
75753
|
+
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
75754
|
+
cloudId: Scalars['ID']['input'];
|
|
75755
|
+
migrationId: Scalars['String']['input'];
|
|
75756
|
+
};
|
|
75757
|
+
export declare type QueryConfluence_SearchArgs = {
|
|
75758
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75759
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
75760
|
+
cloudId: Scalars['ID']['input'];
|
|
75761
|
+
cql: Scalars['String']['input'];
|
|
75762
|
+
cqlcontext?: InputMaybe<Scalars['String']['input']>;
|
|
75763
|
+
disableArchivedSpaceFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75764
|
+
excerpt?: InputMaybe<Scalars['String']['input']>;
|
|
75765
|
+
excludeCurrentSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75766
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75767
|
+
includeArchivedSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75768
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
75769
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
75770
|
+
};
|
|
75437
75771
|
export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
75438
75772
|
cloudId: Scalars['ID']['input'];
|
|
75439
75773
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
75440
75774
|
searchText: Scalars['String']['input'];
|
|
75441
75775
|
};
|
|
75776
|
+
export declare type QueryConfluence_SearchUserArgs = {
|
|
75777
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75778
|
+
cloudId: Scalars['ID']['input'];
|
|
75779
|
+
cql: Scalars['String']['input'];
|
|
75780
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75781
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
75782
|
+
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
75783
|
+
};
|
|
75442
75784
|
export declare type QueryConfluence_StorageArgs = {
|
|
75443
75785
|
cloudId: Scalars['ID']['input'];
|
|
75444
75786
|
};
|
|
75787
|
+
export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
|
|
75788
|
+
cloudId: Scalars['ID']['input'];
|
|
75789
|
+
spaceId: Scalars['Long']['input'];
|
|
75790
|
+
};
|
|
75445
75791
|
export declare type QueryConfluence_TemplateArgs = {
|
|
75446
75792
|
cloudId: Scalars['ID']['input'];
|
|
75447
75793
|
contentTemplateId: Scalars['String']['input'];
|
|
@@ -76885,6 +77231,7 @@ export declare enum QueryType {
|
|
|
76885
77231
|
export declare type QuickReload = {
|
|
76886
77232
|
__typename?: 'QuickReload';
|
|
76887
77233
|
comments: Array<QuickReloadComment>;
|
|
77234
|
+
editorPersonForPage?: Maybe<ConfluencePerson>;
|
|
76888
77235
|
time: Scalars['Long']['output'];
|
|
76889
77236
|
};
|
|
76890
77237
|
export declare type QuickReloadComment = {
|
|
@@ -76946,6 +77293,7 @@ export declare type RadarFieldDefinition = Node & {
|
|
|
76946
77293
|
filterOptions: RadarFilterOptions;
|
|
76947
77294
|
id: Scalars['ID']['output'];
|
|
76948
77295
|
isCustom: Scalars['Boolean']['output'];
|
|
77296
|
+
isGroupable: Scalars['Boolean']['output'];
|
|
76949
77297
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
76950
77298
|
relativeId: Scalars['String']['output'];
|
|
76951
77299
|
type: RadarFieldType;
|
|
@@ -77017,6 +77365,7 @@ export declare type RadarFunction = {
|
|
|
77017
77365
|
operators: Array<RadarFilterOperators>;
|
|
77018
77366
|
};
|
|
77019
77367
|
export declare enum RadarFunctionId {
|
|
77368
|
+
Haschild = "HASCHILD",
|
|
77020
77369
|
Under = "UNDER"
|
|
77021
77370
|
}
|
|
77022
77371
|
export declare type RadarGroupMetrics = {
|
|
@@ -78587,7 +78936,6 @@ export declare enum Scope {
|
|
|
78587
78936
|
ReadJswSprint = "READ_JSW_SPRINT",
|
|
78588
78937
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
78589
78938
|
ReadMe = "READ_ME",
|
|
78590
|
-
ReadMercury = "READ_MERCURY",
|
|
78591
78939
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
78592
78940
|
ReadOrganization = "READ_ORGANIZATION",
|
|
78593
78941
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
@@ -78692,7 +79040,6 @@ export declare enum Scope {
|
|
|
78692
79040
|
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
78693
79041
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
78694
79042
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
78695
|
-
WriteMercury = "WRITE_MERCURY",
|
|
78696
79043
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
78697
79044
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
78698
79045
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
@@ -82371,6 +82718,7 @@ export declare enum StringUserInputType {
|
|
|
82371
82718
|
}
|
|
82372
82719
|
export declare type SubjectKey = {
|
|
82373
82720
|
__typename?: 'SubjectKey';
|
|
82721
|
+
confluencePerson?: Maybe<ConfluencePerson>;
|
|
82374
82722
|
confluencePrincipalType: ConfluencePrincipalType;
|
|
82375
82723
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
82376
82724
|
group?: Maybe<Group>;
|
|
@@ -83864,6 +84212,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
83864
84212
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
83865
84213
|
id: Scalars['ID']['output'];
|
|
83866
84214
|
isArchived: Scalars['Boolean']['output'];
|
|
84215
|
+
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
83867
84216
|
key: Scalars['String']['output'];
|
|
83868
84217
|
name: Scalars['String']['output'];
|
|
83869
84218
|
owner?: Maybe<User>;
|
|
@@ -84914,7 +85263,8 @@ export declare type TrelloCardEdge = {
|
|
|
84914
85263
|
node?: Maybe<TrelloCard>;
|
|
84915
85264
|
};
|
|
84916
85265
|
export declare enum TrelloCardExternalSource {
|
|
84917
|
-
Email = "EMAIL"
|
|
85266
|
+
Email = "EMAIL",
|
|
85267
|
+
Slack = "SLACK"
|
|
84918
85268
|
}
|
|
84919
85269
|
export declare type TrelloCardLimit = {
|
|
84920
85270
|
__typename?: 'TrelloCardLimit';
|
|
@@ -85953,13 +86303,9 @@ export declare type TrelloStickerUpdatedConnection = {
|
|
|
85953
86303
|
};
|
|
85954
86304
|
export declare type TrelloSubscriptionApi = {
|
|
85955
86305
|
__typename?: 'TrelloSubscriptionApi';
|
|
85956
|
-
cardsById?: Maybe<TrelloBoardUpdated>;
|
|
85957
86306
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
85958
86307
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
85959
86308
|
};
|
|
85960
|
-
export declare type TrelloSubscriptionApiCardsByIdArgs = {
|
|
85961
|
-
ids: Array<Scalars['ID']['input']>;
|
|
85962
|
-
};
|
|
85963
86309
|
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
85964
86310
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
85965
86311
|
id: Scalars['ID']['input'];
|
|
@@ -86236,11 +86582,21 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
86236
86582
|
emailId: Scalars['String']['output'];
|
|
86237
86583
|
id: Scalars['ID']['output'];
|
|
86238
86584
|
internalId: Scalars['String']['output'];
|
|
86585
|
+
isForumsModerator: Scalars['Boolean']['output'];
|
|
86239
86586
|
isLinked: Scalars['Boolean']['output'];
|
|
86240
86587
|
isManaged: Scalars['Boolean']['output'];
|
|
86241
86588
|
isPrimary: Scalars['Boolean']['output'];
|
|
86242
86589
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
86243
86590
|
};
|
|
86591
|
+
export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
86592
|
+
__typename?: 'UnifiedAccountBasics';
|
|
86593
|
+
aaid: Scalars['String']['output'];
|
|
86594
|
+
id: Scalars['ID']['output'];
|
|
86595
|
+
isLinked: Scalars['Boolean']['output'];
|
|
86596
|
+
isManaged: Scalars['Boolean']['output'];
|
|
86597
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
86598
|
+
linkedAccountsBasics?: Maybe<UnifiedULinkedAccountBasicsResult>;
|
|
86599
|
+
};
|
|
86244
86600
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
86245
86601
|
__typename?: 'UnifiedAccountDetails';
|
|
86246
86602
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -86584,6 +86940,17 @@ export declare type UnifiedLinkInitiationPayload = {
|
|
|
86584
86940
|
id: Scalars['ID']['output'];
|
|
86585
86941
|
token: Scalars['String']['output'];
|
|
86586
86942
|
};
|
|
86943
|
+
export declare type UnifiedLinkedAccountBasicsConnection = UnifiedIConnection & {
|
|
86944
|
+
__typename?: 'UnifiedLinkedAccountBasicsConnection';
|
|
86945
|
+
edges?: Maybe<Array<Maybe<UnifiedLinkedAccountBasicsEdge>>>;
|
|
86946
|
+
pageInfo: UnifiedPageInfo;
|
|
86947
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
86948
|
+
};
|
|
86949
|
+
export declare type UnifiedLinkedAccountBasicsEdge = UnifiedIEdge & {
|
|
86950
|
+
__typename?: 'UnifiedLinkedAccountBasicsEdge';
|
|
86951
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86952
|
+
node?: Maybe<UnifiedAccountBasics>;
|
|
86953
|
+
};
|
|
86587
86954
|
export declare type UnifiedLinkedAccountConnection = UnifiedIConnection & {
|
|
86588
86955
|
__typename?: 'UnifiedLinkedAccountConnection';
|
|
86589
86956
|
edges?: Maybe<Array<Maybe<UnifiedLinkedAccountEdge>>>;
|
|
@@ -86732,6 +87099,7 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
86732
87099
|
export declare type UnifiedQuery = {
|
|
86733
87100
|
__typename?: 'UnifiedQuery';
|
|
86734
87101
|
account?: Maybe<UnifiedUAccountResult>;
|
|
87102
|
+
accountBasics?: Maybe<UnifiedUAccountBasicsResult>;
|
|
86735
87103
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
86736
87104
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
86737
87105
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
@@ -86742,6 +87110,9 @@ export declare type UnifiedQuery = {
|
|
|
86742
87110
|
export declare type UnifiedQueryAccountArgs = {
|
|
86743
87111
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
86744
87112
|
};
|
|
87113
|
+
export declare type UnifiedQueryAccountBasicsArgs = {
|
|
87114
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
87115
|
+
};
|
|
86745
87116
|
export declare type UnifiedQueryAccountDetailsArgs = {
|
|
86746
87117
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
86747
87118
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -86755,6 +87126,7 @@ export declare type UnifiedQueryNodeArgs = {
|
|
|
86755
87126
|
};
|
|
86756
87127
|
export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
86757
87128
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
87129
|
+
internalId?: InputMaybe<Scalars['String']['input']>;
|
|
86758
87130
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
86759
87131
|
};
|
|
86760
87132
|
export declare type UnifiedQueryError = UnifiedIQueryError & {
|
|
@@ -86790,6 +87162,7 @@ export declare enum UnifiedSortDirection {
|
|
|
86790
87162
|
Asc = "ASC",
|
|
86791
87163
|
Desc = "DESC"
|
|
86792
87164
|
}
|
|
87165
|
+
export declare type UnifiedUAccountBasicsResult = UnifiedAccountBasics | UnifiedQueryError;
|
|
86793
87166
|
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
86794
87167
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
86795
87168
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
@@ -86808,6 +87181,7 @@ export declare type UnifiedULearningCertificationResult = UnifiedLearningCertifi
|
|
|
86808
87181
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
86809
87182
|
export declare type UnifiedULinkAuthenticationPayload = UnifiedLinkAuthenticationPayload | UnifiedLinkingStatusPayload;
|
|
86810
87183
|
export declare type UnifiedULinkInitiationPayload = UnifiedLinkInitiationPayload | UnifiedLinkingStatusPayload;
|
|
87184
|
+
export declare type UnifiedULinkedAccountBasicsResult = UnifiedLinkedAccountBasicsConnection | UnifiedQueryError;
|
|
86811
87185
|
export declare type UnifiedULinkedAccountResult = UnifiedLinkedAccountConnection | UnifiedQueryError;
|
|
86812
87186
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
86813
87187
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
@@ -88359,6 +88733,7 @@ export declare type WatchContentInput = {
|
|
|
88359
88733
|
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
88360
88734
|
contentId: Scalars['ID']['input'];
|
|
88361
88735
|
currentUser?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88736
|
+
includeChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88362
88737
|
};
|
|
88363
88738
|
export declare type WatchContentPayload = {
|
|
88364
88739
|
__typename?: 'WatchContentPayload';
|