@forge/cli-shared 5.0.0-next.5 → 5.0.0-next.7
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 +15 -0
- package/out/app-logs/graphql-client.js +9 -2
- package/out/app-logs/view-logs.js +4 -0
- package/out/apps/app-config.js +4 -1
- package/out/apps/create-an-app.js +3 -0
- package/out/apps/create-app-graphql-client.js +1 -0
- package/out/apps/get-app-owner.js +2 -0
- package/out/apps/package-installer.js +1 -0
- package/out/apps/register-app.js +8 -1
- package/out/apps/template.js +5 -0
- package/out/auth/personal/credential-store.js +7 -2
- package/out/auth/personal/login.js +8 -2
- package/out/auth/personal/logout.js +1 -0
- package/out/auth/personal/me-graphql-client.js +2 -0
- package/out/auth/personal/token-authenticator.js +1 -0
- package/out/cache/cached-conf.js +1 -0
- package/out/config/config-file-section-reader.js +4 -0
- package/out/config/config-file-section-writer.js +2 -0
- package/out/config/config-file.d.ts +2 -2
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +48 -55
- package/out/config/config-section.js +1 -0
- package/out/file-system/file-system-reader.js +2 -2
- package/out/graphql/app-environment-graphql-client.js +1 -0
- package/out/graphql/app-oauth-client-id-graphql-client.js +1 -0
- package/out/graphql/debugging-graphql-runner.js +3 -0
- package/out/graphql/get-mutation-error.js +4 -5
- package/out/graphql/graphql-types.d.ts +178 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +52 -7
- package/out/graphql/minimal-graphql-runner.js +30 -22
- package/out/graphql/mutation-aware-graphql-client.js +14 -10
- package/out/http-client/feedback-post-client.js +1 -3
- package/out/http-client/file-uploader.js +1 -0
- package/out/http-client/global-edge-http-client.js +1 -0
- package/out/http-client/trace.js +1 -2
- package/out/runtimes/helper.js +1 -1
- package/out/service/bridge-script-service.js +1 -0
- package/out/service/feature-flag-service.js +51 -48
- package/out/service/iframe-resizer-script-service.js +1 -0
- package/out/shared/cli-details.js +2 -2
- package/out/shared/error-handling.js +5 -3
- package/out/shared/product.js +2 -4
- package/out/shared/read-app-config-files.js +7 -5
- package/out/shared/validate.js +1 -1
- package/out/ui/command-line-ui.js +14 -8
- package/out/ui/multiple-table-prompt.js +1 -1
- package/out/ui/table-prompt.js +8 -1
- package/package.json +2 -2
|
@@ -6173,7 +6173,7 @@ export declare type ConfluenceComment = {
|
|
|
6173
6173
|
name?: Maybe<Scalars['String']['output']>;
|
|
6174
6174
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
6175
6175
|
};
|
|
6176
|
-
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage;
|
|
6176
|
+
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
|
|
6177
6177
|
export declare type ConfluenceCommentCountSummary = {
|
|
6178
6178
|
__typename?: 'ConfluenceCommentCountSummary';
|
|
6179
6179
|
total?: Maybe<Scalars['Int']['output']>;
|
|
@@ -6233,7 +6233,8 @@ export declare enum ConfluenceContentType {
|
|
|
6233
6233
|
Attachment = "ATTACHMENT",
|
|
6234
6234
|
BlogPost = "BLOG_POST",
|
|
6235
6235
|
Comment = "COMMENT",
|
|
6236
|
-
Page = "PAGE"
|
|
6236
|
+
Page = "PAGE",
|
|
6237
|
+
Whiteboard = "WHITEBOARD"
|
|
6237
6238
|
}
|
|
6238
6239
|
export declare type ConfluenceContribution = {
|
|
6239
6240
|
__typename?: 'ConfluenceContribution';
|
|
@@ -7073,13 +7074,18 @@ export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
|
7073
7074
|
export declare type ConfluenceWhiteboard = {
|
|
7074
7075
|
__typename?: 'ConfluenceWhiteboard';
|
|
7075
7076
|
author?: Maybe<ConfluenceUserInfo>;
|
|
7077
|
+
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
7076
7078
|
id: Scalars['ID']['output'];
|
|
7077
7079
|
links?: Maybe<ConfluenceWhiteboardLinks>;
|
|
7078
7080
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
7079
7081
|
space?: Maybe<ConfluenceSpace>;
|
|
7080
7082
|
title?: Maybe<Scalars['String']['output']>;
|
|
7083
|
+
type?: Maybe<ConfluenceContentType>;
|
|
7081
7084
|
whiteboardId: Scalars['ID']['output'];
|
|
7082
7085
|
};
|
|
7086
|
+
export declare type ConfluenceWhiteboardCommentsArgs = {
|
|
7087
|
+
commentType?: InputMaybe<ConfluenceCommentType>;
|
|
7088
|
+
};
|
|
7083
7089
|
export declare type ConfluenceWhiteboardLinks = {
|
|
7084
7090
|
__typename?: 'ConfluenceWhiteboardLinks';
|
|
7085
7091
|
base?: Maybe<Scalars['String']['output']>;
|
|
@@ -28910,6 +28916,10 @@ export declare type JiraAgileReleaseTrainEdge = {
|
|
|
28910
28916
|
cursor: Scalars['String']['output'];
|
|
28911
28917
|
node?: Maybe<JiraAgileReleaseTrain>;
|
|
28912
28918
|
};
|
|
28919
|
+
export declare type JiraAiEnablementIssueInput = {
|
|
28920
|
+
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
28921
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
28922
|
+
};
|
|
28913
28923
|
export declare type JiraAnnouncementBanner = Node & {
|
|
28914
28924
|
__typename?: 'JiraAnnouncementBanner';
|
|
28915
28925
|
id: Scalars['ID']['output'];
|
|
@@ -29000,6 +29010,12 @@ export declare type JiraAppUiModifications = {
|
|
|
29000
29010
|
appEnvId: Scalars['String']['output'];
|
|
29001
29011
|
uiModifications: Array<JiraUiModification>;
|
|
29002
29012
|
};
|
|
29013
|
+
export declare enum JiraApplicationKey {
|
|
29014
|
+
JiraCore = "JIRA_CORE",
|
|
29015
|
+
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
29016
|
+
JiraServiceDesk = "JIRA_SERVICE_DESK",
|
|
29017
|
+
JiraSoftware = "JIRA_SOFTWARE"
|
|
29018
|
+
}
|
|
29003
29019
|
export declare type JiraApplicationProperty = Node & {
|
|
29004
29020
|
__typename?: 'JiraApplicationProperty';
|
|
29005
29021
|
allowedValues?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -29088,6 +29104,17 @@ export declare type JiraAssignRelatedWorkPayload = Payload & {
|
|
|
29088
29104
|
relatedWork?: Maybe<JiraVersionRelatedWorkV2>;
|
|
29089
29105
|
success: Scalars['Boolean']['output'];
|
|
29090
29106
|
};
|
|
29107
|
+
export declare type JiraAssignableUsersConnection = HasPageInfo & HasTotal & {
|
|
29108
|
+
__typename?: 'JiraAssignableUsersConnection';
|
|
29109
|
+
edges?: Maybe<Array<Maybe<JiraAssignableUsersEdge>>>;
|
|
29110
|
+
pageInfo: PageInfo;
|
|
29111
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
29112
|
+
};
|
|
29113
|
+
export declare type JiraAssignableUsersEdge = {
|
|
29114
|
+
__typename?: 'JiraAssignableUsersEdge';
|
|
29115
|
+
cursor: Scalars['String']['output'];
|
|
29116
|
+
node?: Maybe<User>;
|
|
29117
|
+
};
|
|
29091
29118
|
export declare type JiraAtlassianIntelligenceAction = JiraAccessAtlassianIntelligenceFeature | JiraContactOrgAdminToEnableAtlassianIntelligence | JiraEnableAtlassianIntelligenceDeepLink;
|
|
29092
29119
|
export declare enum JiraAtlassianIntelligenceFeatureEnum {
|
|
29093
29120
|
AiMate = "AI_MATE",
|
|
@@ -29285,6 +29312,7 @@ export declare type JiraAutodevJob = {
|
|
|
29285
29312
|
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
29286
29313
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
29287
29314
|
id: Scalars['ID']['output'];
|
|
29315
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
29288
29316
|
plan?: Maybe<JiraAutodevPlan>;
|
|
29289
29317
|
progressText?: Maybe<Scalars['String']['output']>;
|
|
29290
29318
|
pullRequests?: Maybe<JiraAutodevPullRequestConnection>;
|
|
@@ -29564,8 +29592,15 @@ export declare type JiraBulkTransitionScreenLayout = Node & {
|
|
|
29564
29592
|
content?: Maybe<JiraScreenTabLayout>;
|
|
29565
29593
|
id: Scalars['ID']['output'];
|
|
29566
29594
|
issues: Array<JiraIssue>;
|
|
29595
|
+
issuesToBeEdited?: Maybe<JiraIssueConnection>;
|
|
29567
29596
|
transition: JiraTransition;
|
|
29568
29597
|
};
|
|
29598
|
+
export declare type JiraBulkTransitionScreenLayoutIssuesToBeEditedArgs = {
|
|
29599
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29600
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
29601
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29602
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29603
|
+
};
|
|
29569
29604
|
export declare type JiraBulkTransitionScreenResponse = {
|
|
29570
29605
|
__typename?: 'JiraBulkTransitionScreenResponse';
|
|
29571
29606
|
bulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenConnection>;
|
|
@@ -29803,17 +29838,6 @@ export declare type JiraCannedResponseUpdatePayload = Payload & {
|
|
|
29803
29838
|
jiraCannedResponse?: Maybe<JiraCannedResponse>;
|
|
29804
29839
|
success: Scalars['Boolean']['output'];
|
|
29805
29840
|
};
|
|
29806
|
-
export declare type JiraCardCoversProjectToggleInput = {
|
|
29807
|
-
cardCoversEnabled: Scalars['Boolean']['input'];
|
|
29808
|
-
cloudId: Scalars['ID']['input'];
|
|
29809
|
-
projectIdOrKey: Scalars['String']['input'];
|
|
29810
|
-
};
|
|
29811
|
-
export declare type JiraCardCoversProjectTogglePayload = Payload & {
|
|
29812
|
-
__typename?: 'JiraCardCoversProjectTogglePayload';
|
|
29813
|
-
cardCoversEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
29814
|
-
errors?: Maybe<Array<MutationError>>;
|
|
29815
|
-
success: Scalars['Boolean']['output'];
|
|
29816
|
-
};
|
|
29817
29841
|
export declare type JiraCascadingOption = {
|
|
29818
29842
|
__typename?: 'JiraCascadingOption';
|
|
29819
29843
|
childOptionValue?: Maybe<JiraOption>;
|
|
@@ -31291,6 +31315,7 @@ export declare type JiraFavouriteEdge = {
|
|
|
31291
31315
|
node?: Maybe<JiraFavourite>;
|
|
31292
31316
|
};
|
|
31293
31317
|
export declare type JiraFavouriteFilter = {
|
|
31318
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
31294
31319
|
type?: InputMaybe<JiraFavouriteType>;
|
|
31295
31320
|
types?: InputMaybe<Array<JiraFavouriteType>>;
|
|
31296
31321
|
};
|
|
@@ -31931,6 +31956,7 @@ export declare type JiraIssue = Node & {
|
|
|
31931
31956
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
31932
31957
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
31933
31958
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
31959
|
+
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
31934
31960
|
hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
31935
31961
|
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
31936
31962
|
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
@@ -31957,7 +31983,6 @@ export declare type JiraIssue = Node & {
|
|
|
31957
31983
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
31958
31984
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
31959
31985
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
31960
|
-
shadowFieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
31961
31986
|
smartSummary?: Maybe<JiraAdf>;
|
|
31962
31987
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
31963
31988
|
statusField?: Maybe<JiraStatusField>;
|
|
@@ -32040,6 +32065,9 @@ export declare type JiraIssueFieldsByIdOrAliasArgs = {
|
|
|
32040
32065
|
idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
|
|
32041
32066
|
ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32042
32067
|
};
|
|
32068
|
+
export declare type JiraIssueHasProjectPermissionArgs = {
|
|
32069
|
+
permission: JiraProjectPermissionType;
|
|
32070
|
+
};
|
|
32043
32071
|
export declare type JiraIssueHasRelationshipToVersionArgs = {
|
|
32044
32072
|
versionId: Scalars['ID']['input'];
|
|
32045
32073
|
};
|
|
@@ -32065,14 +32093,6 @@ export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
|
32065
32093
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32066
32094
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32067
32095
|
};
|
|
32068
|
-
export declare type JiraIssueShadowFieldSetsForIssueSearchViewArgs = {
|
|
32069
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32070
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
32071
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32072
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32073
|
-
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
32074
|
-
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
32075
|
-
};
|
|
32076
32096
|
export declare type JiraIssueSuggestFieldValuesArgs = {
|
|
32077
32097
|
filterProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
32078
32098
|
};
|
|
@@ -32816,6 +32836,11 @@ export declare type JiraIssueSearchCustomInput = {
|
|
|
32816
32836
|
jiraSoftwareInput?: InputMaybe<JiraSoftwareIssueSearchCustomInput>;
|
|
32817
32837
|
};
|
|
32818
32838
|
export declare type JiraIssueSearchError = JiraCustomIssueSearchError | JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
32839
|
+
export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
32840
|
+
__typename?: 'JiraIssueSearchErrorExtension';
|
|
32841
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
32842
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
32843
|
+
};
|
|
32819
32844
|
export declare type JiraIssueSearchFieldSet = {
|
|
32820
32845
|
__typename?: 'JiraIssueSearchFieldSet';
|
|
32821
32846
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -32902,6 +32927,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
32902
32927
|
success: Scalars['Boolean']['output'];
|
|
32903
32928
|
view?: Maybe<JiraIssueSearchView>;
|
|
32904
32929
|
};
|
|
32930
|
+
export declare type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
32905
32931
|
export declare type JiraIssueTransitionComment = {
|
|
32906
32932
|
__typename?: 'JiraIssueTransitionComment';
|
|
32907
32933
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
@@ -34180,7 +34206,6 @@ export declare type JiraMutation = {
|
|
|
34180
34206
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
34181
34207
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
34182
34208
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
34183
|
-
toggleJiraProjectCardCovers?: Maybe<JiraCardCoversProjectTogglePayload>;
|
|
34184
34209
|
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
34185
34210
|
updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
|
|
34186
34211
|
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
@@ -34467,9 +34492,6 @@ export declare type JiraMutationSubmitBulkOperationArgs = {
|
|
|
34467
34492
|
cloudId: Scalars['ID']['input'];
|
|
34468
34493
|
input: JiraSubmitBulkOperationInput;
|
|
34469
34494
|
};
|
|
34470
|
-
export declare type JiraMutationToggleJiraProjectCardCoversArgs = {
|
|
34471
|
-
input?: InputMaybe<JiraCardCoversProjectToggleInput>;
|
|
34472
|
-
};
|
|
34473
34495
|
export declare type JiraMutationUnlinkIssuesFromIncidentArgs = {
|
|
34474
34496
|
input: JiraUnlinkIssuesFromIncidentMutationInput;
|
|
34475
34497
|
};
|
|
@@ -35520,6 +35542,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
35520
35542
|
export declare type JiraProject = Node & {
|
|
35521
35543
|
__typename?: 'JiraProject';
|
|
35522
35544
|
action?: Maybe<JiraProjectAction>;
|
|
35545
|
+
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
35523
35546
|
associatedComponents?: Maybe<GraphGenericConnection>;
|
|
35524
35547
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
35525
35548
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
@@ -35583,6 +35606,12 @@ export declare type JiraProject = Node & {
|
|
|
35583
35606
|
export declare type JiraProjectActionArgs = {
|
|
35584
35607
|
type: JiraProjectActionType;
|
|
35585
35608
|
};
|
|
35609
|
+
export declare type JiraProjectAssignableUsersArgs = {
|
|
35610
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35611
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35612
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35613
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35614
|
+
};
|
|
35586
35615
|
export declare type JiraProjectAssociatedComponentsArgs = {
|
|
35587
35616
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35588
35617
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -36048,6 +36077,42 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
36048
36077
|
TimeTracking = "TIME_TRACKING",
|
|
36049
36078
|
VotersAndWatchers = "VOTERS_AND_WATCHERS"
|
|
36050
36079
|
}
|
|
36080
|
+
export declare enum JiraProjectPermissionType {
|
|
36081
|
+
AddComments = "ADD_COMMENTS",
|
|
36082
|
+
AdministerProjects = "ADMINISTER_PROJECTS",
|
|
36083
|
+
AssignableUser = "ASSIGNABLE_USER",
|
|
36084
|
+
AssignIssues = "ASSIGN_ISSUES",
|
|
36085
|
+
BrowseProjects = "BROWSE_PROJECTS",
|
|
36086
|
+
CloseIssues = "CLOSE_ISSUES",
|
|
36087
|
+
CreateAttachments = "CREATE_ATTACHMENTS",
|
|
36088
|
+
CreateIssues = "CREATE_ISSUES",
|
|
36089
|
+
DeleteAllAttachments = "DELETE_ALL_ATTACHMENTS",
|
|
36090
|
+
DeleteAllComments = "DELETE_ALL_COMMENTS",
|
|
36091
|
+
DeleteAllWorklogs = "DELETE_ALL_WORKLOGS",
|
|
36092
|
+
DeleteIssues = "DELETE_ISSUES",
|
|
36093
|
+
DeleteOwnAttachments = "DELETE_OWN_ATTACHMENTS",
|
|
36094
|
+
DeleteOwnComments = "DELETE_OWN_COMMENTS",
|
|
36095
|
+
DeleteOwnWorklogs = "DELETE_OWN_WORKLOGS",
|
|
36096
|
+
EditAllComments = "EDIT_ALL_COMMENTS",
|
|
36097
|
+
EditAllWorklogs = "EDIT_ALL_WORKLOGS",
|
|
36098
|
+
EditIssues = "EDIT_ISSUES",
|
|
36099
|
+
EditIssueLayout = "EDIT_ISSUE_LAYOUT",
|
|
36100
|
+
EditOwnComments = "EDIT_OWN_COMMENTS",
|
|
36101
|
+
EditOwnWorklogs = "EDIT_OWN_WORKLOGS",
|
|
36102
|
+
EditWorkflow = "EDIT_WORKFLOW",
|
|
36103
|
+
LinkIssues = "LINK_ISSUES",
|
|
36104
|
+
ManageWatchers = "MANAGE_WATCHERS",
|
|
36105
|
+
ModifyReporter = "MODIFY_REPORTER",
|
|
36106
|
+
MoveIssues = "MOVE_ISSUES",
|
|
36107
|
+
ResolveIssues = "RESOLVE_ISSUES",
|
|
36108
|
+
ScheduleIssues = "SCHEDULE_ISSUES",
|
|
36109
|
+
SetIssueSecurity = "SET_ISSUE_SECURITY",
|
|
36110
|
+
TransitionIssues = "TRANSITION_ISSUES",
|
|
36111
|
+
ViewDevTools = "VIEW_DEV_TOOLS",
|
|
36112
|
+
ViewReadonlyWorkflow = "VIEW_READONLY_WORKFLOW",
|
|
36113
|
+
ViewVotersAndWatchers = "VIEW_VOTERS_AND_WATCHERS",
|
|
36114
|
+
WorkOnIssues = "WORK_ON_ISSUES"
|
|
36115
|
+
}
|
|
36051
36116
|
export declare type JiraProjectRoleActorLogTableEntry = {
|
|
36052
36117
|
__typename?: 'JiraProjectRoleActorLogTableEntry';
|
|
36053
36118
|
executedBy?: Maybe<User>;
|
|
@@ -36197,6 +36262,9 @@ export declare type JiraQuery = {
|
|
|
36197
36262
|
atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
|
|
36198
36263
|
attachmentByAri?: Maybe<JiraPlatformAttachment>;
|
|
36199
36264
|
attachmentSearch?: Maybe<JiraAttachmentConnection>;
|
|
36265
|
+
attachmentStorageAllowed?: Maybe<Scalars['Long']['output']>;
|
|
36266
|
+
attachmentStorageIsUnlimited?: Maybe<Scalars['Boolean']['output']>;
|
|
36267
|
+
attachmentStorageUsed?: Maybe<Scalars['Long']['output']>;
|
|
36200
36268
|
backgroundUploadToken?: Maybe<JiraBackgroundUploadTokenResult>;
|
|
36201
36269
|
booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
|
|
36202
36270
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
@@ -36226,6 +36294,7 @@ export declare type JiraQuery = {
|
|
|
36226
36294
|
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
36227
36295
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
36228
36296
|
integerUserProperty?: Maybe<JiraEntityPropertyInt>;
|
|
36297
|
+
isAiEnabledForIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
36229
36298
|
isIssueViewEditorAiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36230
36299
|
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
36231
36300
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -36248,6 +36317,7 @@ export declare type JiraQuery = {
|
|
|
36248
36317
|
issueSearchTotalCount?: Maybe<Scalars['Int']['output']>;
|
|
36249
36318
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
36250
36319
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
36320
|
+
issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
|
|
36251
36321
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
36252
36322
|
jiraBulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenResponse>;
|
|
36253
36323
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
@@ -36394,6 +36464,18 @@ export declare type JiraQueryAttachmentSearchArgs = {
|
|
|
36394
36464
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
36395
36465
|
projectKeys: Array<Scalars['String']['input']>;
|
|
36396
36466
|
};
|
|
36467
|
+
export declare type JiraQueryAttachmentStorageAllowedArgs = {
|
|
36468
|
+
applicationKey: JiraApplicationKey;
|
|
36469
|
+
cloudId: Scalars['ID']['input'];
|
|
36470
|
+
};
|
|
36471
|
+
export declare type JiraQueryAttachmentStorageIsUnlimitedArgs = {
|
|
36472
|
+
applicationKey: JiraApplicationKey;
|
|
36473
|
+
cloudId: Scalars['ID']['input'];
|
|
36474
|
+
};
|
|
36475
|
+
export declare type JiraQueryAttachmentStorageUsedArgs = {
|
|
36476
|
+
applicationKey: JiraApplicationKey;
|
|
36477
|
+
cloudId: Scalars['ID']['input'];
|
|
36478
|
+
};
|
|
36397
36479
|
export declare type JiraQueryBackgroundUploadTokenArgs = {
|
|
36398
36480
|
cloudId: Scalars['ID']['input'];
|
|
36399
36481
|
durationInSeconds: Scalars['Int']['input'];
|
|
@@ -36536,6 +36618,9 @@ export declare type JiraQueryIntegerUserPropertyArgs = {
|
|
|
36536
36618
|
cloudId: Scalars['ID']['input'];
|
|
36537
36619
|
propertyKey: Scalars['String']['input'];
|
|
36538
36620
|
};
|
|
36621
|
+
export declare type JiraQueryIsAiEnabledForIssueArgs = {
|
|
36622
|
+
issueInput: JiraAiEnablementIssueInput;
|
|
36623
|
+
};
|
|
36539
36624
|
export declare type JiraQueryIsIssueViewEditorAiEnabledArgs = {
|
|
36540
36625
|
cloudId: Scalars['ID']['input'];
|
|
36541
36626
|
jiraProjectType: JiraProjectType;
|
|
@@ -36629,6 +36714,12 @@ export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
|
36629
36714
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
36630
36715
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
36631
36716
|
};
|
|
36717
|
+
export declare type JiraQueryIssueSearchViewResultArgs = {
|
|
36718
|
+
cloudId: Scalars['ID']['input'];
|
|
36719
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
36720
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
36721
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
36722
|
+
};
|
|
36632
36723
|
export declare type JiraQueryIssuesByKeyArgs = {
|
|
36633
36724
|
cloudId: Scalars['ID']['input'];
|
|
36634
36725
|
keys: Array<Scalars['String']['input']>;
|
|
@@ -37369,6 +37460,7 @@ export declare type JiraResourceUsageCustomFieldRecommendationEdge = {
|
|
|
37369
37460
|
};
|
|
37370
37461
|
export declare type JiraResourceUsageMetric = Node & {
|
|
37371
37462
|
__typename?: 'JiraResourceUsageMetric';
|
|
37463
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
37372
37464
|
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
37373
37465
|
id: Scalars['ID']['output'];
|
|
37374
37466
|
key: Scalars['String']['output'];
|
|
@@ -41950,6 +42042,24 @@ export declare type MarketplaceConnectAppDeployment = MarketplaceAppDeployment &
|
|
|
41950
42042
|
isDescriptorFileAvailable: Scalars['Boolean']['output'];
|
|
41951
42043
|
scopes: Array<ConnectAppScope>;
|
|
41952
42044
|
};
|
|
42045
|
+
export declare type MarketplaceConsoleError = {
|
|
42046
|
+
message: Scalars['String']['output'];
|
|
42047
|
+
};
|
|
42048
|
+
export declare type MarketplaceConsoleGenericError = MarketplaceConsoleError & {
|
|
42049
|
+
__typename?: 'MarketplaceConsoleGenericError';
|
|
42050
|
+
message: Scalars['String']['output'];
|
|
42051
|
+
};
|
|
42052
|
+
export declare type MarketplaceConsoleQueryApi = {
|
|
42053
|
+
__typename?: 'MarketplaceConsoleQueryApi';
|
|
42054
|
+
currentUserProfile?: Maybe<MarketplaceConsoleUser>;
|
|
42055
|
+
};
|
|
42056
|
+
export declare type MarketplaceConsoleUser = {
|
|
42057
|
+
__typename?: 'MarketplaceConsoleUser';
|
|
42058
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
42059
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
42060
|
+
name: Scalars['String']['output'];
|
|
42061
|
+
picture: Scalars['String']['output'];
|
|
42062
|
+
};
|
|
41953
42063
|
export declare enum MarketplaceEntityStatus {
|
|
41954
42064
|
Active = "ACTIVE",
|
|
41955
42065
|
Archived = "ARCHIVED"
|
|
@@ -45673,6 +45783,7 @@ export declare type Query = {
|
|
|
45673
45783
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
45674
45784
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
45675
45785
|
marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
|
|
45786
|
+
marketplaceConsole: MarketplaceConsoleQueryApi;
|
|
45676
45787
|
marketplacePartner?: Maybe<MarketplacePartner>;
|
|
45677
45788
|
marketplacePricingPlan?: Maybe<MarketplacePricingPlan>;
|
|
45678
45789
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
@@ -47516,6 +47627,17 @@ export declare enum SearchBoardProductType {
|
|
|
47516
47627
|
Business = "BUSINESS",
|
|
47517
47628
|
Software = "SOFTWARE"
|
|
47518
47629
|
}
|
|
47630
|
+
export declare type SearchCommonFilter = {
|
|
47631
|
+
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
47632
|
+
};
|
|
47633
|
+
export declare type SearchCommonRangeFilter = {
|
|
47634
|
+
created?: InputMaybe<SearchCommonRangeFilterFields>;
|
|
47635
|
+
lastModified?: InputMaybe<SearchCommonRangeFilterFields>;
|
|
47636
|
+
};
|
|
47637
|
+
export declare type SearchCommonRangeFilterFields = {
|
|
47638
|
+
gt?: InputMaybe<Scalars['String']['input']>;
|
|
47639
|
+
lt?: InputMaybe<Scalars['String']['input']>;
|
|
47640
|
+
};
|
|
47519
47641
|
export declare enum SearchConfluenceDocumentStatus {
|
|
47520
47642
|
Archived = "ARCHIVED",
|
|
47521
47643
|
Current = "CURRENT",
|
|
@@ -47620,6 +47742,7 @@ export declare type SearchExternalFilter = {
|
|
|
47620
47742
|
depth?: InputMaybe<Array<InputMaybe<SearchExternalDepthFilter>>>;
|
|
47621
47743
|
};
|
|
47622
47744
|
export declare type SearchFilterInput = {
|
|
47745
|
+
commonFilters?: InputMaybe<SearchCommonFilter>;
|
|
47623
47746
|
confluenceFilters?: InputMaybe<SearchConfluenceFilter>;
|
|
47624
47747
|
entities: Array<Scalars['String']['input']>;
|
|
47625
47748
|
externalFilters?: InputMaybe<SearchExternalFilter>;
|
|
@@ -47783,6 +47906,23 @@ export declare type SearchResultGoogleSpreadsheet = SearchResult & {
|
|
|
47783
47906
|
type: SearchResultType;
|
|
47784
47907
|
url: Scalars['URL']['output'];
|
|
47785
47908
|
};
|
|
47909
|
+
export declare type SearchResultGraphDocument = SearchResult & {
|
|
47910
|
+
__typename?: 'SearchResultGraphDocument';
|
|
47911
|
+
bodyText?: Maybe<Scalars['String']['output']>;
|
|
47912
|
+
description: Scalars['String']['output'];
|
|
47913
|
+
excerpt?: Maybe<Scalars['String']['output']>;
|
|
47914
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47915
|
+
id: Scalars['ID']['output'];
|
|
47916
|
+
integrationId?: Maybe<Scalars['String']['output']>;
|
|
47917
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47918
|
+
owner?: Maybe<ThirdPartyUser>;
|
|
47919
|
+
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
47920
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
47921
|
+
subtype?: Maybe<Scalars['String']['output']>;
|
|
47922
|
+
title: Scalars['String']['output'];
|
|
47923
|
+
type: SearchResultType;
|
|
47924
|
+
url: Scalars['URL']['output'];
|
|
47925
|
+
};
|
|
47786
47926
|
export declare type SearchResultItemEdge = {
|
|
47787
47927
|
__typename?: 'SearchResultItemEdge';
|
|
47788
47928
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -47890,6 +48030,7 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
47890
48030
|
};
|
|
47891
48031
|
export declare type SearchResultSlackMessage = SearchResult & {
|
|
47892
48032
|
__typename?: 'SearchResultSlackMessage';
|
|
48033
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
47893
48034
|
description: Scalars['String']['output'];
|
|
47894
48035
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47895
48036
|
id: Scalars['ID']['output'];
|
|
@@ -47958,6 +48099,7 @@ export declare enum SearchSortOrder {
|
|
|
47958
48099
|
Desc = "DESC"
|
|
47959
48100
|
}
|
|
47960
48101
|
export declare type SearchThirdPartyFilter = {
|
|
48102
|
+
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
47961
48103
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
47962
48104
|
thirdPartyTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
47963
48105
|
titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -53568,9 +53710,17 @@ export declare type WebTriggerUrlInput = {
|
|
|
53568
53710
|
};
|
|
53569
53711
|
export declare type WorkSuggestions = {
|
|
53570
53712
|
__typename?: 'WorkSuggestions';
|
|
53713
|
+
suggestionsByProjects: WorkSuggestionsConnection;
|
|
53571
53714
|
userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
|
|
53572
53715
|
workSuggestionsByContextAri: WorkSuggestionsConnection;
|
|
53573
53716
|
};
|
|
53717
|
+
export declare type WorkSuggestionsSuggestionsByProjectsArgs = {
|
|
53718
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53719
|
+
cloudId: Scalars['ID']['input'];
|
|
53720
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53721
|
+
projectAris: Array<Scalars['ID']['input']>;
|
|
53722
|
+
shouldTransformProjectToSprint?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53723
|
+
};
|
|
53574
53724
|
export declare type WorkSuggestionsUserProfileByCloudIdArgs = {
|
|
53575
53725
|
cloudId: Scalars['ID']['input'];
|
|
53576
53726
|
};
|
|
@@ -53633,8 +53783,8 @@ export declare type WorkSuggestionsCommon = {
|
|
|
53633
53783
|
};
|
|
53634
53784
|
export declare type WorkSuggestionsConnection = {
|
|
53635
53785
|
__typename?: 'WorkSuggestionsConnection';
|
|
53636
|
-
edges
|
|
53637
|
-
nodes
|
|
53786
|
+
edges?: Maybe<Array<WorkSuggestionsEdge>>;
|
|
53787
|
+
nodes?: Maybe<Array<Maybe<WorkSuggestionsCommon>>>;
|
|
53638
53788
|
pageInfo: PageInfo;
|
|
53639
53789
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
53640
53790
|
};
|