@forge/cli-shared 3.23.1 → 3.23.2-next.1
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 +13 -0
- package/out/graphql/graphql-types.d.ts +37 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +14 -4
- package/out/ui/text.d.ts +0 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +0 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.23.2-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1548c5b: Don't silently fail when ngrok config path isn't set
|
|
8
|
+
|
|
9
|
+
## 3.23.2-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [0166203]
|
|
14
|
+
- @forge/manifest@5.5.2-next.0
|
|
15
|
+
|
|
3
16
|
## 3.23.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -23051,6 +23051,11 @@ export declare type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendatio
|
|
|
23051
23051
|
entityId: Scalars['ID']['output'];
|
|
23052
23052
|
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
23053
23053
|
};
|
|
23054
|
+
export declare type GrowthRecNonHydratedRecommendation = GrowthRecRecommendation & {
|
|
23055
|
+
__typename?: 'GrowthRecNonHydratedRecommendation';
|
|
23056
|
+
entityId: Scalars['ID']['output'];
|
|
23057
|
+
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
23058
|
+
};
|
|
23054
23059
|
export declare type GrowthRecProductRecommendation = GrowthRecRecommendation & {
|
|
23055
23060
|
__typename?: 'GrowthRecProductRecommendation';
|
|
23056
23061
|
entityId: Scalars['ID']['output'];
|
|
@@ -29159,6 +29164,7 @@ export declare type JiraMutation = {
|
|
|
29159
29164
|
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
29160
29165
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
29161
29166
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
29167
|
+
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
29162
29168
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
29163
29169
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
29164
29170
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -29323,6 +29329,9 @@ export declare type JiraMutationMakeTransitionArgs = {
|
|
|
29323
29329
|
export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
29324
29330
|
input: JiraMoveIssuesToFixVersionInput;
|
|
29325
29331
|
};
|
|
29332
|
+
export declare type JiraMutationRankIssuesArgs = {
|
|
29333
|
+
rankInput: JiraRankMutationInput;
|
|
29334
|
+
};
|
|
29326
29335
|
export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
29327
29336
|
input: JiraRemoveIssuesFromAllFixVersionsInput;
|
|
29328
29337
|
};
|
|
@@ -29589,11 +29598,14 @@ export declare type JiraNotificationPreferences = {
|
|
|
29589
29598
|
commentCreated?: Maybe<JiraNotificationPreference>;
|
|
29590
29599
|
commentDeleted?: Maybe<JiraNotificationPreference>;
|
|
29591
29600
|
commentEdited?: Maybe<JiraNotificationPreference>;
|
|
29592
|
-
commentReacted?: Maybe<JiraNotificationPreference>;
|
|
29593
29601
|
issueAssigned?: Maybe<JiraNotificationPreference>;
|
|
29602
|
+
issueCreated?: Maybe<JiraNotificationPreference>;
|
|
29594
29603
|
issueDeleted?: Maybe<JiraNotificationPreference>;
|
|
29595
29604
|
issueMentioned?: Maybe<JiraNotificationPreference>;
|
|
29605
|
+
issueMoved?: Maybe<JiraNotificationPreference>;
|
|
29596
29606
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
29607
|
+
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
29608
|
+
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
29597
29609
|
};
|
|
29598
29610
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
29599
29611
|
__typename?: 'JiraNotificationProjectPreferenceConnection';
|
|
@@ -29612,8 +29624,12 @@ export declare enum JiraNotificationType {
|
|
|
29612
29624
|
CommentDeleted = "COMMENT_DELETED",
|
|
29613
29625
|
CommentEdited = "COMMENT_EDITED",
|
|
29614
29626
|
IssueAssigned = "ISSUE_ASSIGNED",
|
|
29627
|
+
IssueCreated = "ISSUE_CREATED",
|
|
29615
29628
|
IssueDeleted = "ISSUE_DELETED",
|
|
29616
|
-
|
|
29629
|
+
IssueMoved = "ISSUE_MOVED",
|
|
29630
|
+
IssueUpdated = "ISSUE_UPDATED",
|
|
29631
|
+
MentionsCombined = "MENTIONS_COMBINED",
|
|
29632
|
+
WorklogCombined = "WORKLOG_COMBINED"
|
|
29617
29633
|
}
|
|
29618
29634
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
29619
29635
|
__typename?: 'JiraNumberField';
|
|
@@ -30403,6 +30419,7 @@ export declare enum JiraProjectActionType {
|
|
|
30403
30419
|
EditProjectConfig = "EDIT_PROJECT_CONFIG",
|
|
30404
30420
|
LinkIssues = "LINK_ISSUES",
|
|
30405
30421
|
ScheduleIssues = "SCHEDULE_ISSUES",
|
|
30422
|
+
TransitionIssues = "TRANSITION_ISSUES",
|
|
30406
30423
|
ViewIssues = "VIEW_ISSUES"
|
|
30407
30424
|
}
|
|
30408
30425
|
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
@@ -31476,6 +31493,20 @@ export declare type JiraRadioSelectFieldPayload = Payload & {
|
|
|
31476
31493
|
field?: Maybe<JiraRadioSelectField>;
|
|
31477
31494
|
success: Scalars['Boolean']['output'];
|
|
31478
31495
|
};
|
|
31496
|
+
export declare enum JiraRankMutationEdge {
|
|
31497
|
+
Bottom = "BOTTOM",
|
|
31498
|
+
Top = "TOP"
|
|
31499
|
+
}
|
|
31500
|
+
export declare type JiraRankMutationInput = {
|
|
31501
|
+
edge: JiraRankMutationEdge;
|
|
31502
|
+
issues: Array<Scalars['ID']['input']>;
|
|
31503
|
+
relativeToIssue: Scalars['ID']['input'];
|
|
31504
|
+
};
|
|
31505
|
+
export declare type JiraRankMutationPayload = Payload & {
|
|
31506
|
+
__typename?: 'JiraRankMutationPayload';
|
|
31507
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31508
|
+
success: Scalars['Boolean']['output'];
|
|
31509
|
+
};
|
|
31479
31510
|
export declare type JiraReleaseNotesConfiguration = {
|
|
31480
31511
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
31481
31512
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -40177,6 +40208,7 @@ export declare type SearchExternalFilter = {
|
|
|
40177
40208
|
export declare type SearchFilterInput = {
|
|
40178
40209
|
confluenceFilters?: InputMaybe<SearchConfluenceFilter>;
|
|
40179
40210
|
entities: Array<Scalars['String']['input']>;
|
|
40211
|
+
externalFilters?: InputMaybe<SearchExternalFilter>;
|
|
40180
40212
|
jiraFilters?: InputMaybe<SearchJiraFilter>;
|
|
40181
40213
|
locations: Array<Scalars['String']['input']>;
|
|
40182
40214
|
};
|
|
@@ -40813,7 +40845,7 @@ export declare type ShepherdCreateTestAlertPayload = Payload & {
|
|
|
40813
40845
|
success: Scalars['Boolean']['output'];
|
|
40814
40846
|
};
|
|
40815
40847
|
export declare type ShepherdCreateWebhookInput = {
|
|
40816
|
-
|
|
40848
|
+
authHeader?: InputMaybe<Scalars['String']['input']>;
|
|
40817
40849
|
callbackURL: Scalars['URL']['input'];
|
|
40818
40850
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
40819
40851
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
@@ -41212,6 +41244,7 @@ export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
|
41212
41244
|
success: Scalars['Boolean']['output'];
|
|
41213
41245
|
};
|
|
41214
41246
|
export declare type ShepherdUpdateWebhookInput = {
|
|
41247
|
+
authHeader?: InputMaybe<Scalars['String']['input']>;
|
|
41215
41248
|
callbackURL?: InputMaybe<Scalars['URL']['input']>;
|
|
41216
41249
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
41217
41250
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
@@ -41238,7 +41271,7 @@ export declare type ShepherdWebhookEdge = ShepherdSubscriptionEdge & {
|
|
|
41238
41271
|
};
|
|
41239
41272
|
export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription & {
|
|
41240
41273
|
__typename?: 'ShepherdWebhookSubscription';
|
|
41241
|
-
|
|
41274
|
+
authHeaderTruncated?: Maybe<Scalars['String']['output']>;
|
|
41242
41275
|
callbackURL: Scalars['String']['output'];
|
|
41243
41276
|
createdBy: Scalars['String']['output'];
|
|
41244
41277
|
createdOn: Scalars['DateTime']['output'];
|