@forge/cli-shared 3.14.0-next.5 → 3.14.0-next.6
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 +6 -0
- package/out/graphql/graphql-types.d.ts +157 -2
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +27 -6
- package/out/shared/cli-details.d.ts +8 -0
- package/out/shared/cli-details.d.ts.map +1 -0
- package/out/shared/cli-details.js +14 -0
- package/out/shared/error-handling.d.ts +6 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +5 -1
- package/out/shared/index.d.ts +1 -6
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +1 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -711,6 +711,7 @@ export declare type AppInstallationsByAppFilter = {
|
|
|
711
711
|
apps: InstallationsListFilterByApps;
|
|
712
712
|
appEnvironments?: Maybe<InstallationsListFilterByAppEnvironments>;
|
|
713
713
|
appInstallations?: Maybe<InstallationsListFilterByAppInstallations>;
|
|
714
|
+
includeSystemApps?: Maybe<Scalars['Boolean']>;
|
|
714
715
|
};
|
|
715
716
|
export declare type AppInstallationsByContextFilter = {
|
|
716
717
|
appInstallations: InstallationsListFilterByAppInstallationsWithCompulsoryContexts;
|
|
@@ -3741,23 +3742,49 @@ export declare type CompassScorecardAppliedToComponentsConnection = {
|
|
|
3741
3742
|
pageInfo: PageInfo;
|
|
3742
3743
|
totalCount?: Maybe<Scalars['Int']>;
|
|
3743
3744
|
};
|
|
3745
|
+
export declare type CompassScorecardAppliedToComponentsCriteriaFilter = {
|
|
3746
|
+
id: Scalars['ID'];
|
|
3747
|
+
statuses: Array<Scalars['ID']>;
|
|
3748
|
+
};
|
|
3744
3749
|
export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
3745
3750
|
__typename?: 'CompassScorecardAppliedToComponentsEdge';
|
|
3746
3751
|
cursor: Scalars['String'];
|
|
3747
3752
|
node?: Maybe<CompassComponent>;
|
|
3748
3753
|
};
|
|
3754
|
+
export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
3755
|
+
definition: Scalars['ID'];
|
|
3756
|
+
in: Array<CompassFieldValueInput>;
|
|
3757
|
+
};
|
|
3758
|
+
export declare type CompassScorecardAppliedToComponentsOwnerFilter = {
|
|
3759
|
+
in: Array<Scalars['ID']>;
|
|
3760
|
+
};
|
|
3749
3761
|
export declare type CompassScorecardAppliedToComponentsQuery = {
|
|
3750
3762
|
first?: Maybe<Scalars['Int']>;
|
|
3751
3763
|
after?: Maybe<Scalars['String']>;
|
|
3752
3764
|
filter?: Maybe<CompassScorecardAppliedToComponentsQueryFilter>;
|
|
3753
3765
|
};
|
|
3754
3766
|
export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
3755
|
-
score
|
|
3767
|
+
score?: Maybe<CompassScorecardAppliedToComponentsThresholdFilter>;
|
|
3768
|
+
types?: Maybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
3769
|
+
owners?: Maybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
3770
|
+
fields?: Maybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
3771
|
+
scoreRanges?: Maybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
|
|
3772
|
+
scorecardCriteria?: Maybe<Array<CompassScorecardAppliedToComponentsCriteriaFilter>>;
|
|
3756
3773
|
};
|
|
3757
3774
|
export declare type CompassScorecardAppliedToComponentsQueryResult = CompassScorecardAppliedToComponentsConnection | QueryError;
|
|
3775
|
+
export declare type CompassScorecardAppliedToComponentsScoreRange = {
|
|
3776
|
+
from: Scalars['Int'];
|
|
3777
|
+
to: Scalars['Int'];
|
|
3778
|
+
};
|
|
3779
|
+
export declare type CompassScorecardAppliedToComponentsScoreRangeFilter = {
|
|
3780
|
+
in: Array<CompassScorecardAppliedToComponentsScoreRange>;
|
|
3781
|
+
};
|
|
3758
3782
|
export declare type CompassScorecardAppliedToComponentsThresholdFilter = {
|
|
3759
3783
|
lt: Scalars['Int'];
|
|
3760
3784
|
};
|
|
3785
|
+
export declare type CompassScorecardAppliedToComponentsTypesFilter = {
|
|
3786
|
+
in: Array<Scalars['ID']>;
|
|
3787
|
+
};
|
|
3761
3788
|
export declare type CompassScorecardComponentStats = {
|
|
3762
3789
|
__typename?: 'CompassScorecardComponentStats';
|
|
3763
3790
|
componentStats?: Maybe<CompassComponentStats>;
|
|
@@ -3770,6 +3797,7 @@ export declare type CompassScorecardConnection = {
|
|
|
3770
3797
|
edges?: Maybe<Array<CompassScorecardEdge>>;
|
|
3771
3798
|
nodes?: Maybe<Array<CompassScorecard>>;
|
|
3772
3799
|
pageInfo: PageInfo;
|
|
3800
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
3773
3801
|
};
|
|
3774
3802
|
export declare type CompassScorecardCriteria = {
|
|
3775
3803
|
id: Scalars['ID'];
|
|
@@ -3808,6 +3836,18 @@ export declare enum CompassScorecardImportance {
|
|
|
3808
3836
|
Recommended = "RECOMMENDED",
|
|
3809
3837
|
UserDefined = "USER_DEFINED"
|
|
3810
3838
|
}
|
|
3839
|
+
export declare type CompassScorecardQueryFilter = {
|
|
3840
|
+
name?: Maybe<Scalars['String']>;
|
|
3841
|
+
componentTypeIds?: Maybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
3842
|
+
};
|
|
3843
|
+
export declare type CompassScorecardQuerySort = {
|
|
3844
|
+
name: Scalars['String'];
|
|
3845
|
+
order: CompassScorecardQuerySortOrder;
|
|
3846
|
+
};
|
|
3847
|
+
export declare enum CompassScorecardQuerySortOrder {
|
|
3848
|
+
Asc = "ASC",
|
|
3849
|
+
Desc = "DESC"
|
|
3850
|
+
}
|
|
3811
3851
|
export declare type CompassScorecardResult = CompassScorecard | QueryError;
|
|
3812
3852
|
export declare type CompassScorecardScore = {
|
|
3813
3853
|
__typename?: 'CompassScorecardScore';
|
|
@@ -3821,6 +3861,8 @@ export declare type CompassScorecardScoreQuery = {
|
|
|
3821
3861
|
export declare type CompassScorecardsQuery = {
|
|
3822
3862
|
first?: Maybe<Scalars['Int']>;
|
|
3823
3863
|
after?: Maybe<Scalars['String']>;
|
|
3864
|
+
filter?: Maybe<CompassScorecardQueryFilter>;
|
|
3865
|
+
sort?: Maybe<CompassScorecardQuerySort>;
|
|
3824
3866
|
};
|
|
3825
3867
|
export declare type CompassScorecardsQueryResult = CompassScorecardConnection | QueryError;
|
|
3826
3868
|
export declare type CompassSearchComponentConnection = {
|
|
@@ -12978,7 +13020,8 @@ export declare type JiraJqlVersionsArchivedArgs = {
|
|
|
12978
13020
|
before?: Maybe<Scalars['String']>;
|
|
12979
13021
|
};
|
|
12980
13022
|
export declare enum JiraJqlViewContext {
|
|
12981
|
-
Jwm = "JWM"
|
|
13023
|
+
Jwm = "JWM",
|
|
13024
|
+
ShadowRequest = "SHADOW_REQUEST"
|
|
12982
13025
|
}
|
|
12983
13026
|
export declare type JiraLabel = {
|
|
12984
13027
|
__typename?: 'JiraLabel';
|
|
@@ -14379,6 +14422,10 @@ export declare type JiraProjectListViewTemplateItem = {
|
|
|
14379
14422
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
14380
14423
|
title?: Maybe<Scalars['String']>;
|
|
14381
14424
|
key?: Maybe<Scalars['String']>;
|
|
14425
|
+
isProductLicensed?: Maybe<Scalars['Boolean']>;
|
|
14426
|
+
productKey?: Maybe<Scalars['String']>;
|
|
14427
|
+
description?: Maybe<Scalars['String']>;
|
|
14428
|
+
canCreate?: Maybe<Scalars['Boolean']>;
|
|
14382
14429
|
};
|
|
14383
14430
|
export declare type JiraProjectNavigationMetadata = JiraSoftwareProjectNavigationMetadata | JiraServiceManagementProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
14384
14431
|
export declare type JiraProjectOptions = {
|
|
@@ -14573,6 +14620,7 @@ export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
|
14573
14620
|
first?: Maybe<Scalars['Int']>;
|
|
14574
14621
|
after?: Maybe<Scalars['String']>;
|
|
14575
14622
|
cloudId: Scalars['ID'];
|
|
14623
|
+
experimentKey?: Maybe<Scalars['String']>;
|
|
14576
14624
|
};
|
|
14577
14625
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
14578
14626
|
cloudId: Scalars['ID'];
|
|
@@ -17925,6 +17973,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
17925
17973
|
};
|
|
17926
17974
|
export declare type Mutation = {
|
|
17927
17975
|
__typename?: 'Mutation';
|
|
17976
|
+
trello: TrelloMutationApi;
|
|
17928
17977
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
17929
17978
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
17930
17979
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
@@ -18666,6 +18715,9 @@ export declare type NewSplitIssueResponse = {
|
|
|
18666
18715
|
id: Scalars['ID'];
|
|
18667
18716
|
key: Scalars['String'];
|
|
18668
18717
|
};
|
|
18718
|
+
export declare enum NlpDisclaimer {
|
|
18719
|
+
WhoQuestion = "WHO_QUESTION"
|
|
18720
|
+
}
|
|
18669
18721
|
export declare enum NlpErrorState {
|
|
18670
18722
|
NoAnswer = "NO_ANSWER",
|
|
18671
18723
|
SubjectiveQuery = "SUBJECTIVE_QUERY",
|
|
@@ -18676,6 +18728,7 @@ export declare type NlpSearchResponse = {
|
|
|
18676
18728
|
nlpResults?: Maybe<Array<NlpSearchResult>>;
|
|
18677
18729
|
uniqueSources?: Maybe<Array<NlpSource>>;
|
|
18678
18730
|
errorState?: Maybe<NlpErrorState>;
|
|
18731
|
+
disclaimer?: Maybe<NlpDisclaimer>;
|
|
18679
18732
|
};
|
|
18680
18733
|
export declare type NlpSearchResult = {
|
|
18681
18734
|
__typename?: 'NlpSearchResult';
|
|
@@ -24458,6 +24511,7 @@ export declare type TrelloCard = Node & {
|
|
|
24458
24511
|
badges?: Maybe<TrelloCardBadges>;
|
|
24459
24512
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24460
24513
|
cover?: Maybe<TrelloCardCover>;
|
|
24514
|
+
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
24461
24515
|
description?: Maybe<Scalars['String']>;
|
|
24462
24516
|
due?: Maybe<TrelloCardDueInfo>;
|
|
24463
24517
|
id: Scalars['ID'];
|
|
@@ -24469,6 +24523,7 @@ export declare type TrelloCard = Node & {
|
|
|
24469
24523
|
location?: Maybe<TrelloCardLocation>;
|
|
24470
24524
|
name?: Maybe<Scalars['String']>;
|
|
24471
24525
|
objectId: Scalars['ID'];
|
|
24526
|
+
pluginData?: Maybe<TrelloPluginDataConnection>;
|
|
24472
24527
|
position?: Maybe<Scalars['Float']>;
|
|
24473
24528
|
role?: Maybe<TrelloCardRole>;
|
|
24474
24529
|
shortId?: Maybe<Scalars['Int']>;
|
|
@@ -24482,10 +24537,19 @@ export declare type TrelloCardAttachmentsArgs = {
|
|
|
24482
24537
|
after?: Maybe<Scalars['String']>;
|
|
24483
24538
|
first?: Maybe<Scalars['Int']>;
|
|
24484
24539
|
};
|
|
24540
|
+
export declare type TrelloCardCustomFieldItemsArgs = {
|
|
24541
|
+
after?: Maybe<Scalars['String']>;
|
|
24542
|
+
first?: Maybe<Scalars['Int']>;
|
|
24543
|
+
};
|
|
24485
24544
|
export declare type TrelloCardLabelsArgs = {
|
|
24486
24545
|
after?: Maybe<Scalars['String']>;
|
|
24487
24546
|
first?: Maybe<Scalars['Int']>;
|
|
24488
24547
|
};
|
|
24548
|
+
export declare type TrelloCardPluginDataArgs = {
|
|
24549
|
+
after?: Maybe<Scalars['String']>;
|
|
24550
|
+
filter?: Maybe<TrelloPluginDataFilterInput>;
|
|
24551
|
+
first?: Maybe<Scalars['Int']>;
|
|
24552
|
+
};
|
|
24489
24553
|
export declare type TrelloCardStickersArgs = {
|
|
24490
24554
|
after?: Maybe<Scalars['String']>;
|
|
24491
24555
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -24626,6 +24690,24 @@ export declare type TrelloCardViewer = {
|
|
|
24626
24690
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
24627
24691
|
voted?: Maybe<Scalars['Boolean']>;
|
|
24628
24692
|
};
|
|
24693
|
+
export declare type TrelloCustomFieldItem = {
|
|
24694
|
+
__typename?: 'TrelloCustomFieldItem';
|
|
24695
|
+
objectId: Scalars['ID'];
|
|
24696
|
+
};
|
|
24697
|
+
export declare type TrelloCustomFieldItemConnection = {
|
|
24698
|
+
__typename?: 'TrelloCustomFieldItemConnection';
|
|
24699
|
+
edges?: Maybe<Array<TrelloCustomFieldItemEdge>>;
|
|
24700
|
+
nodes?: Maybe<Array<TrelloCustomFieldItem>>;
|
|
24701
|
+
pageInfo: PageInfo;
|
|
24702
|
+
};
|
|
24703
|
+
export declare type TrelloCustomFieldItemEdge = {
|
|
24704
|
+
__typename?: 'TrelloCustomFieldItemEdge';
|
|
24705
|
+
cursor: Scalars['String'];
|
|
24706
|
+
node: TrelloCustomFieldItem;
|
|
24707
|
+
};
|
|
24708
|
+
export declare type TrelloHelloInput = {
|
|
24709
|
+
hello: Scalars['String'];
|
|
24710
|
+
};
|
|
24629
24711
|
export declare type TrelloImagePreview = {
|
|
24630
24712
|
__typename?: 'TrelloImagePreview';
|
|
24631
24713
|
bytes?: Maybe<Scalars['Float']>;
|
|
@@ -24745,10 +24827,49 @@ export declare type TrelloListViewer = {
|
|
|
24745
24827
|
__typename?: 'TrelloListViewer';
|
|
24746
24828
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
24747
24829
|
};
|
|
24830
|
+
export declare type TrelloMutationApi = {
|
|
24831
|
+
__typename?: 'TrelloMutationApi';
|
|
24832
|
+
addHello?: Maybe<GenericMutationResponse>;
|
|
24833
|
+
};
|
|
24834
|
+
export declare type TrelloMutationApiAddHelloArgs = {
|
|
24835
|
+
input: TrelloHelloInput;
|
|
24836
|
+
};
|
|
24748
24837
|
export declare type TrelloPlugin = {
|
|
24749
24838
|
__typename?: 'TrelloPlugin';
|
|
24750
24839
|
objectId: Scalars['ID'];
|
|
24751
24840
|
};
|
|
24841
|
+
export declare type TrelloPluginData = {
|
|
24842
|
+
__typename?: 'TrelloPluginData';
|
|
24843
|
+
access?: Maybe<TrelloPluginDataAccess>;
|
|
24844
|
+
objectId: Scalars['ID'];
|
|
24845
|
+
plugin?: Maybe<TrelloPlugin>;
|
|
24846
|
+
scope?: Maybe<TrelloPluginDataScope>;
|
|
24847
|
+
value?: Maybe<Scalars['String']>;
|
|
24848
|
+
};
|
|
24849
|
+
export declare enum TrelloPluginDataAccess {
|
|
24850
|
+
Private = "PRIVATE",
|
|
24851
|
+
Shared = "SHARED"
|
|
24852
|
+
}
|
|
24853
|
+
export declare type TrelloPluginDataConnection = {
|
|
24854
|
+
__typename?: 'TrelloPluginDataConnection';
|
|
24855
|
+
edges?: Maybe<Array<TrelloPluginDataEdge>>;
|
|
24856
|
+
nodes?: Maybe<Array<TrelloPluginData>>;
|
|
24857
|
+
pageInfo: PageInfo;
|
|
24858
|
+
};
|
|
24859
|
+
export declare type TrelloPluginDataEdge = {
|
|
24860
|
+
__typename?: 'TrelloPluginDataEdge';
|
|
24861
|
+
cursor: Scalars['String'];
|
|
24862
|
+
node: TrelloPluginData;
|
|
24863
|
+
};
|
|
24864
|
+
export declare type TrelloPluginDataFilterInput = {
|
|
24865
|
+
access?: Maybe<Scalars['String']>;
|
|
24866
|
+
plugins?: Maybe<Array<Scalars['ID']>>;
|
|
24867
|
+
};
|
|
24868
|
+
export declare enum TrelloPluginDataScope {
|
|
24869
|
+
Board = "BOARD",
|
|
24870
|
+
Card = "CARD",
|
|
24871
|
+
Organization = "ORGANIZATION"
|
|
24872
|
+
}
|
|
24752
24873
|
export declare type TrelloQueryApi = {
|
|
24753
24874
|
__typename?: 'TrelloQueryApi';
|
|
24754
24875
|
board?: Maybe<TrelloBoard>;
|
|
@@ -24759,6 +24880,7 @@ export declare type TrelloQueryApi = {
|
|
|
24759
24880
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
24760
24881
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
24761
24882
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
24883
|
+
myRecentCards?: Maybe<TrelloRecentCardConnection>;
|
|
24762
24884
|
};
|
|
24763
24885
|
export declare type TrelloQueryApiBoardArgs = {
|
|
24764
24886
|
id: Scalars['ID'];
|
|
@@ -24777,6 +24899,39 @@ export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
|
24777
24899
|
filter?: Maybe<TrelloTemplateGalleryFilterInput>;
|
|
24778
24900
|
first?: Maybe<Scalars['Int']>;
|
|
24779
24901
|
};
|
|
24902
|
+
export declare type TrelloQueryApiMyRecentCardsArgs = {
|
|
24903
|
+
accountId?: Maybe<Scalars['ID']>;
|
|
24904
|
+
first?: Maybe<Scalars['Int']>;
|
|
24905
|
+
after?: Maybe<Scalars['String']>;
|
|
24906
|
+
};
|
|
24907
|
+
export declare type TrelloRecentCard = Node & {
|
|
24908
|
+
__typename?: 'TrelloRecentCard';
|
|
24909
|
+
id: Scalars['ID'];
|
|
24910
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
24911
|
+
dueComplete?: Maybe<Scalars['Boolean']>;
|
|
24912
|
+
dateLastActivity?: Maybe<Scalars['DateTime']>;
|
|
24913
|
+
description?: Maybe<Scalars['String']>;
|
|
24914
|
+
name?: Maybe<Scalars['String']>;
|
|
24915
|
+
url?: Maybe<Scalars['URL']>;
|
|
24916
|
+
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
24917
|
+
board?: Maybe<TrelloBoard>;
|
|
24918
|
+
list?: Maybe<TrelloList>;
|
|
24919
|
+
card?: Maybe<TrelloCard>;
|
|
24920
|
+
listAri?: Maybe<Scalars['ID']>;
|
|
24921
|
+
cardAri?: Maybe<Scalars['ID']>;
|
|
24922
|
+
boardAri?: Maybe<Scalars['ID']>;
|
|
24923
|
+
};
|
|
24924
|
+
export declare type TrelloRecentCardConnection = {
|
|
24925
|
+
__typename?: 'TrelloRecentCardConnection';
|
|
24926
|
+
edges?: Maybe<Array<TrelloRecentCardEdge>>;
|
|
24927
|
+
nodes?: Maybe<Array<TrelloRecentCard>>;
|
|
24928
|
+
pageInfo: PageInfo;
|
|
24929
|
+
};
|
|
24930
|
+
export declare type TrelloRecentCardEdge = {
|
|
24931
|
+
__typename?: 'TrelloRecentCardEdge';
|
|
24932
|
+
cursor?: Maybe<Scalars['String']>;
|
|
24933
|
+
node?: Maybe<TrelloRecentCard>;
|
|
24934
|
+
};
|
|
24780
24935
|
export declare type TrelloScaleProps = {
|
|
24781
24936
|
__typename?: 'TrelloScaleProps';
|
|
24782
24937
|
height: Scalars['Int'];
|