@forge/cli-shared 3.14.0-next.5 → 3.14.0
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 +26 -0
- package/out/graphql/graphql-types.d.ts +165 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -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 +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 85bf4a85: Refactor and cleanup usages of environmentToOption
|
|
8
|
+
- fb00b34f: CLI selects bundler based on runtime type specified in manifest
|
|
9
|
+
- 2afc2fea: Add tunnel analytic events on errors
|
|
10
|
+
- f00b7492: Show additional message when using forge settings set
|
|
11
|
+
- 2c219665: Added pre deployment prompt and post deployment message if custom entities reindexing is in progress, improved storage index command and increased index limit from 5 to 7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 2517649d: Copy changes for simplified user consent
|
|
16
|
+
- 91b77cb7: Bumping dependencies via Renovate:
|
|
17
|
+
|
|
18
|
+
- @atlassian/xen-test-util
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [2c219665]
|
|
21
|
+
- @forge/manifest@4.15.0
|
|
22
|
+
|
|
23
|
+
## 3.14.0-next.6
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- 2afc2fea: Add tunnel analytic events on errors
|
|
28
|
+
|
|
3
29
|
## 3.14.0-next.5
|
|
4
30
|
|
|
5
31
|
### 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;
|
|
@@ -1243,7 +1244,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
1243
1244
|
id: Scalars['ID'];
|
|
1244
1245
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1245
1246
|
};
|
|
1246
|
-
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment;
|
|
1247
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | JiraProject | JiraVersion | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment;
|
|
1247
1248
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
1248
1249
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1249
1250
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -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 = {
|
|
@@ -7914,6 +7956,7 @@ export declare type DvcsQueryBitbucketWorkspacesLinkedToSiteArgs = {
|
|
|
7914
7956
|
export declare type EarliestOnboardedProjectForCloudId = {
|
|
7915
7957
|
__typename?: 'EarliestOnboardedProjectForCloudId';
|
|
7916
7958
|
datetime?: Maybe<Scalars['String']>;
|
|
7959
|
+
template?: Maybe<Scalars['String']>;
|
|
7917
7960
|
};
|
|
7918
7961
|
export declare type EarliestViewViewedForUser = {
|
|
7919
7962
|
__typename?: 'EarliestViewViewedForUser';
|
|
@@ -12978,7 +13021,8 @@ export declare type JiraJqlVersionsArchivedArgs = {
|
|
|
12978
13021
|
before?: Maybe<Scalars['String']>;
|
|
12979
13022
|
};
|
|
12980
13023
|
export declare enum JiraJqlViewContext {
|
|
12981
|
-
Jwm = "JWM"
|
|
13024
|
+
Jwm = "JWM",
|
|
13025
|
+
ShadowRequest = "SHADOW_REQUEST"
|
|
12982
13026
|
}
|
|
12983
13027
|
export declare type JiraLabel = {
|
|
12984
13028
|
__typename?: 'JiraLabel';
|
|
@@ -14379,6 +14423,10 @@ export declare type JiraProjectListViewTemplateItem = {
|
|
|
14379
14423
|
iconUrl?: Maybe<Scalars['URL']>;
|
|
14380
14424
|
title?: Maybe<Scalars['String']>;
|
|
14381
14425
|
key?: Maybe<Scalars['String']>;
|
|
14426
|
+
isProductLicensed?: Maybe<Scalars['Boolean']>;
|
|
14427
|
+
productKey?: Maybe<Scalars['String']>;
|
|
14428
|
+
description?: Maybe<Scalars['String']>;
|
|
14429
|
+
canCreate?: Maybe<Scalars['Boolean']>;
|
|
14382
14430
|
};
|
|
14383
14431
|
export declare type JiraProjectNavigationMetadata = JiraSoftwareProjectNavigationMetadata | JiraServiceManagementProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
14384
14432
|
export declare type JiraProjectOptions = {
|
|
@@ -14501,6 +14549,7 @@ export declare type JiraQuery = {
|
|
|
14501
14549
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
14502
14550
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
14503
14551
|
version?: Maybe<JiraVersionResult>;
|
|
14552
|
+
versionsByIds?: Maybe<Array<Maybe<JiraVersion>>>;
|
|
14504
14553
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
14505
14554
|
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
14506
14555
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']>;
|
|
@@ -14573,6 +14622,7 @@ export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
|
14573
14622
|
first?: Maybe<Scalars['Int']>;
|
|
14574
14623
|
after?: Maybe<Scalars['String']>;
|
|
14575
14624
|
cloudId: Scalars['ID'];
|
|
14625
|
+
experimentKey?: Maybe<Scalars['String']>;
|
|
14576
14626
|
};
|
|
14577
14627
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
14578
14628
|
cloudId: Scalars['ID'];
|
|
@@ -14627,6 +14677,9 @@ export declare type JiraQueryJiraProjectByKeyArgs = {
|
|
|
14627
14677
|
export declare type JiraQueryVersionArgs = {
|
|
14628
14678
|
id: Scalars['ID'];
|
|
14629
14679
|
};
|
|
14680
|
+
export declare type JiraQueryVersionsByIdsArgs = {
|
|
14681
|
+
ids: Array<Scalars['ID']>;
|
|
14682
|
+
};
|
|
14630
14683
|
export declare type JiraQueryVersionsForProjectArgs = {
|
|
14631
14684
|
jiraProjectId: Scalars['ID'];
|
|
14632
14685
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -16943,7 +16996,8 @@ export declare type JiraVersionDetailPageIssuesIssuesArgs = {
|
|
|
16943
16996
|
export declare enum JiraVersionDetailsCollapsedUi {
|
|
16944
16997
|
Description = "DESCRIPTION",
|
|
16945
16998
|
RelatedWork = "RELATED_WORK",
|
|
16946
|
-
Issues = "ISSUES"
|
|
16999
|
+
Issues = "ISSUES",
|
|
17000
|
+
ProgressCard = "PROGRESS_CARD"
|
|
16947
17001
|
}
|
|
16948
17002
|
export declare type JiraVersionDetailsCollapsedUisInput = {
|
|
16949
17003
|
collapsedUis: Array<JiraVersionDetailsCollapsedUi>;
|
|
@@ -17925,6 +17979,7 @@ export declare type MoveSprintUpResponse = MutationResponse & {
|
|
|
17925
17979
|
};
|
|
17926
17980
|
export declare type Mutation = {
|
|
17927
17981
|
__typename?: 'Mutation';
|
|
17982
|
+
trello: TrelloMutationApi;
|
|
17928
17983
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
17929
17984
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
17930
17985
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
@@ -18666,6 +18721,9 @@ export declare type NewSplitIssueResponse = {
|
|
|
18666
18721
|
id: Scalars['ID'];
|
|
18667
18722
|
key: Scalars['String'];
|
|
18668
18723
|
};
|
|
18724
|
+
export declare enum NlpDisclaimer {
|
|
18725
|
+
WhoQuestion = "WHO_QUESTION"
|
|
18726
|
+
}
|
|
18669
18727
|
export declare enum NlpErrorState {
|
|
18670
18728
|
NoAnswer = "NO_ANSWER",
|
|
18671
18729
|
SubjectiveQuery = "SUBJECTIVE_QUERY",
|
|
@@ -18676,6 +18734,7 @@ export declare type NlpSearchResponse = {
|
|
|
18676
18734
|
nlpResults?: Maybe<Array<NlpSearchResult>>;
|
|
18677
18735
|
uniqueSources?: Maybe<Array<NlpSource>>;
|
|
18678
18736
|
errorState?: Maybe<NlpErrorState>;
|
|
18737
|
+
disclaimer?: Maybe<NlpDisclaimer>;
|
|
18679
18738
|
};
|
|
18680
18739
|
export declare type NlpSearchResult = {
|
|
18681
18740
|
__typename?: 'NlpSearchResult';
|
|
@@ -24458,6 +24517,7 @@ export declare type TrelloCard = Node & {
|
|
|
24458
24517
|
badges?: Maybe<TrelloCardBadges>;
|
|
24459
24518
|
closed?: Maybe<Scalars['Boolean']>;
|
|
24460
24519
|
cover?: Maybe<TrelloCardCover>;
|
|
24520
|
+
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
24461
24521
|
description?: Maybe<Scalars['String']>;
|
|
24462
24522
|
due?: Maybe<TrelloCardDueInfo>;
|
|
24463
24523
|
id: Scalars['ID'];
|
|
@@ -24469,6 +24529,7 @@ export declare type TrelloCard = Node & {
|
|
|
24469
24529
|
location?: Maybe<TrelloCardLocation>;
|
|
24470
24530
|
name?: Maybe<Scalars['String']>;
|
|
24471
24531
|
objectId: Scalars['ID'];
|
|
24532
|
+
pluginData?: Maybe<TrelloPluginDataConnection>;
|
|
24472
24533
|
position?: Maybe<Scalars['Float']>;
|
|
24473
24534
|
role?: Maybe<TrelloCardRole>;
|
|
24474
24535
|
shortId?: Maybe<Scalars['Int']>;
|
|
@@ -24482,10 +24543,19 @@ export declare type TrelloCardAttachmentsArgs = {
|
|
|
24482
24543
|
after?: Maybe<Scalars['String']>;
|
|
24483
24544
|
first?: Maybe<Scalars['Int']>;
|
|
24484
24545
|
};
|
|
24546
|
+
export declare type TrelloCardCustomFieldItemsArgs = {
|
|
24547
|
+
after?: Maybe<Scalars['String']>;
|
|
24548
|
+
first?: Maybe<Scalars['Int']>;
|
|
24549
|
+
};
|
|
24485
24550
|
export declare type TrelloCardLabelsArgs = {
|
|
24486
24551
|
after?: Maybe<Scalars['String']>;
|
|
24487
24552
|
first?: Maybe<Scalars['Int']>;
|
|
24488
24553
|
};
|
|
24554
|
+
export declare type TrelloCardPluginDataArgs = {
|
|
24555
|
+
after?: Maybe<Scalars['String']>;
|
|
24556
|
+
filter?: Maybe<TrelloPluginDataFilterInput>;
|
|
24557
|
+
first?: Maybe<Scalars['Int']>;
|
|
24558
|
+
};
|
|
24489
24559
|
export declare type TrelloCardStickersArgs = {
|
|
24490
24560
|
after?: Maybe<Scalars['String']>;
|
|
24491
24561
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -24626,6 +24696,24 @@ export declare type TrelloCardViewer = {
|
|
|
24626
24696
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
24627
24697
|
voted?: Maybe<Scalars['Boolean']>;
|
|
24628
24698
|
};
|
|
24699
|
+
export declare type TrelloCustomFieldItem = {
|
|
24700
|
+
__typename?: 'TrelloCustomFieldItem';
|
|
24701
|
+
objectId: Scalars['ID'];
|
|
24702
|
+
};
|
|
24703
|
+
export declare type TrelloCustomFieldItemConnection = {
|
|
24704
|
+
__typename?: 'TrelloCustomFieldItemConnection';
|
|
24705
|
+
edges?: Maybe<Array<TrelloCustomFieldItemEdge>>;
|
|
24706
|
+
nodes?: Maybe<Array<TrelloCustomFieldItem>>;
|
|
24707
|
+
pageInfo: PageInfo;
|
|
24708
|
+
};
|
|
24709
|
+
export declare type TrelloCustomFieldItemEdge = {
|
|
24710
|
+
__typename?: 'TrelloCustomFieldItemEdge';
|
|
24711
|
+
cursor: Scalars['String'];
|
|
24712
|
+
node: TrelloCustomFieldItem;
|
|
24713
|
+
};
|
|
24714
|
+
export declare type TrelloHelloInput = {
|
|
24715
|
+
hello: Scalars['String'];
|
|
24716
|
+
};
|
|
24629
24717
|
export declare type TrelloImagePreview = {
|
|
24630
24718
|
__typename?: 'TrelloImagePreview';
|
|
24631
24719
|
bytes?: Maybe<Scalars['Float']>;
|
|
@@ -24745,10 +24833,49 @@ export declare type TrelloListViewer = {
|
|
|
24745
24833
|
__typename?: 'TrelloListViewer';
|
|
24746
24834
|
subscribed?: Maybe<Scalars['Boolean']>;
|
|
24747
24835
|
};
|
|
24836
|
+
export declare type TrelloMutationApi = {
|
|
24837
|
+
__typename?: 'TrelloMutationApi';
|
|
24838
|
+
addHello?: Maybe<GenericMutationResponse>;
|
|
24839
|
+
};
|
|
24840
|
+
export declare type TrelloMutationApiAddHelloArgs = {
|
|
24841
|
+
input: TrelloHelloInput;
|
|
24842
|
+
};
|
|
24748
24843
|
export declare type TrelloPlugin = {
|
|
24749
24844
|
__typename?: 'TrelloPlugin';
|
|
24750
24845
|
objectId: Scalars['ID'];
|
|
24751
24846
|
};
|
|
24847
|
+
export declare type TrelloPluginData = {
|
|
24848
|
+
__typename?: 'TrelloPluginData';
|
|
24849
|
+
access?: Maybe<TrelloPluginDataAccess>;
|
|
24850
|
+
objectId: Scalars['ID'];
|
|
24851
|
+
plugin?: Maybe<TrelloPlugin>;
|
|
24852
|
+
scope?: Maybe<TrelloPluginDataScope>;
|
|
24853
|
+
value?: Maybe<Scalars['String']>;
|
|
24854
|
+
};
|
|
24855
|
+
export declare enum TrelloPluginDataAccess {
|
|
24856
|
+
Private = "PRIVATE",
|
|
24857
|
+
Shared = "SHARED"
|
|
24858
|
+
}
|
|
24859
|
+
export declare type TrelloPluginDataConnection = {
|
|
24860
|
+
__typename?: 'TrelloPluginDataConnection';
|
|
24861
|
+
edges?: Maybe<Array<TrelloPluginDataEdge>>;
|
|
24862
|
+
nodes?: Maybe<Array<TrelloPluginData>>;
|
|
24863
|
+
pageInfo: PageInfo;
|
|
24864
|
+
};
|
|
24865
|
+
export declare type TrelloPluginDataEdge = {
|
|
24866
|
+
__typename?: 'TrelloPluginDataEdge';
|
|
24867
|
+
cursor: Scalars['String'];
|
|
24868
|
+
node: TrelloPluginData;
|
|
24869
|
+
};
|
|
24870
|
+
export declare type TrelloPluginDataFilterInput = {
|
|
24871
|
+
access?: Maybe<Scalars['String']>;
|
|
24872
|
+
plugins?: Maybe<Array<Scalars['ID']>>;
|
|
24873
|
+
};
|
|
24874
|
+
export declare enum TrelloPluginDataScope {
|
|
24875
|
+
Board = "BOARD",
|
|
24876
|
+
Card = "CARD",
|
|
24877
|
+
Organization = "ORGANIZATION"
|
|
24878
|
+
}
|
|
24752
24879
|
export declare type TrelloQueryApi = {
|
|
24753
24880
|
__typename?: 'TrelloQueryApi';
|
|
24754
24881
|
board?: Maybe<TrelloBoard>;
|
|
@@ -24759,6 +24886,7 @@ export declare type TrelloQueryApi = {
|
|
|
24759
24886
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
24760
24887
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
24761
24888
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
24889
|
+
myRecentCards?: Maybe<TrelloRecentCardConnection>;
|
|
24762
24890
|
};
|
|
24763
24891
|
export declare type TrelloQueryApiBoardArgs = {
|
|
24764
24892
|
id: Scalars['ID'];
|
|
@@ -24777,6 +24905,39 @@ export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
|
24777
24905
|
filter?: Maybe<TrelloTemplateGalleryFilterInput>;
|
|
24778
24906
|
first?: Maybe<Scalars['Int']>;
|
|
24779
24907
|
};
|
|
24908
|
+
export declare type TrelloQueryApiMyRecentCardsArgs = {
|
|
24909
|
+
accountId?: Maybe<Scalars['ID']>;
|
|
24910
|
+
first?: Maybe<Scalars['Int']>;
|
|
24911
|
+
after?: Maybe<Scalars['String']>;
|
|
24912
|
+
};
|
|
24913
|
+
export declare type TrelloRecentCard = Node & {
|
|
24914
|
+
__typename?: 'TrelloRecentCard';
|
|
24915
|
+
id: Scalars['ID'];
|
|
24916
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
24917
|
+
dueComplete?: Maybe<Scalars['Boolean']>;
|
|
24918
|
+
dateLastActivity?: Maybe<Scalars['DateTime']>;
|
|
24919
|
+
description?: Maybe<Scalars['String']>;
|
|
24920
|
+
name?: Maybe<Scalars['String']>;
|
|
24921
|
+
url?: Maybe<Scalars['URL']>;
|
|
24922
|
+
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
24923
|
+
board?: Maybe<TrelloBoard>;
|
|
24924
|
+
list?: Maybe<TrelloList>;
|
|
24925
|
+
card?: Maybe<TrelloCard>;
|
|
24926
|
+
listAri?: Maybe<Scalars['ID']>;
|
|
24927
|
+
cardAri?: Maybe<Scalars['ID']>;
|
|
24928
|
+
boardAri?: Maybe<Scalars['ID']>;
|
|
24929
|
+
};
|
|
24930
|
+
export declare type TrelloRecentCardConnection = {
|
|
24931
|
+
__typename?: 'TrelloRecentCardConnection';
|
|
24932
|
+
edges?: Maybe<Array<TrelloRecentCardEdge>>;
|
|
24933
|
+
nodes?: Maybe<Array<TrelloRecentCard>>;
|
|
24934
|
+
pageInfo: PageInfo;
|
|
24935
|
+
};
|
|
24936
|
+
export declare type TrelloRecentCardEdge = {
|
|
24937
|
+
__typename?: 'TrelloRecentCardEdge';
|
|
24938
|
+
cursor?: Maybe<Scalars['String']>;
|
|
24939
|
+
node?: Maybe<TrelloRecentCard>;
|
|
24940
|
+
};
|
|
24780
24941
|
export declare type TrelloScaleProps = {
|
|
24781
24942
|
__typename?: 'TrelloScaleProps';
|
|
24782
24943
|
height: Scalars['Int'];
|