@forge/cli-shared 8.8.2-next.5 → 8.9.0-next.6
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 -0
- package/out/graphql/graphql-types.d.ts +120 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +9 -4
- package/out/ui/command-line-ui.d.ts +10 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +59 -2
- package/out/ui/text.d.ts +4 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -36673,6 +36673,8 @@ export declare type GraphStore = {
|
|
|
36673
36673
|
userFavoritedFocusAreaBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
36674
36674
|
userFavoritedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection>;
|
|
36675
36675
|
userFavoritedFocusAreaInverseBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
36676
|
+
userFavoritedTownsquareProject?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection>;
|
|
36677
|
+
userFavoritedTownsquareProjectInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection>;
|
|
36676
36678
|
userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
|
|
36677
36679
|
userHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseConnection>;
|
|
36678
36680
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
@@ -41209,6 +41211,20 @@ export declare type GraphStoreUserFavoritedFocusAreaInverseBatchArgs = {
|
|
|
41209
41211
|
ids: Array<Scalars['ID']['input']>;
|
|
41210
41212
|
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
41211
41213
|
};
|
|
41214
|
+
export declare type GraphStoreUserFavoritedTownsquareProjectArgs = {
|
|
41215
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41216
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41217
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41218
|
+
id: Scalars['ID']['input'];
|
|
41219
|
+
sort?: InputMaybe<GraphStoreUserFavoritedTownsquareProjectSortInput>;
|
|
41220
|
+
};
|
|
41221
|
+
export declare type GraphStoreUserFavoritedTownsquareProjectInverseArgs = {
|
|
41222
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41223
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41224
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41225
|
+
id: Scalars['ID']['input'];
|
|
41226
|
+
sort?: InputMaybe<GraphStoreUserFavoritedTownsquareProjectSortInput>;
|
|
41227
|
+
};
|
|
41212
41228
|
export declare type GraphStoreUserHasExternalPositionArgs = {
|
|
41213
41229
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41214
41230
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -44122,6 +44138,20 @@ export declare type GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
44122
44138
|
to: Scalars['ID']['input'];
|
|
44123
44139
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44124
44140
|
};
|
|
44141
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareProjectInput = {
|
|
44142
|
+
relationships: Array<GraphStoreCreateUserFavoritedTownsquareProjectRelationshipInput>;
|
|
44143
|
+
};
|
|
44144
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareProjectPayload = Payload & {
|
|
44145
|
+
__typename?: 'GraphStoreCreateUserFavoritedTownsquareProjectPayload';
|
|
44146
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44147
|
+
success: Scalars['Boolean']['output'];
|
|
44148
|
+
};
|
|
44149
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareProjectRelationshipInput = {
|
|
44150
|
+
from: Scalars['ID']['input'];
|
|
44151
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
44152
|
+
to: Scalars['ID']['input'];
|
|
44153
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44154
|
+
};
|
|
44125
44155
|
export declare type GraphStoreCreateUserHasRelevantProjectInput = {
|
|
44126
44156
|
relationships: Array<GraphStoreCreateUserHasRelevantProjectRelationshipInput>;
|
|
44127
44157
|
};
|
|
@@ -44709,6 +44739,19 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
44709
44739
|
from: Scalars['ID']['input'];
|
|
44710
44740
|
to: Scalars['ID']['input'];
|
|
44711
44741
|
};
|
|
44742
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectInput = {
|
|
44743
|
+
relationships: Array<GraphStoreDeleteUserFavoritedTownsquareProjectRelationshipInput>;
|
|
44744
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44745
|
+
};
|
|
44746
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectPayload = Payload & {
|
|
44747
|
+
__typename?: 'GraphStoreDeleteUserFavoritedTownsquareProjectPayload';
|
|
44748
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44749
|
+
success: Scalars['Boolean']['output'];
|
|
44750
|
+
};
|
|
44751
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectRelationshipInput = {
|
|
44752
|
+
from: Scalars['ID']['input'];
|
|
44753
|
+
to: Scalars['ID']['input'];
|
|
44754
|
+
};
|
|
44712
44755
|
export declare type GraphStoreDeleteUserHasRelevantProjectInput = {
|
|
44713
44756
|
relationships: Array<GraphStoreDeleteUserHasRelevantProjectRelationshipInput>;
|
|
44714
44757
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48685,6 +48728,7 @@ export declare type GraphStoreMutation = {
|
|
|
48685
48728
|
createTeamConnectedToContainer?: Maybe<GraphStoreCreateTeamConnectedToContainerPayload>;
|
|
48686
48729
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
48687
48730
|
createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
48731
|
+
createUserFavoritedTownsquareProject?: Maybe<GraphStoreCreateUserFavoritedTownsquareProjectPayload>;
|
|
48688
48732
|
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
48689
48733
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
48690
48734
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
@@ -48713,6 +48757,7 @@ export declare type GraphStoreMutation = {
|
|
|
48713
48757
|
deleteTeamConnectedToContainer?: Maybe<GraphStoreDeleteTeamConnectedToContainerPayload>;
|
|
48714
48758
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
48715
48759
|
deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
48760
|
+
deleteUserFavoritedTownsquareProject?: Maybe<GraphStoreDeleteUserFavoritedTownsquareProjectPayload>;
|
|
48716
48761
|
deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
|
|
48717
48762
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
48718
48763
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
@@ -48792,6 +48837,9 @@ export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
|
48792
48837
|
export declare type GraphStoreMutationCreateTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
48793
48838
|
input?: InputMaybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
48794
48839
|
};
|
|
48840
|
+
export declare type GraphStoreMutationCreateUserFavoritedTownsquareProjectArgs = {
|
|
48841
|
+
input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareProjectInput>;
|
|
48842
|
+
};
|
|
48795
48843
|
export declare type GraphStoreMutationCreateUserHasRelevantProjectArgs = {
|
|
48796
48844
|
input?: InputMaybe<GraphStoreCreateUserHasRelevantProjectInput>;
|
|
48797
48845
|
};
|
|
@@ -48876,6 +48924,9 @@ export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
|
48876
48924
|
export declare type GraphStoreMutationDeleteTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
48877
48925
|
input?: InputMaybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
48878
48926
|
};
|
|
48927
|
+
export declare type GraphStoreMutationDeleteUserFavoritedTownsquareProjectArgs = {
|
|
48928
|
+
input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareProjectInput>;
|
|
48929
|
+
};
|
|
48879
48930
|
export declare type GraphStoreMutationDeleteUserHasRelevantProjectArgs = {
|
|
48880
48931
|
input?: InputMaybe<GraphStoreDeleteUserHasRelevantProjectInput>;
|
|
48881
48932
|
};
|
|
@@ -56217,6 +56268,38 @@ export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge = {
|
|
|
56217
56268
|
};
|
|
56218
56269
|
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56219
56270
|
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaUnion = MercuryFocusArea;
|
|
56271
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection = HasPageInfo & HasTotal & {
|
|
56272
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection';
|
|
56273
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge>>>;
|
|
56274
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
56275
|
+
pageInfo: PageInfo;
|
|
56276
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
56277
|
+
};
|
|
56278
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge = {
|
|
56279
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge';
|
|
56280
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56281
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56282
|
+
id: Scalars['ID']['output'];
|
|
56283
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56284
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectUnion>;
|
|
56285
|
+
};
|
|
56286
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
56287
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection';
|
|
56288
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseEdge>>>;
|
|
56289
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
56290
|
+
pageInfo: PageInfo;
|
|
56291
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
56292
|
+
};
|
|
56293
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseEdge = {
|
|
56294
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseEdge';
|
|
56295
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56296
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56297
|
+
id: Scalars['ID']['output'];
|
|
56298
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56299
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseUnion>;
|
|
56300
|
+
};
|
|
56301
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56302
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectUnion = TownsquareProject;
|
|
56220
56303
|
export declare type GraphStoreSimplifiedUserHasExternalPositionConnection = HasPageInfo & HasTotal & {
|
|
56221
56304
|
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionConnection';
|
|
56222
56305
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasExternalPositionEdge>>>;
|
|
@@ -58669,6 +58752,12 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
|
58669
58752
|
export declare type GraphStoreUserFavoritedFocusAreaSortInput = {
|
|
58670
58753
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58671
58754
|
};
|
|
58755
|
+
export declare type GraphStoreUserFavoritedTownsquareProjectSortInput = {
|
|
58756
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
58757
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
58758
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58759
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
58760
|
+
};
|
|
58672
58761
|
export declare type GraphStoreUserHasExternalPositionSortInput = {
|
|
58673
58762
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
58674
58763
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -71205,7 +71294,10 @@ export declare enum JiraIssueModuleType {
|
|
|
71205
71294
|
}
|
|
71206
71295
|
export declare type JiraIssueMutatedStreamHubPayload = {
|
|
71207
71296
|
__typename?: 'JiraIssueMutatedStreamHubPayload';
|
|
71297
|
+
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
71298
|
+
project?: Maybe<JiraIssueStreamHubEventPayloadProject>;
|
|
71208
71299
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
71300
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
71209
71301
|
};
|
|
71210
71302
|
export declare type JiraIssueNavigatorJqlHistoryDeletePayload = Payload & {
|
|
71211
71303
|
__typename?: 'JiraIssueNavigatorJQLHistoryDeletePayload';
|
|
@@ -80867,6 +80959,15 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
|
80867
80959
|
errors?: Maybe<Array<MutationError>>;
|
|
80868
80960
|
success: Scalars['Boolean']['output'];
|
|
80869
80961
|
};
|
|
80962
|
+
export declare type JiraSetIssueSearchHideWarningsInput = {
|
|
80963
|
+
hideWarnings: Scalars['Boolean']['input'];
|
|
80964
|
+
viewId: Scalars['ID']['input'];
|
|
80965
|
+
};
|
|
80966
|
+
export declare type JiraSetIssueSearchHideWarningsPayload = Payload & {
|
|
80967
|
+
__typename?: 'JiraSetIssueSearchHideWarningsPayload';
|
|
80968
|
+
errors?: Maybe<Array<MutationError>>;
|
|
80969
|
+
success: Scalars['Boolean']['output'];
|
|
80970
|
+
};
|
|
80870
80971
|
export declare type JiraSetIssueSearchHierarchyEnabledInput = {
|
|
80871
80972
|
hierarchyEnabled: Scalars['Boolean']['input'];
|
|
80872
80973
|
viewId: Scalars['ID']['input'];
|
|
@@ -94116,6 +94217,7 @@ export declare type Mutation = {
|
|
|
94116
94217
|
jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
|
|
94117
94218
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
94118
94219
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
94220
|
+
jira_setIssueSearchHideWarnings?: Maybe<JiraSetIssueSearchHideWarningsPayload>;
|
|
94119
94221
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
94120
94222
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
94121
94223
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
@@ -96099,6 +96201,9 @@ export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
|
96099
96201
|
export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
96100
96202
|
input: JiraSetIssueSearchHideDoneItemsInput;
|
|
96101
96203
|
};
|
|
96204
|
+
export declare type MutationJira_SetIssueSearchHideWarningsArgs = {
|
|
96205
|
+
input: JiraSetIssueSearchHideWarningsInput;
|
|
96206
|
+
};
|
|
96102
96207
|
export declare type MutationJira_SetIssueSearchHierarchyEnabledArgs = {
|
|
96103
96208
|
input: JiraSetIssueSearchHierarchyEnabledInput;
|
|
96104
96209
|
};
|
|
@@ -100652,6 +100757,7 @@ export declare type Query = {
|
|
|
100652
100757
|
spf_askLinksByIds?: Maybe<Array<Maybe<SpfAskLink>>>;
|
|
100653
100758
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
100654
100759
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
100760
|
+
spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
|
|
100655
100761
|
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
100656
100762
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
100657
100763
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
@@ -103937,6 +104043,11 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
103937
104043
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
103938
104044
|
ids: Array<Scalars['ID']['input']>;
|
|
103939
104045
|
};
|
|
104046
|
+
export declare type QuerySpf_GetMediaTokenArgs = {
|
|
104047
|
+
cloudId: Scalars['ID']['input'];
|
|
104048
|
+
id: Scalars['ID']['input'];
|
|
104049
|
+
usageType: SpfMediaTokenUsageType;
|
|
104050
|
+
};
|
|
103940
104051
|
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
103941
104052
|
cloudId: Scalars['ID']['input'];
|
|
103942
104053
|
url: Scalars['String']['input'];
|
|
@@ -128156,6 +128267,15 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
128156
128267
|
success: Scalars['Boolean']['output'];
|
|
128157
128268
|
};
|
|
128158
128269
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
128270
|
+
export declare type SpfMediaToken = {
|
|
128271
|
+
__typename?: 'SpfMediaToken';
|
|
128272
|
+
value: Scalars['String']['output'];
|
|
128273
|
+
};
|
|
128274
|
+
export declare type SpfMediaTokenResult = QueryError | SpfMediaToken;
|
|
128275
|
+
export declare enum SpfMediaTokenUsageType {
|
|
128276
|
+
Read = "READ",
|
|
128277
|
+
Write = "WRITE"
|
|
128278
|
+
}
|
|
128159
128279
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
128160
128280
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
128161
128281
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|