@forge/cli-shared 2.3.1-next.9 → 2.3.2-next.1
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
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.2-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a3bfe81]
|
|
8
|
+
- @forge/manifest@3.5.0-next.1
|
|
9
|
+
|
|
10
|
+
## 2.3.2-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [ba674590]
|
|
15
|
+
- @forge/manifest@3.5.0-next.0
|
|
16
|
+
|
|
17
|
+
## 2.3.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [64dd525]
|
|
22
|
+
- Updated dependencies [8e2c90f]
|
|
23
|
+
- Updated dependencies [1c6c578]
|
|
24
|
+
- Updated dependencies [8b4fede]
|
|
25
|
+
- Updated dependencies [54bf134]
|
|
26
|
+
- Updated dependencies [10f147f]
|
|
27
|
+
- Updated dependencies [2484683]
|
|
28
|
+
- Updated dependencies [1a8a4bb]
|
|
29
|
+
- Updated dependencies [e0a44d4]
|
|
30
|
+
- Updated dependencies [19820d3]
|
|
31
|
+
- Updated dependencies [1ca8bbc]
|
|
32
|
+
- @forge/manifest@3.4.0
|
|
33
|
+
|
|
3
34
|
## 2.3.1-next.9
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
|
@@ -312,7 +312,8 @@ export declare enum ApiGroup {
|
|
|
312
312
|
DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
|
|
313
313
|
Teams = "TEAMS",
|
|
314
314
|
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
315
|
-
Identity = "IDENTITY"
|
|
315
|
+
Identity = "IDENTITY",
|
|
316
|
+
DevopsAriGraph = "DEVOPS_ARI_GRAPH"
|
|
316
317
|
}
|
|
317
318
|
export declare type App = {
|
|
318
319
|
__typename?: 'App';
|
|
@@ -854,6 +855,66 @@ export declare type ArchivePolarisInsightsPayload = Payload & {
|
|
|
854
855
|
success: Scalars['Boolean'];
|
|
855
856
|
errors?: Maybe<Array<MutationError>>;
|
|
856
857
|
};
|
|
858
|
+
export declare type AriGraph = {
|
|
859
|
+
__typename?: 'AriGraph';
|
|
860
|
+
relationship?: Maybe<AriGraphRelationship>;
|
|
861
|
+
relationships?: Maybe<AriGraphRelationshipConnection>;
|
|
862
|
+
};
|
|
863
|
+
export declare type AriGraphRelationshipArgs = {
|
|
864
|
+
from: Scalars['ID'];
|
|
865
|
+
type: Scalars['ID'];
|
|
866
|
+
to: Scalars['ID'];
|
|
867
|
+
};
|
|
868
|
+
export declare type AriGraphRelationshipsArgs = {
|
|
869
|
+
filter: AriGraphRelationshipsFilter;
|
|
870
|
+
first?: Maybe<Scalars['Int']>;
|
|
871
|
+
after?: Maybe<Scalars['String']>;
|
|
872
|
+
};
|
|
873
|
+
export declare type AriGraphCreateRelationshipInput = {
|
|
874
|
+
from: Scalars['ID'];
|
|
875
|
+
to: Scalars['ID'];
|
|
876
|
+
type: Scalars['ID'];
|
|
877
|
+
};
|
|
878
|
+
export declare type AriGraphCreateRelationshipPayload = Payload & {
|
|
879
|
+
__typename?: 'AriGraphCreateRelationshipPayload';
|
|
880
|
+
success: Scalars['Boolean'];
|
|
881
|
+
errors?: Maybe<Array<MutationError>>;
|
|
882
|
+
};
|
|
883
|
+
export declare type AriGraphMutation = {
|
|
884
|
+
__typename?: 'AriGraphMutation';
|
|
885
|
+
createRelationship?: Maybe<AriGraphCreateRelationshipPayload>;
|
|
886
|
+
};
|
|
887
|
+
export declare type AriGraphMutationCreateRelationshipArgs = {
|
|
888
|
+
input: AriGraphCreateRelationshipInput;
|
|
889
|
+
};
|
|
890
|
+
export declare type AriGraphRelationship = {
|
|
891
|
+
__typename?: 'AriGraphRelationship';
|
|
892
|
+
from: AriGraphRelationshipNode;
|
|
893
|
+
type: Scalars['ID'];
|
|
894
|
+
to: AriGraphRelationshipNode;
|
|
895
|
+
lastUpdated: Scalars['DateTime'];
|
|
896
|
+
};
|
|
897
|
+
export declare type AriGraphRelationshipConnection = {
|
|
898
|
+
__typename?: 'AriGraphRelationshipConnection';
|
|
899
|
+
nodes?: Maybe<Array<Maybe<AriGraphRelationship>>>;
|
|
900
|
+
edges?: Maybe<Array<Maybe<AriGraphRelationshipEdge>>>;
|
|
901
|
+
pageInfo: PageInfo;
|
|
902
|
+
};
|
|
903
|
+
export declare type AriGraphRelationshipEdge = {
|
|
904
|
+
__typename?: 'AriGraphRelationshipEdge';
|
|
905
|
+
cursor: Scalars['String'];
|
|
906
|
+
node: AriGraphRelationship;
|
|
907
|
+
};
|
|
908
|
+
export declare type AriGraphRelationshipNode = {
|
|
909
|
+
__typename?: 'AriGraphRelationshipNode';
|
|
910
|
+
id: Scalars['ID'];
|
|
911
|
+
data?: Maybe<DeploymentSummary>;
|
|
912
|
+
};
|
|
913
|
+
export declare type AriGraphRelationshipsFilter = {
|
|
914
|
+
type: Scalars['ID'];
|
|
915
|
+
from?: Maybe<Scalars['ID']>;
|
|
916
|
+
to?: Maybe<Scalars['ID']>;
|
|
917
|
+
};
|
|
857
918
|
export declare type ArjConfiguration = {
|
|
858
919
|
__typename?: 'ArjConfiguration';
|
|
859
920
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -4393,6 +4454,7 @@ export declare type DeleteEventSourceInput = {
|
|
|
4393
4454
|
cloudId: Scalars['ID'];
|
|
4394
4455
|
externalEventSourceId: Scalars['ID'];
|
|
4395
4456
|
eventType: CompassEventType;
|
|
4457
|
+
deleteIfAttachedToComponents?: Maybe<Scalars['Boolean']>;
|
|
4396
4458
|
};
|
|
4397
4459
|
export declare type DeleteEventSourcePayload = Payload & {
|
|
4398
4460
|
__typename?: 'DeleteEventSourcePayload';
|
|
@@ -4535,6 +4597,7 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
4535
4597
|
export declare type DevOps = {
|
|
4536
4598
|
__typename?: 'DevOps';
|
|
4537
4599
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4600
|
+
ariGraph?: Maybe<AriGraph>;
|
|
4538
4601
|
};
|
|
4539
4602
|
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4540
4603
|
ids: Array<Scalars['ID']>;
|
|
@@ -4738,6 +4801,11 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
4738
4801
|
type: DevOpsMetricsRollupOption;
|
|
4739
4802
|
percentile?: Maybe<Scalars['Int']>;
|
|
4740
4803
|
};
|
|
4804
|
+
export declare type DevOpsMutation = {
|
|
4805
|
+
__typename?: 'DevOpsMutation';
|
|
4806
|
+
_empty?: Maybe<Scalars['String']>;
|
|
4807
|
+
ariGraph?: Maybe<AriGraphMutation>;
|
|
4808
|
+
};
|
|
4741
4809
|
export declare type DevOpsProvider = {
|
|
4742
4810
|
__typename?: 'DevOpsProvider';
|
|
4743
4811
|
name?: Maybe<Scalars['String']>;
|
|
@@ -11283,6 +11351,7 @@ export declare type Mutation = {
|
|
|
11283
11351
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
11284
11352
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
11285
11353
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
11354
|
+
devOps?: Maybe<DevOpsMutation>;
|
|
11286
11355
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
11287
11356
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
11288
11357
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -13586,6 +13655,10 @@ export declare type RoadmapAddItemResponse = {
|
|
|
13586
13655
|
item?: Maybe<RoadmapItem>;
|
|
13587
13656
|
matchesSource: Scalars['Boolean'];
|
|
13588
13657
|
};
|
|
13658
|
+
export declare type RoadmapAddLevelOneIssueTypeHealthcheckResolution = {
|
|
13659
|
+
create?: Maybe<RoadmapCreateLevelOneIssueType>;
|
|
13660
|
+
promote?: Maybe<RoadmapPromoteLevelOneIssueType>;
|
|
13661
|
+
};
|
|
13589
13662
|
export declare type RoadmapBoardConfiguration = {
|
|
13590
13663
|
__typename?: 'RoadmapBoardConfiguration';
|
|
13591
13664
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -13616,6 +13689,10 @@ export declare type RoadmapContent = {
|
|
|
13616
13689
|
configuration: RoadmapConfiguration;
|
|
13617
13690
|
items: RoadmapItemConnection;
|
|
13618
13691
|
};
|
|
13692
|
+
export declare type RoadmapCreateLevelOneIssueType = {
|
|
13693
|
+
epicTypeName: Scalars['String'];
|
|
13694
|
+
epicTypeDescription: Scalars['String'];
|
|
13695
|
+
};
|
|
13619
13696
|
export declare type RoadmapCreationPreferences = {
|
|
13620
13697
|
__typename?: 'RoadmapCreationPreferences';
|
|
13621
13698
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -13725,6 +13802,10 @@ export declare type RoadmapItemEdge = {
|
|
|
13725
13802
|
cursor: Scalars['String'];
|
|
13726
13803
|
node?: Maybe<RoadmapItem>;
|
|
13727
13804
|
};
|
|
13805
|
+
export declare type RoadmapItemRankInput = {
|
|
13806
|
+
id: Scalars['ID'];
|
|
13807
|
+
position: RoadmapRankPosition;
|
|
13808
|
+
};
|
|
13728
13809
|
export declare type RoadmapItemStatus = {
|
|
13729
13810
|
__typename?: 'RoadmapItemStatus';
|
|
13730
13811
|
id: Scalars['ID'];
|
|
@@ -13828,12 +13909,28 @@ export declare type RoadmapProjectValidation = {
|
|
|
13828
13909
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13829
13910
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13830
13911
|
};
|
|
13912
|
+
export declare type RoadmapPromoteLevelOneIssueType = {
|
|
13913
|
+
promoteItemTypeId: Scalars['ID'];
|
|
13914
|
+
};
|
|
13831
13915
|
export declare type RoadmapQuickFilter = {
|
|
13832
13916
|
__typename?: 'RoadmapQuickFilter';
|
|
13833
13917
|
id: Scalars['ID'];
|
|
13834
13918
|
name: Scalars['String'];
|
|
13835
13919
|
query: Scalars['String'];
|
|
13836
13920
|
};
|
|
13921
|
+
export declare enum RoadmapRankPosition {
|
|
13922
|
+
Before = "BEFORE",
|
|
13923
|
+
After = "AFTER"
|
|
13924
|
+
}
|
|
13925
|
+
export declare type RoadmapResolveHealthcheckInput = {
|
|
13926
|
+
actionId: Scalars['ID'];
|
|
13927
|
+
addLevelOneIssueType?: Maybe<RoadmapAddLevelOneIssueTypeHealthcheckResolution>;
|
|
13928
|
+
};
|
|
13929
|
+
export declare type RoadmapResolveHealthcheckPayload = Payload & {
|
|
13930
|
+
__typename?: 'RoadmapResolveHealthcheckPayload';
|
|
13931
|
+
success: Scalars['Boolean'];
|
|
13932
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13933
|
+
};
|
|
13837
13934
|
export declare type RoadmapSprint = {
|
|
13838
13935
|
__typename?: 'RoadmapSprint';
|
|
13839
13936
|
id: Scalars['ID'];
|
|
@@ -13880,7 +13977,7 @@ export declare type RoadmapUpdateItemInput = {
|
|
|
13880
13977
|
dueDate?: Maybe<Scalars['Date']>;
|
|
13881
13978
|
startDate?: Maybe<Scalars['Date']>;
|
|
13882
13979
|
color?: Maybe<RoadmapPaletteColor>;
|
|
13883
|
-
rank?: Maybe<
|
|
13980
|
+
rank?: Maybe<RoadmapItemRankInput>;
|
|
13884
13981
|
parentId?: Maybe<Scalars['ID']>;
|
|
13885
13982
|
sprintId?: Maybe<Scalars['ID']>;
|
|
13886
13983
|
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
@@ -13891,10 +13988,6 @@ export declare type RoadmapUpdateItemPayload = Payload & {
|
|
|
13891
13988
|
errors?: Maybe<Array<MutationError>>;
|
|
13892
13989
|
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
13893
13990
|
};
|
|
13894
|
-
export declare type RoadmapUpdateItemRank = {
|
|
13895
|
-
beforeId?: Maybe<Scalars['ID']>;
|
|
13896
|
-
afterId?: Maybe<Scalars['ID']>;
|
|
13897
|
-
};
|
|
13898
13991
|
export declare type RoadmapUpdateItemResponse = {
|
|
13899
13992
|
__typename?: 'RoadmapUpdateItemResponse';
|
|
13900
13993
|
item?: Maybe<RoadmapItem>;
|
|
@@ -13930,6 +14023,7 @@ export declare type RoadmapViewSettings = {
|
|
|
13930
14023
|
export declare type RoadmapsMutation = {
|
|
13931
14024
|
__typename?: 'RoadmapsMutation';
|
|
13932
14025
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
14026
|
+
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
13933
14027
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13934
14028
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
13935
14029
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
@@ -13938,6 +14032,10 @@ export declare type RoadmapsMutation = {
|
|
|
13938
14032
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13939
14033
|
input: RoadmapFeatureToggleInput;
|
|
13940
14034
|
};
|
|
14035
|
+
export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
14036
|
+
sourceARI: Scalars['ID'];
|
|
14037
|
+
input: RoadmapResolveHealthcheckInput;
|
|
14038
|
+
};
|
|
13941
14039
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13942
14040
|
sourceARI: Scalars['ID'];
|
|
13943
14041
|
input: RoadmapAddItemInput;
|
|
@@ -14358,7 +14456,7 @@ export declare type ShepherdCreateSubscriptionInput = {
|
|
|
14358
14456
|
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14359
14457
|
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14360
14458
|
errors?: Maybe<Array<MutationError>>;
|
|
14361
|
-
node?: Maybe<
|
|
14459
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14362
14460
|
success: Scalars['Boolean'];
|
|
14363
14461
|
};
|
|
14364
14462
|
export declare type ShepherdCreateWebhookInput = {
|
|
@@ -14495,7 +14593,7 @@ export declare type ShepherdUpdateSubscriptionInput = {
|
|
|
14495
14593
|
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14496
14594
|
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14497
14595
|
errors?: Maybe<Array<MutationError>>;
|
|
14498
|
-
node?: Maybe<
|
|
14596
|
+
node?: Maybe<ShepherdSubscription>;
|
|
14499
14597
|
success: Scalars['Boolean'];
|
|
14500
14598
|
};
|
|
14501
14599
|
export declare type ShepherdUpdateWebhookInput = {
|