@forge/cli-shared 8.8.2-next.5 → 8.9.0-next.7
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 +12 -0
- package/out/graphql/graphql-types.d.ts +172 -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 +5 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.9.0-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 49bbec0: Display local port by default when tunneling
|
|
8
|
+
|
|
9
|
+
## 8.9.0-next.6
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 5efbe5a: Added new watch flag to show services command
|
|
14
|
+
|
|
3
15
|
## 8.8.2-next.5
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -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>;
|
|
@@ -67190,6 +67279,23 @@ export declare type JiraDateFieldPayload = Payload & {
|
|
|
67190
67279
|
field?: Maybe<JiraDatePickerField>;
|
|
67191
67280
|
success: Scalars['Boolean']['output'];
|
|
67192
67281
|
};
|
|
67282
|
+
export declare type JiraDateFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
67283
|
+
__typename?: 'JiraDateFormulaField';
|
|
67284
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
67285
|
+
dateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
67286
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
67287
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
67288
|
+
fieldId: Scalars['String']['output'];
|
|
67289
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67290
|
+
id: Scalars['ID']['output'];
|
|
67291
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67292
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67293
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
67294
|
+
issue?: Maybe<JiraIssue>;
|
|
67295
|
+
name: Scalars['String']['output'];
|
|
67296
|
+
type: Scalars['String']['output'];
|
|
67297
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
67298
|
+
};
|
|
67193
67299
|
export declare type JiraDateInput = {
|
|
67194
67300
|
formattedDate: Scalars['String']['input'];
|
|
67195
67301
|
};
|
|
@@ -71205,7 +71311,10 @@ export declare enum JiraIssueModuleType {
|
|
|
71205
71311
|
}
|
|
71206
71312
|
export declare type JiraIssueMutatedStreamHubPayload = {
|
|
71207
71313
|
__typename?: 'JiraIssueMutatedStreamHubPayload';
|
|
71314
|
+
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
71315
|
+
project?: Maybe<JiraIssueStreamHubEventPayloadProject>;
|
|
71208
71316
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
71317
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
71209
71318
|
};
|
|
71210
71319
|
export declare type JiraIssueNavigatorJqlHistoryDeletePayload = Payload & {
|
|
71211
71320
|
__typename?: 'JiraIssueNavigatorJQLHistoryDeletePayload';
|
|
@@ -74840,6 +74949,24 @@ export declare type JiraNumberFieldPayload = Payload & {
|
|
|
74840
74949
|
field?: Maybe<JiraNumberField>;
|
|
74841
74950
|
success: Scalars['Boolean']['output'];
|
|
74842
74951
|
};
|
|
74952
|
+
export declare type JiraNumberFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
74953
|
+
__typename?: 'JiraNumberFormulaField';
|
|
74954
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
74955
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
74956
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
74957
|
+
fieldId: Scalars['String']['output'];
|
|
74958
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
74959
|
+
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
74960
|
+
id: Scalars['ID']['output'];
|
|
74961
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
74962
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
74963
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
74964
|
+
issue?: Maybe<JiraIssue>;
|
|
74965
|
+
name: Scalars['String']['output'];
|
|
74966
|
+
number?: Maybe<Scalars['Float']['output']>;
|
|
74967
|
+
type: Scalars['String']['output'];
|
|
74968
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
74969
|
+
};
|
|
74843
74970
|
export declare type JiraOAuthAppsApp = {
|
|
74844
74971
|
__typename?: 'JiraOAuthAppsApp';
|
|
74845
74972
|
buildsModule?: Maybe<JiraOAuthAppsBuildsModule>;
|
|
@@ -80867,6 +80994,15 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
|
80867
80994
|
errors?: Maybe<Array<MutationError>>;
|
|
80868
80995
|
success: Scalars['Boolean']['output'];
|
|
80869
80996
|
};
|
|
80997
|
+
export declare type JiraSetIssueSearchHideWarningsInput = {
|
|
80998
|
+
hideWarnings: Scalars['Boolean']['input'];
|
|
80999
|
+
viewId: Scalars['ID']['input'];
|
|
81000
|
+
};
|
|
81001
|
+
export declare type JiraSetIssueSearchHideWarningsPayload = Payload & {
|
|
81002
|
+
__typename?: 'JiraSetIssueSearchHideWarningsPayload';
|
|
81003
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81004
|
+
success: Scalars['Boolean']['output'];
|
|
81005
|
+
};
|
|
80870
81006
|
export declare type JiraSetIssueSearchHierarchyEnabledInput = {
|
|
80871
81007
|
hierarchyEnabled: Scalars['Boolean']['input'];
|
|
80872
81008
|
viewId: Scalars['ID']['input'];
|
|
@@ -82186,6 +82322,23 @@ export declare type JiraTenantActivityRecommendation = JiraProjectRecommendation
|
|
|
82186
82322
|
__typename?: 'JiraTenantActivityRecommendation';
|
|
82187
82323
|
recommendationType?: Maybe<JiraProjectRecommendationType>;
|
|
82188
82324
|
};
|
|
82325
|
+
export declare type JiraTextFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
82326
|
+
__typename?: 'JiraTextFormulaField';
|
|
82327
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
82328
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
82329
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
82330
|
+
fieldId: Scalars['String']['output'];
|
|
82331
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
82332
|
+
id: Scalars['ID']['output'];
|
|
82333
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
82334
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
82335
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
82336
|
+
issue?: Maybe<JiraIssue>;
|
|
82337
|
+
name: Scalars['String']['output'];
|
|
82338
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
82339
|
+
type: Scalars['String']['output'];
|
|
82340
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
82341
|
+
};
|
|
82189
82342
|
export declare enum JiraTimeFormat {
|
|
82190
82343
|
Days = "DAYS",
|
|
82191
82344
|
Hours = "HOURS",
|
|
@@ -94116,6 +94269,7 @@ export declare type Mutation = {
|
|
|
94116
94269
|
jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
|
|
94117
94270
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
94118
94271
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
94272
|
+
jira_setIssueSearchHideWarnings?: Maybe<JiraSetIssueSearchHideWarningsPayload>;
|
|
94119
94273
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
94120
94274
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
94121
94275
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
@@ -96099,6 +96253,9 @@ export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
|
96099
96253
|
export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
96100
96254
|
input: JiraSetIssueSearchHideDoneItemsInput;
|
|
96101
96255
|
};
|
|
96256
|
+
export declare type MutationJira_SetIssueSearchHideWarningsArgs = {
|
|
96257
|
+
input: JiraSetIssueSearchHideWarningsInput;
|
|
96258
|
+
};
|
|
96102
96259
|
export declare type MutationJira_SetIssueSearchHierarchyEnabledArgs = {
|
|
96103
96260
|
input: JiraSetIssueSearchHierarchyEnabledInput;
|
|
96104
96261
|
};
|
|
@@ -100652,6 +100809,7 @@ export declare type Query = {
|
|
|
100652
100809
|
spf_askLinksByIds?: Maybe<Array<Maybe<SpfAskLink>>>;
|
|
100653
100810
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
100654
100811
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
100812
|
+
spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
|
|
100655
100813
|
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
100656
100814
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
100657
100815
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
@@ -103937,6 +104095,11 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
103937
104095
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
103938
104096
|
ids: Array<Scalars['ID']['input']>;
|
|
103939
104097
|
};
|
|
104098
|
+
export declare type QuerySpf_GetMediaTokenArgs = {
|
|
104099
|
+
cloudId: Scalars['ID']['input'];
|
|
104100
|
+
id: Scalars['ID']['input'];
|
|
104101
|
+
usageType: SpfMediaTokenUsageType;
|
|
104102
|
+
};
|
|
103940
104103
|
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
103941
104104
|
cloudId: Scalars['ID']['input'];
|
|
103942
104105
|
url: Scalars['String']['input'];
|
|
@@ -128156,6 +128319,15 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
128156
128319
|
success: Scalars['Boolean']['output'];
|
|
128157
128320
|
};
|
|
128158
128321
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
128322
|
+
export declare type SpfMediaToken = {
|
|
128323
|
+
__typename?: 'SpfMediaToken';
|
|
128324
|
+
value: Scalars['String']['output'];
|
|
128325
|
+
};
|
|
128326
|
+
export declare type SpfMediaTokenResult = QueryError | SpfMediaToken;
|
|
128327
|
+
export declare enum SpfMediaTokenUsageType {
|
|
128328
|
+
Read = "READ",
|
|
128329
|
+
Write = "WRITE"
|
|
128330
|
+
}
|
|
128159
128331
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
128160
128332
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
128161
128333
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|