@forge/cli-shared 8.7.2-next.1-experimental-2578ec1 → 8.8.0-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 +3 -5
- package/out/graphql/graphql-types.d.ts +217 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +36 -24
- package/out/tunnel/tunnel-options.d.ts +1 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/ui/text.d.ts +4 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 8.
|
|
3
|
+
## 8.8.0-next.2
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- Updated dependencies [f5d3945]
|
|
9
|
-
- @forge/manifest@10.7.0-next.0-experimental-2578ec1
|
|
7
|
+
- 8ff224b: Add automatic spinning up of docker compose stacks for containers when tunneling
|
|
10
8
|
|
|
11
9
|
## 8.7.2-next.1
|
|
12
10
|
|
|
@@ -15908,6 +15908,7 @@ export declare type ConfluenceCustomContentPermissionGroupPrincipal = Confluence
|
|
|
15908
15908
|
export declare type ConfluenceCustomContentPermissionGuestPrincipal = ConfluenceCustomContentPermissionPrincipal & {
|
|
15909
15909
|
__typename?: 'ConfluenceCustomContentPermissionGuestPrincipal';
|
|
15910
15910
|
displayName: Scalars['String']['output'];
|
|
15911
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
15911
15912
|
principalId: Scalars['ID']['output'];
|
|
15912
15913
|
profilePicture?: Maybe<Icon>;
|
|
15913
15914
|
};
|
|
@@ -15934,6 +15935,7 @@ export declare enum ConfluenceCustomContentPermissionType {
|
|
|
15934
15935
|
export declare type ConfluenceCustomContentPermissionUserPrincipal = ConfluenceCustomContentPermissionPrincipal & {
|
|
15935
15936
|
__typename?: 'ConfluenceCustomContentPermissionUserPrincipal';
|
|
15936
15937
|
displayName: Scalars['String']['output'];
|
|
15938
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
15937
15939
|
principalId: Scalars['ID']['output'];
|
|
15938
15940
|
profilePicture?: Maybe<Icon>;
|
|
15939
15941
|
};
|
|
@@ -16790,6 +16792,14 @@ export declare type ConfluenceLanguage = {
|
|
|
16790
16792
|
language?: Maybe<Scalars['String']['output']>;
|
|
16791
16793
|
name?: Maybe<Scalars['String']['output']>;
|
|
16792
16794
|
};
|
|
16795
|
+
export declare type ConfluenceLegacyEditorReportDownloadLink = {
|
|
16796
|
+
__typename?: 'ConfluenceLegacyEditorReportDownloadLink';
|
|
16797
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
16798
|
+
};
|
|
16799
|
+
export declare enum ConfluenceLegacyEditorReportType {
|
|
16800
|
+
Page = "PAGE",
|
|
16801
|
+
Template = "TEMPLATE"
|
|
16802
|
+
}
|
|
16793
16803
|
export declare type ConfluenceLike = {
|
|
16794
16804
|
__typename?: 'ConfluenceLike';
|
|
16795
16805
|
likedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -17630,6 +17640,18 @@ export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
|
17630
17640
|
errors?: Maybe<Array<MutationError>>;
|
|
17631
17641
|
success: Scalars['Boolean']['output'];
|
|
17632
17642
|
};
|
|
17643
|
+
export declare type ConfluencePublishBlueprintSharedDraftInput = {
|
|
17644
|
+
confluenceContentInput: ConfluenceContentInput;
|
|
17645
|
+
draftId: Scalars['ID']['input'];
|
|
17646
|
+
expand?: InputMaybe<Scalars['String']['input']>;
|
|
17647
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
17648
|
+
};
|
|
17649
|
+
export declare type ConfluencePublishBlueprintSharedDraftPayload = Payload & {
|
|
17650
|
+
__typename?: 'ConfluencePublishBlueprintSharedDraftPayload';
|
|
17651
|
+
content?: Maybe<Content>;
|
|
17652
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17653
|
+
success: Scalars['Boolean']['output'];
|
|
17654
|
+
};
|
|
17633
17655
|
export declare type ConfluencePublishPageInput = {
|
|
17634
17656
|
id: Scalars['ID']['input'];
|
|
17635
17657
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18269,6 +18291,12 @@ export declare type ConfluenceSpaceRecommendations = {
|
|
|
18269
18291
|
active?: Maybe<Array<Maybe<Space>>>;
|
|
18270
18292
|
starred?: Maybe<Array<Maybe<Space>>>;
|
|
18271
18293
|
};
|
|
18294
|
+
export declare type ConfluenceSpaceReportPayload = Payload & {
|
|
18295
|
+
__typename?: 'ConfluenceSpaceReportPayload';
|
|
18296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18297
|
+
success: Scalars['Boolean']['output'];
|
|
18298
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
18299
|
+
};
|
|
18272
18300
|
export declare type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
18273
18301
|
__typename?: 'ConfluenceSpaceRoleAppPrincipal';
|
|
18274
18302
|
displayName: Scalars['String']['output'];
|
|
@@ -28528,15 +28556,18 @@ export declare type ExternalBranch = Node & {
|
|
|
28528
28556
|
container?: Maybe<ExternalEntity>;
|
|
28529
28557
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
28530
28558
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
28559
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
28531
28560
|
createdBy?: Maybe<ExternalUser>;
|
|
28532
28561
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
28533
28562
|
id: Scalars['ID']['output'];
|
|
28563
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
28534
28564
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
28535
28565
|
name?: Maybe<Scalars['String']['output']>;
|
|
28536
28566
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
28537
28567
|
provider?: Maybe<ExternalProvider>;
|
|
28538
28568
|
repositoryId?: Maybe<Scalars['String']['output']>;
|
|
28539
28569
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
28570
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
28540
28571
|
url?: Maybe<Scalars['String']['output']>;
|
|
28541
28572
|
};
|
|
28542
28573
|
export declare type ExternalBranchReference = {
|
|
@@ -35825,6 +35856,8 @@ export declare type GraphStore = {
|
|
|
35825
35856
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
35826
35857
|
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
35827
35858
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
35859
|
+
userTaggedInIssueDescription?: Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionConnection>;
|
|
35860
|
+
userTaggedInIssueDescriptionInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseConnection>;
|
|
35828
35861
|
userTrashedConfluenceContent?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentConnection>;
|
|
35829
35862
|
userTrashedConfluenceContentInverse?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection>;
|
|
35830
35863
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
@@ -40696,6 +40729,20 @@ export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
|
40696
40729
|
id: Scalars['ID']['input'];
|
|
40697
40730
|
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
40698
40731
|
};
|
|
40732
|
+
export declare type GraphStoreUserTaggedInIssueDescriptionArgs = {
|
|
40733
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40734
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40735
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40736
|
+
id: Scalars['ID']['input'];
|
|
40737
|
+
sort?: InputMaybe<GraphStoreUserTaggedInIssueDescriptionSortInput>;
|
|
40738
|
+
};
|
|
40739
|
+
export declare type GraphStoreUserTaggedInIssueDescriptionInverseArgs = {
|
|
40740
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40741
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40742
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40743
|
+
id: Scalars['ID']['input'];
|
|
40744
|
+
sort?: InputMaybe<GraphStoreUserTaggedInIssueDescriptionSortInput>;
|
|
40745
|
+
};
|
|
40699
40746
|
export declare type GraphStoreUserTrashedConfluenceContentArgs = {
|
|
40700
40747
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40701
40748
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -56003,6 +56050,34 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
56003
56050
|
};
|
|
56004
56051
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56005
56052
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
56053
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionConnection = HasPageInfo & {
|
|
56054
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueDescriptionConnection';
|
|
56055
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionEdge>>>;
|
|
56056
|
+
pageInfo: PageInfo;
|
|
56057
|
+
};
|
|
56058
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionEdge = {
|
|
56059
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueDescriptionEdge';
|
|
56060
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56061
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56062
|
+
id: Scalars['ID']['output'];
|
|
56063
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56064
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionUnion>;
|
|
56065
|
+
};
|
|
56066
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseConnection = HasPageInfo & {
|
|
56067
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseConnection';
|
|
56068
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseEdge>>>;
|
|
56069
|
+
pageInfo: PageInfo;
|
|
56070
|
+
};
|
|
56071
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseEdge = {
|
|
56072
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseEdge';
|
|
56073
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56074
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56075
|
+
id: Scalars['ID']['output'];
|
|
56076
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56077
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseUnion>;
|
|
56078
|
+
};
|
|
56079
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56080
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionUnion = JiraIssue;
|
|
56006
56081
|
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentConnection = HasPageInfo & {
|
|
56007
56082
|
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentConnection';
|
|
56008
56083
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentEdge>>>;
|
|
@@ -57687,6 +57762,9 @@ export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
|
57687
57762
|
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
57688
57763
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57689
57764
|
};
|
|
57765
|
+
export declare type GraphStoreUserTaggedInIssueDescriptionSortInput = {
|
|
57766
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57767
|
+
};
|
|
57690
57768
|
export declare type GraphStoreUserTrashedConfluenceContentSortInput = {
|
|
57691
57769
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57692
57770
|
};
|
|
@@ -62050,6 +62128,7 @@ export declare type JiraAlignAggMercuryProjectTypeDto = MercuryProjectType & {
|
|
|
62050
62128
|
};
|
|
62051
62129
|
export declare type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
62052
62130
|
__typename?: 'JiraAlignAggProject';
|
|
62131
|
+
customProjectType?: Maybe<JiraAlignAggCustomProjectType>;
|
|
62053
62132
|
externalOwner?: Maybe<JiraAlignAggJiraAlignProjectOwner>;
|
|
62054
62133
|
id: Scalars['ID']['output'];
|
|
62055
62134
|
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
@@ -67953,6 +68032,55 @@ export declare enum JiraFormattingTwoValueOperator {
|
|
|
67953
68032
|
IsBetween = "IS_BETWEEN",
|
|
67954
68033
|
IsNotBetween = "IS_NOT_BETWEEN"
|
|
67955
68034
|
}
|
|
68035
|
+
export declare type JiraFormulaFieldDateValue = {
|
|
68036
|
+
__typename?: 'JiraFormulaFieldDateValue';
|
|
68037
|
+
value?: Maybe<Scalars['DateTime']['output']>;
|
|
68038
|
+
};
|
|
68039
|
+
export declare type JiraFormulaFieldExpressionConfig = {
|
|
68040
|
+
__typename?: 'JiraFormulaFieldExpressionConfig';
|
|
68041
|
+
expression?: Maybe<Scalars['String']['output']>;
|
|
68042
|
+
};
|
|
68043
|
+
export declare type JiraFormulaFieldExpressionConfigInput = {
|
|
68044
|
+
expression?: InputMaybe<Scalars['String']['input']>;
|
|
68045
|
+
};
|
|
68046
|
+
export declare type JiraFormulaFieldIssuePreview = {
|
|
68047
|
+
__typename?: 'JiraFormulaFieldIssuePreview';
|
|
68048
|
+
missingFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
68049
|
+
parseErrors?: Maybe<Array<JiraFormulaFieldParseError>>;
|
|
68050
|
+
value?: Maybe<JiraFormulaFieldValue>;
|
|
68051
|
+
};
|
|
68052
|
+
export declare type JiraFormulaFieldNumberValue = {
|
|
68053
|
+
__typename?: 'JiraFormulaFieldNumberValue';
|
|
68054
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
68055
|
+
};
|
|
68056
|
+
export declare type JiraFormulaFieldParseError = {
|
|
68057
|
+
__typename?: 'JiraFormulaFieldParseError';
|
|
68058
|
+
message: Scalars['String']['output'];
|
|
68059
|
+
};
|
|
68060
|
+
export declare type JiraFormulaFieldParseResult = {
|
|
68061
|
+
__typename?: 'JiraFormulaFieldParseResult';
|
|
68062
|
+
isValid: Scalars['Boolean']['output'];
|
|
68063
|
+
parseErrors?: Maybe<Array<JiraFormulaFieldParseError>>;
|
|
68064
|
+
type?: Maybe<JiraFormulaFieldType>;
|
|
68065
|
+
};
|
|
68066
|
+
export declare type JiraFormulaFieldPreview = {
|
|
68067
|
+
__typename?: 'JiraFormulaFieldPreview';
|
|
68068
|
+
issuePreview?: Maybe<JiraFormulaFieldIssuePreview>;
|
|
68069
|
+
parseResult?: Maybe<JiraFormulaFieldParseResult>;
|
|
68070
|
+
};
|
|
68071
|
+
export declare type JiraFormulaFieldPreviewIssuePreviewArgs = {
|
|
68072
|
+
issueKey: Scalars['String']['input'];
|
|
68073
|
+
};
|
|
68074
|
+
export declare type JiraFormulaFieldTextValue = {
|
|
68075
|
+
__typename?: 'JiraFormulaFieldTextValue';
|
|
68076
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
68077
|
+
};
|
|
68078
|
+
export declare enum JiraFormulaFieldType {
|
|
68079
|
+
Datetime = "DATETIME",
|
|
68080
|
+
Number = "NUMBER",
|
|
68081
|
+
Text = "TEXT"
|
|
68082
|
+
}
|
|
68083
|
+
export declare type JiraFormulaFieldValue = JiraFormulaFieldDateValue | JiraFormulaFieldNumberValue | JiraFormulaFieldTextValue;
|
|
67956
68084
|
export declare type JiraGeneratedJqlInvalidError = {
|
|
67957
68085
|
__typename?: 'JiraGeneratedJqlInvalidError';
|
|
67958
68086
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -72027,6 +72155,7 @@ export declare type JiraMutation = {
|
|
|
72027
72155
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
72028
72156
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
72029
72157
|
setFieldAssociationWithIssueTypes?: Maybe<JiraSetFieldAssociationWithIssueTypesPayload>;
|
|
72158
|
+
setFormulaFieldExpressionConfig?: Maybe<JiraSetFormulaFieldExpressionConfigPayload>;
|
|
72030
72159
|
setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
|
|
72031
72160
|
setPlanAutoSchedulerEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
72032
72161
|
setPlanMultiScenarioEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
@@ -72540,6 +72669,9 @@ export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
|
72540
72669
|
export declare type JiraMutationSetFieldAssociationWithIssueTypesArgs = {
|
|
72541
72670
|
input: JiraSetFieldAssociationWithIssueTypesInput;
|
|
72542
72671
|
};
|
|
72672
|
+
export declare type JiraMutationSetFormulaFieldExpressionConfigArgs = {
|
|
72673
|
+
input: JiraSetFormulaFieldExpressionConfigInput;
|
|
72674
|
+
};
|
|
72543
72675
|
export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
|
|
72544
72676
|
id: Scalars['ID']['input'];
|
|
72545
72677
|
};
|
|
@@ -73053,6 +73185,7 @@ export declare type JiraNotificationPreferences = {
|
|
|
73053
73185
|
commentCreated?: Maybe<JiraNotificationPreference>;
|
|
73054
73186
|
commentDeleted?: Maybe<JiraNotificationPreference>;
|
|
73055
73187
|
commentEdited?: Maybe<JiraNotificationPreference>;
|
|
73188
|
+
commentMentionReminder?: Maybe<JiraNotificationPreference>;
|
|
73056
73189
|
dailyDueDateNotification?: Maybe<JiraNotificationPreference>;
|
|
73057
73190
|
issueAssigned?: Maybe<JiraNotificationPreference>;
|
|
73058
73191
|
issueCreated?: Maybe<JiraNotificationPreference>;
|
|
@@ -73081,6 +73214,7 @@ export declare enum JiraNotificationType {
|
|
|
73081
73214
|
CommentCreated = "COMMENT_CREATED",
|
|
73082
73215
|
CommentDeleted = "COMMENT_DELETED",
|
|
73083
73216
|
CommentEdited = "COMMENT_EDITED",
|
|
73217
|
+
CommentMentionReminder = "COMMENT_MENTION_REMINDER",
|
|
73084
73218
|
DailyDueDateNotification = "DAILY_DUE_DATE_NOTIFICATION",
|
|
73085
73219
|
IssueAssigned = "ISSUE_ASSIGNED",
|
|
73086
73220
|
IssueCreated = "ISSUE_CREATED",
|
|
@@ -75437,6 +75571,8 @@ export declare type JiraQuery = {
|
|
|
75437
75571
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
75438
75572
|
forge: JiraForgeQuery;
|
|
75439
75573
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
75574
|
+
formulaFieldExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
75575
|
+
formulaFieldPreview?: Maybe<JiraFormulaFieldPreview>;
|
|
75440
75576
|
getArchivedIssues?: Maybe<JiraArchivedIssueConnection>;
|
|
75441
75577
|
getArchivedIssuesFilterOptions?: Maybe<JiraArchivedIssuesFilterOptions>;
|
|
75442
75578
|
getArchivedIssuesForProject?: Maybe<JiraIssueConnection>;
|
|
@@ -75740,6 +75876,7 @@ export declare type JiraQueryChildIssuesLimitArgs = {
|
|
|
75740
75876
|
export declare type JiraQueryCmdbSelectedObjectAttributesArgs = {
|
|
75741
75877
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75742
75878
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
75879
|
+
cloudId: Scalars['ID']['input'];
|
|
75743
75880
|
fieldId: Scalars['ID']['input'];
|
|
75744
75881
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75745
75882
|
issueId: Scalars['ID']['input'];
|
|
@@ -75847,6 +75984,15 @@ export declare type JiraQueryFormattingRulesByProjectArgs = {
|
|
|
75847
75984
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75848
75985
|
projectId: Scalars['ID']['input'];
|
|
75849
75986
|
};
|
|
75987
|
+
export declare type JiraQueryFormulaFieldExpressionConfigArgs = {
|
|
75988
|
+
cloudId: Scalars['ID']['input'];
|
|
75989
|
+
fieldId: Scalars['String']['input'];
|
|
75990
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
75991
|
+
};
|
|
75992
|
+
export declare type JiraQueryFormulaFieldPreviewArgs = {
|
|
75993
|
+
cloudId: Scalars['ID']['input'];
|
|
75994
|
+
expression: Scalars['String']['input'];
|
|
75995
|
+
};
|
|
75850
75996
|
export declare type JiraQueryGetArchivedIssuesArgs = {
|
|
75851
75997
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75852
75998
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -79029,6 +79175,18 @@ export declare type JiraSetFieldSetsPreferencesPayload = Payload & {
|
|
|
79029
79175
|
errors?: Maybe<Array<MutationError>>;
|
|
79030
79176
|
success: Scalars['Boolean']['output'];
|
|
79031
79177
|
};
|
|
79178
|
+
export declare type JiraSetFormulaFieldExpressionConfigInput = {
|
|
79179
|
+
cloudId: Scalars['ID']['input'];
|
|
79180
|
+
expressionConfig?: InputMaybe<JiraFormulaFieldExpressionConfigInput>;
|
|
79181
|
+
fieldId: Scalars['String']['input'];
|
|
79182
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
79183
|
+
};
|
|
79184
|
+
export declare type JiraSetFormulaFieldExpressionConfigPayload = Payload & {
|
|
79185
|
+
__typename?: 'JiraSetFormulaFieldExpressionConfigPayload';
|
|
79186
|
+
errors?: Maybe<Array<MutationError>>;
|
|
79187
|
+
jobId?: Maybe<Scalars['String']['output']>;
|
|
79188
|
+
success: Scalars['Boolean']['output'];
|
|
79189
|
+
};
|
|
79032
79190
|
export declare type JiraSetIsFavouriteInput = {
|
|
79033
79191
|
beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
79034
79192
|
entityId: Scalars['ID']['input'];
|
|
@@ -88949,6 +89107,10 @@ export declare type MercuryFocusAreaFundChangeSummary = {
|
|
|
88949
89107
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
88950
89108
|
totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
88951
89109
|
};
|
|
89110
|
+
export declare type MercuryFocusAreaGoalContext = {
|
|
89111
|
+
__typename?: 'MercuryFocusAreaGoalContext';
|
|
89112
|
+
focusAreaLinkedGoalContext?: Maybe<Array<Maybe<MercuryFocusAreaLinkedGoalContextData>>>;
|
|
89113
|
+
};
|
|
88952
89114
|
export declare type MercuryFocusAreaGoalLink = Node & {
|
|
88953
89115
|
__typename?: 'MercuryFocusAreaGoalLink';
|
|
88954
89116
|
atlasGoal?: Maybe<TownsquareGoal>;
|
|
@@ -89004,6 +89166,17 @@ export declare type MercuryFocusAreaLink = Node & {
|
|
|
89004
89166
|
id: Scalars['ID']['output'];
|
|
89005
89167
|
parentFocusAreaId: Scalars['String']['output'];
|
|
89006
89168
|
};
|
|
89169
|
+
export declare type MercuryFocusAreaLinkedGoalContextData = {
|
|
89170
|
+
__typename?: 'MercuryFocusAreaLinkedGoalContextData';
|
|
89171
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
89172
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
89173
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
89174
|
+
status?: Maybe<MercuryLinkedGoalStatus>;
|
|
89175
|
+
targetDateEnd?: Maybe<Scalars['String']['output']>;
|
|
89176
|
+
targetDateStart?: Maybe<Scalars['String']['output']>;
|
|
89177
|
+
updates?: Maybe<Array<MercuryLinkedGoalUpdate>>;
|
|
89178
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
89179
|
+
};
|
|
89007
89180
|
export declare type MercuryFocusAreaLinkedGoalSummary = {
|
|
89008
89181
|
__typename?: 'MercuryFocusAreaLinkedGoalSummary';
|
|
89009
89182
|
count: Scalars['Int']['output'];
|
|
@@ -89290,6 +89463,21 @@ export declare type MercuryLinkWorkToFocusAreaPayload = Payload & {
|
|
|
89290
89463
|
errors?: Maybe<Array<MutationError>>;
|
|
89291
89464
|
success: Scalars['Boolean']['output'];
|
|
89292
89465
|
};
|
|
89466
|
+
export declare type MercuryLinkedGoalStatus = {
|
|
89467
|
+
__typename?: 'MercuryLinkedGoalStatus';
|
|
89468
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
89469
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
89470
|
+
};
|
|
89471
|
+
export declare type MercuryLinkedGoalUpdate = {
|
|
89472
|
+
__typename?: 'MercuryLinkedGoalUpdate';
|
|
89473
|
+
creationDate?: Maybe<Scalars['String']['output']>;
|
|
89474
|
+
editDate?: Maybe<Scalars['String']['output']>;
|
|
89475
|
+
newState?: Maybe<Scalars['String']['output']>;
|
|
89476
|
+
newTargetDate?: Maybe<Scalars['String']['output']>;
|
|
89477
|
+
oldState?: Maybe<Scalars['String']['output']>;
|
|
89478
|
+
oldTargetDate?: Maybe<Scalars['String']['output']>;
|
|
89479
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
89480
|
+
};
|
|
89293
89481
|
export declare type MercuryMediaToken = {
|
|
89294
89482
|
__typename?: 'MercuryMediaToken';
|
|
89295
89483
|
token: Scalars['String']['output'];
|
|
@@ -89852,6 +90040,7 @@ export declare type MercuryPublishFocusAreaPayload = Payload & {
|
|
|
89852
90040
|
};
|
|
89853
90041
|
export declare type MercuryQueryApi = {
|
|
89854
90042
|
__typename?: 'MercuryQueryApi';
|
|
90043
|
+
aiFocusAreaGoalContextData?: Maybe<MercuryFocusAreaGoalContext>;
|
|
89855
90044
|
aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
|
|
89856
90045
|
aiFocusAreaWorkContextData?: Maybe<MercuryFocusAreaWorkContext>;
|
|
89857
90046
|
comments?: Maybe<MercuryCommentConnection>;
|
|
@@ -89876,6 +90065,11 @@ export declare type MercuryQueryApi = {
|
|
|
89876
90065
|
searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
89877
90066
|
workspaceContext: MercuryWorkspaceContext;
|
|
89878
90067
|
};
|
|
90068
|
+
export declare type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
90069
|
+
cloudId: Scalars['ID']['input'];
|
|
90070
|
+
id: Scalars['ID']['input'];
|
|
90071
|
+
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
90072
|
+
};
|
|
89879
90073
|
export declare type MercuryQueryApiAiFocusAreaSummaryArgs = {
|
|
89880
90074
|
cloudId: Scalars['ID']['input'];
|
|
89881
90075
|
id: Scalars['ID']['input'];
|
|
@@ -91183,6 +91377,7 @@ export declare type Mutation = {
|
|
|
91183
91377
|
confluence_experimentInitAiFirstCreation?: Maybe<ConfluenceExperimentInitAiFirstCreationPayload>;
|
|
91184
91378
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
91185
91379
|
confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
|
|
91380
|
+
confluence_generateLegacyEditorReport?: Maybe<ConfluenceSpaceReportPayload>;
|
|
91186
91381
|
confluence_generateSpacePermissionAuditReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
91187
91382
|
confluence_insertOfflineVersion?: Maybe<ConfluenceInsertOfflineVersionPayload>;
|
|
91188
91383
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
@@ -91194,6 +91389,7 @@ export declare type Mutation = {
|
|
|
91194
91389
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
91195
91390
|
confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
|
|
91196
91391
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
91392
|
+
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
91197
91393
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
91198
91394
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
91199
91395
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
@@ -92341,6 +92537,11 @@ export declare type MutationConfluence_GenerateForgeContextTokenArgs = {
|
|
|
92341
92537
|
cloudId: Scalars['ID']['input'];
|
|
92342
92538
|
input: ConfluenceForgeContextTokenRequestInput;
|
|
92343
92539
|
};
|
|
92540
|
+
export declare type MutationConfluence_GenerateLegacyEditorReportArgs = {
|
|
92541
|
+
cloudId: Scalars['ID']['input'];
|
|
92542
|
+
contentType: ConfluenceLegacyEditorReportType;
|
|
92543
|
+
spaceId: Scalars['ID']['input'];
|
|
92544
|
+
};
|
|
92344
92545
|
export declare type MutationConfluence_GenerateSpacePermissionAuditReportArgs = {
|
|
92345
92546
|
cloudId: Scalars['ID']['input'];
|
|
92346
92547
|
reportType: ConfluenceSpacePermissionAuditReportType;
|
|
@@ -92387,6 +92588,10 @@ export declare type MutationConfluence_PatchCalendarArgs = {
|
|
|
92387
92588
|
cloudId: Scalars['ID']['input'];
|
|
92388
92589
|
input: ConfluencePatchCalendarInput;
|
|
92389
92590
|
};
|
|
92591
|
+
export declare type MutationConfluence_PublishBlueprintSharedDraftArgs = {
|
|
92592
|
+
cloudId: Scalars['ID']['input'];
|
|
92593
|
+
input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
|
|
92594
|
+
};
|
|
92390
92595
|
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
92391
92596
|
cloudId: Scalars['ID']['input'];
|
|
92392
92597
|
commentId: Scalars['ID']['input'];
|
|
@@ -97350,6 +97555,7 @@ export declare type Query = {
|
|
|
97350
97555
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
97351
97556
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
97352
97557
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
97558
|
+
confluence_legacyEditorReportDownloadLink?: Maybe<ConfluenceLegacyEditorReportDownloadLink>;
|
|
97353
97559
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
97354
97560
|
confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
|
|
97355
97561
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
@@ -98929,6 +99135,11 @@ export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
|
98929
99135
|
contentType: KnowledgeGraphContentType;
|
|
98930
99136
|
objectType: KnowledgeGraphObjectType;
|
|
98931
99137
|
};
|
|
99138
|
+
export declare type QueryConfluence_LegacyEditorReportDownloadLinkArgs = {
|
|
99139
|
+
cloudId: Scalars['ID']['input'];
|
|
99140
|
+
spaceId: Scalars['ID']['input'];
|
|
99141
|
+
taskId: Scalars['ID']['input'];
|
|
99142
|
+
};
|
|
98932
99143
|
export declare type QueryConfluence_LoomEntryPointsArgs = {
|
|
98933
99144
|
cloudId: Scalars['ID']['input'];
|
|
98934
99145
|
};
|
|
@@ -101556,8 +101767,13 @@ export declare type RadarFieldPermissionsInput = {
|
|
|
101556
101767
|
};
|
|
101557
101768
|
export declare type RadarFieldSettingsInput = {
|
|
101558
101769
|
entity: RadarEntityType;
|
|
101770
|
+
permissionUpdates?: InputMaybe<RadarFieldSettingsPermissionsInput>;
|
|
101559
101771
|
relativeId: Scalars['String']['input'];
|
|
101560
|
-
sensitivityLevel
|
|
101772
|
+
sensitivityLevel?: InputMaybe<RadarSensitivityLevel>;
|
|
101773
|
+
};
|
|
101774
|
+
export declare type RadarFieldSettingsPermissionsInput = {
|
|
101775
|
+
addedViewSensitiveFieldGroups?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
101776
|
+
removedViewSensitiveFieldGroups?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
101561
101777
|
};
|
|
101562
101778
|
export declare enum RadarFieldType {
|
|
101563
101779
|
Ari = "ARI",
|