@forge/cli-shared 6.11.0-next.12 → 6.11.0-next.13-experimental-c6e5f04
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 +31 -0
- package/out/graphql/graphql-types.d.ts +66 -6
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +31 -26
- package/out/ui/text.js +6 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.11.0-next.13-experimental-c6e5f04
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d86ca2b: Migrate runtime deprecation check from @forge/manifest to @forge/cli
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 6444f47: added new build command
|
|
12
|
+
- 6db64a3: Improve build tag validation
|
|
13
|
+
- 9a2ca12: Added new callout for buildsByApp
|
|
14
|
+
- 2a30889: Remove environment flag for build command
|
|
15
|
+
- f6ec33c: added createdby column in buildlist
|
|
16
|
+
- e746b9d: Add preview message to forge build command
|
|
17
|
+
- ddbe1f9: make environmentKey optional for build
|
|
18
|
+
- Updated dependencies [d86ca2b]
|
|
19
|
+
- Updated dependencies [a56ca61]
|
|
20
|
+
- Updated dependencies [8bd52d6]
|
|
21
|
+
- Updated dependencies [43832a8]
|
|
22
|
+
- Updated dependencies [743bbdc]
|
|
23
|
+
- Updated dependencies [065b6a2]
|
|
24
|
+
- Updated dependencies [a891abf]
|
|
25
|
+
- Updated dependencies [439551a]
|
|
26
|
+
- @forge/manifest@9.3.0-next.6-experimental-c6e5f04
|
|
27
|
+
|
|
28
|
+
## 6.11.0-next.13
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- e746b9d: Add preview message to forge build command
|
|
33
|
+
|
|
3
34
|
## 6.11.0-next.12
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
|
@@ -1072,12 +1072,27 @@ export declare type AgentStudioUpdateCustomActionPayload = Payload & {
|
|
|
1072
1072
|
errors?: Maybe<Array<MutationError>>;
|
|
1073
1073
|
success: Scalars['Boolean']['output'];
|
|
1074
1074
|
};
|
|
1075
|
+
export declare enum AiCoreApiQuestionType {
|
|
1076
|
+
DraftDocument = "DRAFT_DOCUMENT",
|
|
1077
|
+
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
1078
|
+
}
|
|
1079
|
+
export declare type AiCoreApiQuestionWithType = {
|
|
1080
|
+
__typename?: 'AiCoreApiQuestionWithType';
|
|
1081
|
+
question: Scalars['String']['output'];
|
|
1082
|
+
type: AiCoreApiQuestionType;
|
|
1083
|
+
};
|
|
1075
1084
|
export declare type AiCoreApiVsaQuestions = {
|
|
1076
1085
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
1077
1086
|
projectAri: Scalars['ID']['output'];
|
|
1078
1087
|
questions: Array<Maybe<Scalars['String']['output']>>;
|
|
1079
1088
|
};
|
|
1080
1089
|
export declare type AiCoreApiVsaQuestionsResult = AiCoreApiVsaQuestions | QueryError;
|
|
1090
|
+
export declare type AiCoreApiVsaQuestionsWithType = {
|
|
1091
|
+
__typename?: 'AiCoreApiVSAQuestionsWithType';
|
|
1092
|
+
projectAri: Scalars['ID']['output'];
|
|
1093
|
+
questions: Array<Maybe<AiCoreApiQuestionWithType>>;
|
|
1094
|
+
};
|
|
1095
|
+
export declare type AiCoreApiVsaQuestionsWithTypeResult = AiCoreApiVsaQuestionsWithType | QueryError;
|
|
1081
1096
|
export declare type AiCoreApiVsaReporting = {
|
|
1082
1097
|
__typename?: 'AiCoreApiVSAReporting';
|
|
1083
1098
|
projectAri: Scalars['ID']['output'];
|
|
@@ -6482,7 +6497,7 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
6482
6497
|
export declare type CompassCreateCampaignInput = {
|
|
6483
6498
|
description: Scalars['String']['input'];
|
|
6484
6499
|
dueDate: Scalars['DateTime']['input'];
|
|
6485
|
-
goalId
|
|
6500
|
+
goalId: Scalars['ID']['input'];
|
|
6486
6501
|
name: Scalars['String']['input'];
|
|
6487
6502
|
scorecardId: Scalars['ID']['input'];
|
|
6488
6503
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -31782,6 +31797,7 @@ export declare type GraphStore = {
|
|
|
31782
31797
|
issueHasAutodevJobInverse?: Maybe<GraphStoreSimplifiedIssueHasAutodevJobInverseConnection>;
|
|
31783
31798
|
issueHasChangedPriority?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityConnection>;
|
|
31784
31799
|
issueHasChangedPriorityInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedPriorityInverseConnection>;
|
|
31800
|
+
issueHasChangedStatus?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusConnection>;
|
|
31785
31801
|
issueHasChangedStatusInverse?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseConnection>;
|
|
31786
31802
|
issueMentionedInConversation?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationConnection>;
|
|
31787
31803
|
issueMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedIssueMentionedInConversationInverseConnection>;
|
|
@@ -33784,6 +33800,13 @@ export declare type GraphStoreIssueHasChangedPriorityInverseArgs = {
|
|
|
33784
33800
|
id: Scalars['ID']['input'];
|
|
33785
33801
|
sort?: InputMaybe<GraphStoreIssueHasChangedPrioritySortInput>;
|
|
33786
33802
|
};
|
|
33803
|
+
export declare type GraphStoreIssueHasChangedStatusArgs = {
|
|
33804
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33805
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33806
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33807
|
+
id: Scalars['ID']['input'];
|
|
33808
|
+
sort?: InputMaybe<GraphStoreIssueHasChangedStatusSortInput>;
|
|
33809
|
+
};
|
|
33787
33810
|
export declare type GraphStoreIssueHasChangedStatusInverseArgs = {
|
|
33788
33811
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33789
33812
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38786,7 +38809,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38786
38809
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38787
38810
|
id: Scalars['ID']['output'];
|
|
38788
38811
|
};
|
|
38789
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38812
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38790
38813
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38791
38814
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38792
38815
|
value: Scalars['Int']['output'];
|
|
@@ -38821,7 +38844,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
38821
38844
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
38822
38845
|
id: Scalars['ID']['output'];
|
|
38823
38846
|
};
|
|
38824
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38847
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38825
38848
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
38826
38849
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
38827
38850
|
value: Scalars['String']['output'];
|
|
@@ -38831,13 +38854,13 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
38831
38854
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
38832
38855
|
id: Scalars['ID']['output'];
|
|
38833
38856
|
};
|
|
38834
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38857
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38835
38858
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
38836
38859
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
38837
38860
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
38838
38861
|
id: Scalars['ID']['output'];
|
|
38839
38862
|
};
|
|
38840
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38863
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38841
38864
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
38842
38865
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
38843
38866
|
value: Scalars['Boolean']['output'];
|
|
@@ -38882,7 +38905,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
38882
38905
|
V2 = "V2",
|
|
38883
38906
|
V3 = "V3"
|
|
38884
38907
|
}
|
|
38885
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38908
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | 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 | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38886
38909
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
38887
38910
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
38888
38911
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -46235,6 +46258,19 @@ export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseEdge = {
|
|
|
46235
46258
|
};
|
|
46236
46259
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityInverseUnion = JiraIssue;
|
|
46237
46260
|
export declare type GraphStoreSimplifiedIssueHasChangedPriorityUnion = JiraPriority;
|
|
46261
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusConnection = HasPageInfo & {
|
|
46262
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusConnection';
|
|
46263
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusEdge>>>;
|
|
46264
|
+
pageInfo: PageInfo;
|
|
46265
|
+
};
|
|
46266
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusEdge = {
|
|
46267
|
+
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusEdge';
|
|
46268
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46269
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46270
|
+
id: Scalars['ID']['output'];
|
|
46271
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46272
|
+
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusUnion>;
|
|
46273
|
+
};
|
|
46238
46274
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseConnection = HasPageInfo & {
|
|
46239
46275
|
__typename?: 'GraphStoreSimplifiedIssueHasChangedStatusInverseConnection';
|
|
46240
46276
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseEdge>>>;
|
|
@@ -46249,6 +46285,7 @@ export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseEdge = {
|
|
|
46249
46285
|
node?: Maybe<GraphStoreSimplifiedIssueHasChangedStatusInverseUnion>;
|
|
46250
46286
|
};
|
|
46251
46287
|
export declare type GraphStoreSimplifiedIssueHasChangedStatusInverseUnion = JiraIssue;
|
|
46288
|
+
export declare type GraphStoreSimplifiedIssueHasChangedStatusUnion = JiraStatus;
|
|
46252
46289
|
export declare type GraphStoreSimplifiedIssueMentionedInConversationConnection = HasPageInfo & {
|
|
46253
46290
|
__typename?: 'GraphStoreSimplifiedIssueMentionedInConversationConnection';
|
|
46254
46291
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueMentionedInConversationEdge>>>;
|
|
@@ -68920,6 +68957,15 @@ export declare enum JiraResourceUsageRecommendationStatus {
|
|
|
68920
68957
|
Obsolete = "OBSOLETE",
|
|
68921
68958
|
Trashed = "TRASHED"
|
|
68922
68959
|
}
|
|
68960
|
+
export declare type JiraRestoreGlobalCustomFieldsInput = {
|
|
68961
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
68962
|
+
};
|
|
68963
|
+
export declare type JiraRestoreGlobalCustomFieldsPayload = Payload & {
|
|
68964
|
+
__typename?: 'JiraRestoreGlobalCustomFieldsPayload';
|
|
68965
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68966
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
68967
|
+
success: Scalars['Boolean']['output'];
|
|
68968
|
+
};
|
|
68923
68969
|
export declare type JiraRestoreJourneyConfigurationInput = {
|
|
68924
68970
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
68925
68971
|
id: Scalars['ID']['input'];
|
|
@@ -76568,6 +76614,7 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
76568
76614
|
}
|
|
76569
76615
|
export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
76570
76616
|
appKey: Scalars['ID']['input'];
|
|
76617
|
+
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76571
76618
|
buildNumber: Scalars['ID']['input'];
|
|
76572
76619
|
compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
|
|
76573
76620
|
deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
|
|
@@ -76580,6 +76627,7 @@ export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
|
76580
76627
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76581
76628
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
76582
76629
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
76630
|
+
partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
|
|
76583
76631
|
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76584
76632
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
76585
76633
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77023,6 +77071,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
77023
77071
|
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
77024
77072
|
canViewSalesReport: Scalars['Boolean']['output'];
|
|
77025
77073
|
canViewUsageReports: Scalars['Boolean']['output'];
|
|
77074
|
+
isMarketplaceReader: Scalars['Boolean']['output'];
|
|
77026
77075
|
isPartnerAdmin: Scalars['Boolean']['output'];
|
|
77027
77076
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
77028
77077
|
partnerId: Scalars['ID']['output'];
|
|
@@ -81398,6 +81447,7 @@ export declare type Mutation = {
|
|
|
81398
81447
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
81399
81448
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
81400
81449
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
81450
|
+
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
81401
81451
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
81402
81452
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
81403
81453
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -82857,6 +82907,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
82857
82907
|
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
82858
82908
|
input: JiraReorderSidebarMenuItemInput;
|
|
82859
82909
|
};
|
|
82910
|
+
export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
|
|
82911
|
+
cloudId: Scalars['ID']['input'];
|
|
82912
|
+
input: JiraRestoreGlobalCustomFieldsInput;
|
|
82913
|
+
};
|
|
82860
82914
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
82861
82915
|
input: JiraSetBoardIssueCardCoverInput;
|
|
82862
82916
|
};
|
|
@@ -86278,6 +86332,7 @@ export declare type Query = {
|
|
|
86278
86332
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
86279
86333
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
86280
86334
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
86335
|
+
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
86281
86336
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
86282
86337
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
86283
86338
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
@@ -87032,6 +87087,11 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
87032
87087
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
87033
87088
|
projectAri: Scalars['ID']['input'];
|
|
87034
87089
|
};
|
|
87090
|
+
export declare type QueryAiCoreApi_VsaQuestionsByProjectAndTypeArgs = {
|
|
87091
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
87092
|
+
projectAri: Scalars['ID']['input'];
|
|
87093
|
+
types?: InputMaybe<Array<InputMaybe<AiCoreApiQuestionType>>>;
|
|
87094
|
+
};
|
|
87035
87095
|
export declare type QueryAiCoreApi_VsaReportingByProjectArgs = {
|
|
87036
87096
|
projectAri: Scalars['ID']['input'];
|
|
87037
87097
|
};
|