@forge/cli-shared 2.3.0-next.1 → 2.3.0-next.4
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,30 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.0-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [6c44d2b]
|
|
8
|
+
- Updated dependencies [051ed1f]
|
|
9
|
+
- @forge/manifest@3.3.0-next.3
|
|
10
|
+
|
|
11
|
+
## 2.3.0-next.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [88e57a1]
|
|
16
|
+
- Updated dependencies [e822a8a]
|
|
17
|
+
- Updated dependencies [c255b24]
|
|
18
|
+
- @forge/util@1.2.0-next.0
|
|
19
|
+
- @forge/manifest@3.3.0-next.2
|
|
20
|
+
|
|
21
|
+
## 2.3.0-next.2
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [24203783]
|
|
26
|
+
- @forge/manifest@3.3.0-next.1
|
|
27
|
+
|
|
3
28
|
## 2.3.0-next.1
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
|
@@ -2929,6 +2929,17 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2929
2929
|
errors?: Maybe<Array<MutationError>>;
|
|
2930
2930
|
success: Scalars['Boolean'];
|
|
2931
2931
|
};
|
|
2932
|
+
export declare type ConfluenceCreateUserPropertyInput = {
|
|
2933
|
+
key: Scalars['String'];
|
|
2934
|
+
userId: Scalars['String'];
|
|
2935
|
+
value: Scalars['String'];
|
|
2936
|
+
};
|
|
2937
|
+
export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
2938
|
+
__typename?: 'ConfluenceCreateUserPropertyPayload';
|
|
2939
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
2940
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2941
|
+
success: Scalars['Boolean'];
|
|
2942
|
+
};
|
|
2932
2943
|
export declare type ConfluenceDeleteBlogPostInput = {
|
|
2933
2944
|
id: Scalars['ID'];
|
|
2934
2945
|
status: ConfluenceMutationContentStatus;
|
|
@@ -2947,6 +2958,14 @@ export declare type ConfluenceDeletePagePayload = Payload & {
|
|
|
2947
2958
|
errors?: Maybe<Array<MutationError>>;
|
|
2948
2959
|
success: Scalars['Boolean'];
|
|
2949
2960
|
};
|
|
2961
|
+
export declare type ConfluenceDeleteUserPropertyInput = {
|
|
2962
|
+
id: Scalars['ID'];
|
|
2963
|
+
};
|
|
2964
|
+
export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
2965
|
+
__typename?: 'ConfluenceDeleteUserPropertyPayload';
|
|
2966
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2967
|
+
success: Scalars['Boolean'];
|
|
2968
|
+
};
|
|
2950
2969
|
export declare type ConfluenceInlineTask = {
|
|
2951
2970
|
__typename?: 'ConfluenceInlineTask';
|
|
2952
2971
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -2989,6 +3008,9 @@ export declare type ConfluenceMutationApi = {
|
|
|
2989
3008
|
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
2990
3009
|
confluenceUpdateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
2991
3010
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3011
|
+
confluenceCreateUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
3012
|
+
confluenceUpdateValueUserProperty?: Maybe<ConfluenceUpdateValueUserPropertyPayload>;
|
|
3013
|
+
confluenceDeleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
2992
3014
|
};
|
|
2993
3015
|
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
2994
3016
|
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
@@ -3046,6 +3068,16 @@ export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
|
3046
3068
|
cloudId: Scalars['ID'];
|
|
3047
3069
|
input: ConfluenceUpdateSpaceInput;
|
|
3048
3070
|
};
|
|
3071
|
+
export declare type ConfluenceMutationApiConfluenceCreateUserPropertyArgs = {
|
|
3072
|
+
cloudId: Scalars['String'];
|
|
3073
|
+
input: ConfluenceCreateUserPropertyInput;
|
|
3074
|
+
};
|
|
3075
|
+
export declare type ConfluenceMutationApiConfluenceUpdateValueUserPropertyArgs = {
|
|
3076
|
+
input: ConfluenceUpdateValueUserPropertyInput;
|
|
3077
|
+
};
|
|
3078
|
+
export declare type ConfluenceMutationApiConfluenceDeleteUserPropertyArgs = {
|
|
3079
|
+
input: ConfluenceDeleteUserPropertyInput;
|
|
3080
|
+
};
|
|
3049
3081
|
export declare enum ConfluenceMutationContentStatus {
|
|
3050
3082
|
Current = "CURRENT",
|
|
3051
3083
|
Draft = "DRAFT"
|
|
@@ -3144,6 +3176,8 @@ export declare type ConfluenceQueryApi = {
|
|
|
3144
3176
|
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3145
3177
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
3146
3178
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3179
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3180
|
+
confluenceUserProperties: Array<Maybe<ConfluenceUserProperty>>;
|
|
3147
3181
|
};
|
|
3148
3182
|
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3149
3183
|
id: Scalars['ID'];
|
|
@@ -3172,6 +3206,12 @@ export declare type ConfluenceQueryApiConfluenceSpaceArgs = {
|
|
|
3172
3206
|
export declare type ConfluenceQueryApiConfluenceSpacesArgs = {
|
|
3173
3207
|
ids: Array<Maybe<Scalars['ID']>>;
|
|
3174
3208
|
};
|
|
3209
|
+
export declare type ConfluenceQueryApiConfluenceUserPropertyArgs = {
|
|
3210
|
+
id: Scalars['ID'];
|
|
3211
|
+
};
|
|
3212
|
+
export declare type ConfluenceQueryApiConfluenceUserPropertiesArgs = {
|
|
3213
|
+
ids: Array<Scalars['ID']>;
|
|
3214
|
+
};
|
|
3175
3215
|
export declare type ConfluenceSpace = {
|
|
3176
3216
|
__typename?: 'ConfluenceSpace';
|
|
3177
3217
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
@@ -3281,11 +3321,30 @@ export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
|
3281
3321
|
errors?: Maybe<Array<MutationError>>;
|
|
3282
3322
|
success: Scalars['Boolean'];
|
|
3283
3323
|
};
|
|
3324
|
+
export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
3325
|
+
id: Scalars['ID'];
|
|
3326
|
+
value: Scalars['String'];
|
|
3327
|
+
};
|
|
3328
|
+
export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
3329
|
+
__typename?: 'ConfluenceUpdateValueUserPropertyPayload';
|
|
3330
|
+
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3331
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3332
|
+
success: Scalars['Boolean'];
|
|
3333
|
+
};
|
|
3284
3334
|
export declare type ConfluenceUserInfo = {
|
|
3285
3335
|
__typename?: 'ConfluenceUserInfo';
|
|
3286
3336
|
user?: Maybe<User>;
|
|
3287
3337
|
personalSpace?: Maybe<ConfluenceSpace>;
|
|
3288
3338
|
};
|
|
3339
|
+
export declare type ConfluenceUserProperty = {
|
|
3340
|
+
__typename?: 'ConfluenceUserProperty';
|
|
3341
|
+
createdDate: Scalars['String'];
|
|
3342
|
+
id: Scalars['ID'];
|
|
3343
|
+
key: Scalars['String'];
|
|
3344
|
+
lastModifiedDate: Scalars['String'];
|
|
3345
|
+
propertyId: Scalars['ID'];
|
|
3346
|
+
value: Scalars['String'];
|
|
3347
|
+
};
|
|
3289
3348
|
export declare type ConnectAppScope = {
|
|
3290
3349
|
__typename?: 'ConnectAppScope';
|
|
3291
3350
|
scopeId: Scalars['ID'];
|
|
@@ -6676,6 +6735,16 @@ export declare type JiraConnectTextField = Node & JiraIssueField & JiraIssueFiel
|
|
|
6676
6735
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
6677
6736
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
6678
6737
|
};
|
|
6738
|
+
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
6739
|
+
__typename?: 'JiraCustomFilter';
|
|
6740
|
+
id: Scalars['ID'];
|
|
6741
|
+
filterId: Scalars['String'];
|
|
6742
|
+
jql: Scalars['String'];
|
|
6743
|
+
owner?: Maybe<User>;
|
|
6744
|
+
name: Scalars['String'];
|
|
6745
|
+
description?: Maybe<Scalars['String']>;
|
|
6746
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
6747
|
+
};
|
|
6679
6748
|
export declare type JiraDatePickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
6680
6749
|
__typename?: 'JiraDatePickerField';
|
|
6681
6750
|
id: Scalars['ID'];
|
|
@@ -6814,14 +6883,24 @@ export declare type JiraFieldNonEditableReason = {
|
|
|
6814
6883
|
__typename?: 'JiraFieldNonEditableReason';
|
|
6815
6884
|
message?: Maybe<Scalars['String']>;
|
|
6816
6885
|
};
|
|
6817
|
-
export declare type JiraFilter =
|
|
6818
|
-
__typename?: 'JiraFilter';
|
|
6886
|
+
export declare type JiraFilter = {
|
|
6819
6887
|
id: Scalars['ID'];
|
|
6820
6888
|
filterId: Scalars['String'];
|
|
6821
6889
|
jql: Scalars['String'];
|
|
6822
6890
|
name: Scalars['String'];
|
|
6891
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
6823
6892
|
};
|
|
6824
|
-
export declare type
|
|
6893
|
+
export declare type JiraFilterConnection = {
|
|
6894
|
+
__typename?: 'JiraFilterConnection';
|
|
6895
|
+
pageInfo: PageInfo;
|
|
6896
|
+
edges?: Maybe<Array<Maybe<JiraFilterEdge>>>;
|
|
6897
|
+
};
|
|
6898
|
+
export declare type JiraFilterEdge = {
|
|
6899
|
+
__typename?: 'JiraFilterEdge';
|
|
6900
|
+
node?: Maybe<JiraFilter>;
|
|
6901
|
+
cursor: Scalars['String'];
|
|
6902
|
+
};
|
|
6903
|
+
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
6825
6904
|
export declare type JiraFlag = {
|
|
6826
6905
|
__typename?: 'JiraFlag';
|
|
6827
6906
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -7184,6 +7263,10 @@ export declare type JiraIssueConnection = {
|
|
|
7184
7263
|
totalIssueSearchResultCount?: Maybe<Scalars['Int']>;
|
|
7185
7264
|
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']>;
|
|
7186
7265
|
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
7266
|
+
pageCursors?: Maybe<JiraPageCursors>;
|
|
7267
|
+
};
|
|
7268
|
+
export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
7269
|
+
maxCursors: Scalars['Int'];
|
|
7187
7270
|
};
|
|
7188
7271
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
7189
7272
|
__typename?: 'JiraIssueDeploymentEnvironment';
|
|
@@ -7536,7 +7619,7 @@ export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
|
7536
7619
|
__typename?: 'JiraIssueSearchByFilter';
|
|
7537
7620
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
7538
7621
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
7539
|
-
filter?: Maybe<
|
|
7622
|
+
filter?: Maybe<JiraFilter>;
|
|
7540
7623
|
};
|
|
7541
7624
|
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
7542
7625
|
namespace?: Maybe<Scalars['String']>;
|
|
@@ -8334,6 +8417,7 @@ export declare type JiraMutation = {
|
|
|
8334
8417
|
__typename?: 'JiraMutation';
|
|
8335
8418
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
8336
8419
|
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8420
|
+
replaceIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
8337
8421
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8338
8422
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8339
8423
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -8343,6 +8427,10 @@ export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
|
8343
8427
|
id: Scalars['ID'];
|
|
8344
8428
|
fieldConfigSetIds: Array<Scalars['String']>;
|
|
8345
8429
|
};
|
|
8430
|
+
export declare type JiraMutationReplaceIssueSearchViewFieldConfigSetsArgs = {
|
|
8431
|
+
id: Scalars['ID'];
|
|
8432
|
+
input: JiraReplaceIssueSearchViewFieldConfigSetsInput;
|
|
8433
|
+
};
|
|
8346
8434
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
8347
8435
|
cloudId: Scalars['ID'];
|
|
8348
8436
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -8536,6 +8624,19 @@ export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
|
8536
8624
|
export declare type JiraOrderDirection = {
|
|
8537
8625
|
id?: Maybe<Scalars['ID']>;
|
|
8538
8626
|
};
|
|
8627
|
+
export declare type JiraPageCursor = {
|
|
8628
|
+
__typename?: 'JiraPageCursor';
|
|
8629
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8630
|
+
pageNumber?: Maybe<Scalars['Int']>;
|
|
8631
|
+
isCurrent?: Maybe<Scalars['Boolean']>;
|
|
8632
|
+
};
|
|
8633
|
+
export declare type JiraPageCursors = {
|
|
8634
|
+
__typename?: 'JiraPageCursors';
|
|
8635
|
+
first?: Maybe<JiraPageCursor>;
|
|
8636
|
+
around?: Maybe<Array<Maybe<JiraPageCursor>>>;
|
|
8637
|
+
last?: Maybe<JiraPageCursor>;
|
|
8638
|
+
previous?: Maybe<JiraPageCursor>;
|
|
8639
|
+
};
|
|
8539
8640
|
export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8540
8641
|
__typename?: 'JiraParentIssueField';
|
|
8541
8642
|
id: Scalars['ID'];
|
|
@@ -9054,6 +9155,9 @@ export declare type JiraQuery = {
|
|
|
9054
9155
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9055
9156
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
9056
9157
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9158
|
+
filter?: Maybe<JiraFilter>;
|
|
9159
|
+
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
9160
|
+
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
9057
9161
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
9058
9162
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
9059
9163
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
@@ -9134,6 +9238,24 @@ export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
|
9134
9238
|
cloudId: Scalars['ID'];
|
|
9135
9239
|
keys: Array<Scalars['String']>;
|
|
9136
9240
|
};
|
|
9241
|
+
export declare type JiraQueryFilterArgs = {
|
|
9242
|
+
id: Scalars['ID'];
|
|
9243
|
+
};
|
|
9244
|
+
export declare type JiraQueryFavouriteFiltersArgs = {
|
|
9245
|
+
cloudId: Scalars['ID'];
|
|
9246
|
+
first?: Maybe<Scalars['Int']>;
|
|
9247
|
+
after?: Maybe<Scalars['String']>;
|
|
9248
|
+
last?: Maybe<Scalars['Int']>;
|
|
9249
|
+
before?: Maybe<Scalars['String']>;
|
|
9250
|
+
};
|
|
9251
|
+
export declare type JiraQuerySystemFiltersArgs = {
|
|
9252
|
+
cloudId: Scalars['ID'];
|
|
9253
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
9254
|
+
first?: Maybe<Scalars['Int']>;
|
|
9255
|
+
after?: Maybe<Scalars['String']>;
|
|
9256
|
+
last?: Maybe<Scalars['Int']>;
|
|
9257
|
+
before?: Maybe<Scalars['String']>;
|
|
9258
|
+
};
|
|
9137
9259
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
9138
9260
|
cloudId: Scalars['ID'];
|
|
9139
9261
|
};
|
|
@@ -9329,6 +9451,12 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
9329
9451
|
after: Scalars['DateTime'];
|
|
9330
9452
|
before: Scalars['DateTime'];
|
|
9331
9453
|
};
|
|
9454
|
+
export declare type JiraReplaceIssueSearchViewFieldConfigSetsInput = {
|
|
9455
|
+
before?: Maybe<Scalars['String']>;
|
|
9456
|
+
after?: Maybe<Scalars['String']>;
|
|
9457
|
+
nodes: Array<Scalars['String']>;
|
|
9458
|
+
inclusive?: Maybe<Scalars['Boolean']>;
|
|
9459
|
+
};
|
|
9332
9460
|
export declare type JiraResolution = Node & {
|
|
9333
9461
|
__typename?: 'JiraResolution';
|
|
9334
9462
|
id: Scalars['ID'];
|
|
@@ -10156,6 +10284,24 @@ export declare type JiraSubtasksFieldSubtasksArgs = {
|
|
|
10156
10284
|
last?: Maybe<Scalars['Int']>;
|
|
10157
10285
|
before?: Maybe<Scalars['String']>;
|
|
10158
10286
|
};
|
|
10287
|
+
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
10288
|
+
__typename?: 'JiraSystemFilter';
|
|
10289
|
+
id: Scalars['ID'];
|
|
10290
|
+
filterId: Scalars['String'];
|
|
10291
|
+
jql: Scalars['String'];
|
|
10292
|
+
name: Scalars['String'];
|
|
10293
|
+
isFavourite?: Maybe<Scalars['Boolean']>;
|
|
10294
|
+
};
|
|
10295
|
+
export declare type JiraSystemFilterConnection = {
|
|
10296
|
+
__typename?: 'JiraSystemFilterConnection';
|
|
10297
|
+
pageInfo: PageInfo;
|
|
10298
|
+
edges?: Maybe<Array<Maybe<JiraSystemFilterEdge>>>;
|
|
10299
|
+
};
|
|
10300
|
+
export declare type JiraSystemFilterEdge = {
|
|
10301
|
+
__typename?: 'JiraSystemFilterEdge';
|
|
10302
|
+
node?: Maybe<JiraSystemFilter>;
|
|
10303
|
+
cursor: Scalars['String'];
|
|
10304
|
+
};
|
|
10159
10305
|
export declare type JiraTeam = Node & {
|
|
10160
10306
|
__typename?: 'JiraTeam';
|
|
10161
10307
|
id: Scalars['ID'];
|
|
@@ -10907,7 +11053,6 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
10907
11053
|
export declare type Mutation = {
|
|
10908
11054
|
__typename?: 'Mutation';
|
|
10909
11055
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
10910
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
10911
11056
|
shepherd?: Maybe<ShepherdMutation>;
|
|
10912
11057
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
10913
11058
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -10973,6 +11118,7 @@ export declare type Mutation = {
|
|
|
10973
11118
|
jira?: Maybe<JiraMutation>;
|
|
10974
11119
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
10975
11120
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11121
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
10976
11122
|
appStorage?: Maybe<AppStorageMutation>;
|
|
10977
11123
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
10978
11124
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
@@ -12696,7 +12842,6 @@ export declare type Query = {
|
|
|
12696
12842
|
echo?: Maybe<Scalars['String']>;
|
|
12697
12843
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
12698
12844
|
node?: Maybe<Node>;
|
|
12699
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12700
12845
|
activities?: Maybe<Activities>;
|
|
12701
12846
|
activity?: Maybe<Activity>;
|
|
12702
12847
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
@@ -12752,6 +12897,7 @@ export declare type Query = {
|
|
|
12752
12897
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
12753
12898
|
testing?: Maybe<Testing>;
|
|
12754
12899
|
movie?: Maybe<TestingMovie>;
|
|
12900
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12755
12901
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
12756
12902
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
12757
12903
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
@@ -13309,6 +13455,10 @@ export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
|
13309
13455
|
errors?: Maybe<Array<MutationError>>;
|
|
13310
13456
|
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
13311
13457
|
};
|
|
13458
|
+
export declare type RoadmapFilterConfiguration = {
|
|
13459
|
+
__typename?: 'RoadmapFilterConfiguration';
|
|
13460
|
+
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13461
|
+
};
|
|
13312
13462
|
export declare type RoadmapItem = {
|
|
13313
13463
|
__typename?: 'RoadmapItem';
|
|
13314
13464
|
id: Scalars['ID'];
|
|
@@ -13448,6 +13598,12 @@ export declare type RoadmapProjectValidation = {
|
|
|
13448
13598
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13449
13599
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13450
13600
|
};
|
|
13601
|
+
export declare type RoadmapQuickFilter = {
|
|
13602
|
+
__typename?: 'RoadmapQuickFilter';
|
|
13603
|
+
id: Scalars['ID'];
|
|
13604
|
+
name: Scalars['String'];
|
|
13605
|
+
query: Scalars['String'];
|
|
13606
|
+
};
|
|
13451
13607
|
export declare type RoadmapSprint = {
|
|
13452
13608
|
__typename?: 'RoadmapSprint';
|
|
13453
13609
|
id: Scalars['ID'];
|
|
@@ -13487,6 +13643,32 @@ export declare type RoadmapToggleDependencyResponse = {
|
|
|
13487
13643
|
dependee: Scalars['ID'];
|
|
13488
13644
|
dependency: Scalars['ID'];
|
|
13489
13645
|
};
|
|
13646
|
+
export declare type RoadmapUpdateItemInput = {
|
|
13647
|
+
itemId: Scalars['ID'];
|
|
13648
|
+
projectId: Scalars['ID'];
|
|
13649
|
+
summary?: Maybe<Scalars['String']>;
|
|
13650
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
13651
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
13652
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
13653
|
+
rank?: Maybe<RoadmapUpdateItemRank>;
|
|
13654
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
13655
|
+
sprintId?: Maybe<Scalars['ID']>;
|
|
13656
|
+
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
13657
|
+
};
|
|
13658
|
+
export declare type RoadmapUpdateItemPayload = Payload & {
|
|
13659
|
+
__typename?: 'RoadmapUpdateItemPayload';
|
|
13660
|
+
success: Scalars['Boolean'];
|
|
13661
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13662
|
+
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
13663
|
+
};
|
|
13664
|
+
export declare type RoadmapUpdateItemRank = {
|
|
13665
|
+
beforeId?: Maybe<Scalars['ID']>;
|
|
13666
|
+
afterId?: Maybe<Scalars['ID']>;
|
|
13667
|
+
};
|
|
13668
|
+
export declare type RoadmapUpdateItemResponse = {
|
|
13669
|
+
__typename?: 'RoadmapUpdateItemResponse';
|
|
13670
|
+
item?: Maybe<RoadmapItem>;
|
|
13671
|
+
};
|
|
13490
13672
|
export declare type RoadmapUserConfiguration = {
|
|
13491
13673
|
__typename?: 'RoadmapUserConfiguration';
|
|
13492
13674
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -13519,6 +13701,7 @@ export declare type RoadmapsMutation = {
|
|
|
13519
13701
|
__typename?: 'RoadmapsMutation';
|
|
13520
13702
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13521
13703
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13704
|
+
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
13522
13705
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13523
13706
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13524
13707
|
};
|
|
@@ -13529,6 +13712,10 @@ export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
|
13529
13712
|
input?: Maybe<RoadmapAddItemInput>;
|
|
13530
13713
|
sourceARI?: Maybe<Scalars['ID']>;
|
|
13531
13714
|
};
|
|
13715
|
+
export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
13716
|
+
sourceARI: Scalars['ID'];
|
|
13717
|
+
input: RoadmapUpdateItemInput;
|
|
13718
|
+
};
|
|
13532
13719
|
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
13533
13720
|
sourceARI: Scalars['ID'];
|
|
13534
13721
|
input: RoadmapToggleDependencyInput;
|
|
@@ -13541,6 +13728,8 @@ export declare type RoadmapsQuery = {
|
|
|
13541
13728
|
__typename?: 'RoadmapsQuery';
|
|
13542
13729
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
13543
13730
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
13731
|
+
roadmapFilterItems: Array<Scalars['ID']>;
|
|
13732
|
+
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
13544
13733
|
};
|
|
13545
13734
|
export declare type RoadmapsQueryRoadmapForSourceArgs = {
|
|
13546
13735
|
sourceARI: Scalars['ID'];
|
|
@@ -13550,6 +13739,13 @@ export declare type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
|
13550
13739
|
sourceARI: Scalars['ID'];
|
|
13551
13740
|
ids: Array<Scalars['ID']>;
|
|
13552
13741
|
};
|
|
13742
|
+
export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
|
|
13743
|
+
sourceARI: Scalars['ID'];
|
|
13744
|
+
quickFilterIds: Array<Scalars['ID']>;
|
|
13745
|
+
};
|
|
13746
|
+
export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
|
|
13747
|
+
sourceARI: Scalars['ID'];
|
|
13748
|
+
};
|
|
13553
13749
|
export declare type ScanPolarisProjectInput = {
|
|
13554
13750
|
project: Scalars['ID'];
|
|
13555
13751
|
refresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -14236,6 +14432,7 @@ export declare type SupportRequest = {
|
|
|
14236
14432
|
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
14237
14433
|
lastComment: SupportRequestComments;
|
|
14238
14434
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
14435
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
14239
14436
|
};
|
|
14240
14437
|
export declare type SupportRequestCommentsArgs = {
|
|
14241
14438
|
offset?: Maybe<Scalars['Int']>;
|