@forge/cli-shared 3.20.4-next.3 → 3.20.4-next.4
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,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.4-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cde16c5: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/jest
|
|
10
|
+
|
|
11
|
+
- a52c60e: Bumping dependencies via Renovate:
|
|
12
|
+
|
|
13
|
+
- @types/node-fetch
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [cde16c5]
|
|
16
|
+
- Updated dependencies [a52c60e]
|
|
17
|
+
- @forge/manifest@5.0.1-next.2
|
|
18
|
+
|
|
3
19
|
## 3.20.4-next.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -2046,6 +2046,7 @@ export type BoardScope = Node & {
|
|
|
2046
2046
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
2047
2047
|
globalCardCreateAdditionalFields?: Maybe<GlobalCardCreateAdditionalFields>;
|
|
2048
2048
|
id: Scalars['ID']['output'];
|
|
2049
|
+
issues?: Maybe<HydratingJiraIssueConnection>;
|
|
2049
2050
|
jql?: Maybe<Scalars['String']['output']>;
|
|
2050
2051
|
name?: Maybe<Scalars['String']['output']>;
|
|
2051
2052
|
projectLocation: SoftwareProject;
|
|
@@ -2064,6 +2065,10 @@ export type BoardScopeFilteredCardIdsArgs = {
|
|
|
2064
2065
|
customFilterIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
2065
2066
|
issueIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
2066
2067
|
};
|
|
2068
|
+
export type BoardScopeIssuesArgs = {
|
|
2069
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2070
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2071
|
+
};
|
|
2067
2072
|
export type BoardScopeSprintArgs = {
|
|
2068
2073
|
sprintId: Scalars['ID']['input'];
|
|
2069
2074
|
};
|
|
@@ -2749,12 +2754,17 @@ export type Column = {
|
|
|
2749
2754
|
id?: Maybe<Scalars['ID']['output']>;
|
|
2750
2755
|
isDone: Scalars['Boolean']['output'];
|
|
2751
2756
|
isInitial: Scalars['Boolean']['output'];
|
|
2757
|
+
issues?: Maybe<HydratingJiraIssueConnection>;
|
|
2752
2758
|
maxCardCount?: Maybe<Scalars['Int']['output']>;
|
|
2753
2759
|
name?: Maybe<Scalars['String']['output']>;
|
|
2754
2760
|
};
|
|
2755
2761
|
export type ColumnCardsArgs = {
|
|
2756
2762
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2757
2763
|
};
|
|
2764
|
+
export type ColumnIssuesArgs = {
|
|
2765
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2766
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
2767
|
+
};
|
|
2758
2768
|
export type ColumnConfigSwimlane = {
|
|
2759
2769
|
__typename?: 'ColumnConfigSwimlane';
|
|
2760
2770
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -3005,6 +3015,7 @@ export type CompassCatalogMutationApi = {
|
|
|
3005
3015
|
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
3006
3016
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
3007
3017
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
3018
|
+
deleteIncomingWebhook?: Maybe<CompassDeleteIncomingWebhookPayload>;
|
|
3008
3019
|
deleteMetricDefinition?: Maybe<CompassDeleteMetricDefinitionPayload>;
|
|
3009
3020
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
3010
3021
|
deleteRelationship?: Maybe<DeleteCompassRelationshipPayload>;
|
|
@@ -3132,6 +3143,9 @@ export type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
|
3132
3143
|
export type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
3133
3144
|
input: DeleteEventSourceInput;
|
|
3134
3145
|
};
|
|
3146
|
+
export type CompassCatalogMutationApiDeleteIncomingWebhookArgs = {
|
|
3147
|
+
input: CompassDeleteIncomingWebhookInput;
|
|
3148
|
+
};
|
|
3135
3149
|
export type CompassCatalogMutationApiDeleteMetricDefinitionArgs = {
|
|
3136
3150
|
input: CompassDeleteMetricDefinitionInput;
|
|
3137
3151
|
};
|
|
@@ -3979,6 +3993,16 @@ export type CompassDeleteExternalAliasInput = {
|
|
|
3979
3993
|
externalId: Scalars['ID']['input'];
|
|
3980
3994
|
externalSource: Scalars['ID']['input'];
|
|
3981
3995
|
};
|
|
3996
|
+
export type CompassDeleteIncomingWebhookInput = {
|
|
3997
|
+
cloudId: Scalars['ID']['input'];
|
|
3998
|
+
id: Scalars['ID']['input'];
|
|
3999
|
+
};
|
|
4000
|
+
export type CompassDeleteIncomingWebhookPayload = Payload & {
|
|
4001
|
+
__typename?: 'CompassDeleteIncomingWebhookPayload';
|
|
4002
|
+
deletedIncomingWebhookId?: Maybe<Scalars['ID']['output']>;
|
|
4003
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4004
|
+
success: Scalars['Boolean']['output'];
|
|
4005
|
+
};
|
|
3982
4006
|
export type CompassDeleteMetricDefinitionInput = {
|
|
3983
4007
|
id: Scalars['ID']['input'];
|
|
3984
4008
|
};
|
|
@@ -13047,6 +13071,7 @@ export declare enum HelpObjectStoreHelpObjectType {
|
|
|
13047
13071
|
export type HelpObjectStoreIcon = {
|
|
13048
13072
|
__typename?: 'HelpObjectStoreIcon';
|
|
13049
13073
|
iconUrl: Scalars['URL']['output'];
|
|
13074
|
+
iconUrlV2: Scalars['String']['output'];
|
|
13050
13075
|
};
|
|
13051
13076
|
export declare enum HelpObjectStoreJsmEntityType {
|
|
13052
13077
|
Article = "ARTICLE",
|
|
@@ -13251,6 +13276,16 @@ export type HostedStorage = {
|
|
|
13251
13276
|
classifications?: Maybe<Array<Classification>>;
|
|
13252
13277
|
locations?: Maybe<Array<Scalars['String']['output']>>;
|
|
13253
13278
|
};
|
|
13279
|
+
export type HydratingJiraIssueConnection = {
|
|
13280
|
+
__typename?: 'HydratingJiraIssueConnection';
|
|
13281
|
+
edges: Array<HydratingJiraIssueEdge>;
|
|
13282
|
+
pageInfo: PageInfo;
|
|
13283
|
+
};
|
|
13284
|
+
export type HydratingJiraIssueEdge = {
|
|
13285
|
+
__typename?: 'HydratingJiraIssueEdge';
|
|
13286
|
+
cursor: Scalars['String']['output'];
|
|
13287
|
+
node?: Maybe<JiraIssue>;
|
|
13288
|
+
};
|
|
13254
13289
|
export type Icon = {
|
|
13255
13290
|
__typename?: 'Icon';
|
|
13256
13291
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -13504,19 +13539,19 @@ export type InsightsNextBestTask = {
|
|
|
13504
13539
|
title?: Maybe<Scalars['String']['output']>;
|
|
13505
13540
|
url?: Maybe<Scalars['String']['output']>;
|
|
13506
13541
|
};
|
|
13507
|
-
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails |
|
|
13508
|
-
export type
|
|
13509
|
-
__typename?: '
|
|
13510
|
-
approvalsCount?: Maybe<Scalars['Int']['output']>;
|
|
13542
|
+
export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails;
|
|
13543
|
+
export type InsightsPullRequestNeedsWorkDetails = {
|
|
13544
|
+
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
13511
13545
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13512
13546
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13547
|
+
needsWorkCount?: Maybe<Scalars['Int']['output']>;
|
|
13513
13548
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13514
13549
|
};
|
|
13515
|
-
export type
|
|
13516
|
-
__typename?: '
|
|
13550
|
+
export type InsightsPullRequestReviewDetails = {
|
|
13551
|
+
__typename?: 'InsightsPullRequestReviewDetails';
|
|
13552
|
+
approvalsCount?: Maybe<Scalars['Int']['output']>;
|
|
13517
13553
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
13518
13554
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
13519
|
-
needsWorkCount?: Maybe<Scalars['Int']['output']>;
|
|
13520
13555
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
13521
13556
|
};
|
|
13522
13557
|
export declare enum InsightsTaskType {
|
|
@@ -16007,6 +16042,10 @@ export type JiraGroupGrantTypeValue = Node & {
|
|
|
16007
16042
|
export type JiraGroupInput = {
|
|
16008
16043
|
groupName: Scalars['ID']['input'];
|
|
16009
16044
|
};
|
|
16045
|
+
export declare enum JiraGroupsContext {
|
|
16046
|
+
Group = "GROUP",
|
|
16047
|
+
User = "USER"
|
|
16048
|
+
}
|
|
16010
16049
|
export type JiraHierarchyConfigError = {
|
|
16011
16050
|
__typename?: 'JiraHierarchyConfigError';
|
|
16012
16051
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -17152,6 +17191,7 @@ export type JiraJqlBuilderRecentlyUsedUsersArgs = {
|
|
|
17152
17191
|
export type JiraJqlBuilderSuggestedGroupsArgs = {
|
|
17153
17192
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17154
17193
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
17194
|
+
context?: InputMaybe<JiraGroupsContext>;
|
|
17155
17195
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17156
17196
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
17157
17197
|
};
|
|
@@ -18171,6 +18211,20 @@ export type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload = Paylo
|
|
|
18171
18211
|
export type JiraNaturalLanguageToJqlInput = {
|
|
18172
18212
|
naturalLanguageInput: Scalars['String']['input'];
|
|
18173
18213
|
};
|
|
18214
|
+
export type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
18215
|
+
__typename?: 'JiraNavigationUIStateUserProperty';
|
|
18216
|
+
id: Scalars['ID']['output'];
|
|
18217
|
+
isLeftSidebarCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
18218
|
+
leftSidebarWidth?: Maybe<Scalars['Int']['output']>;
|
|
18219
|
+
propertyKey?: Maybe<Scalars['String']['output']>;
|
|
18220
|
+
rightPanels?: Maybe<JiraRightPanelStateConnection>;
|
|
18221
|
+
};
|
|
18222
|
+
export type JiraNavigationUiStateUserPropertyRightPanelsArgs = {
|
|
18223
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
18224
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
18225
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18226
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
18227
|
+
};
|
|
18174
18228
|
export type JiraNotificationChannel = {
|
|
18175
18229
|
__typename?: 'JiraNotificationChannel';
|
|
18176
18230
|
channel?: Maybe<JiraNotificationChannelType>;
|
|
@@ -19233,6 +19287,16 @@ export type JiraProjectInput = {
|
|
|
19233
19287
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
19234
19288
|
projectId: Scalars['ID']['input'];
|
|
19235
19289
|
};
|
|
19290
|
+
export declare enum JiraProjectListRightPanelState {
|
|
19291
|
+
Closed = "CLOSED",
|
|
19292
|
+
Open = "OPEN"
|
|
19293
|
+
}
|
|
19294
|
+
export type JiraProjectListRightPanelStateMutationPayload = Payload & {
|
|
19295
|
+
__typename?: 'JiraProjectListRightPanelStateMutationPayload';
|
|
19296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19297
|
+
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
19298
|
+
success: Scalars['Boolean']['output'];
|
|
19299
|
+
};
|
|
19236
19300
|
export type JiraProjectListViewTemplateConnection = {
|
|
19237
19301
|
__typename?: 'JiraProjectListViewTemplateConnection';
|
|
19238
19302
|
edges?: Maybe<Array<Maybe<JiraProjectListViewTemplateEdge>>>;
|
|
@@ -19443,6 +19507,7 @@ export type JiraQuery = {
|
|
|
19443
19507
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
19444
19508
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
19445
19509
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
19510
|
+
navigationUIState?: Maybe<JiraNavigationUiStateUserProperty>;
|
|
19446
19511
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
19447
19512
|
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
19448
19513
|
permission?: Maybe<JiraPermission>;
|
|
@@ -19806,6 +19871,9 @@ export type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
19806
19871
|
cloudId: Scalars['ID']['input'];
|
|
19807
19872
|
input: JiraNaturalLanguageToJqlInput;
|
|
19808
19873
|
};
|
|
19874
|
+
export type JiraQueryNavigationUiStateArgs = {
|
|
19875
|
+
cloudId: Scalars['ID']['input'];
|
|
19876
|
+
};
|
|
19809
19877
|
export type JiraQueryNotificationGlobalPreferenceArgs = {
|
|
19810
19878
|
cloudId: Scalars['ID']['input'];
|
|
19811
19879
|
};
|
|
@@ -20335,6 +20403,24 @@ export type JiraRichTextInput = {
|
|
|
20335
20403
|
adfValue?: InputMaybe<Scalars['JSON']['input']>;
|
|
20336
20404
|
wikiText?: InputMaybe<Scalars['String']['input']>;
|
|
20337
20405
|
};
|
|
20406
|
+
export type JiraRightPanelState = {
|
|
20407
|
+
__typename?: 'JiraRightPanelState';
|
|
20408
|
+
isCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
20409
|
+
isMinimised?: Maybe<Scalars['Boolean']['output']>;
|
|
20410
|
+
panelId?: Maybe<Scalars['ID']['output']>;
|
|
20411
|
+
width?: Maybe<Scalars['Int']['output']>;
|
|
20412
|
+
};
|
|
20413
|
+
export type JiraRightPanelStateConnection = {
|
|
20414
|
+
__typename?: 'JiraRightPanelStateConnection';
|
|
20415
|
+
edges?: Maybe<Array<Maybe<JiraRightPanelStateEdge>>>;
|
|
20416
|
+
pageInfo: PageInfo;
|
|
20417
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20418
|
+
};
|
|
20419
|
+
export type JiraRightPanelStateEdge = {
|
|
20420
|
+
__typename?: 'JiraRightPanelStateEdge';
|
|
20421
|
+
cursor: Scalars['String']['output'];
|
|
20422
|
+
node?: Maybe<JiraRightPanelState>;
|
|
20423
|
+
};
|
|
20338
20424
|
export type JiraRole = Node & {
|
|
20339
20425
|
__typename?: 'JiraRole';
|
|
20340
20426
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -22289,6 +22375,7 @@ export type JiraUserPreferences = {
|
|
|
22289
22375
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
22290
22376
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
22291
22377
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
22378
|
+
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
22292
22379
|
};
|
|
22293
22380
|
export type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
22294
22381
|
projectKey: Scalars['String']['input'];
|
|
@@ -22298,6 +22385,7 @@ export type JiraUserPreferencesMutation = {
|
|
|
22298
22385
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
22299
22386
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
22300
22387
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
22388
|
+
setProjectListRightPanelState?: Maybe<JiraProjectListRightPanelStateMutationPayload>;
|
|
22301
22389
|
};
|
|
22302
22390
|
export type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
22303
22391
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
@@ -22308,6 +22396,9 @@ export type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
|
22308
22396
|
export type JiraUserPreferencesMutationSetNaturalLanguageSpotlightTourEnabledArgs = {
|
|
22309
22397
|
isEnabled: Scalars['Boolean']['input'];
|
|
22310
22398
|
};
|
|
22399
|
+
export type JiraUserPreferencesMutationSetProjectListRightPanelStateArgs = {
|
|
22400
|
+
state?: InputMaybe<JiraProjectListRightPanelState>;
|
|
22401
|
+
};
|
|
22311
22402
|
export type JiraUserSegmentation = {
|
|
22312
22403
|
__typename?: 'JiraUserSegmentation';
|
|
22313
22404
|
role?: Maybe<Scalars['String']['output']>;
|
|
@@ -27050,6 +27141,16 @@ export type RoadmapAddLevelOneIssueTypeHealthcheckResolution = {
|
|
|
27050
27141
|
create?: InputMaybe<RoadmapCreateLevelOneIssueType>;
|
|
27051
27142
|
promote?: InputMaybe<RoadmapPromoteLevelOneIssueType>;
|
|
27052
27143
|
};
|
|
27144
|
+
export type RoadmapAriGoalDetails = {
|
|
27145
|
+
__typename?: 'RoadmapAriGoalDetails';
|
|
27146
|
+
ari: Scalars['String']['output'];
|
|
27147
|
+
goal?: Maybe<TownsquareGoal>;
|
|
27148
|
+
issueIds: Array<Scalars['Long']['output']>;
|
|
27149
|
+
};
|
|
27150
|
+
export type RoadmapAriGoals = {
|
|
27151
|
+
__typename?: 'RoadmapAriGoals';
|
|
27152
|
+
goals?: Maybe<Array<RoadmapAriGoalDetails>>;
|
|
27153
|
+
};
|
|
27053
27154
|
export type RoadmapBoardConfiguration = {
|
|
27054
27155
|
__typename?: 'RoadmapBoardConfiguration';
|
|
27055
27156
|
childIssuePlanningMode?: Maybe<RoadmapChildIssuePlanningMode>;
|
|
@@ -27633,6 +27734,7 @@ export type RoadmapsMutationUpdateRoadmapSettingsArgs = {
|
|
|
27633
27734
|
};
|
|
27634
27735
|
export type RoadmapsQuery = {
|
|
27635
27736
|
__typename?: 'RoadmapsQuery';
|
|
27737
|
+
roadmapAriGoals?: Maybe<RoadmapAriGoals>;
|
|
27636
27738
|
roadmapDeriveFields: Array<Maybe<RoadmapField>>;
|
|
27637
27739
|
roadmapFilterConfiguration?: Maybe<RoadmapFilterConfiguration>;
|
|
27638
27740
|
roadmapFilterItems: Array<Scalars['ID']['output']>;
|
|
@@ -27641,6 +27743,9 @@ export type RoadmapsQuery = {
|
|
|
27641
27743
|
roadmapItemByIds?: Maybe<Array<Maybe<RoadmapItem>>>;
|
|
27642
27744
|
roadmapSubtasksByIds?: Maybe<RoadmapSubtasksWithStatusCategories>;
|
|
27643
27745
|
};
|
|
27746
|
+
export type RoadmapsQueryRoadmapAriGoalsArgs = {
|
|
27747
|
+
sourceARI: Scalars['ID']['input'];
|
|
27748
|
+
};
|
|
27644
27749
|
export type RoadmapsQueryRoadmapDeriveFieldsArgs = {
|
|
27645
27750
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
27646
27751
|
jqlContexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -30335,6 +30440,7 @@ export type ToolchainAssociateEntitiesInput = {
|
|
|
30335
30440
|
};
|
|
30336
30441
|
export type ToolchainAssociateEntitiesPayload = Payload & {
|
|
30337
30442
|
__typename?: 'ToolchainAssociateEntitiesPayload';
|
|
30443
|
+
associatedEntities?: Maybe<Array<ToolchainAssociatedEntity>>;
|
|
30338
30444
|
entities?: Maybe<Array<ToolchainAssociatedEntity>>;
|
|
30339
30445
|
errors?: Maybe<Array<MutationError>>;
|
|
30340
30446
|
success: Scalars['Boolean']['output'];
|
|
@@ -30995,6 +31101,7 @@ export type TrelloBoardPrefs = {
|
|
|
30995
31101
|
cardAging?: Maybe<Scalars['String']['output']>;
|
|
30996
31102
|
cardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
30997
31103
|
comments?: Maybe<Scalars['String']['output']>;
|
|
31104
|
+
hiddenPowerUpBoardButtons?: Maybe<Array<TrelloPowerUp>>;
|
|
30998
31105
|
hideVotes?: Maybe<Scalars['Boolean']['output']>;
|
|
30999
31106
|
invitations?: Maybe<Scalars['String']['output']>;
|
|
31000
31107
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -31044,10 +31151,23 @@ export type TrelloBoardUpdatedDeltas = {
|
|
|
31044
31151
|
};
|
|
31045
31152
|
export type TrelloBoardViewer = {
|
|
31046
31153
|
__typename?: 'TrelloBoardViewer';
|
|
31154
|
+
calendarKey?: Maybe<Scalars['String']['output']>;
|
|
31155
|
+
email?: Maybe<TrelloBoardViewerEmail>;
|
|
31047
31156
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
31157
|
+
sidebar?: Maybe<TrelloBoardViewerSidebar>;
|
|
31048
31158
|
starred: Scalars['Boolean']['output'];
|
|
31049
31159
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
31050
31160
|
};
|
|
31161
|
+
export type TrelloBoardViewerEmail = {
|
|
31162
|
+
__typename?: 'TrelloBoardViewerEmail';
|
|
31163
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
31164
|
+
list?: Maybe<TrelloList>;
|
|
31165
|
+
position?: Maybe<Scalars['String']['output']>;
|
|
31166
|
+
};
|
|
31167
|
+
export type TrelloBoardViewerSidebar = {
|
|
31168
|
+
__typename?: 'TrelloBoardViewerSidebar';
|
|
31169
|
+
show?: Maybe<Scalars['Boolean']['output']>;
|
|
31170
|
+
};
|
|
31051
31171
|
export type TrelloCard = Node & {
|
|
31052
31172
|
__typename?: 'TrelloCard';
|
|
31053
31173
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
@@ -31538,6 +31658,12 @@ export type TrelloMember = Node & {
|
|
|
31538
31658
|
url?: Maybe<Scalars['String']['output']>;
|
|
31539
31659
|
user?: Maybe<User>;
|
|
31540
31660
|
username?: Maybe<Scalars['String']['output']>;
|
|
31661
|
+
workspaces?: Maybe<TrelloMemberWorkspaceConnection>;
|
|
31662
|
+
};
|
|
31663
|
+
export type TrelloMemberWorkspacesArgs = {
|
|
31664
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31665
|
+
filter: TrelloMemberWorkspaceFilter;
|
|
31666
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31541
31667
|
};
|
|
31542
31668
|
export type TrelloMemberConnection = {
|
|
31543
31669
|
__typename?: 'TrelloMemberConnection';
|
|
@@ -31556,6 +31682,21 @@ export type TrelloMemberNonPublicData = {
|
|
|
31556
31682
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
31557
31683
|
initials?: Maybe<Scalars['String']['output']>;
|
|
31558
31684
|
};
|
|
31685
|
+
export type TrelloMemberWorkspaceConnection = {
|
|
31686
|
+
__typename?: 'TrelloMemberWorkspaceConnection';
|
|
31687
|
+
edges?: Maybe<Array<TrelloMemberWorkspaceEdge>>;
|
|
31688
|
+
nodes?: Maybe<Array<TrelloWorkspace>>;
|
|
31689
|
+
pageInfo: PageInfo;
|
|
31690
|
+
};
|
|
31691
|
+
export type TrelloMemberWorkspaceEdge = {
|
|
31692
|
+
__typename?: 'TrelloMemberWorkspaceEdge';
|
|
31693
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
31694
|
+
node?: Maybe<TrelloWorkspace>;
|
|
31695
|
+
};
|
|
31696
|
+
export type TrelloMemberWorkspaceFilter = {
|
|
31697
|
+
membershipType: TrelloWorkspaceMembershipType;
|
|
31698
|
+
tier: TrelloWorkspaceTier;
|
|
31699
|
+
};
|
|
31559
31700
|
export type TrelloMutationApi = {
|
|
31560
31701
|
__typename?: 'TrelloMutationApi';
|
|
31561
31702
|
addHello?: Maybe<TrelloAddHelloPayload>;
|
|
@@ -31937,6 +32078,9 @@ export type TrelloWorkspacePrefs = {
|
|
|
31937
32078
|
orgInviteRestrict?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
31938
32079
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
31939
32080
|
};
|
|
32081
|
+
export declare enum TrelloWorkspaceTier {
|
|
32082
|
+
Paid = "PAID"
|
|
32083
|
+
}
|
|
31940
32084
|
export type TunnelDefinitionsInput = {
|
|
31941
32085
|
customUI?: InputMaybe<Array<InputMaybe<CustomUiTunnelDefinitionInput>>>;
|
|
31942
32086
|
faasTunnelUrl?: InputMaybe<Scalars['URL']['input']>;
|