@forge/cli-shared 3.11.3-next.0 → 3.11.3-next.2
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,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.11.3-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [05d6c05e]
|
|
8
|
+
- @forge/manifest@4.13.0-next.2
|
|
9
|
+
|
|
10
|
+
## 3.11.3-next.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [08c6f1a8]
|
|
15
|
+
- @forge/manifest@4.13.0-next.1
|
|
16
|
+
|
|
3
17
|
## 3.11.3-next.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -7802,6 +7802,7 @@ export declare type Extension = {
|
|
|
7802
7802
|
consentUrl?: Maybe<Scalars['String']>;
|
|
7803
7803
|
currentUserConsent?: Maybe<UserConsentExtension>;
|
|
7804
7804
|
requiresUserConsent?: Maybe<Scalars['Boolean']>;
|
|
7805
|
+
requiresAutoConsent?: Maybe<Scalars['Boolean']>;
|
|
7805
7806
|
};
|
|
7806
7807
|
export declare type ExtensionContext = {
|
|
7807
7808
|
__typename?: 'ExtensionContext';
|
|
@@ -8403,6 +8404,8 @@ export declare enum GrantCheckProduct {
|
|
|
8403
8404
|
}
|
|
8404
8405
|
export declare type Graph = {
|
|
8405
8406
|
__typename?: 'Graph';
|
|
8407
|
+
projectAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
8408
|
+
projectAssociatedDeployment?: Maybe<GraphJiraDeploymentConnection>;
|
|
8406
8409
|
issueAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
|
|
8407
8410
|
issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
|
|
8408
8411
|
issueAssociatedPrRelationship?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
|
|
@@ -8412,6 +8415,16 @@ export declare type Graph = {
|
|
|
8412
8415
|
sprintRetrospectivePageRelationship?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
|
|
8413
8416
|
sprintRetrospectivePageRelationshipInverse?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
|
|
8414
8417
|
};
|
|
8418
|
+
export declare type GraphProjectAssociatedPrArgs = {
|
|
8419
|
+
after?: Maybe<Scalars['String']>;
|
|
8420
|
+
first?: Maybe<Scalars['Int']>;
|
|
8421
|
+
from: Scalars['ID'];
|
|
8422
|
+
};
|
|
8423
|
+
export declare type GraphProjectAssociatedDeploymentArgs = {
|
|
8424
|
+
after?: Maybe<Scalars['String']>;
|
|
8425
|
+
first?: Maybe<Scalars['Int']>;
|
|
8426
|
+
from: Scalars['ID'];
|
|
8427
|
+
};
|
|
8415
8428
|
export declare type GraphIssueAssociatedPrArgs = {
|
|
8416
8429
|
after?: Maybe<Scalars['String']>;
|
|
8417
8430
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -8502,6 +8515,20 @@ export declare type GraphIssueAssociatedPrRelationshipEdge = {
|
|
|
8502
8515
|
cursor?: Maybe<Scalars['String']>;
|
|
8503
8516
|
node: GraphIssueAssociatedPrRelationship;
|
|
8504
8517
|
};
|
|
8518
|
+
export declare type GraphJiraDeployment = Node & {
|
|
8519
|
+
__typename?: 'GraphJiraDeployment';
|
|
8520
|
+
id: Scalars['ID'];
|
|
8521
|
+
};
|
|
8522
|
+
export declare type GraphJiraDeploymentConnection = {
|
|
8523
|
+
__typename?: 'GraphJiraDeploymentConnection';
|
|
8524
|
+
edges: Array<Maybe<GraphJiraDeploymentEdge>>;
|
|
8525
|
+
pageInfo: PageInfo;
|
|
8526
|
+
};
|
|
8527
|
+
export declare type GraphJiraDeploymentEdge = {
|
|
8528
|
+
__typename?: 'GraphJiraDeploymentEdge';
|
|
8529
|
+
cursor?: Maybe<Scalars['String']>;
|
|
8530
|
+
node: GraphJiraDeployment;
|
|
8531
|
+
};
|
|
8505
8532
|
export declare type GraphJiraIssue = Node & {
|
|
8506
8533
|
__typename?: 'GraphJiraIssue';
|
|
8507
8534
|
id: Scalars['ID'];
|
|
@@ -10708,6 +10735,11 @@ export declare type JiraFilterEdge = {
|
|
|
10708
10735
|
node?: Maybe<JiraFilter>;
|
|
10709
10736
|
cursor: Scalars['String'];
|
|
10710
10737
|
};
|
|
10738
|
+
export declare type JiraFilterEditGrantMutationErrorExtension = MutationErrorExtension & {
|
|
10739
|
+
__typename?: 'JiraFilterEditGrantMutationErrorExtension';
|
|
10740
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
10741
|
+
errorType?: Maybe<Scalars['String']>;
|
|
10742
|
+
};
|
|
10711
10743
|
export declare type JiraFilterEmailSubscription = Node & {
|
|
10712
10744
|
__typename?: 'JiraFilterEmailSubscription';
|
|
10713
10745
|
id: Scalars['ID'];
|
|
@@ -10746,6 +10778,11 @@ export declare type JiraFilterNameMutationErrorExtension = MutationErrorExtensio
|
|
|
10746
10778
|
errorType?: Maybe<Scalars['String']>;
|
|
10747
10779
|
};
|
|
10748
10780
|
export declare type JiraFilterResult = JiraCustomFilter | JiraSystemFilter | QueryError;
|
|
10781
|
+
export declare type JiraFilterShareGrantMutationErrorExtension = MutationErrorExtension & {
|
|
10782
|
+
__typename?: 'JiraFilterShareGrantMutationErrorExtension';
|
|
10783
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
10784
|
+
errorType?: Maybe<Scalars['String']>;
|
|
10785
|
+
};
|
|
10749
10786
|
export declare type JiraFlag = {
|
|
10750
10787
|
__typename?: 'JiraFlag';
|
|
10751
10788
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -11112,6 +11149,7 @@ export declare type JiraIssue = Node & {
|
|
|
11112
11149
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
11113
11150
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
11114
11151
|
errorRetrievingData?: Maybe<Scalars['Boolean']>;
|
|
11152
|
+
issueColorField?: Maybe<JiraColorField>;
|
|
11115
11153
|
storyPointsField?: Maybe<JiraNumberField>;
|
|
11116
11154
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
11117
11155
|
screenId?: Maybe<Scalars['Long']>;
|
|
@@ -15166,14 +15204,19 @@ export declare type JiraServiceManagementRequestTypeTemplate = {
|
|
|
15166
15204
|
formTemplateInternalId: Scalars['String'];
|
|
15167
15205
|
name?: Maybe<Scalars['String']>;
|
|
15168
15206
|
description?: Maybe<Scalars['String']>;
|
|
15169
|
-
groups?: Maybe<Array<
|
|
15207
|
+
groups?: Maybe<Array<JiraServiceManagementRequestTypeTemplateGroup>>;
|
|
15208
|
+
requestTypeIcon?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeIcon>;
|
|
15170
15209
|
previewImageUrl?: Maybe<Scalars['URL']>;
|
|
15171
15210
|
};
|
|
15172
15211
|
export declare type JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies = {
|
|
15173
15212
|
__typename?: 'JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies';
|
|
15174
15213
|
workflow?: Maybe<JiraServiceManagementRequestTypeTemplateWorkflow>;
|
|
15175
15214
|
requestTypeGroup?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeGroup>;
|
|
15176
|
-
|
|
15215
|
+
};
|
|
15216
|
+
export declare type JiraServiceManagementRequestTypeTemplateGroup = {
|
|
15217
|
+
__typename?: 'JiraServiceManagementRequestTypeTemplateGroup';
|
|
15218
|
+
groupKey: Scalars['String'];
|
|
15219
|
+
name?: Maybe<Scalars['String']>;
|
|
15177
15220
|
};
|
|
15178
15221
|
export declare type JiraServiceManagementRequestTypeTemplateRequestTypeGroup = {
|
|
15179
15222
|
__typename?: 'JiraServiceManagementRequestTypeTemplateRequestTypeGroup';
|
|
@@ -23465,7 +23508,7 @@ export declare type TransitionFilter = {
|
|
|
23465
23508
|
from: Scalars['String'];
|
|
23466
23509
|
to: Scalars['String'];
|
|
23467
23510
|
};
|
|
23468
|
-
export declare type TrelloBoard = {
|
|
23511
|
+
export declare type TrelloBoard = Node & {
|
|
23469
23512
|
__typename?: 'TrelloBoard';
|
|
23470
23513
|
closed: Scalars['Boolean'];
|
|
23471
23514
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
@@ -23486,17 +23529,23 @@ export declare type TrelloBoardListsArgs = {
|
|
|
23486
23529
|
};
|
|
23487
23530
|
export declare type TrelloBoardBackground = {
|
|
23488
23531
|
__typename?: 'TrelloBoardBackground';
|
|
23532
|
+
bottomColor?: Maybe<Scalars['String']>;
|
|
23533
|
+
brightness?: Maybe<Scalars['String']>;
|
|
23489
23534
|
color?: Maybe<Scalars['String']>;
|
|
23490
23535
|
image?: Maybe<Scalars['String']>;
|
|
23491
23536
|
imageScaled?: Maybe<Array<TrelloScaleProps>>;
|
|
23492
23537
|
tile: Scalars['Boolean'];
|
|
23538
|
+
topColor?: Maybe<Scalars['String']>;
|
|
23493
23539
|
};
|
|
23494
23540
|
export declare type TrelloBoardBackgroundUpdatedDeltas = {
|
|
23495
23541
|
__typename?: 'TrelloBoardBackgroundUpdatedDeltas';
|
|
23542
|
+
bottomColor?: Maybe<Scalars['Boolean']>;
|
|
23543
|
+
brightness?: Maybe<Scalars['Boolean']>;
|
|
23496
23544
|
color?: Maybe<Scalars['Boolean']>;
|
|
23497
23545
|
image?: Maybe<Scalars['Boolean']>;
|
|
23498
23546
|
imageScaled?: Maybe<Scalars['Boolean']>;
|
|
23499
23547
|
title?: Maybe<Scalars['Boolean']>;
|
|
23548
|
+
topColor?: Maybe<Scalars['Boolean']>;
|
|
23500
23549
|
};
|
|
23501
23550
|
export declare type TrelloBoardEdge = {
|
|
23502
23551
|
__typename?: 'TrelloBoardEdge';
|
|
@@ -23506,11 +23555,15 @@ export declare type TrelloBoardEdge = {
|
|
|
23506
23555
|
export declare type TrelloBoardPrefs = {
|
|
23507
23556
|
__typename?: 'TrelloBoardPrefs';
|
|
23508
23557
|
background: TrelloBoardBackground;
|
|
23558
|
+
canInvite?: Maybe<Scalars['Boolean']>;
|
|
23559
|
+
hideVotes?: Maybe<Scalars['Boolean']>;
|
|
23509
23560
|
isTemplate: Scalars['Boolean'];
|
|
23510
23561
|
};
|
|
23511
23562
|
export declare type TrelloBoardPrefsUpdatedDeltas = {
|
|
23512
23563
|
__typename?: 'TrelloBoardPrefsUpdatedDeltas';
|
|
23513
23564
|
background?: Maybe<TrelloBoardBackgroundUpdatedDeltas>;
|
|
23565
|
+
canInvite?: Maybe<Scalars['Boolean']>;
|
|
23566
|
+
hideVotes?: Maybe<Scalars['Boolean']>;
|
|
23514
23567
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
23515
23568
|
};
|
|
23516
23569
|
export declare type TrelloBoardUpdated = {
|
|
@@ -23533,7 +23586,7 @@ export declare type TrelloBoardViewer = {
|
|
|
23533
23586
|
lastSeenAt?: Maybe<Scalars['DateTime']>;
|
|
23534
23587
|
starred: Scalars['Boolean'];
|
|
23535
23588
|
};
|
|
23536
|
-
export declare type TrelloCard = {
|
|
23589
|
+
export declare type TrelloCard = Node & {
|
|
23537
23590
|
__typename?: 'TrelloCard';
|
|
23538
23591
|
closed?: Maybe<Scalars['Boolean']>;
|
|
23539
23592
|
description?: Maybe<Scalars['String']>;
|
|
@@ -23558,6 +23611,11 @@ export declare type TrelloCardStickersArgs = {
|
|
|
23558
23611
|
after?: Maybe<Scalars['String']>;
|
|
23559
23612
|
first?: Maybe<Scalars['Int']>;
|
|
23560
23613
|
};
|
|
23614
|
+
export declare type TrelloCardCoordinates = {
|
|
23615
|
+
__typename?: 'TrelloCardCoordinates';
|
|
23616
|
+
latitude: Scalars['Float'];
|
|
23617
|
+
longitude: Scalars['Float'];
|
|
23618
|
+
};
|
|
23561
23619
|
export declare type TrelloCardDueInfo = {
|
|
23562
23620
|
__typename?: 'TrelloCardDueInfo';
|
|
23563
23621
|
at?: Maybe<Scalars['DateTime']>;
|
|
@@ -23577,6 +23635,7 @@ export declare type TrelloCardLimits = {
|
|
|
23577
23635
|
export declare type TrelloCardLocation = {
|
|
23578
23636
|
__typename?: 'TrelloCardLocation';
|
|
23579
23637
|
address?: Maybe<Scalars['String']>;
|
|
23638
|
+
coordinates?: Maybe<TrelloCardCoordinates>;
|
|
23580
23639
|
name?: Maybe<Scalars['String']>;
|
|
23581
23640
|
};
|
|
23582
23641
|
export declare enum TrelloCardRole {
|
|
@@ -23592,7 +23651,7 @@ export declare type TrelloLimitProps = {
|
|
|
23592
23651
|
status: Scalars['String'];
|
|
23593
23652
|
warnAt: Scalars['Int'];
|
|
23594
23653
|
};
|
|
23595
|
-
export declare type TrelloList = {
|
|
23654
|
+
export declare type TrelloList = Node & {
|
|
23596
23655
|
__typename?: 'TrelloList';
|
|
23597
23656
|
board?: Maybe<TrelloBoard>;
|
|
23598
23657
|
closed: Scalars['Boolean'];
|
|
@@ -23631,6 +23690,7 @@ export declare type TrelloListUpdated = {
|
|
|
23631
23690
|
id: Scalars['ID'];
|
|
23632
23691
|
name?: Maybe<Scalars['String']>;
|
|
23633
23692
|
position?: Maybe<Scalars['Float']>;
|
|
23693
|
+
softLimit?: Maybe<Scalars['Int']>;
|
|
23634
23694
|
};
|
|
23635
23695
|
export declare type TrelloListUpdatedConnection = {
|
|
23636
23696
|
__typename?: 'TrelloListUpdatedConnection';
|
|
@@ -23645,6 +23705,7 @@ export declare type TrelloListUpdatedDeltas = {
|
|
|
23645
23705
|
closed?: Maybe<Scalars['Boolean']>;
|
|
23646
23706
|
name?: Maybe<Scalars['Boolean']>;
|
|
23647
23707
|
position?: Maybe<Scalars['Boolean']>;
|
|
23708
|
+
softLimit?: Maybe<Scalars['Boolean']>;
|
|
23648
23709
|
};
|
|
23649
23710
|
export declare type TrelloListViewer = {
|
|
23650
23711
|
__typename?: 'TrelloListViewer';
|
|
@@ -23686,6 +23747,7 @@ export declare type TrelloScaleProps = {
|
|
|
23686
23747
|
};
|
|
23687
23748
|
export declare type TrelloSticker = {
|
|
23688
23749
|
__typename?: 'TrelloSticker';
|
|
23750
|
+
image?: Maybe<Scalars['String']>;
|
|
23689
23751
|
left?: Maybe<Scalars['Float']>;
|
|
23690
23752
|
objectId: Scalars['ID'];
|
|
23691
23753
|
rotate?: Maybe<Scalars['Float']>;
|
|
@@ -23750,7 +23812,7 @@ export declare type TrelloTemplateGalleryLanguage = {
|
|
|
23750
23812
|
locale: Scalars['String'];
|
|
23751
23813
|
localizedDescription: Scalars['String'];
|
|
23752
23814
|
};
|
|
23753
|
-
export declare type TrelloWorkspace = {
|
|
23815
|
+
export declare type TrelloWorkspace = Node & {
|
|
23754
23816
|
__typename?: 'TrelloWorkspace';
|
|
23755
23817
|
displayName: Scalars['String'];
|
|
23756
23818
|
id: Scalars['ID'];
|