@forge/cli-shared 2.3.0-next.2 → 2.3.0-next.5
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.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [ae111cd]
|
|
8
|
+
- @forge/manifest@3.3.0-next.4
|
|
9
|
+
|
|
10
|
+
## 2.3.0-next.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [6c44d2b]
|
|
15
|
+
- Updated dependencies [051ed1f]
|
|
16
|
+
- @forge/manifest@3.3.0-next.3
|
|
17
|
+
|
|
18
|
+
## 2.3.0-next.3
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [88e57a1]
|
|
23
|
+
- Updated dependencies [e822a8a]
|
|
24
|
+
- Updated dependencies [c255b24]
|
|
25
|
+
- @forge/util@1.2.0-next.0
|
|
26
|
+
- @forge/manifest@3.3.0-next.2
|
|
27
|
+
|
|
3
28
|
## 2.3.0-next.2
|
|
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'];
|
|
@@ -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>;
|
|
@@ -13379,6 +13455,10 @@ export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
|
13379
13455
|
errors?: Maybe<Array<MutationError>>;
|
|
13380
13456
|
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
13381
13457
|
};
|
|
13458
|
+
export declare type RoadmapFilterConfiguration = {
|
|
13459
|
+
__typename?: 'RoadmapFilterConfiguration';
|
|
13460
|
+
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13461
|
+
};
|
|
13382
13462
|
export declare type RoadmapItem = {
|
|
13383
13463
|
__typename?: 'RoadmapItem';
|
|
13384
13464
|
id: Scalars['ID'];
|
|
@@ -13518,6 +13598,12 @@ export declare type RoadmapProjectValidation = {
|
|
|
13518
13598
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13519
13599
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13520
13600
|
};
|
|
13601
|
+
export declare type RoadmapQuickFilter = {
|
|
13602
|
+
__typename?: 'RoadmapQuickFilter';
|
|
13603
|
+
id: Scalars['ID'];
|
|
13604
|
+
name: Scalars['String'];
|
|
13605
|
+
query: Scalars['String'];
|
|
13606
|
+
};
|
|
13521
13607
|
export declare type RoadmapSprint = {
|
|
13522
13608
|
__typename?: 'RoadmapSprint';
|
|
13523
13609
|
id: Scalars['ID'];
|
|
@@ -13557,6 +13643,32 @@ export declare type RoadmapToggleDependencyResponse = {
|
|
|
13557
13643
|
dependee: Scalars['ID'];
|
|
13558
13644
|
dependency: Scalars['ID'];
|
|
13559
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
|
+
};
|
|
13560
13672
|
export declare type RoadmapUserConfiguration = {
|
|
13561
13673
|
__typename?: 'RoadmapUserConfiguration';
|
|
13562
13674
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -13589,6 +13701,7 @@ export declare type RoadmapsMutation = {
|
|
|
13589
13701
|
__typename?: 'RoadmapsMutation';
|
|
13590
13702
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13591
13703
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13704
|
+
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
13592
13705
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13593
13706
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13594
13707
|
};
|
|
@@ -13599,6 +13712,10 @@ export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
|
13599
13712
|
input?: Maybe<RoadmapAddItemInput>;
|
|
13600
13713
|
sourceARI?: Maybe<Scalars['ID']>;
|
|
13601
13714
|
};
|
|
13715
|
+
export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
13716
|
+
sourceARI: Scalars['ID'];
|
|
13717
|
+
input: RoadmapUpdateItemInput;
|
|
13718
|
+
};
|
|
13602
13719
|
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
13603
13720
|
sourceARI: Scalars['ID'];
|
|
13604
13721
|
input: RoadmapToggleDependencyInput;
|
|
@@ -13611,6 +13728,8 @@ export declare type RoadmapsQuery = {
|
|
|
13611
13728
|
__typename?: 'RoadmapsQuery';
|
|
13612
13729
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
13613
13730
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
13731
|
+
roadmapFilterItems: Array<Scalars['ID']>;
|
|
13732
|
+
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
13614
13733
|
};
|
|
13615
13734
|
export declare type RoadmapsQueryRoadmapForSourceArgs = {
|
|
13616
13735
|
sourceARI: Scalars['ID'];
|
|
@@ -13620,6 +13739,13 @@ export declare type RoadmapsQueryRoadmapItemByIdsArgs = {
|
|
|
13620
13739
|
sourceARI: Scalars['ID'];
|
|
13621
13740
|
ids: Array<Scalars['ID']>;
|
|
13622
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
|
+
};
|
|
13623
13749
|
export declare type ScanPolarisProjectInput = {
|
|
13624
13750
|
project: Scalars['ID'];
|
|
13625
13751
|
refresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -14306,6 +14432,7 @@ export declare type SupportRequest = {
|
|
|
14306
14432
|
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
14307
14433
|
lastComment: SupportRequestComments;
|
|
14308
14434
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
14435
|
+
sourceId?: Maybe<Scalars['String']>;
|
|
14309
14436
|
};
|
|
14310
14437
|
export declare type SupportRequestCommentsArgs = {
|
|
14311
14438
|
offset?: Maybe<Scalars['Int']>;
|