@forge/cli-shared 3.17.3-next.3 → 3.18.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,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.18.0-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b9a5a33a]
|
|
8
|
+
- @forge/manifest@4.20.0-next.3
|
|
9
|
+
|
|
10
|
+
## 3.18.0-next.4
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 9a78932b: Update warning text for outdated CLI version
|
|
15
|
+
|
|
3
16
|
## 3.17.3-next.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -11315,7 +11315,6 @@ export type InfluentsNotificationItem = {
|
|
|
11315
11315
|
export type InfluentsNotificationMutation = {
|
|
11316
11316
|
__typename?: 'InfluentsNotificationMutation';
|
|
11317
11317
|
markNotificationsAsRead?: Maybe<Scalars['String']>;
|
|
11318
|
-
markNotificationsAsUnread?: Maybe<Scalars['String']>;
|
|
11319
11318
|
markNotificationsByGroupIdAsRead?: Maybe<Scalars['String']>;
|
|
11320
11319
|
markNotificationsByGroupIdAsUnread?: Maybe<Scalars['String']>;
|
|
11321
11320
|
markNotificationsByIdsAsRead?: Maybe<Scalars['String']>;
|
|
@@ -11330,21 +11329,14 @@ export type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
|
11330
11329
|
beforeInclusive?: Maybe<Scalars['String']>;
|
|
11331
11330
|
beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
|
|
11332
11331
|
};
|
|
11333
|
-
export type InfluentsNotificationMutationMarkNotificationsAsUnreadArgs = {
|
|
11334
|
-
category?: Maybe<InfluentsNotificationCategory>;
|
|
11335
|
-
product?: Maybe<Scalars['String']>;
|
|
11336
|
-
workspaceId?: Maybe<Scalars['String']>;
|
|
11337
|
-
beforeInclusive?: Maybe<Scalars['String']>;
|
|
11338
|
-
beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
|
|
11339
|
-
};
|
|
11340
11332
|
export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsReadArgs = {
|
|
11341
11333
|
category?: Maybe<InfluentsNotificationCategory>;
|
|
11342
|
-
groupId
|
|
11334
|
+
groupId: Scalars['String'];
|
|
11343
11335
|
beforeInclusive?: Maybe<Scalars['String']>;
|
|
11344
11336
|
};
|
|
11345
11337
|
export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsUnreadArgs = {
|
|
11346
11338
|
category?: Maybe<InfluentsNotificationCategory>;
|
|
11347
|
-
groupId
|
|
11339
|
+
groupId: Scalars['String'];
|
|
11348
11340
|
beforeInclusive?: Maybe<Scalars['String']>;
|
|
11349
11341
|
};
|
|
11350
11342
|
export type InfluentsNotificationMutationMarkNotificationsByIdsAsReadArgs = {
|
|
@@ -13732,6 +13724,7 @@ export type JiraIssue = Node & {
|
|
|
13732
13724
|
isResolved?: Maybe<Scalars['Boolean']>;
|
|
13733
13725
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
13734
13726
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
13727
|
+
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
13735
13728
|
comments?: Maybe<JiraCommentConnection>;
|
|
13736
13729
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
13737
13730
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
@@ -13769,6 +13762,10 @@ export type JiraIssueFieldsByIdArgs = {
|
|
|
13769
13762
|
last?: Maybe<Scalars['Int']>;
|
|
13770
13763
|
before?: Maybe<Scalars['String']>;
|
|
13771
13764
|
};
|
|
13765
|
+
export type JiraIssueFieldsByIdOrAliasArgs = {
|
|
13766
|
+
idsOrAliases: Array<Maybe<Scalars['String']>>;
|
|
13767
|
+
ignoreMissingFields?: Maybe<Scalars['Boolean']>;
|
|
13768
|
+
};
|
|
13772
13769
|
export type JiraIssueCommentsArgs = {
|
|
13773
13770
|
first?: Maybe<Scalars['Int']>;
|
|
13774
13771
|
after?: Maybe<Scalars['String']>;
|
|
@@ -14554,6 +14551,9 @@ export type JiraIssueSearchViewPayload = Payload & {
|
|
|
14554
14551
|
errors?: Maybe<Array<MutationError>>;
|
|
14555
14552
|
view?: Maybe<JiraIssueSearchView>;
|
|
14556
14553
|
};
|
|
14554
|
+
export type JiraIssueTransitionFieldLevelInput = {
|
|
14555
|
+
JiraSingleSelectField?: Maybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
14556
|
+
};
|
|
14557
14557
|
export declare enum JiraIssueTransitionLayoutMessageType {
|
|
14558
14558
|
Error = "ERROR",
|
|
14559
14559
|
Warn = "WARN",
|
|
@@ -14575,6 +14575,11 @@ export type JiraIssueTransitionModal = {
|
|
|
14575
14575
|
messages?: Maybe<Array<Maybe<JiraIssueTransitionMessage>>>;
|
|
14576
14576
|
issue?: Maybe<JiraIssue>;
|
|
14577
14577
|
};
|
|
14578
|
+
export type JiraIssueTransitionResponse = Payload & {
|
|
14579
|
+
__typename?: 'JiraIssueTransitionResponse';
|
|
14580
|
+
success: Scalars['Boolean'];
|
|
14581
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14582
|
+
};
|
|
14578
14583
|
export type JiraIssueType = Node & {
|
|
14579
14584
|
__typename?: 'JiraIssueType';
|
|
14580
14585
|
id: Scalars['ID'];
|
|
@@ -15452,6 +15457,7 @@ export type JiraMutation = {
|
|
|
15452
15457
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
15453
15458
|
updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
|
|
15454
15459
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
15460
|
+
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
15455
15461
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
15456
15462
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
15457
15463
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
@@ -15576,6 +15582,9 @@ export type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
15576
15582
|
id: Scalars['ID'];
|
|
15577
15583
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
15578
15584
|
};
|
|
15585
|
+
export type JiraMutationMakeTransitionArgs = {
|
|
15586
|
+
input: JiraUpdateIssueTransitionInput;
|
|
15587
|
+
};
|
|
15579
15588
|
export type JiraMutationUserPreferencesArgs = {
|
|
15580
15589
|
cloudId: Scalars['ID'];
|
|
15581
15590
|
};
|
|
@@ -19378,6 +19387,11 @@ export type JiraUpdateGlobalPreferencesPayload = Payload & {
|
|
|
19378
19387
|
errors?: Maybe<Array<MutationError>>;
|
|
19379
19388
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
19380
19389
|
};
|
|
19390
|
+
export type JiraUpdateIssueTransitionInput = {
|
|
19391
|
+
issueId: Scalars['ID'];
|
|
19392
|
+
transitionId: Scalars['Int'];
|
|
19393
|
+
fieldInputs?: Maybe<JiraIssueTransitionFieldLevelInput>;
|
|
19394
|
+
};
|
|
19381
19395
|
export type JiraUpdateLabelsFieldInput = {
|
|
19382
19396
|
id: Scalars['ID'];
|
|
19383
19397
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -28228,6 +28242,12 @@ export type TrelloDescriptionDataEmojisArgs = {
|
|
|
28228
28242
|
after?: Maybe<Scalars['String']>;
|
|
28229
28243
|
first?: Maybe<Scalars['Int']>;
|
|
28230
28244
|
};
|
|
28245
|
+
export type TrelloEnterprise = {
|
|
28246
|
+
__typename?: 'TrelloEnterprise';
|
|
28247
|
+
displayName?: Maybe<Scalars['String']>;
|
|
28248
|
+
id: Scalars['ID'];
|
|
28249
|
+
objectId: Scalars['ID'];
|
|
28250
|
+
};
|
|
28231
28251
|
export type TrelloHelloInput = {
|
|
28232
28252
|
hello: Scalars['String'];
|
|
28233
28253
|
};
|
|
@@ -28472,12 +28492,14 @@ export type TrelloQueryApi = {
|
|
|
28472
28492
|
board?: Maybe<TrelloBoard>;
|
|
28473
28493
|
card?: Maybe<TrelloCard>;
|
|
28474
28494
|
echo?: Maybe<Scalars['String']>;
|
|
28495
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
28475
28496
|
list?: Maybe<TrelloList>;
|
|
28476
28497
|
member?: Maybe<TrelloMember>;
|
|
28477
28498
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
28478
28499
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
28479
28500
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
28480
28501
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
28502
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
28481
28503
|
myRecentCards?: Maybe<TrelloRecentCardConnection>;
|
|
28482
28504
|
};
|
|
28483
28505
|
export type TrelloQueryApiBoardArgs = {
|
|
@@ -28486,6 +28508,9 @@ export type TrelloQueryApiBoardArgs = {
|
|
|
28486
28508
|
export type TrelloQueryApiCardArgs = {
|
|
28487
28509
|
id: Scalars['ID'];
|
|
28488
28510
|
};
|
|
28511
|
+
export type TrelloQueryApiEnterpriseArgs = {
|
|
28512
|
+
id: Scalars['ID'];
|
|
28513
|
+
};
|
|
28489
28514
|
export type TrelloQueryApiListArgs = {
|
|
28490
28515
|
id: Scalars['ID'];
|
|
28491
28516
|
};
|
|
@@ -28500,6 +28525,9 @@ export type TrelloQueryApiTemplateGalleryArgs = {
|
|
|
28500
28525
|
filter?: Maybe<TrelloTemplateGalleryFilterInput>;
|
|
28501
28526
|
first?: Maybe<Scalars['Int']>;
|
|
28502
28527
|
};
|
|
28528
|
+
export type TrelloQueryApiWorkspaceArgs = {
|
|
28529
|
+
id: Scalars['ID'];
|
|
28530
|
+
};
|
|
28503
28531
|
export type TrelloQueryApiMyRecentCardsArgs = {
|
|
28504
28532
|
accountId?: Maybe<Scalars['ID']>;
|
|
28505
28533
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -28657,7 +28685,36 @@ export type TrelloWorkspace = Node & {
|
|
|
28657
28685
|
__typename?: 'TrelloWorkspace';
|
|
28658
28686
|
displayName: Scalars['String'];
|
|
28659
28687
|
id: Scalars['ID'];
|
|
28688
|
+
members?: Maybe<TrelloWorkspaceMembershipsConnection>;
|
|
28689
|
+
objectId: Scalars['ID'];
|
|
28690
|
+
};
|
|
28691
|
+
export type TrelloWorkspaceMembersArgs = {
|
|
28692
|
+
after?: Maybe<Scalars['String']>;
|
|
28693
|
+
first?: Maybe<Scalars['Int']>;
|
|
28694
|
+
};
|
|
28695
|
+
export type TrelloWorkspaceMembershipEdge = {
|
|
28696
|
+
__typename?: 'TrelloWorkspaceMembershipEdge';
|
|
28697
|
+
cursor?: Maybe<Scalars['String']>;
|
|
28698
|
+
membership?: Maybe<TrelloWorkspaceMembershipInfo>;
|
|
28699
|
+
node?: Maybe<TrelloMember>;
|
|
28700
|
+
};
|
|
28701
|
+
export type TrelloWorkspaceMembershipInfo = {
|
|
28702
|
+
__typename?: 'TrelloWorkspaceMembershipInfo';
|
|
28703
|
+
deactivated?: Maybe<Scalars['Boolean']>;
|
|
28704
|
+
lastActive?: Maybe<Scalars['DateTime']>;
|
|
28660
28705
|
objectId: Scalars['ID'];
|
|
28706
|
+
type?: Maybe<TrelloWorkspaceMembershipType>;
|
|
28707
|
+
unconfirmed?: Maybe<Scalars['Boolean']>;
|
|
28708
|
+
};
|
|
28709
|
+
export declare enum TrelloWorkspaceMembershipType {
|
|
28710
|
+
Admin = "ADMIN",
|
|
28711
|
+
Normal = "NORMAL"
|
|
28712
|
+
}
|
|
28713
|
+
export type TrelloWorkspaceMembershipsConnection = {
|
|
28714
|
+
__typename?: 'TrelloWorkspaceMembershipsConnection';
|
|
28715
|
+
edges?: Maybe<Array<TrelloWorkspaceMembershipEdge>>;
|
|
28716
|
+
nodes?: Maybe<Array<TrelloMember>>;
|
|
28717
|
+
pageInfo: PageInfo;
|
|
28661
28718
|
};
|
|
28662
28719
|
export type TunnelDefinitionsInput = {
|
|
28663
28720
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|