@forge/cli-shared 3.14.0-next.4 → 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 +12 -0
- package/out/graphql/graphql-types.d.ts +194 -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/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.14.0-next.6
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2afc2fea: Add tunnel analytic events on errors
|
|
8
|
+
|
|
9
|
+
## 3.14.0-next.5
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- f00b749: Show additional message when using forge settings set
|
|
14
|
+
|
|
3
15
|
## 3.14.0-next.4
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -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';
|
|
@@ -13240,6 +13283,7 @@ export declare type JiraMutation = {
|
|
|
13240
13283
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
13241
13284
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
13242
13285
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
13286
|
+
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
13243
13287
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
13244
13288
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
13245
13289
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
@@ -13350,6 +13394,10 @@ export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
|
13350
13394
|
export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
13351
13395
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
13352
13396
|
};
|
|
13397
|
+
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
13398
|
+
cloudId: Scalars['ID'];
|
|
13399
|
+
id: Scalars['ID'];
|
|
13400
|
+
};
|
|
13353
13401
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
13354
13402
|
input: JiraSetIsFavouriteInput;
|
|
13355
13403
|
};
|
|
@@ -14374,6 +14422,10 @@ export declare type JiraProjectListViewTemplateItem = {
|
|
|
14374
14422
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
14375
14423
|
title?: Maybe<Scalars['String']>;
|
|
14376
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']>;
|
|
14377
14429
|
};
|
|
14378
14430
|
export declare type JiraProjectNavigationMetadata = JiraSoftwareProjectNavigationMetadata | JiraServiceManagementProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
14379
14431
|
export declare type JiraProjectOptions = {
|
|
@@ -14522,6 +14574,7 @@ export declare type JiraQuery = {
|
|
|
14522
14574
|
filter?: Maybe<JiraFilter>;
|
|
14523
14575
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
14524
14576
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
14577
|
+
allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
|
|
14525
14578
|
devOpsProviders?: Maybe<Array<Maybe<JiraDevOpsProvider>>>;
|
|
14526
14579
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
14527
14580
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
@@ -14567,6 +14620,7 @@ export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
|
14567
14620
|
first?: Maybe<Scalars['Int']>;
|
|
14568
14621
|
after?: Maybe<Scalars['String']>;
|
|
14569
14622
|
cloudId: Scalars['ID'];
|
|
14623
|
+
experimentKey?: Maybe<Scalars['String']>;
|
|
14570
14624
|
};
|
|
14571
14625
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
14572
14626
|
cloudId: Scalars['ID'];
|
|
@@ -14741,6 +14795,13 @@ export declare type JiraQuerySystemFiltersArgs = {
|
|
|
14741
14795
|
last?: Maybe<Scalars['Int']>;
|
|
14742
14796
|
before?: Maybe<Scalars['String']>;
|
|
14743
14797
|
};
|
|
14798
|
+
export declare type JiraQueryAllJiraUserBroadcastMessagesArgs = {
|
|
14799
|
+
cloudId: Scalars['ID'];
|
|
14800
|
+
first?: Maybe<Scalars['Int']>;
|
|
14801
|
+
last?: Maybe<Scalars['Int']>;
|
|
14802
|
+
after?: Maybe<Scalars['String']>;
|
|
14803
|
+
before?: Maybe<Scalars['String']>;
|
|
14804
|
+
};
|
|
14744
14805
|
export declare type JiraQueryDevOpsProvidersArgs = {
|
|
14745
14806
|
cloudId: Scalars['ID'];
|
|
14746
14807
|
filter?: Maybe<Array<JiraDevOpsCapability>>;
|
|
@@ -16647,6 +16708,30 @@ export declare type JiraUser = {
|
|
|
16647
16708
|
avatarUrl?: Maybe<Scalars['String']>;
|
|
16648
16709
|
email?: Maybe<Scalars['String']>;
|
|
16649
16710
|
};
|
|
16711
|
+
export declare type JiraUserBroadcastMessage = Node & {
|
|
16712
|
+
__typename?: 'JiraUserBroadcastMessage';
|
|
16713
|
+
id: Scalars['ID'];
|
|
16714
|
+
shouldDisplay?: Maybe<Scalars['Boolean']>;
|
|
16715
|
+
isDismissed?: Maybe<Scalars['Boolean']>;
|
|
16716
|
+
isUserTargeted?: Maybe<Scalars['Boolean']>;
|
|
16717
|
+
};
|
|
16718
|
+
export declare type JiraUserBroadcastMessageActionPayload = Payload & {
|
|
16719
|
+
__typename?: 'JiraUserBroadcastMessageActionPayload';
|
|
16720
|
+
userBroadcastMessage?: Maybe<JiraUserBroadcastMessage>;
|
|
16721
|
+
success: Scalars['Boolean'];
|
|
16722
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16723
|
+
};
|
|
16724
|
+
export declare type JiraUserBroadcastMessageConnection = HasTotal & HasPageInfo & {
|
|
16725
|
+
__typename?: 'JiraUserBroadcastMessageConnection';
|
|
16726
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
16727
|
+
pageInfo: PageInfo;
|
|
16728
|
+
edges?: Maybe<Array<Maybe<JiraUserBroadcastMessageEdge>>>;
|
|
16729
|
+
};
|
|
16730
|
+
export declare type JiraUserBroadcastMessageEdge = {
|
|
16731
|
+
__typename?: 'JiraUserBroadcastMessageEdge';
|
|
16732
|
+
node?: Maybe<JiraUserBroadcastMessage>;
|
|
16733
|
+
cursor: Scalars['String'];
|
|
16734
|
+
};
|
|
16650
16735
|
export declare type JiraUserConnection = {
|
|
16651
16736
|
__typename?: 'JiraUserConnection';
|
|
16652
16737
|
pageInfo: PageInfo;
|
|
@@ -17888,6 +17973,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
17888
17973
|
};
|
|
17889
17974
|
export declare type Mutation = {
|
|
17890
17975
|
__typename?: 'Mutation';
|
|
17976
|
+
trello: TrelloMutationApi;
|
|
17891
17977
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
17892
17978
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
17893
17979
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
@@ -18629,6 +18715,9 @@ export declare type NewSplitIssueResponse = {
|
|
|
18629
18715
|
id: Scalars['ID'];
|
|
18630
18716
|
key: Scalars['String'];
|
|
18631
18717
|
};
|
|
18718
|
+
export declare enum NlpDisclaimer {
|
|
18719
|
+
WhoQuestion = "WHO_QUESTION"
|
|
18720
|
+
}
|
|
18632
18721
|
export declare enum NlpErrorState {
|
|
18633
18722
|
NoAnswer = "NO_ANSWER",
|
|
18634
18723
|
SubjectiveQuery = "SUBJECTIVE_QUERY",
|
|
@@ -18639,6 +18728,7 @@ export declare type NlpSearchResponse = {
|
|
|
18639
18728
|
nlpResults?: Maybe<Array<NlpSearchResult>>;
|
|
18640
18729
|
uniqueSources?: Maybe<Array<NlpSource>>;
|
|
18641
18730
|
errorState?: Maybe<NlpErrorState>;
|
|
18731
|
+
disclaimer?: Maybe<NlpDisclaimer>;
|
|
18642
18732
|
};
|
|
18643
18733
|
export declare type NlpSearchResult = {
|
|
18644
18734
|
__typename?: 'NlpSearchResult';
|
|
@@ -24421,6 +24511,7 @@ export declare type TrelloCard = Node & {
|
|
|
24421
24511
|
badges?: Maybe<TrelloCardBadges>;
|
|
24422
24512
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24423
24513
|
cover?: Maybe<TrelloCardCover>;
|
|
24514
|
+
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
24424
24515
|
description?: Maybe<Scalars['String']>;
|
|
24425
24516
|
due?: Maybe<TrelloCardDueInfo>;
|
|
24426
24517
|
id: Scalars['ID'];
|
|
@@ -24432,6 +24523,7 @@ export declare type TrelloCard = Node & {
|
|
|
24432
24523
|
location?: Maybe<TrelloCardLocation>;
|
|
24433
24524
|
name?: Maybe<Scalars['String']>;
|
|
24434
24525
|
objectId: Scalars['ID'];
|
|
24526
|
+
pluginData?: Maybe<TrelloPluginDataConnection>;
|
|
24435
24527
|
position?: Maybe<Scalars['Float']>;
|
|
24436
24528
|
role?: Maybe<TrelloCardRole>;
|
|
24437
24529
|
shortId?: Maybe<Scalars['Int']>;
|
|
@@ -24445,10 +24537,19 @@ export declare type TrelloCardAttachmentsArgs = {
|
|
|
24445
24537
|
after?: Maybe<Scalars['String']>;
|
|
24446
24538
|
first?: Maybe<Scalars['Int']>;
|
|
24447
24539
|
};
|
|
24540
|
+
export declare type TrelloCardCustomFieldItemsArgs = {
|
|
24541
|
+
after?: Maybe<Scalars['String']>;
|
|
24542
|
+
first?: Maybe<Scalars['Int']>;
|
|
24543
|
+
};
|
|
24448
24544
|
export declare type TrelloCardLabelsArgs = {
|
|
24449
24545
|
after?: Maybe<Scalars['String']>;
|
|
24450
24546
|
first?: Maybe<Scalars['Int']>;
|
|
24451
24547
|
};
|
|
24548
|
+
export declare type TrelloCardPluginDataArgs = {
|
|
24549
|
+
after?: Maybe<Scalars['String']>;
|
|
24550
|
+
filter?: Maybe<TrelloPluginDataFilterInput>;
|
|
24551
|
+
first?: Maybe<Scalars['Int']>;
|
|
24552
|
+
};
|
|
24452
24553
|
export declare type TrelloCardStickersArgs = {
|
|
24453
24554
|
after?: Maybe<Scalars['String']>;
|
|
24454
24555
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -24589,6 +24690,24 @@ export declare type TrelloCardViewer = {
|
|
|
24589
24690
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
24590
24691
|
voted?: Maybe<Scalars['Boolean']>;
|
|
24591
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
|
+
};
|
|
24592
24711
|
export declare type TrelloImagePreview = {
|
|
24593
24712
|
__typename?: 'TrelloImagePreview';
|
|
24594
24713
|
bytes?: Maybe<Scalars['Float']>;
|
|
@@ -24708,10 +24827,49 @@ export declare type TrelloListViewer = {
|
|
|
24708
24827
|
__typename?: 'TrelloListViewer';
|
|
24709
24828
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
24710
24829
|
};
|
|
24830
|
+
export declare type TrelloMutationApi = {
|
|
24831
|
+
__typename?: 'TrelloMutationApi';
|
|
24832
|
+
addHello?: Maybe<GenericMutationResponse>;
|
|
24833
|
+
};
|
|
24834
|
+
export declare type TrelloMutationApiAddHelloArgs = {
|
|
24835
|
+
input: TrelloHelloInput;
|
|
24836
|
+
};
|
|
24711
24837
|
export declare type TrelloPlugin = {
|
|
24712
24838
|
__typename?: 'TrelloPlugin';
|
|
24713
24839
|
objectId: Scalars['ID'];
|
|
24714
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
|
+
}
|
|
24715
24873
|
export declare type TrelloQueryApi = {
|
|
24716
24874
|
__typename?: 'TrelloQueryApi';
|
|
24717
24875
|
board?: Maybe<TrelloBoard>;
|
|
@@ -24722,6 +24880,7 @@ export declare type TrelloQueryApi = {
|
|
|
24722
24880
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
24723
24881
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
24724
24882
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
24883
|
+
myRecentCards?: Maybe<TrelloRecentCardConnection>;
|
|
24725
24884
|
};
|
|
24726
24885
|
export declare type TrelloQueryApiBoardArgs = {
|
|
24727
24886
|
id: Scalars['ID'];
|
|
@@ -24740,6 +24899,39 @@ export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
|
24740
24899
|
filter?: Maybe<TrelloTemplateGalleryFilterInput>;
|
|
24741
24900
|
first?: Maybe<Scalars['Int']>;
|
|
24742
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
|
+
};
|
|
24743
24935
|
export declare type TrelloScaleProps = {
|
|
24744
24936
|
__typename?: 'TrelloScaleProps';
|
|
24745
24937
|
height: Scalars['Int'];
|