@forge/cli-shared 6.5.3-next.0 → 6.5.3-next.2
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 +14 -0
- package/out/graphql/graphql-types.d.ts +477 -20
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +65 -24
- package/package.json +2 -2
|
@@ -855,6 +855,7 @@ export declare type Anonymous = Person & {
|
|
|
855
855
|
links?: Maybe<LinksContextBase>;
|
|
856
856
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
857
857
|
permissionType?: Maybe<SitePermissionType>;
|
|
858
|
+
profilePicture?: Maybe<Icon>;
|
|
858
859
|
type?: Maybe<Scalars['String']['output']>;
|
|
859
860
|
};
|
|
860
861
|
export declare type AnonymousWithPermissionsInput = {
|
|
@@ -2585,6 +2586,13 @@ export declare type BordersAndDividersLookAndFeel = {
|
|
|
2585
2586
|
__typename?: 'BordersAndDividersLookAndFeel';
|
|
2586
2587
|
color?: Maybe<Scalars['String']['output']>;
|
|
2587
2588
|
};
|
|
2589
|
+
export declare type Breadcrumb = {
|
|
2590
|
+
__typename?: 'Breadcrumb';
|
|
2591
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
2592
|
+
links?: Maybe<LinksContextBase>;
|
|
2593
|
+
separator?: Maybe<Scalars['String']['output']>;
|
|
2594
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
2595
|
+
};
|
|
2588
2596
|
export declare enum BuiltinPolarisIdeaField {
|
|
2589
2597
|
Archived = "ARCHIVED",
|
|
2590
2598
|
ArchivedBy = "ARCHIVED_BY",
|
|
@@ -2914,6 +2922,11 @@ export declare type CcpApplicationReason = {
|
|
|
2914
2922
|
__typename?: 'CcpApplicationReason';
|
|
2915
2923
|
id?: Maybe<Scalars['ID']['output']>;
|
|
2916
2924
|
};
|
|
2925
|
+
export declare enum CcpBehaviourAtEndOfTrial {
|
|
2926
|
+
Cancel = "CANCEL",
|
|
2927
|
+
ConvertToPaid = "CONVERT_TO_PAID",
|
|
2928
|
+
RevertTrial = "REVERT_TRIAL"
|
|
2929
|
+
}
|
|
2917
2930
|
export declare type CcpBenefit = {
|
|
2918
2931
|
__typename?: 'CcpBenefit';
|
|
2919
2932
|
duration?: Maybe<CcpDuration>;
|
|
@@ -2981,6 +2994,34 @@ export declare type CcpContext = {
|
|
|
2981
2994
|
subject?: Maybe<Scalars['String']['output']>;
|
|
2982
2995
|
subjectType?: Maybe<Scalars['String']['output']>;
|
|
2983
2996
|
};
|
|
2997
|
+
export declare type CcpCreateEntitlementExperienceCapability = CommerceExperienceCapability & {
|
|
2998
|
+
__typename?: 'CcpCreateEntitlementExperienceCapability';
|
|
2999
|
+
errorDescription?: Maybe<Scalars['String']['output']>;
|
|
3000
|
+
errorReasonCode?: Maybe<CcpCreateEntitlementExperienceCapabilityErrorReasonCode>;
|
|
3001
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
3002
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
3003
|
+
};
|
|
3004
|
+
export declare enum CcpCreateEntitlementExperienceCapabilityErrorReasonCode {
|
|
3005
|
+
MultipleTransactionAccount = "MULTIPLE_TRANSACTION_ACCOUNT",
|
|
3006
|
+
UsecaseNotImplemented = "USECASE_NOT_IMPLEMENTED"
|
|
3007
|
+
}
|
|
3008
|
+
export declare type CcpCreateEntitlementInput = {
|
|
3009
|
+
offeringKey: Scalars['ID']['input'];
|
|
3010
|
+
orderOptions?: InputMaybe<CcpCreateEntitlementOrderOptions>;
|
|
3011
|
+
relatesToEntitlements?: InputMaybe<Array<CcpCreateEntitlementRelatesTo>>;
|
|
3012
|
+
};
|
|
3013
|
+
export declare type CcpCreateEntitlementOrderOptions = {
|
|
3014
|
+
billingCycle?: InputMaybe<CcpBillingInterval>;
|
|
3015
|
+
provisioningRequestId?: InputMaybe<Scalars['ID']['input']>;
|
|
3016
|
+
trial?: InputMaybe<CcpCreateEntitlementTrialIntent>;
|
|
3017
|
+
};
|
|
3018
|
+
export declare type CcpCreateEntitlementRelatesTo = {
|
|
3019
|
+
entitlement?: InputMaybe<CcpEntitlementDetailsForCreateEntitlement>;
|
|
3020
|
+
};
|
|
3021
|
+
export declare type CcpCreateEntitlementTrialIntent = {
|
|
3022
|
+
behaviourAtEndOfTrial?: InputMaybe<CcpBehaviourAtEndOfTrial>;
|
|
3023
|
+
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3024
|
+
};
|
|
2984
3025
|
export declare enum CcpCurrency {
|
|
2985
3026
|
Jpy = "JPY",
|
|
2986
3027
|
Usd = "USD"
|
|
@@ -3056,6 +3097,9 @@ export declare type CcpEntitlementDefaultOfferingTransitionsArgs = {
|
|
|
3056
3097
|
export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
3057
3098
|
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
3058
3099
|
};
|
|
3100
|
+
export declare type CcpEntitlementDetailsForCreateEntitlement = {
|
|
3101
|
+
entitlementId: Scalars['ID']['input'];
|
|
3102
|
+
};
|
|
3059
3103
|
export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
3060
3104
|
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
3061
3105
|
cancelEntitlement?: Maybe<CcpCancelEntitlementExperienceCapability>;
|
|
@@ -3243,7 +3287,7 @@ export declare enum CcpOfferingStatus {
|
|
|
3243
3287
|
Draft = "DRAFT",
|
|
3244
3288
|
Expired = "EXPIRED"
|
|
3245
3289
|
}
|
|
3246
|
-
export declare type CcpOfferingTrial = {
|
|
3290
|
+
export declare type CcpOfferingTrial = CommerceOfferingTrial & {
|
|
3247
3291
|
__typename?: 'CcpOfferingTrial';
|
|
3248
3292
|
lengthDays?: Maybe<Scalars['Int']['output']>;
|
|
3249
3293
|
};
|
|
@@ -3362,6 +3406,7 @@ export declare type CcpQueryApi = {
|
|
|
3362
3406
|
__typename?: 'CcpQueryApi';
|
|
3363
3407
|
entitlement?: Maybe<CcpEntitlement>;
|
|
3364
3408
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
3409
|
+
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
3365
3410
|
offering?: Maybe<CcpOffering>;
|
|
3366
3411
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
3367
3412
|
product?: Maybe<CcpProduct>;
|
|
@@ -3428,6 +3473,13 @@ export declare enum CcpRelationshipType {
|
|
|
3428
3473
|
SandboxDependence = "SANDBOX_DEPENDENCE",
|
|
3429
3474
|
SandboxGrant = "SANDBOX_GRANT"
|
|
3430
3475
|
}
|
|
3476
|
+
export declare type CcpRootExperienceCapabilities = {
|
|
3477
|
+
__typename?: 'CcpRootExperienceCapabilities';
|
|
3478
|
+
createEntitlement?: Maybe<CcpCreateEntitlementExperienceCapability>;
|
|
3479
|
+
};
|
|
3480
|
+
export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
|
|
3481
|
+
input: CcpCreateEntitlementInput;
|
|
3482
|
+
};
|
|
3431
3483
|
export declare type CcpSubscription = CommerceSubscription & {
|
|
3432
3484
|
__typename?: 'CcpSubscription';
|
|
3433
3485
|
accountDetails?: Maybe<CcpAccountDetails>;
|
|
@@ -3881,6 +3933,10 @@ export declare type CommerceInvoiceGroupExperienceCapabilities = {
|
|
|
3881
3933
|
};
|
|
3882
3934
|
export declare type CommerceOffering = {
|
|
3883
3935
|
name?: Maybe<Scalars['String']['output']>;
|
|
3936
|
+
trial?: Maybe<CommerceOfferingTrial>;
|
|
3937
|
+
};
|
|
3938
|
+
export declare type CommerceOfferingTrial = {
|
|
3939
|
+
lengthDays?: Maybe<Scalars['Int']['output']>;
|
|
3884
3940
|
};
|
|
3885
3941
|
export declare type CommercePricingPlan = {
|
|
3886
3942
|
currency?: Maybe<CcpCurrency>;
|
|
@@ -4727,7 +4783,6 @@ export declare type CompassComponent = Node & {
|
|
|
4727
4783
|
__typename?: 'CompassComponent';
|
|
4728
4784
|
announcements?: Maybe<Array<CompassAnnouncement>>;
|
|
4729
4785
|
api?: Maybe<CompassComponentApi>;
|
|
4730
|
-
applicableScorecards?: Maybe<Array<CompassScorecard>>;
|
|
4731
4786
|
appliedScorecards?: Maybe<CompassComponentHasScorecardsAppliedConnection>;
|
|
4732
4787
|
changeMetadata: CompassChangeMetadata;
|
|
4733
4788
|
componentDescriptionDetails?: Maybe<CompassComponentDescriptionDetails>;
|
|
@@ -14567,6 +14622,21 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
14567
14622
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
14568
14623
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
14569
14624
|
};
|
|
14625
|
+
export declare type ConfluencePerson = Person & {
|
|
14626
|
+
__typename?: 'ConfluencePerson';
|
|
14627
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
14628
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
14629
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14630
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
14631
|
+
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
14632
|
+
permissionType?: Maybe<SitePermissionType>;
|
|
14633
|
+
profilePicture?: Maybe<Icon>;
|
|
14634
|
+
publicName?: Maybe<Scalars['String']['output']>;
|
|
14635
|
+
timeZone?: Maybe<Scalars['String']['output']>;
|
|
14636
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
14637
|
+
userKey?: Maybe<Scalars['String']['output']>;
|
|
14638
|
+
username?: Maybe<Scalars['String']['output']>;
|
|
14639
|
+
};
|
|
14570
14640
|
export declare enum ConfluencePrincipalType {
|
|
14571
14641
|
Group = "GROUP",
|
|
14572
14642
|
User = "USER"
|
|
@@ -14754,6 +14824,37 @@ export declare type ConfluenceResolveInlineCommentPayload = {
|
|
|
14754
14824
|
errors?: Maybe<Array<MutationError>>;
|
|
14755
14825
|
success: Scalars['Boolean']['output'];
|
|
14756
14826
|
};
|
|
14827
|
+
export declare type ConfluenceSearchConnection = {
|
|
14828
|
+
__typename?: 'ConfluenceSearchConnection';
|
|
14829
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
14830
|
+
edges?: Maybe<Array<Maybe<ConfluenceSearchResponseEdge>>>;
|
|
14831
|
+
links?: Maybe<LinksContextBase>;
|
|
14832
|
+
nodes?: Maybe<Array<Maybe<ConfluenceSearchResponse>>>;
|
|
14833
|
+
pageInfo?: Maybe<PageInfo>;
|
|
14834
|
+
};
|
|
14835
|
+
export declare type ConfluenceSearchResponse = {
|
|
14836
|
+
__typename?: 'ConfluenceSearchResponse';
|
|
14837
|
+
breadcrumbs: Array<Maybe<Breadcrumb>>;
|
|
14838
|
+
confluencePerson?: Maybe<ConfluencePerson>;
|
|
14839
|
+
content?: Maybe<Content>;
|
|
14840
|
+
entityType?: Maybe<Scalars['String']['output']>;
|
|
14841
|
+
excerpt?: Maybe<Scalars['String']['output']>;
|
|
14842
|
+
friendlyLastModified?: Maybe<Scalars['String']['output']>;
|
|
14843
|
+
iconCssClass?: Maybe<Scalars['String']['output']>;
|
|
14844
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
14845
|
+
links?: Maybe<LinksContextBase>;
|
|
14846
|
+
resultGlobalContainer?: Maybe<ContainerSummary>;
|
|
14847
|
+
resultParentContainer?: Maybe<ContainerSummary>;
|
|
14848
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
14849
|
+
space?: Maybe<Space>;
|
|
14850
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14851
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
14852
|
+
};
|
|
14853
|
+
export declare type ConfluenceSearchResponseEdge = {
|
|
14854
|
+
__typename?: 'ConfluenceSearchResponseEdge';
|
|
14855
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14856
|
+
node?: Maybe<ConfluenceSearchResponse>;
|
|
14857
|
+
};
|
|
14757
14858
|
export declare type ConfluenceSpace = {
|
|
14758
14859
|
__typename?: 'ConfluenceSpace';
|
|
14759
14860
|
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
@@ -14852,6 +14953,14 @@ export declare type ConfluenceStorage = {
|
|
|
14852
14953
|
gracePeriodEndDate?: Maybe<Scalars['String']['output']>;
|
|
14853
14954
|
isStorageEnforcementGracePeriodComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
14854
14955
|
};
|
|
14956
|
+
export declare type ConfluenceTeamPresence = {
|
|
14957
|
+
__typename?: 'ConfluenceTeamPresence';
|
|
14958
|
+
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14959
|
+
};
|
|
14960
|
+
export declare type ConfluenceTeamPresenceSpaceSettings = {
|
|
14961
|
+
__typename?: 'ConfluenceTeamPresenceSpaceSettings';
|
|
14962
|
+
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14963
|
+
};
|
|
14855
14964
|
export declare type ConfluenceTenantContext = {
|
|
14856
14965
|
__typename?: 'ConfluenceTenantContext';
|
|
14857
14966
|
baseUrl: Scalars['String']['output'];
|
|
@@ -14877,6 +14986,14 @@ export declare type ConfluenceTrashPagePayload = Payload & {
|
|
|
14877
14986
|
errors?: Maybe<Array<MutationError>>;
|
|
14878
14987
|
success: Scalars['Boolean']['output'];
|
|
14879
14988
|
};
|
|
14989
|
+
export declare type ConfluenceUnwatchSubCalendarInput = {
|
|
14990
|
+
subCalendarId: Scalars['ID']['input'];
|
|
14991
|
+
};
|
|
14992
|
+
export declare type ConfluenceUnwatchSubCalendarPayload = {
|
|
14993
|
+
__typename?: 'ConfluenceUnwatchSubCalendarPayload';
|
|
14994
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
14995
|
+
success: Scalars['Boolean']['output'];
|
|
14996
|
+
};
|
|
14880
14997
|
export declare type ConfluenceUpdateCommentInput = {
|
|
14881
14998
|
body: ConfluenceContentBodyInput;
|
|
14882
14999
|
id: Scalars['ID']['input'];
|
|
@@ -14960,6 +15077,16 @@ export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = ConfluenceC
|
|
|
14960
15077
|
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
14961
15078
|
success: Scalars['Boolean']['output'];
|
|
14962
15079
|
};
|
|
15080
|
+
export declare type ConfluenceUpdateTeamPresenceSpaceSettingsInput = {
|
|
15081
|
+
isEnabledOnContentView: Scalars['Boolean']['input'];
|
|
15082
|
+
spaceId: Scalars['Long']['input'];
|
|
15083
|
+
};
|
|
15084
|
+
export declare type ConfluenceUpdateTeamPresenceSpaceSettingsPayload = {
|
|
15085
|
+
__typename?: 'ConfluenceUpdateTeamPresenceSpaceSettingsPayload';
|
|
15086
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
15087
|
+
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
15088
|
+
success: Scalars['Boolean']['output'];
|
|
15089
|
+
};
|
|
14963
15090
|
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
14964
15091
|
blogPostId: Scalars['ID']['input'];
|
|
14965
15092
|
key: Scalars['String']['input'];
|
|
@@ -15534,6 +15661,14 @@ export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
|
15534
15661
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
15535
15662
|
isValid: Scalars['Boolean']['output'];
|
|
15536
15663
|
};
|
|
15664
|
+
export declare type ConfluenceWatchSubCalendarInput = {
|
|
15665
|
+
subCalendarId: Scalars['ID']['input'];
|
|
15666
|
+
};
|
|
15667
|
+
export declare type ConfluenceWatchSubCalendarPayload = {
|
|
15668
|
+
__typename?: 'ConfluenceWatchSubCalendarPayload';
|
|
15669
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
15670
|
+
success: Scalars['Boolean']['output'];
|
|
15671
|
+
};
|
|
15537
15672
|
export declare type ConfluenceWhiteboard = {
|
|
15538
15673
|
__typename?: 'ConfluenceWhiteboard';
|
|
15539
15674
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -15779,6 +15914,12 @@ export declare type ContainerLookAndFeel = {
|
|
|
15779
15914
|
borderRadius?: Maybe<Scalars['String']['output']>;
|
|
15780
15915
|
padding?: Maybe<Scalars['String']['output']>;
|
|
15781
15916
|
};
|
|
15917
|
+
export declare type ContainerSummary = {
|
|
15918
|
+
__typename?: 'ContainerSummary';
|
|
15919
|
+
displayUrl?: Maybe<Scalars['String']['output']>;
|
|
15920
|
+
links?: Maybe<LinksContextBase>;
|
|
15921
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
15922
|
+
};
|
|
15782
15923
|
export declare enum ContainerType {
|
|
15783
15924
|
Blogpost = "BLOGPOST",
|
|
15784
15925
|
Database = "DATABASE",
|
|
@@ -18090,6 +18231,7 @@ export declare type CreateContentInput = {
|
|
|
18090
18231
|
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
18091
18232
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
18092
18233
|
status: GraphQlContentStatus;
|
|
18234
|
+
subType?: InputMaybe<ConfluencePageSubType>;
|
|
18093
18235
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
18094
18236
|
type: Scalars['String']['input'];
|
|
18095
18237
|
};
|
|
@@ -19518,6 +19660,7 @@ export declare type DataRetention = {
|
|
|
19518
19660
|
retentionDurationInDays?: Maybe<RetentionDurationInDays>;
|
|
19519
19661
|
};
|
|
19520
19662
|
export declare enum DataSecurityPolicyAction {
|
|
19663
|
+
AiAccess = "AI_ACCESS",
|
|
19521
19664
|
AppAccess = "APP_ACCESS",
|
|
19522
19665
|
PageExport = "PAGE_EXPORT",
|
|
19523
19666
|
PublicLinks = "PUBLIC_LINKS"
|
|
@@ -19596,7 +19739,7 @@ export declare type DeleteAppResponse = Payload & {
|
|
|
19596
19739
|
success: Scalars['Boolean']['output'];
|
|
19597
19740
|
};
|
|
19598
19741
|
export declare type DeleteAppStoredCustomEntityMutationInput = {
|
|
19599
|
-
contextAri
|
|
19742
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
19600
19743
|
entityName: Scalars['String']['input'];
|
|
19601
19744
|
key: Scalars['ID']['input'];
|
|
19602
19745
|
};
|
|
@@ -19606,7 +19749,7 @@ export declare type DeleteAppStoredCustomEntityPayload = Payload & {
|
|
|
19606
19749
|
success: Scalars['Boolean']['output'];
|
|
19607
19750
|
};
|
|
19608
19751
|
export declare type DeleteAppStoredEntityMutationInput = {
|
|
19609
|
-
contextAri
|
|
19752
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
19610
19753
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19611
19754
|
key: Scalars['ID']['input'];
|
|
19612
19755
|
};
|
|
@@ -23676,6 +23819,7 @@ export declare type FilterQuery = {
|
|
|
23676
23819
|
};
|
|
23677
23820
|
export declare type FilteredPrincipalSubjectKey = {
|
|
23678
23821
|
__typename?: 'FilteredPrincipalSubjectKey';
|
|
23822
|
+
confluencePerson?: Maybe<ConfluencePerson>;
|
|
23679
23823
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
23680
23824
|
group?: Maybe<Group>;
|
|
23681
23825
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -26311,6 +26455,7 @@ export declare type GraphQlUserInfo = {
|
|
|
26311
26455
|
__typename?: 'GraphQLUserInfo';
|
|
26312
26456
|
accountId: Scalars['String']['output'];
|
|
26313
26457
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
26458
|
+
profilePicture?: Maybe<Icon>;
|
|
26314
26459
|
type: ConfluenceUserType;
|
|
26315
26460
|
};
|
|
26316
26461
|
export declare type GraphQueryMetadataProjectAssociatedBuildInput = {
|
|
@@ -33809,6 +33954,7 @@ export declare type GraphStoreCypherQueryConnection = {
|
|
|
33809
33954
|
__typename?: 'GraphStoreCypherQueryConnection';
|
|
33810
33955
|
edges: Array<GraphStoreCypherQueryEdge>;
|
|
33811
33956
|
pageInfo: PageInfo;
|
|
33957
|
+
queryResult?: Maybe<GraphStoreCypherQueryResult>;
|
|
33812
33958
|
};
|
|
33813
33959
|
export declare type GraphStoreCypherQueryEdge = {
|
|
33814
33960
|
__typename?: 'GraphStoreCypherQueryEdge';
|
|
@@ -33825,12 +33971,32 @@ export declare type GraphStoreCypherQueryNode = {
|
|
|
33825
33971
|
from: GraphStoreCypherQueryFromNode;
|
|
33826
33972
|
to: GraphStoreCypherQueryToNode;
|
|
33827
33973
|
};
|
|
33974
|
+
export declare type GraphStoreCypherQueryResult = {
|
|
33975
|
+
__typename?: 'GraphStoreCypherQueryResult';
|
|
33976
|
+
columns: Array<Scalars['String']['output']>;
|
|
33977
|
+
rows: Array<GraphStoreCypherQueryResultRow>;
|
|
33978
|
+
};
|
|
33979
|
+
export declare type GraphStoreCypherQueryResultRow = {
|
|
33980
|
+
__typename?: 'GraphStoreCypherQueryResultRow';
|
|
33981
|
+
rowItems: Array<GraphStoreCypherQueryResultRowItem>;
|
|
33982
|
+
};
|
|
33983
|
+
export declare type GraphStoreCypherQueryResultRowItem = {
|
|
33984
|
+
__typename?: 'GraphStoreCypherQueryResultRowItem';
|
|
33985
|
+
key: Scalars['String']['output'];
|
|
33986
|
+
value: Array<GraphStoreCypherQueryValueNode>;
|
|
33987
|
+
};
|
|
33828
33988
|
export declare type GraphStoreCypherQueryToNode = {
|
|
33829
33989
|
__typename?: 'GraphStoreCypherQueryToNode';
|
|
33830
33990
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
33831
33991
|
id: Scalars['ID']['output'];
|
|
33832
33992
|
};
|
|
33833
33993
|
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;
|
|
33994
|
+
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;
|
|
33995
|
+
export declare type GraphStoreCypherQueryValueNode = {
|
|
33996
|
+
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
33997
|
+
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
33998
|
+
id: Scalars['ID']['output'];
|
|
33999
|
+
};
|
|
33834
34000
|
export declare type GraphStoreDateFilterInput = {
|
|
33835
34001
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
33836
34002
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -44836,6 +45002,11 @@ export declare type HamsInvoiceGroupExperienceCapabilities = CommerceInvoiceGrou
|
|
|
44836
45002
|
export declare type HamsOffering = CommerceOffering & {
|
|
44837
45003
|
__typename?: 'HamsOffering';
|
|
44838
45004
|
name?: Maybe<Scalars['String']['output']>;
|
|
45005
|
+
trial?: Maybe<HamsOfferingTrial>;
|
|
45006
|
+
};
|
|
45007
|
+
export declare type HamsOfferingTrial = CommerceOfferingTrial & {
|
|
45008
|
+
__typename?: 'HamsOfferingTrial';
|
|
45009
|
+
lengthDays?: Maybe<Scalars['Int']['output']>;
|
|
44839
45010
|
};
|
|
44840
45011
|
export declare type HamsPricingPlan = CommercePricingPlan & {
|
|
44841
45012
|
__typename?: 'HamsPricingPlan';
|
|
@@ -46626,7 +46797,14 @@ export declare type HydratingJiraIssueEdge = {
|
|
|
46626
46797
|
};
|
|
46627
46798
|
export declare type Icon = {
|
|
46628
46799
|
__typename?: 'Icon';
|
|
46800
|
+
height?: Maybe<Scalars['Int']['output']>;
|
|
46801
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
46802
|
+
path: Scalars['String']['output'];
|
|
46629
46803
|
url?: Maybe<Scalars['String']['output']>;
|
|
46804
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
46805
|
+
};
|
|
46806
|
+
export declare type IconPathArgs = {
|
|
46807
|
+
type?: InputMaybe<PathType>;
|
|
46630
46808
|
};
|
|
46631
46809
|
export declare type InCompleteCardsDestination = {
|
|
46632
46810
|
__typename?: 'InCompleteCardsDestination';
|
|
@@ -48614,6 +48792,7 @@ export declare enum JiraBoardType {
|
|
|
48614
48792
|
}
|
|
48615
48793
|
export declare type JiraBoardView = {
|
|
48616
48794
|
__typename?: 'JiraBoardView';
|
|
48795
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
48617
48796
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
48618
48797
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
48619
48798
|
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -48621,6 +48800,8 @@ export declare type JiraBoardView = {
|
|
|
48621
48800
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
48622
48801
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
48623
48802
|
id: Scalars['ID']['output'];
|
|
48803
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
48804
|
+
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
48624
48805
|
};
|
|
48625
48806
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
48626
48807
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -48709,6 +48890,14 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
|
48709
48890
|
id: Scalars['ID']['output'];
|
|
48710
48891
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
48711
48892
|
};
|
|
48893
|
+
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
48894
|
+
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
48895
|
+
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
48896
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48897
|
+
id: Scalars['ID']['output'];
|
|
48898
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
48899
|
+
type?: Maybe<JiraSyntheticFieldCardOptionType>;
|
|
48900
|
+
};
|
|
48712
48901
|
export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
48713
48902
|
__typename?: 'JiraBooleanField';
|
|
48714
48903
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -50890,6 +51079,7 @@ export declare type JiraDevOpsPullRequestDetails = {
|
|
|
50890
51079
|
};
|
|
50891
51080
|
export declare type JiraDevOpsQuery = {
|
|
50892
51081
|
__typename?: 'JiraDevOpsQuery';
|
|
51082
|
+
autodevJobById?: Maybe<JiraAutodevJob>;
|
|
50893
51083
|
autodevJobs?: Maybe<JiraAutodevJobConnection>;
|
|
50894
51084
|
autodevJobsByIssues?: Maybe<JiraAutodevJobConnection>;
|
|
50895
51085
|
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
@@ -50900,6 +51090,10 @@ export declare type JiraDevOpsQuery = {
|
|
|
50900
51090
|
isInContextConfigPromptDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
50901
51091
|
toolchain?: Maybe<JiraToolchain>;
|
|
50902
51092
|
};
|
|
51093
|
+
export declare type JiraDevOpsQueryAutodevJobByIdArgs = {
|
|
51094
|
+
cloudId: Scalars['ID']['input'];
|
|
51095
|
+
jobId: Scalars['ID']['input'];
|
|
51096
|
+
};
|
|
50903
51097
|
export declare type JiraDevOpsQueryAutodevJobsArgs = {
|
|
50904
51098
|
issueAri: Scalars['ID']['input'];
|
|
50905
51099
|
jobIdFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -51021,6 +51215,12 @@ export declare type JiraEnableAtlassianIntelligenceDeepLink = {
|
|
|
51021
51215
|
__typename?: 'JiraEnableAtlassianIntelligenceDeepLink';
|
|
51022
51216
|
link?: Maybe<Scalars['String']['output']>;
|
|
51023
51217
|
};
|
|
51218
|
+
export declare type JiraEnablePlanFeaturePayloadGraphQl = Payload & {
|
|
51219
|
+
__typename?: 'JiraEnablePlanFeaturePayloadGraphQL';
|
|
51220
|
+
errors?: Maybe<Array<MutationError>>;
|
|
51221
|
+
plan?: Maybe<JiraPlan>;
|
|
51222
|
+
success: Scalars['Boolean']['output'];
|
|
51223
|
+
};
|
|
51024
51224
|
export declare type JiraEntitlementFieldInput = {
|
|
51025
51225
|
entitlement: JiraEntitlementInput;
|
|
51026
51226
|
fieldId: Scalars['ID']['input'];
|
|
@@ -51313,7 +51513,7 @@ export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
|
|
|
51313
51513
|
errors?: Maybe<Array<MutationError>>;
|
|
51314
51514
|
success: Scalars['Boolean']['output'];
|
|
51315
51515
|
};
|
|
51316
|
-
export declare type JiraFieldSetView = Node & {
|
|
51516
|
+
export declare type JiraFieldSetView = JiraFieldSetsViewMetadata & Node & {
|
|
51317
51517
|
__typename?: 'JiraFieldSetView';
|
|
51318
51518
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
51319
51519
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -51331,6 +51531,24 @@ export declare type JiraFieldSetsMutationInput = {
|
|
|
51331
51531
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
51332
51532
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51333
51533
|
};
|
|
51534
|
+
export declare type JiraFieldSetsViewMetadata = {
|
|
51535
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
51536
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
51537
|
+
id: Scalars['ID']['output'];
|
|
51538
|
+
};
|
|
51539
|
+
export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
51540
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51541
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
51542
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
51543
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51544
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51545
|
+
};
|
|
51546
|
+
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
51547
|
+
__typename?: 'JiraFieldSetsViewPayload';
|
|
51548
|
+
errors?: Maybe<Array<MutationError>>;
|
|
51549
|
+
success: Scalars['Boolean']['output'];
|
|
51550
|
+
view?: Maybe<JiraFieldSetsViewMetadata>;
|
|
51551
|
+
};
|
|
51334
51552
|
export declare type JiraFieldType = {
|
|
51335
51553
|
__typename?: 'JiraFieldType';
|
|
51336
51554
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -54003,6 +54221,7 @@ export declare type JiraJqlCascadingOptionFieldValue = JiraJqlFieldValue & {
|
|
|
54003
54221
|
__typename?: 'JiraJqlCascadingOptionFieldValue';
|
|
54004
54222
|
displayName: Scalars['String']['output'];
|
|
54005
54223
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54224
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54006
54225
|
jqlTerm: Scalars['String']['output'];
|
|
54007
54226
|
optionId?: Maybe<Scalars['ID']['output']>;
|
|
54008
54227
|
parentOption?: Maybe<JiraJqlCascadingOptionFieldValue>;
|
|
@@ -54028,6 +54247,7 @@ export declare type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
|
|
|
54028
54247
|
component?: Maybe<JiraComponent>;
|
|
54029
54248
|
displayName: Scalars['String']['output'];
|
|
54030
54249
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54250
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54031
54251
|
jqlTerm: Scalars['String']['output'];
|
|
54032
54252
|
};
|
|
54033
54253
|
export declare type JiraJqlField = {
|
|
@@ -54066,6 +54286,7 @@ export declare type JiraJqlFieldType = {
|
|
|
54066
54286
|
export declare type JiraJqlFieldValue = {
|
|
54067
54287
|
displayName: Scalars['String']['output'];
|
|
54068
54288
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54289
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54069
54290
|
jqlTerm: Scalars['String']['output'];
|
|
54070
54291
|
};
|
|
54071
54292
|
export declare type JiraJqlFieldValueConnection = {
|
|
@@ -54082,6 +54303,7 @@ export declare type JiraJqlFieldValueEdge = {
|
|
|
54082
54303
|
export declare type JiraJqlFieldWithAliases = {
|
|
54083
54304
|
__typename?: 'JiraJqlFieldWithAliases';
|
|
54084
54305
|
aliases?: Maybe<Array<Scalars['String']['output']>>;
|
|
54306
|
+
fieldId?: Maybe<Scalars['ID']['output']>;
|
|
54085
54307
|
jqlTerm: Scalars['ID']['output'];
|
|
54086
54308
|
};
|
|
54087
54309
|
export declare type JiraJqlFunction = {
|
|
@@ -54107,6 +54329,7 @@ export declare type JiraJqlGoalsFieldValue = JiraJqlFieldValue & {
|
|
|
54107
54329
|
displayName: Scalars['String']['output'];
|
|
54108
54330
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54109
54331
|
goal: JiraGoal;
|
|
54332
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54110
54333
|
jqlTerm: Scalars['String']['output'];
|
|
54111
54334
|
};
|
|
54112
54335
|
export declare type JiraJqlGroupFieldValue = JiraJqlFieldValue & {
|
|
@@ -54114,6 +54337,7 @@ export declare type JiraJqlGroupFieldValue = JiraJqlFieldValue & {
|
|
|
54114
54337
|
displayName: Scalars['String']['output'];
|
|
54115
54338
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54116
54339
|
group: JiraGroup;
|
|
54340
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54117
54341
|
jqlTerm: Scalars['String']['output'];
|
|
54118
54342
|
};
|
|
54119
54343
|
export declare type JiraJqlGroupFieldValueConnection = {
|
|
@@ -54137,6 +54361,7 @@ export declare type JiraJqlIssueFieldValue = JiraJqlFieldValue & {
|
|
|
54137
54361
|
__typename?: 'JiraJqlIssueFieldValue';
|
|
54138
54362
|
displayName: Scalars['String']['output'];
|
|
54139
54363
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54364
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54140
54365
|
issue: JiraIssue;
|
|
54141
54366
|
jqlTerm: Scalars['String']['output'];
|
|
54142
54367
|
};
|
|
@@ -54144,6 +54369,7 @@ export declare type JiraJqlIssueTypeFieldValue = JiraJqlFieldValue & {
|
|
|
54144
54369
|
__typename?: 'JiraJqlIssueTypeFieldValue';
|
|
54145
54370
|
displayName: Scalars['String']['output'];
|
|
54146
54371
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54372
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54147
54373
|
issueTypes: Array<JiraIssueType>;
|
|
54148
54374
|
jqlTerm: Scalars['String']['output'];
|
|
54149
54375
|
};
|
|
@@ -54186,6 +54412,7 @@ export declare type JiraJqlLabelFieldValue = JiraJqlFieldValue & {
|
|
|
54186
54412
|
__typename?: 'JiraJqlLabelFieldValue';
|
|
54187
54413
|
displayName: Scalars['String']['output'];
|
|
54188
54414
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54415
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54189
54416
|
jqlTerm: Scalars['String']['output'];
|
|
54190
54417
|
label?: Maybe<JiraLabel>;
|
|
54191
54418
|
};
|
|
@@ -54193,6 +54420,7 @@ export declare type JiraJqlNumberFieldValue = JiraJqlFieldValue & {
|
|
|
54193
54420
|
__typename?: 'JiraJqlNumberFieldValue';
|
|
54194
54421
|
displayName: Scalars['String']['output'];
|
|
54195
54422
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54423
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54196
54424
|
jqlTerm: Scalars['String']['output'];
|
|
54197
54425
|
number?: Maybe<Scalars['Float']['output']>;
|
|
54198
54426
|
};
|
|
@@ -54219,6 +54447,7 @@ export declare type JiraJqlOptionFieldValue = JiraJqlFieldValue & {
|
|
|
54219
54447
|
__typename?: 'JiraJqlOptionFieldValue';
|
|
54220
54448
|
displayName: Scalars['String']['output'];
|
|
54221
54449
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54450
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54222
54451
|
jqlTerm: Scalars['String']['output'];
|
|
54223
54452
|
option?: Maybe<JiraOption>;
|
|
54224
54453
|
};
|
|
@@ -54237,12 +54466,14 @@ export declare type JiraJqlPlainTextFieldValue = JiraJqlFieldValue & {
|
|
|
54237
54466
|
__typename?: 'JiraJqlPlainTextFieldValue';
|
|
54238
54467
|
displayName: Scalars['String']['output'];
|
|
54239
54468
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54469
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54240
54470
|
jqlTerm: Scalars['String']['output'];
|
|
54241
54471
|
};
|
|
54242
54472
|
export declare type JiraJqlPriorityFieldValue = JiraJqlFieldValue & {
|
|
54243
54473
|
__typename?: 'JiraJqlPriorityFieldValue';
|
|
54244
54474
|
displayName: Scalars['String']['output'];
|
|
54245
54475
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54476
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54246
54477
|
jqlTerm: Scalars['String']['output'];
|
|
54247
54478
|
priority: JiraPriority;
|
|
54248
54479
|
};
|
|
@@ -54250,6 +54481,7 @@ export declare type JiraJqlProjectFieldValue = JiraJqlFieldValue & {
|
|
|
54250
54481
|
__typename?: 'JiraJqlProjectFieldValue';
|
|
54251
54482
|
displayName: Scalars['String']['output'];
|
|
54252
54483
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54484
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54253
54485
|
jqlTerm: Scalars['String']['output'];
|
|
54254
54486
|
project: JiraProject;
|
|
54255
54487
|
};
|
|
@@ -54288,6 +54520,7 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
|
54288
54520
|
__typename?: 'JiraJqlResolutionFieldValue';
|
|
54289
54521
|
displayName: Scalars['String']['output'];
|
|
54290
54522
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54523
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54291
54524
|
jqlTerm: Scalars['String']['output'];
|
|
54292
54525
|
resolution?: Maybe<JiraResolution>;
|
|
54293
54526
|
};
|
|
@@ -54302,6 +54535,7 @@ export declare type JiraJqlSprintFieldValue = JiraJqlFieldValue & {
|
|
|
54302
54535
|
__typename?: 'JiraJqlSprintFieldValue';
|
|
54303
54536
|
displayName: Scalars['String']['output'];
|
|
54304
54537
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54538
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54305
54539
|
jqlTerm: Scalars['String']['output'];
|
|
54306
54540
|
sprint: JiraSprint;
|
|
54307
54541
|
};
|
|
@@ -54320,6 +54554,7 @@ export declare type JiraJqlStatusCategoryFieldValue = JiraJqlFieldValue & {
|
|
|
54320
54554
|
__typename?: 'JiraJqlStatusCategoryFieldValue';
|
|
54321
54555
|
displayName: Scalars['String']['output'];
|
|
54322
54556
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54557
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54323
54558
|
jqlTerm: Scalars['String']['output'];
|
|
54324
54559
|
statusCategory: JiraStatusCategory;
|
|
54325
54560
|
};
|
|
@@ -54327,6 +54562,7 @@ export declare type JiraJqlStatusFieldValue = JiraJqlFieldValue & {
|
|
|
54327
54562
|
__typename?: 'JiraJqlStatusFieldValue';
|
|
54328
54563
|
displayName: Scalars['String']['output'];
|
|
54329
54564
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54565
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54330
54566
|
jqlTerm: Scalars['String']['output'];
|
|
54331
54567
|
status?: Maybe<JiraStatus>;
|
|
54332
54568
|
statusCategory: JiraStatusCategory;
|
|
@@ -54358,6 +54594,7 @@ export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
|
|
|
54358
54594
|
__typename?: 'JiraJqlUserFieldValue';
|
|
54359
54595
|
displayName: Scalars['String']['output'];
|
|
54360
54596
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54597
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54361
54598
|
jqlTerm: Scalars['String']['output'];
|
|
54362
54599
|
user?: Maybe<User>;
|
|
54363
54600
|
};
|
|
@@ -54376,6 +54613,7 @@ export declare type JiraJqlVersionFieldValue = JiraJqlFieldValue & {
|
|
|
54376
54613
|
__typename?: 'JiraJqlVersionFieldValue';
|
|
54377
54614
|
displayName: Scalars['String']['output'];
|
|
54378
54615
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
54616
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
54379
54617
|
jqlTerm: Scalars['String']['output'];
|
|
54380
54618
|
version?: Maybe<JiraVersion>;
|
|
54381
54619
|
};
|
|
@@ -54418,6 +54656,7 @@ export declare type JiraJqlVersionsUnreleasedArgs = {
|
|
|
54418
54656
|
};
|
|
54419
54657
|
export declare enum JiraJqlViewContext {
|
|
54420
54658
|
FilterRefinement = "FILTER_REFINEMENT",
|
|
54659
|
+
JpdRoadmaps = "JPD_ROADMAPS",
|
|
54421
54660
|
JswPlans = "JSW_PLANS",
|
|
54422
54661
|
Jwm = "JWM",
|
|
54423
54662
|
ShadowRequest = "SHADOW_REQUEST"
|
|
@@ -55037,6 +55276,8 @@ export declare type JiraMutation = {
|
|
|
55037
55276
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
55038
55277
|
setFieldAssociationWithIssueTypes?: Maybe<JiraSetFieldAssociationWithIssueTypesPayload>;
|
|
55039
55278
|
setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
|
|
55279
|
+
setPlanAutoSchedulerEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
55280
|
+
setPlanMultiScenarioEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
55040
55281
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
55041
55282
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
55042
55283
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
@@ -55053,6 +55294,7 @@ export declare type JiraMutation = {
|
|
|
55053
55294
|
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
55054
55295
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
55055
55296
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
55297
|
+
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
55056
55298
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
55057
55299
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
55058
55300
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -55448,6 +55690,12 @@ export declare type JiraMutationSetFieldAssociationWithIssueTypesArgs = {
|
|
|
55448
55690
|
export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
|
|
55449
55691
|
id: Scalars['ID']['input'];
|
|
55450
55692
|
};
|
|
55693
|
+
export declare type JiraMutationSetPlanAutoSchedulerEnabledArgs = {
|
|
55694
|
+
input?: InputMaybe<JiraPlanFeatureMutationInput>;
|
|
55695
|
+
};
|
|
55696
|
+
export declare type JiraMutationSetPlanMultiScenarioEnabledArgs = {
|
|
55697
|
+
input?: InputMaybe<JiraPlanMultiScenarioFeatureMutationInput>;
|
|
55698
|
+
};
|
|
55451
55699
|
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
55452
55700
|
cloudId: Scalars['ID']['input'];
|
|
55453
55701
|
id: Scalars['ID']['input'];
|
|
@@ -55498,6 +55746,10 @@ export declare type JiraMutationUpdateDateTimeFieldArgs = {
|
|
|
55498
55746
|
export declare type JiraMutationUpdateEntitlementFieldArgs = {
|
|
55499
55747
|
input: JiraServiceManagementUpdateEntitlementFieldInput;
|
|
55500
55748
|
};
|
|
55749
|
+
export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
55750
|
+
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
55751
|
+
id: Scalars['ID']['input'];
|
|
55752
|
+
};
|
|
55501
55753
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
55502
55754
|
input: JiraUpdateForgeObjectFieldInput;
|
|
55503
55755
|
};
|
|
@@ -55797,6 +56049,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
55797
56049
|
Calendar = "CALENDAR",
|
|
55798
56050
|
Code = "CODE",
|
|
55799
56051
|
Components = "COMPONENTS",
|
|
56052
|
+
Dependencies = "DEPENDENCIES",
|
|
55800
56053
|
Deployments = "DEPLOYMENTS",
|
|
55801
56054
|
Development = "DEVELOPMENT",
|
|
55802
56055
|
Forms = "FORMS",
|
|
@@ -55814,6 +56067,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
55814
56067
|
PlanSummary = "PLAN_SUMMARY",
|
|
55815
56068
|
PlanTeams = "PLAN_TEAMS",
|
|
55816
56069
|
PlanTimeline = "PLAN_TIMELINE",
|
|
56070
|
+
Program = "PROGRAM",
|
|
55817
56071
|
Queue = "QUEUE",
|
|
55818
56072
|
Releases = "RELEASES",
|
|
55819
56073
|
Reports = "REPORTS",
|
|
@@ -55821,6 +56075,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
55821
56075
|
Security = "SECURITY",
|
|
55822
56076
|
Shortcuts = "SHORTCUTS",
|
|
55823
56077
|
Summary = "SUMMARY",
|
|
56078
|
+
Teams = "TEAMS",
|
|
55824
56079
|
Timeline = "TIMELINE"
|
|
55825
56080
|
}
|
|
55826
56081
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
@@ -56543,8 +56798,11 @@ export declare enum JiraPermissionType {
|
|
|
56543
56798
|
}
|
|
56544
56799
|
export declare type JiraPlan = Node & {
|
|
56545
56800
|
__typename?: 'JiraPlan';
|
|
56801
|
+
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
56546
56802
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
56547
56803
|
id: Scalars['ID']['output'];
|
|
56804
|
+
isAutoSchedulerEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
56805
|
+
isMultiScenarioEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
56548
56806
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
56549
56807
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
56550
56808
|
owner?: Maybe<User>;
|
|
@@ -56554,6 +56812,15 @@ export declare type JiraPlan = Node & {
|
|
|
56554
56812
|
scenario?: Maybe<JiraScenario>;
|
|
56555
56813
|
title?: Maybe<Scalars['String']['output']>;
|
|
56556
56814
|
};
|
|
56815
|
+
export declare type JiraPlanFeatureMutationInput = {
|
|
56816
|
+
enabled: Scalars['Boolean']['input'];
|
|
56817
|
+
planId: Scalars['ID']['input'];
|
|
56818
|
+
};
|
|
56819
|
+
export declare type JiraPlanMultiScenarioFeatureMutationInput = {
|
|
56820
|
+
enabled: Scalars['Boolean']['input'];
|
|
56821
|
+
planId: Scalars['ID']['input'];
|
|
56822
|
+
scenarioId: Scalars['ID']['input'];
|
|
56823
|
+
};
|
|
56557
56824
|
export declare enum JiraPlanStatus {
|
|
56558
56825
|
Active = "ACTIVE",
|
|
56559
56826
|
Archived = "ARCHIVED",
|
|
@@ -59165,7 +59432,7 @@ export declare type JiraResourceUsageCustomFieldRecommendationEdge = {
|
|
|
59165
59432
|
cursor: Scalars['String']['output'];
|
|
59166
59433
|
node?: Maybe<JiraResourceUsageCustomFieldRecommendation>;
|
|
59167
59434
|
};
|
|
59168
|
-
export declare type JiraResourceUsageMetric = {
|
|
59435
|
+
export declare type JiraResourceUsageMetric = Node & {
|
|
59169
59436
|
__typename?: 'JiraResourceUsageMetric';
|
|
59170
59437
|
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
59171
59438
|
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
@@ -61622,6 +61889,10 @@ export declare type JiraSuggestedIssueInput = {
|
|
|
61622
61889
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
61623
61890
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
61624
61891
|
};
|
|
61892
|
+
export declare enum JiraSyntheticFieldCardOptionType {
|
|
61893
|
+
CardCover = "CARD_COVER",
|
|
61894
|
+
Pages = "PAGES"
|
|
61895
|
+
}
|
|
61625
61896
|
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
61626
61897
|
__typename?: 'JiraSystemFilter';
|
|
61627
61898
|
filterId: Scalars['String']['output'];
|
|
@@ -65171,6 +65442,7 @@ export declare type KnownUser = Person & {
|
|
|
65171
65442
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
65172
65443
|
permissionType?: Maybe<SitePermissionType>;
|
|
65173
65444
|
personalSpace?: Maybe<Space>;
|
|
65445
|
+
profilePicture?: Maybe<Icon>;
|
|
65174
65446
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
65175
65447
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
65176
65448
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -65284,6 +65556,7 @@ export declare type LikeContentPayload = {
|
|
|
65284
65556
|
};
|
|
65285
65557
|
export declare type LikeEntity = {
|
|
65286
65558
|
__typename?: 'LikeEntity';
|
|
65559
|
+
confluencePerson?: Maybe<ConfluencePerson>;
|
|
65287
65560
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
65288
65561
|
currentUserIsFollowing?: Maybe<Scalars['Boolean']['output']>;
|
|
65289
65562
|
};
|
|
@@ -65305,9 +65578,13 @@ export declare type LikesResponse = {
|
|
|
65305
65578
|
count?: Maybe<Scalars['Int']['output']>;
|
|
65306
65579
|
currentUserLikes?: Maybe<Scalars['Boolean']['output']>;
|
|
65307
65580
|
edges?: Maybe<Array<Maybe<LikeEntityEdge>>>;
|
|
65581
|
+
followeePersons: Array<Maybe<ConfluencePerson>>;
|
|
65308
65582
|
nodes?: Maybe<Array<Maybe<LikeEntity>>>;
|
|
65309
65583
|
pageInfo?: Maybe<PageInfo>;
|
|
65310
65584
|
};
|
|
65585
|
+
export declare type LikesResponseFolloweePersonsArgs = {
|
|
65586
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
65587
|
+
};
|
|
65311
65588
|
export declare type LinksContextBase = {
|
|
65312
65589
|
__typename?: 'LinksContextBase';
|
|
65313
65590
|
base?: Maybe<Scalars['String']['output']>;
|
|
@@ -66016,6 +66293,7 @@ export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
|
66016
66293
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
66017
66294
|
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
66018
66295
|
dcBuildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
66296
|
+
editionDetails?: InputMaybe<MarketplaceConsoleEditionDetailsInput>;
|
|
66019
66297
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
66020
66298
|
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
66021
66299
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66164,6 +66442,9 @@ export declare type MarketplaceConsoleEdition = {
|
|
|
66164
66442
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
66165
66443
|
type: MarketplaceConsoleEditionType;
|
|
66166
66444
|
};
|
|
66445
|
+
export declare type MarketplaceConsoleEditionDetailsInput = {
|
|
66446
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
66447
|
+
};
|
|
66167
66448
|
export declare type MarketplaceConsoleEditionInput = {
|
|
66168
66449
|
features: Array<MarketplaceConsoleFeatureInput>;
|
|
66169
66450
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -67124,6 +67405,14 @@ export declare type MarketplaceStoreAnonymousUserLinks = {
|
|
|
67124
67405
|
__typename?: 'MarketplaceStoreAnonymousUserLinks';
|
|
67125
67406
|
login: Scalars['String']['output'];
|
|
67126
67407
|
};
|
|
67408
|
+
export declare type MarketplaceStoreAppDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
67409
|
+
__typename?: 'MarketplaceStoreAppDetails';
|
|
67410
|
+
id: Scalars['ID']['output'];
|
|
67411
|
+
isMultiInstance: Scalars['Boolean']['output'];
|
|
67412
|
+
multiInstanceEntitlementEditionType: Scalars['String']['output'];
|
|
67413
|
+
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
67414
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
67415
|
+
};
|
|
67127
67416
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
67128
67417
|
Cloud = "CLOUD",
|
|
67129
67418
|
Datacenter = "DATACENTER",
|
|
@@ -67241,6 +67530,10 @@ export declare type MarketplaceStoreEditionsByAppKeyInput = {
|
|
|
67241
67530
|
export declare type MarketplaceStoreEditionsInput = {
|
|
67242
67531
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
67243
67532
|
};
|
|
67533
|
+
export declare enum MarketplaceStoreEnterpriseProduct {
|
|
67534
|
+
Confluence = "CONFLUENCE",
|
|
67535
|
+
Jira = "JIRA"
|
|
67536
|
+
}
|
|
67244
67537
|
export declare type MarketplaceStoreGeoIpResponse = {
|
|
67245
67538
|
__typename?: 'MarketplaceStoreGeoIPResponse';
|
|
67246
67539
|
countryCode: Scalars['String']['output'];
|
|
@@ -67386,6 +67679,28 @@ export declare type MarketplaceStoreLoggedInUserLinksManageDeveloperSpaceArgs =
|
|
|
67386
67679
|
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
67387
67680
|
vendorId: Scalars['ID']['input'];
|
|
67388
67681
|
};
|
|
67682
|
+
export declare type MarketplaceStoreMultiInstanceDetails = {
|
|
67683
|
+
isMultiInstance: Scalars['Boolean']['output'];
|
|
67684
|
+
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
67685
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
67686
|
+
};
|
|
67687
|
+
export declare type MarketplaceStoreMultiInstanceEntitlementForAppInput = {
|
|
67688
|
+
cloudId: Scalars['String']['input'];
|
|
67689
|
+
product: MarketplaceStoreProduct;
|
|
67690
|
+
};
|
|
67691
|
+
export declare type MarketplaceStoreMultiInstanceEntitlementForAppResponse = {
|
|
67692
|
+
__typename?: 'MarketplaceStoreMultiInstanceEntitlementForAppResponse';
|
|
67693
|
+
appDetails?: Maybe<MarketplaceStoreAppDetails>;
|
|
67694
|
+
cloudId: Scalars['String']['output'];
|
|
67695
|
+
};
|
|
67696
|
+
export declare type MarketplaceStoreMultiInstanceEntitlementsForUserInput = {
|
|
67697
|
+
cloudIds: Array<Scalars['String']['input']>;
|
|
67698
|
+
product: MarketplaceStoreEnterpriseProduct;
|
|
67699
|
+
};
|
|
67700
|
+
export declare type MarketplaceStoreMultiInstanceEntitlementsForUserResponse = {
|
|
67701
|
+
__typename?: 'MarketplaceStoreMultiInstanceEntitlementsForUserResponse';
|
|
67702
|
+
orgMultiInstanceEntitlements?: Maybe<Array<MarketplaceStoreOrgMultiInstanceEntitlement>>;
|
|
67703
|
+
};
|
|
67389
67704
|
export declare type MarketplaceStoreMutationApi = {
|
|
67390
67705
|
__typename?: 'MarketplaceStoreMutationApi';
|
|
67391
67706
|
installApp: MarketplaceStoreInstallAppResponse;
|
|
@@ -67393,6 +67708,18 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
67393
67708
|
export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
67394
67709
|
input: MarketplaceStoreInstallAppInput;
|
|
67395
67710
|
};
|
|
67711
|
+
export declare type MarketplaceStoreOrgDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
67712
|
+
__typename?: 'MarketplaceStoreOrgDetails';
|
|
67713
|
+
id: Scalars['ID']['output'];
|
|
67714
|
+
isMultiInstance: Scalars['Boolean']['output'];
|
|
67715
|
+
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
67716
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
67717
|
+
};
|
|
67718
|
+
export declare type MarketplaceStoreOrgMultiInstanceEntitlement = {
|
|
67719
|
+
__typename?: 'MarketplaceStoreOrgMultiInstanceEntitlement';
|
|
67720
|
+
cloudId: Scalars['String']['output'];
|
|
67721
|
+
orgDetails?: Maybe<MarketplaceStoreOrgDetails>;
|
|
67722
|
+
};
|
|
67396
67723
|
export declare type MarketplaceStorePartnerAddress = {
|
|
67397
67724
|
__typename?: 'MarketplaceStorePartnerAddress';
|
|
67398
67725
|
city?: Maybe<Scalars['String']['output']>;
|
|
@@ -67505,6 +67832,9 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
|
|
|
67505
67832
|
floor: Scalars['Float']['output'];
|
|
67506
67833
|
unitAmount?: Maybe<Scalars['Float']['output']>;
|
|
67507
67834
|
};
|
|
67835
|
+
export declare type MarketplaceStoreProduct = {
|
|
67836
|
+
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
67837
|
+
};
|
|
67508
67838
|
export declare type MarketplaceStoreQueryApi = {
|
|
67509
67839
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
67510
67840
|
appReviews: MarketplaceStoreReviewsResponse;
|
|
@@ -67519,6 +67849,8 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
67519
67849
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
67520
67850
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
67521
67851
|
installedAppDetails: MarketplaceStoreInstalledAppDetailsResponse;
|
|
67852
|
+
multiInstanceEntitlementForApp: MarketplaceStoreMultiInstanceEntitlementForAppResponse;
|
|
67853
|
+
multiInstanceEntitlementsForUser: MarketplaceStoreMultiInstanceEntitlementsForUserResponse;
|
|
67522
67854
|
myReview: MarketplaceStoreCurrentUserReviewResponse;
|
|
67523
67855
|
partner: MarketplaceStorePartnerResponse;
|
|
67524
67856
|
};
|
|
@@ -67555,6 +67887,12 @@ export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
|
67555
67887
|
export declare type MarketplaceStoreQueryApiInstalledAppDetailsArgs = {
|
|
67556
67888
|
input: MarketplaceStoreInstallAppInput;
|
|
67557
67889
|
};
|
|
67890
|
+
export declare type MarketplaceStoreQueryApiMultiInstanceEntitlementForAppArgs = {
|
|
67891
|
+
input: MarketplaceStoreMultiInstanceEntitlementForAppInput;
|
|
67892
|
+
};
|
|
67893
|
+
export declare type MarketplaceStoreQueryApiMultiInstanceEntitlementsForUserArgs = {
|
|
67894
|
+
input: MarketplaceStoreMultiInstanceEntitlementsForUserInput;
|
|
67895
|
+
};
|
|
67558
67896
|
export declare type MarketplaceStoreQueryApiMyReviewArgs = {
|
|
67559
67897
|
appKey: Scalars['String']['input'];
|
|
67560
67898
|
};
|
|
@@ -67754,6 +68092,7 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
67754
68092
|
};
|
|
67755
68093
|
export declare type MercuryCreateFocusAreaInput = {
|
|
67756
68094
|
cloudId: Scalars['ID']['input'];
|
|
68095
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
67757
68096
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
67758
68097
|
name: Scalars['String']['input'];
|
|
67759
68098
|
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -69373,7 +69712,10 @@ export declare type Mutation = {
|
|
|
69373
69712
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
69374
69713
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
69375
69714
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
69715
|
+
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
69376
69716
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
69717
|
+
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
69718
|
+
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
69377
69719
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
69378
69720
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
69379
69721
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -70225,10 +70567,22 @@ export declare type MutationConfluence_InviteUsersArgs = {
|
|
|
70225
70567
|
cloudId: Scalars['ID']['input'];
|
|
70226
70568
|
input: ConfluenceInviteUserInput;
|
|
70227
70569
|
};
|
|
70570
|
+
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
70571
|
+
cloudId: Scalars['ID']['input'];
|
|
70572
|
+
input: ConfluenceUnwatchSubCalendarInput;
|
|
70573
|
+
};
|
|
70228
70574
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
70229
70575
|
cloudId: Scalars['ID']['input'];
|
|
70230
70576
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
70231
70577
|
};
|
|
70578
|
+
export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
|
|
70579
|
+
cloudId: Scalars['ID']['input'];
|
|
70580
|
+
input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
|
|
70581
|
+
};
|
|
70582
|
+
export declare type MutationConfluence_WatchSubCalendarArgs = {
|
|
70583
|
+
cloudId: Scalars['ID']['input'];
|
|
70584
|
+
input: ConfluenceWatchSubCalendarInput;
|
|
70585
|
+
};
|
|
70232
70586
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
70233
70587
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
70234
70588
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -71640,6 +71994,7 @@ export declare type PeapProgramEnrollmentQueryJiraArgs = {
|
|
|
71640
71994
|
};
|
|
71641
71995
|
export declare type PeapProgramInternalData = {
|
|
71642
71996
|
__typename?: 'PEAPProgramInternalData';
|
|
71997
|
+
availableStatusTransitions: Array<PeapProgramStatus>;
|
|
71643
71998
|
cdacGroup?: Maybe<Scalars['String']['output']>;
|
|
71644
71999
|
cdacGroupURL?: Maybe<Scalars['String']['output']>;
|
|
71645
72000
|
changeTicketURL?: Maybe<Scalars['String']['output']>;
|
|
@@ -72550,6 +72905,11 @@ export declare type PatchCommentsSummaryPayload = {
|
|
|
72550
72905
|
summary: Scalars['String']['output'];
|
|
72551
72906
|
summaryId: Scalars['ID']['output'];
|
|
72552
72907
|
};
|
|
72908
|
+
export declare enum PathType {
|
|
72909
|
+
Absolute = "ABSOLUTE",
|
|
72910
|
+
Relative = "RELATIVE",
|
|
72911
|
+
RelativeNoContext = "RELATIVE_NO_CONTEXT"
|
|
72912
|
+
}
|
|
72553
72913
|
export declare type Payload = {
|
|
72554
72914
|
errors?: Maybe<Array<MutationError>>;
|
|
72555
72915
|
success: Scalars['Boolean']['output'];
|
|
@@ -72599,6 +72959,7 @@ export declare type Person = {
|
|
|
72599
72959
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
72600
72960
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
72601
72961
|
permissionType?: Maybe<SitePermissionType>;
|
|
72962
|
+
profilePicture?: Maybe<Icon>;
|
|
72602
72963
|
type?: Maybe<Scalars['String']['output']>;
|
|
72603
72964
|
};
|
|
72604
72965
|
export declare type PersonEdge = {
|
|
@@ -73551,6 +73912,7 @@ export declare type PushNotificationCustomSettings = {
|
|
|
73551
73912
|
commentReply: Scalars['Boolean']['output'];
|
|
73552
73913
|
createBlogPost: Scalars['Boolean']['output'];
|
|
73553
73914
|
createPage: Scalars['Boolean']['output'];
|
|
73915
|
+
dailyDigest?: Maybe<Scalars['Boolean']['output']>;
|
|
73554
73916
|
editBlogPost: Scalars['Boolean']['output'];
|
|
73555
73917
|
editPage: Scalars['Boolean']['output'];
|
|
73556
73918
|
grantContentAccessEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -73575,6 +73937,7 @@ export declare type PushNotificationCustomSettingsInput = {
|
|
|
73575
73937
|
commentReply: Scalars['Boolean']['input'];
|
|
73576
73938
|
createBlogPost: Scalars['Boolean']['input'];
|
|
73577
73939
|
createPage: Scalars['Boolean']['input'];
|
|
73940
|
+
dailyDigest?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73578
73941
|
editBlogPost: Scalars['Boolean']['input'];
|
|
73579
73942
|
editPage: Scalars['Boolean']['input'];
|
|
73580
73943
|
grantContentAccessEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -73884,8 +74247,13 @@ export declare type Query = {
|
|
|
73884
74247
|
confluenceV2_spaces?: Maybe<Array<Maybe<ConfluenceV2Space>>>;
|
|
73885
74248
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
73886
74249
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
74250
|
+
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
74251
|
+
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
73887
74252
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
74253
|
+
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
73888
74254
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
74255
|
+
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
74256
|
+
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
73889
74257
|
confluence_template?: Maybe<ContentTemplate>;
|
|
73890
74258
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
73891
74259
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
@@ -74367,7 +74735,7 @@ export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
|
74367
74735
|
input: AppStorageSqlDatabaseInput;
|
|
74368
74736
|
};
|
|
74369
74737
|
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
74370
|
-
contextAri
|
|
74738
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74371
74739
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
74372
74740
|
entityName: Scalars['String']['input'];
|
|
74373
74741
|
filters?: InputMaybe<AppStoredCustomEntityFilters>;
|
|
@@ -74378,24 +74746,24 @@ export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
|
74378
74746
|
sort?: InputMaybe<SortOrder>;
|
|
74379
74747
|
};
|
|
74380
74748
|
export declare type QueryAppStoredCustomEntityArgs = {
|
|
74381
|
-
contextAri
|
|
74749
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74382
74750
|
entityName: Scalars['String']['input'];
|
|
74383
74751
|
key: Scalars['ID']['input'];
|
|
74384
74752
|
};
|
|
74385
74753
|
export declare type QueryAppStoredEntitiesArgs = {
|
|
74386
74754
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74387
|
-
contextAri
|
|
74755
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74388
74756
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74389
74757
|
where?: InputMaybe<Array<AppStoredEntityFilter>>;
|
|
74390
74758
|
};
|
|
74391
74759
|
export declare type QueryAppStoredEntitiesForCleanupArgs = {
|
|
74392
74760
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74393
|
-
contextAri
|
|
74761
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74394
74762
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74395
74763
|
where?: InputMaybe<Array<AppStoredEntityFilter>>;
|
|
74396
74764
|
};
|
|
74397
74765
|
export declare type QueryAppStoredEntityArgs = {
|
|
74398
|
-
contextAri
|
|
74766
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74399
74767
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74400
74768
|
key: Scalars['ID']['input'];
|
|
74401
74769
|
};
|
|
@@ -75434,14 +75802,48 @@ export declare type QueryConfluenceV2_SpacesArgs = {
|
|
|
75434
75802
|
export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
75435
75803
|
cloudId: Scalars['ID']['input'];
|
|
75436
75804
|
};
|
|
75805
|
+
export declare type QueryConfluence_RefreshMigrationMediaSessionArgs = {
|
|
75806
|
+
cloudId: Scalars['ID']['input'];
|
|
75807
|
+
migrationId: Scalars['String']['input'];
|
|
75808
|
+
};
|
|
75809
|
+
export declare type QueryConfluence_SearchArgs = {
|
|
75810
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75811
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
75812
|
+
cloudId: Scalars['ID']['input'];
|
|
75813
|
+
cql: Scalars['String']['input'];
|
|
75814
|
+
cqlcontext?: InputMaybe<Scalars['String']['input']>;
|
|
75815
|
+
disableArchivedSpaceFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75816
|
+
excerpt?: InputMaybe<Scalars['String']['input']>;
|
|
75817
|
+
excludeCurrentSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75818
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75819
|
+
includeArchivedSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75820
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
75821
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
75822
|
+
};
|
|
75437
75823
|
export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
75438
75824
|
cloudId: Scalars['ID']['input'];
|
|
75439
75825
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
75440
75826
|
searchText: Scalars['String']['input'];
|
|
75441
75827
|
};
|
|
75828
|
+
export declare type QueryConfluence_SearchUserArgs = {
|
|
75829
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75830
|
+
cloudId: Scalars['ID']['input'];
|
|
75831
|
+
cql: Scalars['String']['input'];
|
|
75832
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75833
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
75834
|
+
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
75835
|
+
};
|
|
75442
75836
|
export declare type QueryConfluence_StorageArgs = {
|
|
75443
75837
|
cloudId: Scalars['ID']['input'];
|
|
75444
75838
|
};
|
|
75839
|
+
export declare type QueryConfluence_TeamPresenceArgs = {
|
|
75840
|
+
cloudId: Scalars['ID']['input'];
|
|
75841
|
+
spaceId: Scalars['Long']['input'];
|
|
75842
|
+
};
|
|
75843
|
+
export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
|
|
75844
|
+
cloudId: Scalars['ID']['input'];
|
|
75845
|
+
spaceId: Scalars['Long']['input'];
|
|
75846
|
+
};
|
|
75445
75847
|
export declare type QueryConfluence_TemplateArgs = {
|
|
75446
75848
|
cloudId: Scalars['ID']['input'];
|
|
75447
75849
|
contentTemplateId: Scalars['String']['input'];
|
|
@@ -76885,6 +77287,7 @@ export declare enum QueryType {
|
|
|
76885
77287
|
export declare type QuickReload = {
|
|
76886
77288
|
__typename?: 'QuickReload';
|
|
76887
77289
|
comments: Array<QuickReloadComment>;
|
|
77290
|
+
editorPersonForPage?: Maybe<ConfluencePerson>;
|
|
76888
77291
|
time: Scalars['Long']['output'];
|
|
76889
77292
|
};
|
|
76890
77293
|
export declare type QuickReloadComment = {
|
|
@@ -76946,6 +77349,7 @@ export declare type RadarFieldDefinition = Node & {
|
|
|
76946
77349
|
filterOptions: RadarFilterOptions;
|
|
76947
77350
|
id: Scalars['ID']['output'];
|
|
76948
77351
|
isCustom: Scalars['Boolean']['output'];
|
|
77352
|
+
isGroupable: Scalars['Boolean']['output'];
|
|
76949
77353
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
76950
77354
|
relativeId: Scalars['String']['output'];
|
|
76951
77355
|
type: RadarFieldType;
|
|
@@ -77017,6 +77421,7 @@ export declare type RadarFunction = {
|
|
|
77017
77421
|
operators: Array<RadarFilterOperators>;
|
|
77018
77422
|
};
|
|
77019
77423
|
export declare enum RadarFunctionId {
|
|
77424
|
+
Haschild = "HASCHILD",
|
|
77020
77425
|
Under = "UNDER"
|
|
77021
77426
|
}
|
|
77022
77427
|
export declare type RadarGroupMetrics = {
|
|
@@ -78587,7 +78992,6 @@ export declare enum Scope {
|
|
|
78587
78992
|
ReadJswSprint = "READ_JSW_SPRINT",
|
|
78588
78993
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
78589
78994
|
ReadMe = "READ_ME",
|
|
78590
|
-
ReadMercury = "READ_MERCURY",
|
|
78591
78995
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
78592
78996
|
ReadOrganization = "READ_ORGANIZATION",
|
|
78593
78997
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
@@ -78692,7 +79096,6 @@ export declare enum Scope {
|
|
|
78692
79096
|
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
78693
79097
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
78694
79098
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
78695
|
-
WriteMercury = "WRITE_MERCURY",
|
|
78696
79099
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
78697
79100
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
78698
79101
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
@@ -79528,7 +79931,7 @@ export declare type SetAppEnvironmentVariablePayload = Payload & {
|
|
|
79528
79931
|
success: Scalars['Boolean']['output'];
|
|
79529
79932
|
};
|
|
79530
79933
|
export declare type SetAppStoredCustomEntityMutationInput = {
|
|
79531
|
-
contextAri
|
|
79934
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79532
79935
|
entityName: Scalars['String']['input'];
|
|
79533
79936
|
key: Scalars['ID']['input'];
|
|
79534
79937
|
value: Scalars['JSON']['input'];
|
|
@@ -79539,7 +79942,7 @@ export declare type SetAppStoredCustomEntityPayload = Payload & {
|
|
|
79539
79942
|
success: Scalars['Boolean']['output'];
|
|
79540
79943
|
};
|
|
79541
79944
|
export declare type SetAppStoredEntityMutationInput = {
|
|
79542
|
-
contextAri
|
|
79945
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79543
79946
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79544
79947
|
key: Scalars['ID']['input'];
|
|
79545
79948
|
value: Scalars['JSON']['input'];
|
|
@@ -81699,6 +82102,7 @@ export declare type Space = {
|
|
|
81699
82102
|
homepageId?: Maybe<Scalars['ID']['output']>;
|
|
81700
82103
|
homepageV2?: Maybe<Content>;
|
|
81701
82104
|
homepageWebSections?: Maybe<Array<Maybe<WebSection>>>;
|
|
82105
|
+
icon?: Maybe<Icon>;
|
|
81702
82106
|
id?: Maybe<Scalars['ID']['output']>;
|
|
81703
82107
|
identifiers?: Maybe<GlobalSpaceIdentifier>;
|
|
81704
82108
|
isBlogToggledOffByPTL: Scalars['Boolean']['output'];
|
|
@@ -81922,6 +82326,7 @@ export declare type SpaceOrContent = {
|
|
|
81922
82326
|
history?: Maybe<History>;
|
|
81923
82327
|
homepage?: Maybe<Content>;
|
|
81924
82328
|
homepageId?: Maybe<Scalars['ID']['output']>;
|
|
82329
|
+
icon?: Maybe<Icon>;
|
|
81925
82330
|
id?: Maybe<Scalars['ID']['output']>;
|
|
81926
82331
|
identifiers?: Maybe<GlobalSpaceIdentifier>;
|
|
81927
82332
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -82110,6 +82515,7 @@ export declare type SpaceRoleGuestPrincipal = SpaceRolePrincipal & {
|
|
|
82110
82515
|
displayName: Scalars['String']['output'];
|
|
82111
82516
|
email?: Maybe<Scalars['String']['output']>;
|
|
82112
82517
|
principalId: Scalars['ID']['output'];
|
|
82518
|
+
profilePicture?: Maybe<Icon>;
|
|
82113
82519
|
};
|
|
82114
82520
|
export declare type SpaceRolePageInfo = {
|
|
82115
82521
|
__typename?: 'SpaceRolePageInfo';
|
|
@@ -82130,6 +82536,7 @@ export declare type SpaceRoleUserPrincipal = SpaceRolePrincipal & {
|
|
|
82130
82536
|
displayName: Scalars['String']['output'];
|
|
82131
82537
|
email?: Maybe<Scalars['String']['output']>;
|
|
82132
82538
|
principalId: Scalars['ID']['output'];
|
|
82539
|
+
profilePicture?: Maybe<Icon>;
|
|
82133
82540
|
};
|
|
82134
82541
|
export declare type SpaceSettings = {
|
|
82135
82542
|
__typename?: 'SpaceSettings';
|
|
@@ -82148,6 +82555,7 @@ export declare type SpaceSidebarLink = {
|
|
|
82148
82555
|
__typename?: 'SpaceSidebarLink';
|
|
82149
82556
|
canHide?: Maybe<Scalars['Boolean']['output']>;
|
|
82150
82557
|
hidden: Scalars['Boolean']['output'];
|
|
82558
|
+
icon?: Maybe<Icon>;
|
|
82151
82559
|
iconClass?: Maybe<Scalars['String']['output']>;
|
|
82152
82560
|
id: Scalars['ID']['output'];
|
|
82153
82561
|
linkIdentifier?: Maybe<Scalars['String']['output']>;
|
|
@@ -82211,6 +82619,7 @@ export declare enum SpaceViewsPersistenceOption {
|
|
|
82211
82619
|
export declare type SpaceWithExemption = {
|
|
82212
82620
|
__typename?: 'SpaceWithExemption';
|
|
82213
82621
|
alias?: Maybe<Scalars['String']['output']>;
|
|
82622
|
+
icon?: Maybe<Icon>;
|
|
82214
82623
|
id?: Maybe<Scalars['Long']['output']>;
|
|
82215
82624
|
key?: Maybe<Scalars['String']['output']>;
|
|
82216
82625
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -82371,6 +82780,7 @@ export declare enum StringUserInputType {
|
|
|
82371
82780
|
}
|
|
82372
82781
|
export declare type SubjectKey = {
|
|
82373
82782
|
__typename?: 'SubjectKey';
|
|
82783
|
+
confluencePerson?: Maybe<ConfluencePerson>;
|
|
82374
82784
|
confluencePrincipalType: ConfluencePrincipalType;
|
|
82375
82785
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
82376
82786
|
group?: Maybe<Group>;
|
|
@@ -83347,6 +83757,7 @@ export declare type TestingSubscriptionOnTestingActivityItemUpdateEnrichJiraArgs
|
|
|
83347
83757
|
export declare type Theme = {
|
|
83348
83758
|
__typename?: 'Theme';
|
|
83349
83759
|
description?: Maybe<Scalars['String']['output']>;
|
|
83760
|
+
icon?: Maybe<Icon>;
|
|
83350
83761
|
links?: Maybe<LinksContextBase>;
|
|
83351
83762
|
name?: Maybe<Scalars['String']['output']>;
|
|
83352
83763
|
themeKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -83864,6 +84275,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
83864
84275
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
83865
84276
|
id: Scalars['ID']['output'];
|
|
83866
84277
|
isArchived: Scalars['Boolean']['output'];
|
|
84278
|
+
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
83867
84279
|
key: Scalars['String']['output'];
|
|
83868
84280
|
name: Scalars['String']['output'];
|
|
83869
84281
|
owner?: Maybe<User>;
|
|
@@ -84914,7 +85326,8 @@ export declare type TrelloCardEdge = {
|
|
|
84914
85326
|
node?: Maybe<TrelloCard>;
|
|
84915
85327
|
};
|
|
84916
85328
|
export declare enum TrelloCardExternalSource {
|
|
84917
|
-
Email = "EMAIL"
|
|
85329
|
+
Email = "EMAIL",
|
|
85330
|
+
Slack = "SLACK"
|
|
84918
85331
|
}
|
|
84919
85332
|
export declare type TrelloCardLimit = {
|
|
84920
85333
|
__typename?: 'TrelloCardLimit';
|
|
@@ -85161,6 +85574,9 @@ export declare type TrelloCustomFieldOptionValue = {
|
|
|
85161
85574
|
__typename?: 'TrelloCustomFieldOptionValue';
|
|
85162
85575
|
text?: Maybe<Scalars['String']['output']>;
|
|
85163
85576
|
};
|
|
85577
|
+
export declare enum TrelloDataSourceHandler {
|
|
85578
|
+
LinkingPlatform = "LINKING_PLATFORM"
|
|
85579
|
+
}
|
|
85164
85580
|
export declare type TrelloDeletePlannerCalendarEventInput = {
|
|
85165
85581
|
plannerCalendarEventId: Scalars['ID']['input'];
|
|
85166
85582
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -85291,6 +85707,7 @@ export declare type TrelloList = Node & {
|
|
|
85291
85707
|
closed: Scalars['Boolean']['output'];
|
|
85292
85708
|
color?: Maybe<Scalars['String']['output']>;
|
|
85293
85709
|
creationMethod: Scalars['String']['output'];
|
|
85710
|
+
datasource?: Maybe<TrelloListDataSource>;
|
|
85294
85711
|
id: Scalars['ID']['output'];
|
|
85295
85712
|
limits?: Maybe<TrelloListLimits>;
|
|
85296
85713
|
name: Scalars['String']['output'];
|
|
@@ -85298,6 +85715,7 @@ export declare type TrelloList = Node & {
|
|
|
85298
85715
|
position: Scalars['Float']['output'];
|
|
85299
85716
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
85300
85717
|
suggestedCardName?: Maybe<Scalars['String']['output']>;
|
|
85718
|
+
type?: Maybe<TrelloListType>;
|
|
85301
85719
|
viewer?: Maybe<TrelloListViewer>;
|
|
85302
85720
|
};
|
|
85303
85721
|
export declare type TrelloListCardsArgs = {
|
|
@@ -85319,6 +85737,12 @@ export declare type TrelloListConnection = {
|
|
|
85319
85737
|
nodes?: Maybe<Array<TrelloList>>;
|
|
85320
85738
|
pageInfo: PageInfo;
|
|
85321
85739
|
};
|
|
85740
|
+
export declare type TrelloListDataSource = {
|
|
85741
|
+
__typename?: 'TrelloListDataSource';
|
|
85742
|
+
filter: Scalars['Boolean']['output'];
|
|
85743
|
+
handler: TrelloDataSourceHandler;
|
|
85744
|
+
link: Scalars['URL']['output'];
|
|
85745
|
+
};
|
|
85322
85746
|
export declare type TrelloListEdge = {
|
|
85323
85747
|
__typename?: 'TrelloListEdge';
|
|
85324
85748
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -85331,6 +85755,9 @@ export declare type TrelloListLimits = {
|
|
|
85331
85755
|
__typename?: 'TrelloListLimits';
|
|
85332
85756
|
cards?: Maybe<TrelloListCardLimits>;
|
|
85333
85757
|
};
|
|
85758
|
+
export declare enum TrelloListType {
|
|
85759
|
+
Datasource = "DATASOURCE"
|
|
85760
|
+
}
|
|
85334
85761
|
export declare type TrelloListUpdated = {
|
|
85335
85762
|
__typename?: 'TrelloListUpdated';
|
|
85336
85763
|
cards?: Maybe<TrelloCardUpdatedConnection>;
|
|
@@ -85548,6 +85975,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
|
|
|
85548
85975
|
accountType?: Maybe<TrelloSupportedPlannerProviders>;
|
|
85549
85976
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
85550
85977
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
85978
|
+
hasRequiredScopes?: Maybe<Scalars['Boolean']['output']>;
|
|
85551
85979
|
id: Scalars['ID']['output'];
|
|
85552
85980
|
outboundAuthId?: Maybe<Scalars['ID']['output']>;
|
|
85553
85981
|
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
@@ -85929,6 +86357,7 @@ export declare type TrelloScaleProps = {
|
|
|
85929
86357
|
export declare type TrelloSticker = {
|
|
85930
86358
|
__typename?: 'TrelloSticker';
|
|
85931
86359
|
image?: Maybe<Scalars['String']['output']>;
|
|
86360
|
+
imageScaled?: Maybe<Array<TrelloImagePreview>>;
|
|
85932
86361
|
left?: Maybe<Scalars['Float']['output']>;
|
|
85933
86362
|
objectId: Scalars['ID']['output'];
|
|
85934
86363
|
rotate?: Maybe<Scalars['Float']['output']>;
|
|
@@ -85953,13 +86382,9 @@ export declare type TrelloStickerUpdatedConnection = {
|
|
|
85953
86382
|
};
|
|
85954
86383
|
export declare type TrelloSubscriptionApi = {
|
|
85955
86384
|
__typename?: 'TrelloSubscriptionApi';
|
|
85956
|
-
cardsById?: Maybe<TrelloBoardUpdated>;
|
|
85957
86385
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
85958
86386
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
85959
86387
|
};
|
|
85960
|
-
export declare type TrelloSubscriptionApiCardsByIdArgs = {
|
|
85961
|
-
ids: Array<Scalars['ID']['input']>;
|
|
85962
|
-
};
|
|
85963
86388
|
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
85964
86389
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
85965
86390
|
id: Scalars['ID']['input'];
|
|
@@ -86236,11 +86661,21 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
86236
86661
|
emailId: Scalars['String']['output'];
|
|
86237
86662
|
id: Scalars['ID']['output'];
|
|
86238
86663
|
internalId: Scalars['String']['output'];
|
|
86664
|
+
isForumsModerator: Scalars['Boolean']['output'];
|
|
86239
86665
|
isLinked: Scalars['Boolean']['output'];
|
|
86240
86666
|
isManaged: Scalars['Boolean']['output'];
|
|
86241
86667
|
isPrimary: Scalars['Boolean']['output'];
|
|
86242
86668
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
86243
86669
|
};
|
|
86670
|
+
export declare type UnifiedAccountBasics = UnifiedINode & {
|
|
86671
|
+
__typename?: 'UnifiedAccountBasics';
|
|
86672
|
+
aaid: Scalars['String']['output'];
|
|
86673
|
+
id: Scalars['ID']['output'];
|
|
86674
|
+
isLinked: Scalars['Boolean']['output'];
|
|
86675
|
+
isManaged: Scalars['Boolean']['output'];
|
|
86676
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
86677
|
+
linkedAccountsBasics?: Maybe<UnifiedULinkedAccountBasicsResult>;
|
|
86678
|
+
};
|
|
86244
86679
|
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
86245
86680
|
__typename?: 'UnifiedAccountDetails';
|
|
86246
86681
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -86584,6 +87019,17 @@ export declare type UnifiedLinkInitiationPayload = {
|
|
|
86584
87019
|
id: Scalars['ID']['output'];
|
|
86585
87020
|
token: Scalars['String']['output'];
|
|
86586
87021
|
};
|
|
87022
|
+
export declare type UnifiedLinkedAccountBasicsConnection = UnifiedIConnection & {
|
|
87023
|
+
__typename?: 'UnifiedLinkedAccountBasicsConnection';
|
|
87024
|
+
edges?: Maybe<Array<Maybe<UnifiedLinkedAccountBasicsEdge>>>;
|
|
87025
|
+
pageInfo: UnifiedPageInfo;
|
|
87026
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
87027
|
+
};
|
|
87028
|
+
export declare type UnifiedLinkedAccountBasicsEdge = UnifiedIEdge & {
|
|
87029
|
+
__typename?: 'UnifiedLinkedAccountBasicsEdge';
|
|
87030
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87031
|
+
node?: Maybe<UnifiedAccountBasics>;
|
|
87032
|
+
};
|
|
86587
87033
|
export declare type UnifiedLinkedAccountConnection = UnifiedIConnection & {
|
|
86588
87034
|
__typename?: 'UnifiedLinkedAccountConnection';
|
|
86589
87035
|
edges?: Maybe<Array<Maybe<UnifiedLinkedAccountEdge>>>;
|
|
@@ -86732,6 +87178,7 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
86732
87178
|
export declare type UnifiedQuery = {
|
|
86733
87179
|
__typename?: 'UnifiedQuery';
|
|
86734
87180
|
account?: Maybe<UnifiedUAccountResult>;
|
|
87181
|
+
accountBasics?: Maybe<UnifiedUAccountBasicsResult>;
|
|
86735
87182
|
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
86736
87183
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
86737
87184
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
@@ -86742,6 +87189,9 @@ export declare type UnifiedQuery = {
|
|
|
86742
87189
|
export declare type UnifiedQueryAccountArgs = {
|
|
86743
87190
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
86744
87191
|
};
|
|
87192
|
+
export declare type UnifiedQueryAccountBasicsArgs = {
|
|
87193
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
87194
|
+
};
|
|
86745
87195
|
export declare type UnifiedQueryAccountDetailsArgs = {
|
|
86746
87196
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
86747
87197
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -86755,6 +87205,7 @@ export declare type UnifiedQueryNodeArgs = {
|
|
|
86755
87205
|
};
|
|
86756
87206
|
export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
86757
87207
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
87208
|
+
internalId?: InputMaybe<Scalars['String']['input']>;
|
|
86758
87209
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
86759
87210
|
};
|
|
86760
87211
|
export declare type UnifiedQueryError = UnifiedIQueryError & {
|
|
@@ -86790,6 +87241,7 @@ export declare enum UnifiedSortDirection {
|
|
|
86790
87241
|
Asc = "ASC",
|
|
86791
87242
|
Desc = "DESC"
|
|
86792
87243
|
}
|
|
87244
|
+
export declare type UnifiedUAccountBasicsResult = UnifiedAccountBasics | UnifiedQueryError;
|
|
86793
87245
|
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
86794
87246
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
86795
87247
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
@@ -86808,6 +87260,7 @@ export declare type UnifiedULearningCertificationResult = UnifiedLearningCertifi
|
|
|
86808
87260
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
86809
87261
|
export declare type UnifiedULinkAuthenticationPayload = UnifiedLinkAuthenticationPayload | UnifiedLinkingStatusPayload;
|
|
86810
87262
|
export declare type UnifiedULinkInitiationPayload = UnifiedLinkInitiationPayload | UnifiedLinkingStatusPayload;
|
|
87263
|
+
export declare type UnifiedULinkedAccountBasicsResult = UnifiedLinkedAccountBasicsConnection | UnifiedQueryError;
|
|
86811
87264
|
export declare type UnifiedULinkedAccountResult = UnifiedLinkedAccountConnection | UnifiedQueryError;
|
|
86812
87265
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
86813
87266
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
@@ -86820,6 +87273,7 @@ export declare type UnknownUser = Person & {
|
|
|
86820
87273
|
email?: Maybe<Scalars['String']['output']>;
|
|
86821
87274
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
86822
87275
|
permissionType?: Maybe<SitePermissionType>;
|
|
87276
|
+
profilePicture?: Maybe<Icon>;
|
|
86823
87277
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
86824
87278
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
86825
87279
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -87738,6 +88192,7 @@ export declare type UserWithRestrictions = {
|
|
|
87738
88192
|
hasSpaceViewPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
87739
88193
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
87740
88194
|
permissionType?: Maybe<SitePermissionType>;
|
|
88195
|
+
profilePicture?: Maybe<Icon>;
|
|
87741
88196
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
87742
88197
|
restrictingContent?: Maybe<Content>;
|
|
87743
88198
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
@@ -88359,6 +88814,7 @@ export declare type WatchContentInput = {
|
|
|
88359
88814
|
accountId?: InputMaybe<Scalars['String']['input']>;
|
|
88360
88815
|
contentId: Scalars['ID']['input'];
|
|
88361
88816
|
currentUser?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88817
|
+
includeChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88362
88818
|
};
|
|
88363
88819
|
export declare type WatchContentPayload = {
|
|
88364
88820
|
__typename?: 'WatchContentPayload';
|
|
@@ -88384,6 +88840,7 @@ export declare type WebItem = {
|
|
|
88384
88840
|
accessKey?: Maybe<Scalars['String']['output']>;
|
|
88385
88841
|
completeKey?: Maybe<Scalars['String']['output']>;
|
|
88386
88842
|
hasCondition?: Maybe<Scalars['Boolean']['output']>;
|
|
88843
|
+
icon?: Maybe<Icon>;
|
|
88387
88844
|
id?: Maybe<Scalars['String']['output']>;
|
|
88388
88845
|
label?: Maybe<Scalars['String']['output']>;
|
|
88389
88846
|
moduleKey?: Maybe<Scalars['String']['output']>;
|