@forge/cli-shared 6.3.0-next.10 → 6.3.0-next.12
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,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.3.0-next.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [c84549a]
|
|
8
|
+
- @forge/manifest@8.0.0-next.10
|
|
9
|
+
|
|
10
|
+
## 6.3.0-next.11
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [8ca9a19]
|
|
15
|
+
- @forge/manifest@8.0.0-next.9
|
|
16
|
+
|
|
3
17
|
## 6.3.0-next.10
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -5319,6 +5319,7 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
|
|
|
5319
5319
|
};
|
|
5320
5320
|
export declare type CompassGlobalPermissions = {
|
|
5321
5321
|
__typename?: 'CompassGlobalPermissions';
|
|
5322
|
+
createComponents?: Maybe<CompassPermissionResult>;
|
|
5322
5323
|
createIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
5323
5324
|
createMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
5324
5325
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
@@ -25185,6 +25186,8 @@ export declare type GraphStore = {
|
|
|
25185
25186
|
atlasProjectContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
25186
25187
|
atlasProjectDependsOnAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection>;
|
|
25187
25188
|
atlasProjectDependsOnAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection>;
|
|
25189
|
+
atlasProjectHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection>;
|
|
25190
|
+
atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
|
|
25188
25191
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
25189
25192
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
25190
25193
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
@@ -25639,6 +25642,20 @@ export declare type GraphStoreAtlasProjectDependsOnAtlasProjectInverseArgs = {
|
|
|
25639
25642
|
id: Scalars['ID']['input'];
|
|
25640
25643
|
sort?: InputMaybe<GraphStoreAtlasProjectDependsOnAtlasProjectSortInput>;
|
|
25641
25644
|
};
|
|
25645
|
+
export declare type GraphStoreAtlasProjectHasContributorInverseArgs = {
|
|
25646
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25647
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25648
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25649
|
+
id: Scalars['ID']['input'];
|
|
25650
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasContributorSortInput>;
|
|
25651
|
+
};
|
|
25652
|
+
export declare type GraphStoreAtlasProjectHasFollowerInverseArgs = {
|
|
25653
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25654
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
25655
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25656
|
+
id: Scalars['ID']['input'];
|
|
25657
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasFollowerSortInput>;
|
|
25658
|
+
};
|
|
25642
25659
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
25643
25660
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25644
25661
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28021,6 +28038,12 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
|
28021
28038
|
export declare type GraphStoreAtlasProjectDependsOnAtlasProjectSortInput = {
|
|
28022
28039
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28023
28040
|
};
|
|
28041
|
+
export declare type GraphStoreAtlasProjectHasContributorSortInput = {
|
|
28042
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28043
|
+
};
|
|
28044
|
+
export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
|
|
28045
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28046
|
+
};
|
|
28024
28047
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
28025
28048
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28026
28049
|
};
|
|
@@ -29056,14 +29079,28 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
29056
29079
|
}
|
|
29057
29080
|
export declare type GraphStoreCypherQueryConnection = {
|
|
29058
29081
|
__typename?: 'GraphStoreCypherQueryConnection';
|
|
29059
|
-
edges: Array<
|
|
29082
|
+
edges: Array<GraphStoreCypherQueryEdge>;
|
|
29060
29083
|
pageInfo: PageInfo;
|
|
29061
29084
|
};
|
|
29085
|
+
export declare type GraphStoreCypherQueryEdge = {
|
|
29086
|
+
__typename?: 'GraphStoreCypherQueryEdge';
|
|
29087
|
+
node: GraphStoreCypherQueryNode;
|
|
29088
|
+
};
|
|
29089
|
+
export declare type GraphStoreCypherQueryFromNode = {
|
|
29090
|
+
__typename?: 'GraphStoreCypherQueryFromNode';
|
|
29091
|
+
id: Scalars['ID']['output'];
|
|
29092
|
+
};
|
|
29062
29093
|
export declare type GraphStoreCypherQueryNode = {
|
|
29063
29094
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
29095
|
+
from: GraphStoreCypherQueryFromNode;
|
|
29096
|
+
to: GraphStoreCypherQueryToNode;
|
|
29097
|
+
};
|
|
29098
|
+
export declare type GraphStoreCypherQueryToNode = {
|
|
29099
|
+
__typename?: 'GraphStoreCypherQueryToNode';
|
|
29100
|
+
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
29064
29101
|
id: Scalars['ID']['output'];
|
|
29065
|
-
issues: Array<Scalars['ID']['output']>;
|
|
29066
29102
|
};
|
|
29103
|
+
export declare type GraphStoreCypherQueryToNodeUnion = JiraIssue;
|
|
29067
29104
|
export declare type GraphStoreDateFilterInput = {
|
|
29068
29105
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29069
29106
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -33798,6 +33835,34 @@ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverse
|
|
|
33798
33835
|
};
|
|
33799
33836
|
export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseUnion = TownsquareProject;
|
|
33800
33837
|
export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectUnion = TownsquareProject;
|
|
33838
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection = HasPageInfo & {
|
|
33839
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection';
|
|
33840
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge>>>;
|
|
33841
|
+
pageInfo: PageInfo;
|
|
33842
|
+
};
|
|
33843
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge = {
|
|
33844
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorInverseEdge';
|
|
33845
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33846
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33847
|
+
id: Scalars['ID']['output'];
|
|
33848
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33849
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion>;
|
|
33850
|
+
};
|
|
33851
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasContributorInverseUnion = TownsquareProject;
|
|
33852
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection = HasPageInfo & {
|
|
33853
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection';
|
|
33854
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge>>>;
|
|
33855
|
+
pageInfo: PageInfo;
|
|
33856
|
+
};
|
|
33857
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge = {
|
|
33858
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasFollowerInverseEdge';
|
|
33859
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33860
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33861
|
+
id: Scalars['ID']['output'];
|
|
33862
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33863
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseUnion>;
|
|
33864
|
+
};
|
|
33865
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasFollowerInverseUnion = TownsquareProject;
|
|
33801
33866
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
33802
33867
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
33803
33868
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -40844,6 +40909,9 @@ export declare type JiraBulkCreateIssueLinksPayload = Payload & {
|
|
|
40844
40909
|
issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
|
|
40845
40910
|
success: Scalars['Boolean']['output'];
|
|
40846
40911
|
};
|
|
40912
|
+
export declare type JiraBulkDeleteInput = {
|
|
40913
|
+
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
40914
|
+
};
|
|
40847
40915
|
export declare type JiraBulkEditField = Node & {
|
|
40848
40916
|
__typename?: 'JiraBulkEditField';
|
|
40849
40917
|
bulkEditMultiSelectFieldOptions?: Maybe<Array<Maybe<JiraBulkEditMultiSelectFieldOptions>>>;
|
|
@@ -40878,11 +40946,13 @@ export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
|
40878
40946
|
Replace = "REPLACE"
|
|
40879
40947
|
}
|
|
40880
40948
|
export declare type JiraBulkOperationInput = {
|
|
40949
|
+
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
40881
40950
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
40882
40951
|
bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
|
|
40883
40952
|
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40884
40953
|
};
|
|
40885
40954
|
export declare enum JiraBulkOperationType {
|
|
40955
|
+
BulkDelete = "BULK_DELETE",
|
|
40886
40956
|
BulkEdit = "BULK_EDIT",
|
|
40887
40957
|
BulkTransition = "BULK_TRANSITION"
|
|
40888
40958
|
}
|
|
@@ -56539,6 +56609,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
56539
56609
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
56540
56610
|
hosting: MarketplaceConsoleHosting;
|
|
56541
56611
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
56612
|
+
latestForgeVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
56542
56613
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
56543
56614
|
pricingParentSoftware?: Maybe<MarketplaceConsolePricingParentSoftware>;
|
|
56544
56615
|
storesPersonalData?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -56833,6 +56904,10 @@ export declare type MarketplaceConsoleEditionsInput = {
|
|
|
56833
56904
|
export declare type MarketplaceConsoleError = {
|
|
56834
56905
|
message: Scalars['String']['output'];
|
|
56835
56906
|
};
|
|
56907
|
+
export declare type MarketplaceConsoleExtensibilityFramework = {
|
|
56908
|
+
__typename?: 'MarketplaceConsoleExtensibilityFramework';
|
|
56909
|
+
frameworkId: Scalars['String']['output'];
|
|
56910
|
+
};
|
|
56836
56911
|
export declare type MarketplaceConsoleExternalFrameworkAttributes = {
|
|
56837
56912
|
__typename?: 'MarketplaceConsoleExternalFrameworkAttributes';
|
|
56838
56913
|
authorization: Scalars['Boolean']['output'];
|
|
@@ -57071,6 +57146,7 @@ export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
|
57071
57146
|
};
|
|
57072
57147
|
export declare type MarketplaceConsoleParentSoftware = {
|
|
57073
57148
|
__typename?: 'MarketplaceConsoleParentSoftware';
|
|
57149
|
+
extensibilityFrameworks: Array<MarketplaceConsoleExtensibilityFramework>;
|
|
57074
57150
|
hostingOptions: Array<MarketplaceConsoleHostingOption>;
|
|
57075
57151
|
id: Scalars['ID']['output'];
|
|
57076
57152
|
name: Scalars['String']['output'];
|
|
@@ -64385,9 +64461,17 @@ export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
|
64385
64461
|
type: RadarFilterInputType;
|
|
64386
64462
|
values?: Maybe<Array<Maybe<RadarFieldValue>>>;
|
|
64387
64463
|
};
|
|
64464
|
+
export declare enum RadarStatusAppearance {
|
|
64465
|
+
Default = "default",
|
|
64466
|
+
InProgress = "inProgress",
|
|
64467
|
+
Moved = "moved",
|
|
64468
|
+
New = "new",
|
|
64469
|
+
Removed = "removed",
|
|
64470
|
+
Success = "success"
|
|
64471
|
+
}
|
|
64388
64472
|
export declare type RadarStatusFieldValue = {
|
|
64389
64473
|
__typename?: 'RadarStatusFieldValue';
|
|
64390
|
-
|
|
64474
|
+
appearance?: Maybe<RadarStatusAppearance>;
|
|
64391
64475
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
64392
64476
|
value?: Maybe<Scalars['String']['output']>;
|
|
64393
64477
|
};
|
|
@@ -64404,8 +64488,8 @@ export declare type RadarUrlFieldValue = {
|
|
|
64404
64488
|
};
|
|
64405
64489
|
export declare type RadarWorkspace = {
|
|
64406
64490
|
__typename?: 'RadarWorkspace';
|
|
64407
|
-
cloudId: Scalars['ID']['output'];
|
|
64408
64491
|
focusAreaFields: Array<RadarFieldDefinition>;
|
|
64492
|
+
id: Scalars['ID']['output'];
|
|
64409
64493
|
positionFields: Array<RadarFieldDefinition>;
|
|
64410
64494
|
};
|
|
64411
64495
|
export declare type RankColumnInput = {
|
|
@@ -69592,6 +69676,7 @@ export declare type TownsquareGoalType = Node & {
|
|
|
69592
69676
|
__typename?: 'TownsquareGoalType';
|
|
69593
69677
|
allowedChildTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
69594
69678
|
allowedParentTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
69679
|
+
description?: Maybe<TownsquareGoalTypeDescription>;
|
|
69595
69680
|
icon?: Maybe<TownsquareGoalTypeIcon>;
|
|
69596
69681
|
id: Scalars['ID']['output'];
|
|
69597
69682
|
name?: Maybe<TownsquareGoalTypeName>;
|
|
@@ -69612,10 +69697,15 @@ export declare type TownsquareGoalTypeConnection = {
|
|
|
69612
69697
|
edges?: Maybe<Array<Maybe<TownsquareGoalTypeEdge>>>;
|
|
69613
69698
|
pageInfo: PageInfo;
|
|
69614
69699
|
};
|
|
69700
|
+
export declare type TownsquareGoalTypeCustomDescription = {
|
|
69701
|
+
__typename?: 'TownsquareGoalTypeCustomDescription';
|
|
69702
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
69703
|
+
};
|
|
69615
69704
|
export declare type TownsquareGoalTypeCustomName = {
|
|
69616
69705
|
__typename?: 'TownsquareGoalTypeCustomName';
|
|
69617
69706
|
value?: Maybe<Scalars['String']['output']>;
|
|
69618
69707
|
};
|
|
69708
|
+
export declare type TownsquareGoalTypeDescription = TownsquareGoalTypeCustomDescription | TownsquareLocalizationField;
|
|
69619
69709
|
export declare type TownsquareGoalTypeEdge = {
|
|
69620
69710
|
__typename?: 'TownsquareGoalTypeEdge';
|
|
69621
69711
|
cursor: Scalars['String']['output'];
|