@forge/cli-shared 3.25.0-next.2-experimental-f4c3b93 → 3.25.0-next.3
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 +6 -7
- package/out/graphql/graphql-types.d.ts +231 -23
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +88 -45
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 3.25.0-next.
|
|
3
|
+
## 3.25.0-next.3
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- a7da8c4: Clean up FF "Forge CLI: Enable categorise templates by product"
|
|
7
|
+
- c9b4d9f: Bumping dependencies via Renovate:
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
- @graphql-tools/schema
|
|
11
10
|
|
|
12
|
-
- Updated dependencies [
|
|
13
|
-
- @forge/manifest@6.2.0-next.
|
|
11
|
+
- Updated dependencies [f9492fb]
|
|
12
|
+
- @forge/manifest@6.2.0-next.1
|
|
14
13
|
|
|
15
14
|
## 3.25.0-next.2
|
|
16
15
|
|
|
@@ -434,7 +434,7 @@ export declare type ActivityObject = {
|
|
|
434
434
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
435
435
|
type: Scalars['String']['output'];
|
|
436
436
|
};
|
|
437
|
-
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDocument | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
437
|
+
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
438
438
|
export declare enum ActivityObjectType {
|
|
439
439
|
Blogpost = "BLOGPOST",
|
|
440
440
|
Comment = "COMMENT",
|
|
@@ -3945,6 +3945,17 @@ export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
|
3945
3945
|
errors?: Maybe<Array<MutationError>>;
|
|
3946
3946
|
success: Scalars['Boolean']['output'];
|
|
3947
3947
|
};
|
|
3948
|
+
export declare type CompassCreatePullRequestEventInput = {
|
|
3949
|
+
cloudId: Scalars['String']['input'];
|
|
3950
|
+
lastUpdated: Scalars['DateTime']['input'];
|
|
3951
|
+
pullRequestProperties: CompassPullRequestInputProperties;
|
|
3952
|
+
};
|
|
3953
|
+
export declare enum CompassCreatePullRequestStatus {
|
|
3954
|
+
Created = "CREATED",
|
|
3955
|
+
InReview = "IN_REVIEW",
|
|
3956
|
+
Merged = "MERGED",
|
|
3957
|
+
Rejected = "REJECTED"
|
|
3958
|
+
}
|
|
3948
3959
|
export declare type CompassCreatePushEventInput = {
|
|
3949
3960
|
description: Scalars['String']['input'];
|
|
3950
3961
|
displayName: Scalars['String']['input'];
|
|
@@ -4364,6 +4375,7 @@ export declare type CompassEventInput = {
|
|
|
4364
4375
|
flag?: InputMaybe<CompassCreateFlagEventInput>;
|
|
4365
4376
|
incident?: InputMaybe<CompassCreateIncidentEventInput>;
|
|
4366
4377
|
lifecycle?: InputMaybe<CompassCreateLifecycleEventInput>;
|
|
4378
|
+
pullRequest?: InputMaybe<CompassCreatePullRequestEventInput>;
|
|
4367
4379
|
push?: InputMaybe<CompassCreatePushEventInput>;
|
|
4368
4380
|
};
|
|
4369
4381
|
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
@@ -4790,6 +4802,12 @@ export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTim
|
|
|
4790
4802
|
export declare type CompassPlainMetricSourceConfigurationInput = {
|
|
4791
4803
|
query: Scalars['String']['input'];
|
|
4792
4804
|
};
|
|
4805
|
+
export declare type CompassPullRequestInputProperties = {
|
|
4806
|
+
id: Scalars['String']['input'];
|
|
4807
|
+
pullRequestUrl: Scalars['String']['input'];
|
|
4808
|
+
repoUrl: Scalars['String']['input'];
|
|
4809
|
+
status: CompassCreatePullRequestStatus;
|
|
4810
|
+
};
|
|
4793
4811
|
export declare type CompassPushEvent = CompassEvent & {
|
|
4794
4812
|
__typename?: 'CompassPushEvent';
|
|
4795
4813
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -14870,6 +14888,8 @@ export declare type GraphSprintRetrospectivePageRelationshipEdge = {
|
|
|
14870
14888
|
};
|
|
14871
14889
|
export declare type GraphStore = {
|
|
14872
14890
|
__typename?: 'GraphStore';
|
|
14891
|
+
appInstallationAssociatedToOperationsWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
|
|
14892
|
+
appInstallationAssociatedToOperationsWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
|
|
14873
14893
|
appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
14874
14894
|
appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
14875
14895
|
atlasProjectContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalConnection>;
|
|
@@ -14940,6 +14960,9 @@ export declare type GraphStore = {
|
|
|
14940
14960
|
issueAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection>;
|
|
14941
14961
|
issueAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagConnection>;
|
|
14942
14962
|
issueAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagConnection>;
|
|
14963
|
+
issueAssociatedIssueRemoteLinkInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseConnection>;
|
|
14964
|
+
issueAssociatedIssueRemoteLinkInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkConnection>;
|
|
14965
|
+
issueAssociatedIssueRemoteLinkRelationship?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkConnection>;
|
|
14943
14966
|
issueAssociatedPr?: Maybe<GraphStoreSimplifiedIssueAssociatedPrConnection>;
|
|
14944
14967
|
issueAssociatedPrInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseConnection>;
|
|
14945
14968
|
issueAssociatedPrInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedPrConnection>;
|
|
@@ -15204,6 +15227,16 @@ export declare type GraphStore = {
|
|
|
15204
15227
|
vulnerabilityAssociatedIssueInverseRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
15205
15228
|
vulnerabilityAssociatedIssueRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
15206
15229
|
};
|
|
15230
|
+
export declare type GraphStoreAppInstallationAssociatedToOperationsWorkspaceInverseRelationshipArgs = {
|
|
15231
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15232
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15233
|
+
id: Scalars['ID']['input'];
|
|
15234
|
+
};
|
|
15235
|
+
export declare type GraphStoreAppInstallationAssociatedToOperationsWorkspaceRelationshipArgs = {
|
|
15236
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15237
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15238
|
+
id: Scalars['ID']['input'];
|
|
15239
|
+
};
|
|
15207
15240
|
export declare type GraphStoreAppInstallationAssociatedToSecurityWorkspaceInverseRelationshipArgs = {
|
|
15208
15241
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15209
15242
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15555,6 +15588,21 @@ export declare type GraphStoreIssueAssociatedFeatureFlagRelationshipArgs = {
|
|
|
15555
15588
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15556
15589
|
id: Scalars['ID']['input'];
|
|
15557
15590
|
};
|
|
15591
|
+
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseArgs = {
|
|
15592
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15593
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15594
|
+
id: Scalars['ID']['input'];
|
|
15595
|
+
};
|
|
15596
|
+
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseRelationshipArgs = {
|
|
15597
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15598
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15599
|
+
id: Scalars['ID']['input'];
|
|
15600
|
+
};
|
|
15601
|
+
export declare type GraphStoreIssueAssociatedIssueRemoteLinkRelationshipArgs = {
|
|
15602
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15603
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15604
|
+
id: Scalars['ID']['input'];
|
|
15605
|
+
};
|
|
15558
15606
|
export declare type GraphStoreIssueAssociatedPrArgs = {
|
|
15559
15607
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15560
15608
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16613,18 +16661,24 @@ export declare type GraphStoreSprintAssociatedVulnerabilityRelationshipArgs = {
|
|
|
16613
16661
|
};
|
|
16614
16662
|
export declare type GraphStoreSprintContainsIssueArgs = {
|
|
16615
16663
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16664
|
+
filter?: InputMaybe<GraphStoreSprintContainsIssueFilterInput>;
|
|
16616
16665
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16617
16666
|
id: Scalars['ID']['input'];
|
|
16667
|
+
sort?: InputMaybe<GraphStoreSprintContainsIssueSortInput>;
|
|
16618
16668
|
};
|
|
16619
16669
|
export declare type GraphStoreSprintContainsIssueInverseRelationshipArgs = {
|
|
16620
16670
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16671
|
+
filter?: InputMaybe<GraphStoreSprintContainsIssueFilterInput>;
|
|
16621
16672
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16622
16673
|
id: Scalars['ID']['input'];
|
|
16674
|
+
sort?: InputMaybe<GraphStoreSprintContainsIssueSortInput>;
|
|
16623
16675
|
};
|
|
16624
16676
|
export declare type GraphStoreSprintContainsIssueRelationshipArgs = {
|
|
16625
16677
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16678
|
+
filter?: InputMaybe<GraphStoreSprintContainsIssueFilterInput>;
|
|
16626
16679
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16627
16680
|
id: Scalars['ID']['input'];
|
|
16681
|
+
sort?: InputMaybe<GraphStoreSprintContainsIssueSortInput>;
|
|
16628
16682
|
};
|
|
16629
16683
|
export declare type GraphStoreSprintRetrospectivePageArgs = {
|
|
16630
16684
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17788,6 +17842,33 @@ export declare type GraphStoreFloatFilterInput = {
|
|
|
17788
17842
|
lessThan?: InputMaybe<Scalars['Float']['input']>;
|
|
17789
17843
|
lessThanOrEqual?: InputMaybe<Scalars['Float']['input']>;
|
|
17790
17844
|
};
|
|
17845
|
+
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection = HasPageInfo & {
|
|
17846
|
+
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection';
|
|
17847
|
+
edges: Array<Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEdge>>;
|
|
17848
|
+
nodes: Array<Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceNode>>;
|
|
17849
|
+
pageInfo: PageInfo;
|
|
17850
|
+
};
|
|
17851
|
+
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEdge = {
|
|
17852
|
+
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEdge';
|
|
17853
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17854
|
+
node: GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceNode;
|
|
17855
|
+
};
|
|
17856
|
+
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEndNode = {
|
|
17857
|
+
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEndNode';
|
|
17858
|
+
id: Scalars['ID']['output'];
|
|
17859
|
+
};
|
|
17860
|
+
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceNode = Node & {
|
|
17861
|
+
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceNode';
|
|
17862
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17863
|
+
from: GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceStartNode;
|
|
17864
|
+
id: Scalars['ID']['output'];
|
|
17865
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17866
|
+
to: GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEndNode;
|
|
17867
|
+
};
|
|
17868
|
+
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceStartNode = {
|
|
17869
|
+
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceStartNode';
|
|
17870
|
+
id: Scalars['ID']['output'];
|
|
17871
|
+
};
|
|
17791
17872
|
export declare type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection = HasPageInfo & {
|
|
17792
17873
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection';
|
|
17793
17874
|
edges: Array<Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEdge>>;
|
|
@@ -17921,8 +18002,26 @@ export declare type GraphStoreFullComponentImpactedByIncidentEndNode = {
|
|
|
17921
18002
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentEndNode';
|
|
17922
18003
|
data?: Maybe<GraphStoreFullComponentImpactedByIncidentEndUnion>;
|
|
17923
18004
|
id: Scalars['ID']['output'];
|
|
18005
|
+
metadata?: Maybe<GraphStoreFullComponentImpactedByIncidentRelationshipObjectMetadataOutput>;
|
|
17924
18006
|
};
|
|
17925
18007
|
export declare type GraphStoreFullComponentImpactedByIncidentEndUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
18008
|
+
export declare enum GraphStoreFullComponentImpactedByIncidentJiraIncidentPriorityOutput {
|
|
18009
|
+
NotSet = "NOT_SET",
|
|
18010
|
+
P1 = "P1",
|
|
18011
|
+
P2 = "P2",
|
|
18012
|
+
P3 = "P3",
|
|
18013
|
+
P4 = "P4",
|
|
18014
|
+
P5 = "P5",
|
|
18015
|
+
Pending = "PENDING",
|
|
18016
|
+
Unknown = "UNKNOWN"
|
|
18017
|
+
}
|
|
18018
|
+
export declare enum GraphStoreFullComponentImpactedByIncidentJiraIncidentStatusOutput {
|
|
18019
|
+
Done = "DONE",
|
|
18020
|
+
Indeterminate = "INDETERMINATE",
|
|
18021
|
+
New = "NEW",
|
|
18022
|
+
NotSet = "NOT_SET",
|
|
18023
|
+
Undefined = "UNDEFINED"
|
|
18024
|
+
}
|
|
17926
18025
|
export declare type GraphStoreFullComponentImpactedByIncidentNode = Node & {
|
|
17927
18026
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentNode';
|
|
17928
18027
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -17931,6 +18030,14 @@ export declare type GraphStoreFullComponentImpactedByIncidentNode = Node & {
|
|
|
17931
18030
|
lastUpdated: Scalars['DateTime']['output'];
|
|
17932
18031
|
to: GraphStoreFullComponentImpactedByIncidentEndNode;
|
|
17933
18032
|
};
|
|
18033
|
+
export declare type GraphStoreFullComponentImpactedByIncidentRelationshipObjectMetadataOutput = {
|
|
18034
|
+
__typename?: 'GraphStoreFullComponentImpactedByIncidentRelationshipObjectMetadataOutput';
|
|
18035
|
+
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18036
|
+
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
18037
|
+
priority?: Maybe<GraphStoreFullComponentImpactedByIncidentJiraIncidentPriorityOutput>;
|
|
18038
|
+
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18039
|
+
status?: Maybe<GraphStoreFullComponentImpactedByIncidentJiraIncidentStatusOutput>;
|
|
18040
|
+
};
|
|
17934
18041
|
export declare type GraphStoreFullComponentImpactedByIncidentStartNode = {
|
|
17935
18042
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentStartNode';
|
|
17936
18043
|
id: Scalars['ID']['output'];
|
|
@@ -18383,6 +18490,45 @@ export declare type GraphStoreFullIssueAssociatedFeatureFlagStartNode = {
|
|
|
18383
18490
|
id: Scalars['ID']['output'];
|
|
18384
18491
|
};
|
|
18385
18492
|
export declare type GraphStoreFullIssueAssociatedFeatureFlagStartUnion = JiraIssue;
|
|
18493
|
+
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkConnection = HasPageInfo & {
|
|
18494
|
+
__typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkConnection';
|
|
18495
|
+
edges: Array<Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkEdge>>;
|
|
18496
|
+
nodes: Array<Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkNode>>;
|
|
18497
|
+
pageInfo: PageInfo;
|
|
18498
|
+
};
|
|
18499
|
+
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkEdge = {
|
|
18500
|
+
__typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkEdge';
|
|
18501
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18502
|
+
node: GraphStoreFullIssueAssociatedIssueRemoteLinkNode;
|
|
18503
|
+
};
|
|
18504
|
+
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkEndNode = {
|
|
18505
|
+
__typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkEndNode';
|
|
18506
|
+
id: Scalars['ID']['output'];
|
|
18507
|
+
metadata?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkRelationshipObjectMetadataOutput>;
|
|
18508
|
+
};
|
|
18509
|
+
export declare enum GraphStoreFullIssueAssociatedIssueRemoteLinkLinkApplicationTypeOutput {
|
|
18510
|
+
ConfluencePage = "CONFLUENCE_PAGE",
|
|
18511
|
+
NotSet = "NOT_SET",
|
|
18512
|
+
WebLink = "WEB_LINK"
|
|
18513
|
+
}
|
|
18514
|
+
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkNode = Node & {
|
|
18515
|
+
__typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkNode';
|
|
18516
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18517
|
+
from: GraphStoreFullIssueAssociatedIssueRemoteLinkStartNode;
|
|
18518
|
+
id: Scalars['ID']['output'];
|
|
18519
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18520
|
+
to: GraphStoreFullIssueAssociatedIssueRemoteLinkEndNode;
|
|
18521
|
+
};
|
|
18522
|
+
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkRelationshipObjectMetadataOutput = {
|
|
18523
|
+
__typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkRelationshipObjectMetadataOutput';
|
|
18524
|
+
applicationType?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkLinkApplicationTypeOutput>;
|
|
18525
|
+
};
|
|
18526
|
+
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkStartNode = {
|
|
18527
|
+
__typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkStartNode';
|
|
18528
|
+
data?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkStartUnion>;
|
|
18529
|
+
id: Scalars['ID']['output'];
|
|
18530
|
+
};
|
|
18531
|
+
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkStartUnion = JiraIssue;
|
|
18386
18532
|
export declare type GraphStoreFullIssueAssociatedPrAuthorOutput = {
|
|
18387
18533
|
__typename?: 'GraphStoreFullIssueAssociatedPrAuthorOutput';
|
|
18388
18534
|
authorAri?: Maybe<Scalars['String']['output']>;
|
|
@@ -18786,15 +18932,17 @@ export declare type GraphStoreFullJswProjectAssociatedIncidentEndNode = {
|
|
|
18786
18932
|
metadata?: Maybe<GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput>;
|
|
18787
18933
|
};
|
|
18788
18934
|
export declare type GraphStoreFullJswProjectAssociatedIncidentEndUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
18789
|
-
export declare enum
|
|
18935
|
+
export declare enum GraphStoreFullJswProjectAssociatedIncidentJiraIncidentPriorityOutput {
|
|
18790
18936
|
NotSet = "NOT_SET",
|
|
18791
18937
|
P1 = "P1",
|
|
18792
18938
|
P2 = "P2",
|
|
18793
18939
|
P3 = "P3",
|
|
18794
18940
|
P4 = "P4",
|
|
18795
|
-
P5 = "P5"
|
|
18941
|
+
P5 = "P5",
|
|
18942
|
+
Pending = "PENDING",
|
|
18943
|
+
Unknown = "UNKNOWN"
|
|
18796
18944
|
}
|
|
18797
|
-
export declare enum
|
|
18945
|
+
export declare enum GraphStoreFullJswProjectAssociatedIncidentJiraIncidentStatusOutput {
|
|
18798
18946
|
Done = "DONE",
|
|
18799
18947
|
Indeterminate = "INDETERMINATE",
|
|
18800
18948
|
New = "NEW",
|
|
@@ -18813,9 +18961,9 @@ export declare type GraphStoreFullJswProjectAssociatedIncidentRelationshipObject
|
|
|
18813
18961
|
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput';
|
|
18814
18962
|
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18815
18963
|
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
18816
|
-
priority?: Maybe<
|
|
18964
|
+
priority?: Maybe<GraphStoreFullJswProjectAssociatedIncidentJiraIncidentPriorityOutput>;
|
|
18817
18965
|
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
18818
|
-
status?: Maybe<
|
|
18966
|
+
status?: Maybe<GraphStoreFullJswProjectAssociatedIncidentJiraIncidentStatusOutput>;
|
|
18819
18967
|
};
|
|
18820
18968
|
export declare type GraphStoreFullJswProjectAssociatedIncidentStartNode = {
|
|
18821
18969
|
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentStartNode';
|
|
@@ -20483,11 +20631,13 @@ export declare enum GraphStoreFullSprintAssociatedVulnerabilityVulnerabilityStat
|
|
|
20483
20631
|
Open = "OPEN",
|
|
20484
20632
|
Unknown = "UNKNOWN"
|
|
20485
20633
|
}
|
|
20486
|
-
export declare type GraphStoreFullSprintContainsIssueConnection = HasPageInfo & {
|
|
20634
|
+
export declare type GraphStoreFullSprintContainsIssueConnection = HasPageInfo & HasTotal & {
|
|
20487
20635
|
__typename?: 'GraphStoreFullSprintContainsIssueConnection';
|
|
20488
20636
|
edges: Array<Maybe<GraphStoreFullSprintContainsIssueEdge>>;
|
|
20637
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
20489
20638
|
nodes: Array<Maybe<GraphStoreFullSprintContainsIssueNode>>;
|
|
20490
20639
|
pageInfo: PageInfo;
|
|
20640
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20491
20641
|
};
|
|
20492
20642
|
export declare type GraphStoreFullSprintContainsIssueEdge = {
|
|
20493
20643
|
__typename?: 'GraphStoreFullSprintContainsIssueEdge';
|
|
@@ -21202,36 +21352,38 @@ export declare type GraphStoreJswProjectAssociatedIncidentConditionalFilterInput
|
|
|
21202
21352
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
21203
21353
|
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
21204
21354
|
to_majorIncident?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
21205
|
-
to_priority?: InputMaybe<
|
|
21355
|
+
to_priority?: InputMaybe<GraphStoreJswProjectAssociatedIncidentJiraIncidentPriorityFilterInput>;
|
|
21206
21356
|
to_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
21207
|
-
to_status?: InputMaybe<
|
|
21357
|
+
to_status?: InputMaybe<GraphStoreJswProjectAssociatedIncidentJiraIncidentStatusFilterInput>;
|
|
21208
21358
|
};
|
|
21209
21359
|
export declare type GraphStoreJswProjectAssociatedIncidentFilterInput = {
|
|
21210
21360
|
and?: InputMaybe<Array<InputMaybe<GraphStoreJswProjectAssociatedIncidentConditionalFilterInput>>>;
|
|
21211
21361
|
or?: InputMaybe<Array<InputMaybe<GraphStoreJswProjectAssociatedIncidentConditionalFilterInput>>>;
|
|
21212
21362
|
};
|
|
21213
|
-
export declare enum
|
|
21363
|
+
export declare enum GraphStoreJswProjectAssociatedIncidentJiraIncidentPriority {
|
|
21214
21364
|
NotSet = "NOT_SET",
|
|
21215
21365
|
P1 = "P1",
|
|
21216
21366
|
P2 = "P2",
|
|
21217
21367
|
P3 = "P3",
|
|
21218
21368
|
P4 = "P4",
|
|
21219
|
-
P5 = "P5"
|
|
21369
|
+
P5 = "P5",
|
|
21370
|
+
Pending = "PENDING",
|
|
21371
|
+
Unknown = "UNKNOWN"
|
|
21220
21372
|
}
|
|
21221
|
-
export declare type
|
|
21222
|
-
is?: InputMaybe<Array<
|
|
21223
|
-
isNot?: InputMaybe<Array<
|
|
21373
|
+
export declare type GraphStoreJswProjectAssociatedIncidentJiraIncidentPriorityFilterInput = {
|
|
21374
|
+
is?: InputMaybe<Array<GraphStoreJswProjectAssociatedIncidentJiraIncidentPriority>>;
|
|
21375
|
+
isNot?: InputMaybe<Array<GraphStoreJswProjectAssociatedIncidentJiraIncidentPriority>>;
|
|
21224
21376
|
};
|
|
21225
|
-
export declare enum
|
|
21377
|
+
export declare enum GraphStoreJswProjectAssociatedIncidentJiraIncidentStatus {
|
|
21226
21378
|
Done = "DONE",
|
|
21227
21379
|
Indeterminate = "INDETERMINATE",
|
|
21228
21380
|
New = "NEW",
|
|
21229
21381
|
NotSet = "NOT_SET",
|
|
21230
21382
|
Undefined = "UNDEFINED"
|
|
21231
21383
|
}
|
|
21232
|
-
export declare type
|
|
21233
|
-
is?: InputMaybe<Array<
|
|
21234
|
-
isNot?: InputMaybe<Array<
|
|
21384
|
+
export declare type GraphStoreJswProjectAssociatedIncidentJiraIncidentStatusFilterInput = {
|
|
21385
|
+
is?: InputMaybe<Array<GraphStoreJswProjectAssociatedIncidentJiraIncidentStatus>>;
|
|
21386
|
+
isNot?: InputMaybe<Array<GraphStoreJswProjectAssociatedIncidentJiraIncidentStatus>>;
|
|
21235
21387
|
};
|
|
21236
21388
|
export declare type GraphStoreJswProjectAssociatedIncidentSortInput = {
|
|
21237
21389
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -22111,6 +22263,19 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge =
|
|
|
22111
22263
|
};
|
|
22112
22264
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion = JiraIssue;
|
|
22113
22265
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
22266
|
+
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseConnection = HasPageInfo & {
|
|
22267
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseConnection';
|
|
22268
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdge>>>;
|
|
22269
|
+
pageInfo: PageInfo;
|
|
22270
|
+
};
|
|
22271
|
+
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdge = {
|
|
22272
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdge';
|
|
22273
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22274
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22275
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22276
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion>;
|
|
22277
|
+
};
|
|
22278
|
+
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion = JiraIssue;
|
|
22114
22279
|
export declare type GraphStoreSimplifiedIssueAssociatedPrConnection = HasPageInfo & {
|
|
22115
22280
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrConnection';
|
|
22116
22281
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedPrEdge>>>;
|
|
@@ -23417,10 +23582,12 @@ export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge = {
|
|
|
23417
23582
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion>;
|
|
23418
23583
|
};
|
|
23419
23584
|
export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails;
|
|
23420
|
-
export declare type GraphStoreSimplifiedSprintContainsIssueConnection = HasPageInfo & {
|
|
23585
|
+
export declare type GraphStoreSimplifiedSprintContainsIssueConnection = HasPageInfo & HasTotal & {
|
|
23421
23586
|
__typename?: 'GraphStoreSimplifiedSprintContainsIssueConnection';
|
|
23422
23587
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintContainsIssueEdge>>>;
|
|
23588
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
23423
23589
|
pageInfo: PageInfo;
|
|
23590
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
23424
23591
|
};
|
|
23425
23592
|
export declare type GraphStoreSimplifiedSprintContainsIssueEdge = {
|
|
23426
23593
|
__typename?: 'GraphStoreSimplifiedSprintContainsIssueEdge';
|
|
@@ -24049,6 +24216,46 @@ export declare type GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatusFi
|
|
|
24049
24216
|
is?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
24050
24217
|
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
24051
24218
|
};
|
|
24219
|
+
export declare type GraphStoreSprintContainsIssueConditionalFilterInput = {
|
|
24220
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
24221
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
24222
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
24223
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
24224
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
24225
|
+
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
24226
|
+
to_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
24227
|
+
to_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
24228
|
+
to_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
24229
|
+
to_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
24230
|
+
to_statusCategory?: InputMaybe<GraphStoreSprintContainsIssueStatusCategoryFilterInput>;
|
|
24231
|
+
};
|
|
24232
|
+
export declare type GraphStoreSprintContainsIssueFilterInput = {
|
|
24233
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintContainsIssueConditionalFilterInput>>>;
|
|
24234
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintContainsIssueConditionalFilterInput>>>;
|
|
24235
|
+
};
|
|
24236
|
+
export declare type GraphStoreSprintContainsIssueSortInput = {
|
|
24237
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
24238
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
24239
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
24240
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
24241
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
24242
|
+
to_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
24243
|
+
to_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
24244
|
+
to_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
24245
|
+
to_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
24246
|
+
to_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
24247
|
+
to_statusCategory?: InputMaybe<GraphStoreSortInput>;
|
|
24248
|
+
};
|
|
24249
|
+
export declare enum GraphStoreSprintContainsIssueStatusCategory {
|
|
24250
|
+
Done = "DONE",
|
|
24251
|
+
Indeterminate = "INDETERMINATE",
|
|
24252
|
+
New = "NEW",
|
|
24253
|
+
Undefined = "UNDEFINED"
|
|
24254
|
+
}
|
|
24255
|
+
export declare type GraphStoreSprintContainsIssueStatusCategoryFilterInput = {
|
|
24256
|
+
is?: InputMaybe<Array<GraphStoreSprintContainsIssueStatusCategory>>;
|
|
24257
|
+
isNot?: InputMaybe<Array<GraphStoreSprintContainsIssueStatusCategory>>;
|
|
24258
|
+
};
|
|
24052
24259
|
export declare type GraphStoreVersionAssociatedDesignConditionalFilterInput = {
|
|
24053
24260
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
24054
24261
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -24097,6 +24304,7 @@ export declare type GraphStoreVersionAssociatedDesignSortInput = {
|
|
|
24097
24304
|
export declare type GrowthRecContext = {
|
|
24098
24305
|
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
24099
24306
|
containers?: InputMaybe<Scalars['JSON']['input']>;
|
|
24307
|
+
custom?: InputMaybe<Scalars['JSON']['input']>;
|
|
24100
24308
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
24101
24309
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
24102
24310
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -24104,7 +24312,6 @@ export declare type GrowthRecContext = {
|
|
|
24104
24312
|
subproduct?: InputMaybe<Scalars['String']['input']>;
|
|
24105
24313
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
24106
24314
|
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
24107
|
-
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
24108
24315
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
24109
24316
|
};
|
|
24110
24317
|
export declare type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendation & {
|
|
@@ -24344,6 +24551,7 @@ export declare type HelpCenterBranding = {
|
|
|
24344
24551
|
isBannerAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
24345
24552
|
isLogoAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
24346
24553
|
logo?: Maybe<HelpCenterLogo>;
|
|
24554
|
+
useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
|
|
24347
24555
|
};
|
|
24348
24556
|
export declare type HelpCenterBrandingColors = {
|
|
24349
24557
|
__typename?: 'HelpCenterBrandingColors';
|
|
@@ -32006,7 +32214,6 @@ export declare type JiraPermissionSchemeAddGrantPayload = Payload & {
|
|
|
32006
32214
|
export declare type JiraPermissionSchemeConfiguration = {
|
|
32007
32215
|
__typename?: 'JiraPermissionSchemeConfiguration';
|
|
32008
32216
|
isEditable: Scalars['Boolean']['output'];
|
|
32009
|
-
isPublicSharingDisabled: Scalars['Boolean']['output'];
|
|
32010
32217
|
};
|
|
32011
32218
|
export declare type JiraPermissionSchemeGrantGroup = {
|
|
32012
32219
|
__typename?: 'JiraPermissionSchemeGrantGroup';
|
|
@@ -33439,6 +33646,7 @@ export declare type JiraQuerySprintByIdArgs = {
|
|
|
33439
33646
|
export declare type JiraQuerySprintSearchArgs = {
|
|
33440
33647
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33441
33648
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
33649
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
33442
33650
|
filter?: InputMaybe<JiraSprintFilterInput>;
|
|
33443
33651
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33444
33652
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -35530,7 +35738,7 @@ export declare type JiraSubmitBulkOperationProgress = Node & {
|
|
|
35530
35738
|
};
|
|
35531
35739
|
export declare type JiraSubscription = {
|
|
35532
35740
|
__typename?: 'JiraSubscription';
|
|
35533
|
-
onAttachmentCreatedByProjects?: Maybe<
|
|
35741
|
+
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
35534
35742
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
35535
35743
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
35536
35744
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
@@ -36521,7 +36729,7 @@ export declare type JiraVersionFilterInput = {
|
|
|
36521
36729
|
activeWithin?: InputMaybe<JiraDateTimeWindow>;
|
|
36522
36730
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
36523
36731
|
projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
36524
|
-
|
|
36732
|
+
statuses?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
36525
36733
|
};
|
|
36526
36734
|
export declare type JiraVersionInput = {
|
|
36527
36735
|
versionId?: InputMaybe<Scalars['ID']['input']>;
|