@forge/cli-shared 6.11.0-next.13 → 6.11.0-next.14
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,13 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.11.0-next.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c79bd9a: Add support for comparing 2 different environments in forge version CLI command
|
|
8
|
+
- Updated dependencies [290af69]
|
|
9
|
+
- @forge/manifest@9.3.0-next.7
|
|
10
|
+
|
|
3
11
|
## 6.11.0-next.13
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -32135,8 +32135,10 @@ export declare type GraphStore = {
|
|
|
32135
32135
|
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
32136
32136
|
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
32137
32137
|
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
32138
|
+
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
32138
32139
|
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
32139
32140
|
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
32141
|
+
userCreatedIssueInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueInverseConnection>;
|
|
32140
32142
|
userCreatedIssueWorklog?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogConnection>;
|
|
32141
32143
|
userCreatedIssueWorklogInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogInverseConnection>;
|
|
32142
32144
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
@@ -36050,6 +36052,13 @@ export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
|
36050
36052
|
id: Scalars['ID']['input'];
|
|
36051
36053
|
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
36052
36054
|
};
|
|
36055
|
+
export declare type GraphStoreUserCreatedIssueArgs = {
|
|
36056
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36057
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36058
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36059
|
+
id: Scalars['ID']['input'];
|
|
36060
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueSortInput>;
|
|
36061
|
+
};
|
|
36053
36062
|
export declare type GraphStoreUserCreatedIssueCommentArgs = {
|
|
36054
36063
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36055
36064
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36064,6 +36073,13 @@ export declare type GraphStoreUserCreatedIssueCommentInverseArgs = {
|
|
|
36064
36073
|
id: Scalars['ID']['input'];
|
|
36065
36074
|
sort?: InputMaybe<GraphStoreUserCreatedIssueCommentSortInput>;
|
|
36066
36075
|
};
|
|
36076
|
+
export declare type GraphStoreUserCreatedIssueInverseArgs = {
|
|
36077
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36078
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36079
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36080
|
+
id: Scalars['ID']['input'];
|
|
36081
|
+
sort?: InputMaybe<GraphStoreUserCreatedIssueSortInput>;
|
|
36082
|
+
};
|
|
36067
36083
|
export declare type GraphStoreUserCreatedIssueWorklogArgs = {
|
|
36068
36084
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36069
36085
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49702,6 +49718,34 @@ export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseEdge = {
|
|
|
49702
49718
|
};
|
|
49703
49719
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49704
49720
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
49721
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueConnection = HasPageInfo & {
|
|
49722
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueConnection';
|
|
49723
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueEdge>>>;
|
|
49724
|
+
pageInfo: PageInfo;
|
|
49725
|
+
};
|
|
49726
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueEdge = {
|
|
49727
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueEdge';
|
|
49728
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49729
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49730
|
+
id: Scalars['ID']['output'];
|
|
49731
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49732
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueUnion>;
|
|
49733
|
+
};
|
|
49734
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseConnection = HasPageInfo & {
|
|
49735
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueInverseConnection';
|
|
49736
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueInverseEdge>>>;
|
|
49737
|
+
pageInfo: PageInfo;
|
|
49738
|
+
};
|
|
49739
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseEdge = {
|
|
49740
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedIssueInverseEdge';
|
|
49741
|
+
createdAt: Scalars['DateTime']['output'];
|
|
49742
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
49743
|
+
id: Scalars['ID']['output'];
|
|
49744
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
49745
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedIssueInverseUnion>;
|
|
49746
|
+
};
|
|
49747
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49748
|
+
export declare type GraphStoreSimplifiedUserCreatedIssueUnion = JiraIssue;
|
|
49705
49749
|
export declare type GraphStoreSimplifiedUserCreatedIssueWorklogConnection = HasPageInfo & {
|
|
49706
49750
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueWorklogConnection';
|
|
49707
49751
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueWorklogEdge>>>;
|
|
@@ -52182,6 +52226,9 @@ export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
|
52182
52226
|
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
52183
52227
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52184
52228
|
};
|
|
52229
|
+
export declare type GraphStoreUserCreatedIssueSortInput = {
|
|
52230
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52231
|
+
};
|
|
52185
52232
|
export declare type GraphStoreUserCreatedIssueWorklogSortInput = {
|
|
52186
52233
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52187
52234
|
};
|
|
@@ -67070,6 +67117,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
67070
67117
|
id: Scalars['ID']['output'];
|
|
67071
67118
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
67072
67119
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
67120
|
+
mostRecent?: Maybe<JiraProject>;
|
|
67073
67121
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
67074
67122
|
recents?: Maybe<JiraProjectConnection>;
|
|
67075
67123
|
};
|
|
@@ -68957,6 +69005,15 @@ export declare enum JiraResourceUsageRecommendationStatus {
|
|
|
68957
69005
|
Obsolete = "OBSOLETE",
|
|
68958
69006
|
Trashed = "TRASHED"
|
|
68959
69007
|
}
|
|
69008
|
+
export declare type JiraRestoreGlobalCustomFieldsInput = {
|
|
69009
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
69010
|
+
};
|
|
69011
|
+
export declare type JiraRestoreGlobalCustomFieldsPayload = Payload & {
|
|
69012
|
+
__typename?: 'JiraRestoreGlobalCustomFieldsPayload';
|
|
69013
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69014
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
69015
|
+
success: Scalars['Boolean']['output'];
|
|
69016
|
+
};
|
|
68960
69017
|
export declare type JiraRestoreJourneyConfigurationInput = {
|
|
68961
69018
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
68962
69019
|
id: Scalars['ID']['input'];
|
|
@@ -76605,6 +76662,7 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
76605
76662
|
}
|
|
76606
76663
|
export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
76607
76664
|
appKey: Scalars['ID']['input'];
|
|
76665
|
+
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76608
76666
|
buildNumber: Scalars['ID']['input'];
|
|
76609
76667
|
compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
|
|
76610
76668
|
deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
|
|
@@ -76617,6 +76675,7 @@ export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
|
76617
76675
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76618
76676
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
76619
76677
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
76678
|
+
partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
|
|
76620
76679
|
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
76621
76680
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
76622
76681
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -77060,6 +77119,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
77060
77119
|
canViewPartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
77061
77120
|
canViewSalesReport: Scalars['Boolean']['output'];
|
|
77062
77121
|
canViewUsageReports: Scalars['Boolean']['output'];
|
|
77122
|
+
isMarketplaceReader: Scalars['Boolean']['output'];
|
|
77063
77123
|
isPartnerAdmin: Scalars['Boolean']['output'];
|
|
77064
77124
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
77065
77125
|
partnerId: Scalars['ID']['output'];
|
|
@@ -78596,10 +78656,12 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
78596
78656
|
createdDate: Scalars['String']['output'];
|
|
78597
78657
|
description?: Maybe<Scalars['String']['output']>;
|
|
78598
78658
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
78659
|
+
funding?: Maybe<MercuryChangeProposalFunding>;
|
|
78599
78660
|
id: Scalars['ID']['output'];
|
|
78600
78661
|
impact?: Maybe<MercuryChangeProposalImpact>;
|
|
78601
78662
|
name: Scalars['String']['output'];
|
|
78602
78663
|
owner?: Maybe<User>;
|
|
78664
|
+
positionDetails?: Maybe<MercuryChangeProposalPositionDetails>;
|
|
78603
78665
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
78604
78666
|
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
78605
78667
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
@@ -78649,10 +78711,18 @@ export declare type MercuryChangeProposalFundSummary = {
|
|
|
78649
78711
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78650
78712
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78651
78713
|
};
|
|
78714
|
+
export declare type MercuryChangeProposalFunding = {
|
|
78715
|
+
__typename?: 'MercuryChangeProposalFunding';
|
|
78716
|
+
fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78717
|
+
};
|
|
78652
78718
|
export declare type MercuryChangeProposalImpact = {
|
|
78653
78719
|
__typename?: 'MercuryChangeProposalImpact';
|
|
78654
78720
|
value: Scalars['Int']['output'];
|
|
78655
78721
|
};
|
|
78722
|
+
export declare type MercuryChangeProposalPositionDetails = {
|
|
78723
|
+
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
78724
|
+
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
78725
|
+
};
|
|
78656
78726
|
export declare type MercuryChangeProposalPositionSummary = {
|
|
78657
78727
|
__typename?: 'MercuryChangeProposalPositionSummary';
|
|
78658
78728
|
changeProposalId: Scalars['ID']['output'];
|
|
@@ -81435,6 +81505,7 @@ export declare type Mutation = {
|
|
|
81435
81505
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
81436
81506
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
81437
81507
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
81508
|
+
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
81438
81509
|
jira_setBoardIssueCardCover?: Maybe<JiraSetBoardIssueCardCoverPayload>;
|
|
81439
81510
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
81440
81511
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -82894,6 +82965,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
82894
82965
|
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
82895
82966
|
input: JiraReorderSidebarMenuItemInput;
|
|
82896
82967
|
};
|
|
82968
|
+
export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
|
|
82969
|
+
cloudId: Scalars['ID']['input'];
|
|
82970
|
+
input: JiraRestoreGlobalCustomFieldsInput;
|
|
82971
|
+
};
|
|
82897
82972
|
export declare type MutationJira_SetBoardIssueCardCoverArgs = {
|
|
82898
82973
|
input: JiraSetBoardIssueCardCoverInput;
|
|
82899
82974
|
};
|
|
@@ -90017,6 +90092,7 @@ export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
|
90017
90092
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
90018
90093
|
relativeId: Scalars['String']['output'];
|
|
90019
90094
|
sensitivityLevel: RadarSensitivityLevel;
|
|
90095
|
+
sourceField: Scalars['String']['output'];
|
|
90020
90096
|
syncStatus: RadarCustomFieldSyncStatus;
|
|
90021
90097
|
type: RadarFieldType;
|
|
90022
90098
|
};
|
|
@@ -92177,6 +92253,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
92177
92253
|
__typename?: 'SearchConfluencePageBlogAttachment';
|
|
92178
92254
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
92179
92255
|
confluenceEntity?: Maybe<SearchConfluenceEntity>;
|
|
92256
|
+
content?: Maybe<Array<Maybe<Content>>>;
|
|
92180
92257
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
92181
92258
|
description: Scalars['String']['output'];
|
|
92182
92259
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
@@ -92309,6 +92386,7 @@ export declare type SearchFilterInput = {
|
|
|
92309
92386
|
locations: Array<Scalars['String']['input']>;
|
|
92310
92387
|
mercuryFilters?: InputMaybe<SearchMercuryFilter>;
|
|
92311
92388
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
92389
|
+
trelloFilters?: InputMaybe<SearchTrelloFilter>;
|
|
92312
92390
|
};
|
|
92313
92391
|
export declare type SearchInterleaverScrapingResult = {
|
|
92314
92392
|
__typename?: 'SearchInterleaverScrapingResult';
|
|
@@ -92875,6 +92953,9 @@ export declare type SearchTimeseriesCount = {
|
|
|
92875
92953
|
__typename?: 'SearchTimeseriesCount';
|
|
92876
92954
|
nodes: Array<TimeseriesCountItem>;
|
|
92877
92955
|
};
|
|
92956
|
+
export declare type SearchTrelloFilter = {
|
|
92957
|
+
isRecentBias?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92958
|
+
};
|
|
92878
92959
|
export declare type SearchesByTerm = {
|
|
92879
92960
|
__typename?: 'SearchesByTerm';
|
|
92880
92961
|
nodes: Array<SearchesByTermItems>;
|
|
@@ -99114,6 +99195,49 @@ export declare type TrelloCardBadges = {
|
|
|
99114
99195
|
viewer?: Maybe<TrelloCardViewer>;
|
|
99115
99196
|
votes?: Maybe<Scalars['Int']['output']>;
|
|
99116
99197
|
};
|
|
99198
|
+
export declare type TrelloCardBatch = {
|
|
99199
|
+
__typename?: 'TrelloCardBatch';
|
|
99200
|
+
objectId: Scalars['ID']['output'];
|
|
99201
|
+
processed?: Maybe<Scalars['Int']['output']>;
|
|
99202
|
+
status?: Maybe<TrelloCardBatchStatus>;
|
|
99203
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
99204
|
+
};
|
|
99205
|
+
export declare type TrelloCardBatchJobPayload = Payload & {
|
|
99206
|
+
__typename?: 'TrelloCardBatchJobPayload';
|
|
99207
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99208
|
+
job?: Maybe<TrelloCardBatch>;
|
|
99209
|
+
success: Scalars['Boolean']['output'];
|
|
99210
|
+
};
|
|
99211
|
+
export declare type TrelloCardBatchScript = {
|
|
99212
|
+
commands?: InputMaybe<Array<TrelloCardCommand>>;
|
|
99213
|
+
};
|
|
99214
|
+
export declare type TrelloCardBatchSelection = {
|
|
99215
|
+
clauses?: InputMaybe<Array<TrelloCardClause>>;
|
|
99216
|
+
};
|
|
99217
|
+
export declare type TrelloCardBatchSpecificationInput = {
|
|
99218
|
+
boardId: Scalars['ID']['input'];
|
|
99219
|
+
script?: InputMaybe<TrelloCardBatchScript>;
|
|
99220
|
+
selection?: InputMaybe<TrelloCardBatchSelection>;
|
|
99221
|
+
};
|
|
99222
|
+
export declare enum TrelloCardBatchStatus {
|
|
99223
|
+
Completed = "COMPLETED",
|
|
99224
|
+
Executing = "EXECUTING",
|
|
99225
|
+
Failed = "FAILED",
|
|
99226
|
+
Pending = "PENDING"
|
|
99227
|
+
}
|
|
99228
|
+
export declare type TrelloCardClause = {
|
|
99229
|
+
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
99230
|
+
list?: InputMaybe<TrelloCardListClause>;
|
|
99231
|
+
};
|
|
99232
|
+
export declare type TrelloCardCloseCommand = {
|
|
99233
|
+
close: Scalars['Boolean']['input'];
|
|
99234
|
+
};
|
|
99235
|
+
export declare type TrelloCardClosedClause = {
|
|
99236
|
+
closed: Scalars['Boolean']['input'];
|
|
99237
|
+
};
|
|
99238
|
+
export declare type TrelloCardCommand = {
|
|
99239
|
+
close?: InputMaybe<TrelloCardCloseCommand>;
|
|
99240
|
+
};
|
|
99117
99241
|
export declare type TrelloCardConnection = {
|
|
99118
99242
|
__typename?: 'TrelloCardConnection';
|
|
99119
99243
|
edges?: Maybe<Array<TrelloCardEdge>>;
|
|
@@ -99218,6 +99342,9 @@ export declare type TrelloCardLimits = {
|
|
|
99218
99342
|
checklists?: Maybe<TrelloCardLimit>;
|
|
99219
99343
|
stickers?: Maybe<TrelloCardLimit>;
|
|
99220
99344
|
};
|
|
99345
|
+
export declare type TrelloCardListClause = {
|
|
99346
|
+
listId: Scalars['ID']['input'];
|
|
99347
|
+
};
|
|
99221
99348
|
export declare type TrelloCardLocation = {
|
|
99222
99349
|
__typename?: 'TrelloCardLocation';
|
|
99223
99350
|
address?: Maybe<Scalars['String']['output']>;
|
|
@@ -99856,6 +99983,7 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
99856
99983
|
export declare type TrelloMemberPrefs = {
|
|
99857
99984
|
__typename?: 'TrelloMemberPrefs';
|
|
99858
99985
|
colorBlind?: Maybe<Scalars['Boolean']['output']>;
|
|
99986
|
+
keyboardShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
99859
99987
|
};
|
|
99860
99988
|
export declare type TrelloMemberUpdated = {
|
|
99861
99989
|
__typename?: 'TrelloMemberUpdated';
|
|
@@ -99979,6 +100107,7 @@ export declare type TrelloMutationApi = {
|
|
|
99979
100107
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
99980
100108
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
99981
100109
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
100110
|
+
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
99982
100111
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
99983
100112
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
99984
100113
|
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
@@ -99988,6 +100117,7 @@ export declare type TrelloMutationApi = {
|
|
|
99988
100117
|
updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
|
|
99989
100118
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
99990
100119
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
100120
|
+
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
99991
100121
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
99992
100122
|
};
|
|
99993
100123
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
@@ -100026,6 +100156,9 @@ export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
|
100026
100156
|
export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
100027
100157
|
input: TrelloRemoveMemberFromWorkspaceInput;
|
|
100028
100158
|
};
|
|
100159
|
+
export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
100160
|
+
input: TrelloCardBatchSpecificationInput;
|
|
100161
|
+
};
|
|
100029
100162
|
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
100030
100163
|
input: TrelloUnarchiveCardInput;
|
|
100031
100164
|
};
|
|
@@ -100053,6 +100186,9 @@ export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
|
100053
100186
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
100054
100187
|
input: TrelloUpdateCardNameInput;
|
|
100055
100188
|
};
|
|
100189
|
+
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
100190
|
+
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
100191
|
+
};
|
|
100056
100192
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
100057
100193
|
input: TrelloWatchCardInput;
|
|
100058
100194
|
};
|
|
@@ -100489,6 +100625,7 @@ export declare type TrelloQueryApi = {
|
|
|
100489
100625
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
100490
100626
|
boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
|
|
100491
100627
|
card?: Maybe<TrelloCard>;
|
|
100628
|
+
cardBatch?: Maybe<TrelloCardBatch>;
|
|
100492
100629
|
echo?: Maybe<Scalars['String']['output']>;
|
|
100493
100630
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
100494
100631
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -100529,6 +100666,9 @@ export declare type TrelloQueryApiBoardMirrorCardInfoArgs = {
|
|
|
100529
100666
|
export declare type TrelloQueryApiCardArgs = {
|
|
100530
100667
|
id: Scalars['ID']['input'];
|
|
100531
100668
|
};
|
|
100669
|
+
export declare type TrelloQueryApiCardBatchArgs = {
|
|
100670
|
+
id: Scalars['ID']['input'];
|
|
100671
|
+
};
|
|
100532
100672
|
export declare type TrelloQueryApiEchosArgs = {
|
|
100533
100673
|
echo: Array<Scalars['String']['input']>;
|
|
100534
100674
|
};
|
|
@@ -100944,6 +101084,15 @@ export declare type TrelloUpdateCardNamePayload = Payload & {
|
|
|
100944
101084
|
errors?: Maybe<Array<MutationError>>;
|
|
100945
101085
|
success: Scalars['Boolean']['output'];
|
|
100946
101086
|
};
|
|
101087
|
+
export declare type TrelloUpdateKeyboardShortcutsPrefInput = {
|
|
101088
|
+
userId: Scalars['ID']['input'];
|
|
101089
|
+
value: Scalars['Boolean']['input'];
|
|
101090
|
+
};
|
|
101091
|
+
export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
101092
|
+
__typename?: 'TrelloUpdateKeyboardShortcutsPrefPayload';
|
|
101093
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101094
|
+
success: Scalars['Boolean']['output'];
|
|
101095
|
+
};
|
|
100947
101096
|
export declare type TrelloUploadedBackground = {
|
|
100948
101097
|
__typename?: 'TrelloUploadedBackground';
|
|
100949
101098
|
objectId: Scalars['ID']['output'];
|