@forge/cli-shared 2.3.0-next.2 → 2.3.0-next.3
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,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [88e57a1]
|
|
8
|
+
- Updated dependencies [e822a8a]
|
|
9
|
+
- Updated dependencies [c255b24]
|
|
10
|
+
- @forge/util@1.2.0-next.0
|
|
11
|
+
- @forge/manifest@3.3.0-next.2
|
|
12
|
+
|
|
3
13
|
## 2.3.0-next.2
|
|
4
14
|
|
|
5
15
|
### 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'];
|
|
@@ -7204,6 +7263,10 @@ export declare type JiraIssueConnection = {
|
|
|
7204
7263
|
totalIssueSearchResultCount?: Maybe<Scalars['Int']>;
|
|
7205
7264
|
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']>;
|
|
7206
7265
|
issueNavigatorPageInfo?: Maybe<JiraIssueNavigatorPageInfo>;
|
|
7266
|
+
pageCursors?: Maybe<JiraPageCursors>;
|
|
7267
|
+
};
|
|
7268
|
+
export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
7269
|
+
maxCursors: Scalars['Int'];
|
|
7207
7270
|
};
|
|
7208
7271
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
7209
7272
|
__typename?: 'JiraIssueDeploymentEnvironment';
|
|
@@ -8561,6 +8624,19 @@ export declare type JiraOptoutDevOpsIssuePanelNotConnectedPayload = Payload & {
|
|
|
8561
8624
|
export declare type JiraOrderDirection = {
|
|
8562
8625
|
id?: Maybe<Scalars['ID']>;
|
|
8563
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
|
+
};
|
|
8564
8640
|
export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8565
8641
|
__typename?: 'JiraParentIssueField';
|
|
8566
8642
|
id: Scalars['ID'];
|
|
@@ -10977,7 +11053,6 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
10977
11053
|
export declare type Mutation = {
|
|
10978
11054
|
__typename?: 'Mutation';
|
|
10979
11055
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
10980
|
-
confluence?: Maybe<ConfluenceMutationApi>;
|
|
10981
11056
|
shepherd?: Maybe<ShepherdMutation>;
|
|
10982
11057
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
10983
11058
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -11043,6 +11118,7 @@ export declare type Mutation = {
|
|
|
11043
11118
|
jira?: Maybe<JiraMutation>;
|
|
11044
11119
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
11045
11120
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
11121
|
+
confluence?: Maybe<ConfluenceMutationApi>;
|
|
11046
11122
|
appStorage?: Maybe<AppStorageMutation>;
|
|
11047
11123
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
11048
11124
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
@@ -12766,7 +12842,6 @@ export declare type Query = {
|
|
|
12766
12842
|
echo?: Maybe<Scalars['String']>;
|
|
12767
12843
|
diagnostics?: Maybe<Scalars['JSON']>;
|
|
12768
12844
|
node?: Maybe<Node>;
|
|
12769
|
-
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12770
12845
|
activities?: Maybe<Activities>;
|
|
12771
12846
|
activity?: Maybe<Activity>;
|
|
12772
12847
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
@@ -12822,6 +12897,7 @@ export declare type Query = {
|
|
|
12822
12897
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
12823
12898
|
testing?: Maybe<Testing>;
|
|
12824
12899
|
movie?: Maybe<TestingMovie>;
|
|
12900
|
+
confluence?: Maybe<ConfluenceQueryApi>;
|
|
12825
12901
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
12826
12902
|
appStoredEntities?: Maybe<AppStoredEntityConnection>;
|
|
12827
12903
|
appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
|
|
@@ -13557,6 +13633,32 @@ export declare type RoadmapToggleDependencyResponse = {
|
|
|
13557
13633
|
dependee: Scalars['ID'];
|
|
13558
13634
|
dependency: Scalars['ID'];
|
|
13559
13635
|
};
|
|
13636
|
+
export declare type RoadmapUpdateItemInput = {
|
|
13637
|
+
itemId: Scalars['ID'];
|
|
13638
|
+
projectId: Scalars['ID'];
|
|
13639
|
+
summary?: Maybe<Scalars['String']>;
|
|
13640
|
+
dueDate?: Maybe<Scalars['Date']>;
|
|
13641
|
+
startDate?: Maybe<Scalars['Date']>;
|
|
13642
|
+
color?: Maybe<RoadmapPaletteColor>;
|
|
13643
|
+
rank?: Maybe<RoadmapUpdateItemRank>;
|
|
13644
|
+
parentId?: Maybe<Scalars['ID']>;
|
|
13645
|
+
sprintId?: Maybe<Scalars['ID']>;
|
|
13646
|
+
clearFields?: Maybe<Array<Scalars['String']>>;
|
|
13647
|
+
};
|
|
13648
|
+
export declare type RoadmapUpdateItemPayload = Payload & {
|
|
13649
|
+
__typename?: 'RoadmapUpdateItemPayload';
|
|
13650
|
+
success: Scalars['Boolean'];
|
|
13651
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13652
|
+
output?: Maybe<RoadmapUpdateItemResponse>;
|
|
13653
|
+
};
|
|
13654
|
+
export declare type RoadmapUpdateItemRank = {
|
|
13655
|
+
beforeId?: Maybe<Scalars['ID']>;
|
|
13656
|
+
afterId?: Maybe<Scalars['ID']>;
|
|
13657
|
+
};
|
|
13658
|
+
export declare type RoadmapUpdateItemResponse = {
|
|
13659
|
+
__typename?: 'RoadmapUpdateItemResponse';
|
|
13660
|
+
item?: Maybe<RoadmapItem>;
|
|
13661
|
+
};
|
|
13560
13662
|
export declare type RoadmapUserConfiguration = {
|
|
13561
13663
|
__typename?: 'RoadmapUserConfiguration';
|
|
13562
13664
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -13589,6 +13691,7 @@ export declare type RoadmapsMutation = {
|
|
|
13589
13691
|
__typename?: 'RoadmapsMutation';
|
|
13590
13692
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13591
13693
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13694
|
+
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
13592
13695
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13593
13696
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13594
13697
|
};
|
|
@@ -13599,6 +13702,10 @@ export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
|
13599
13702
|
input?: Maybe<RoadmapAddItemInput>;
|
|
13600
13703
|
sourceARI?: Maybe<Scalars['ID']>;
|
|
13601
13704
|
};
|
|
13705
|
+
export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
13706
|
+
sourceARI: Scalars['ID'];
|
|
13707
|
+
input: RoadmapUpdateItemInput;
|
|
13708
|
+
};
|
|
13602
13709
|
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
13603
13710
|
sourceARI: Scalars['ID'];
|
|
13604
13711
|
input: RoadmapToggleDependencyInput;
|
|
@@ -14306,6 +14413,7 @@ export declare type SupportRequest = {
|
|
|
14306
14413
|
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
14307
14414
|
lastComment: SupportRequestComments;
|
|
14308
14415
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
14416
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
14309
14417
|
};
|
|
14310
14418
|
export declare type SupportRequestCommentsArgs = {
|
|
14311
14419
|
offset?: Maybe<Scalars['Int']>;
|