@forge/cli-shared 6.11.0-next.13-experimental-c6e5f04 → 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,29 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 6.11.0-next.13-experimental-c6e5f04
4
-
5
- ### Minor Changes
6
-
7
- - d86ca2b: Migrate runtime deprecation check from @forge/manifest to @forge/cli
3
+ ## 6.11.0-next.14
8
4
 
9
5
  ### Patch Changes
10
6
 
11
- - 6444f47: added new build command
12
- - 6db64a3: Improve build tag validation
13
- - 9a2ca12: Added new callout for buildsByApp
14
- - 2a30889: Remove environment flag for build command
15
- - f6ec33c: added createdby column in buildlist
16
- - e746b9d: Add preview message to forge build command
17
- - ddbe1f9: make environmentKey optional for build
18
- - Updated dependencies [d86ca2b]
19
- - Updated dependencies [a56ca61]
20
- - Updated dependencies [8bd52d6]
21
- - Updated dependencies [43832a8]
22
- - Updated dependencies [743bbdc]
23
- - Updated dependencies [065b6a2]
24
- - Updated dependencies [a891abf]
25
- - Updated dependencies [439551a]
26
- - @forge/manifest@9.3.0-next.6-experimental-c6e5f04
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
27
10
 
28
11
  ## 6.11.0-next.13
29
12
 
@@ -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
  };
@@ -78608,10 +78656,12 @@ export declare type MercuryChangeProposal = Node & {
78608
78656
  createdDate: Scalars['String']['output'];
78609
78657
  description?: Maybe<Scalars['String']['output']>;
78610
78658
  focusArea?: Maybe<MercuryFocusArea>;
78659
+ funding?: Maybe<MercuryChangeProposalFunding>;
78611
78660
  id: Scalars['ID']['output'];
78612
78661
  impact?: Maybe<MercuryChangeProposalImpact>;
78613
78662
  name: Scalars['String']['output'];
78614
78663
  owner?: Maybe<User>;
78664
+ positionDetails?: Maybe<MercuryChangeProposalPositionDetails>;
78615
78665
  status?: Maybe<MercuryChangeProposalStatus>;
78616
78666
  statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
78617
78667
  strategicEvent?: Maybe<MercuryStrategicEvent>;
@@ -78661,10 +78711,18 @@ export declare type MercuryChangeProposalFundSummary = {
78661
78711
  laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
78662
78712
  nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
78663
78713
  };
78714
+ export declare type MercuryChangeProposalFunding = {
78715
+ __typename?: 'MercuryChangeProposalFunding';
78716
+ fundsRequested?: Maybe<Scalars['BigDecimal']['output']>;
78717
+ };
78664
78718
  export declare type MercuryChangeProposalImpact = {
78665
78719
  __typename?: 'MercuryChangeProposalImpact';
78666
78720
  value: Scalars['Int']['output'];
78667
78721
  };
78722
+ export declare type MercuryChangeProposalPositionDetails = {
78723
+ __typename?: 'MercuryChangeProposalPositionDetails';
78724
+ positionsRequested?: Maybe<Scalars['Int']['output']>;
78725
+ };
78668
78726
  export declare type MercuryChangeProposalPositionSummary = {
78669
78727
  __typename?: 'MercuryChangeProposalPositionSummary';
78670
78728
  changeProposalId: Scalars['ID']['output'];
@@ -90034,6 +90092,7 @@ export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
90034
90092
  isHidden?: Maybe<Scalars['Boolean']['output']>;
90035
90093
  relativeId: Scalars['String']['output'];
90036
90094
  sensitivityLevel: RadarSensitivityLevel;
90095
+ sourceField: Scalars['String']['output'];
90037
90096
  syncStatus: RadarCustomFieldSyncStatus;
90038
90097
  type: RadarFieldType;
90039
90098
  };
@@ -92194,6 +92253,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
92194
92253
  __typename?: 'SearchConfluencePageBlogAttachment';
92195
92254
  bodyText?: Maybe<Scalars['String']['output']>;
92196
92255
  confluenceEntity?: Maybe<SearchConfluenceEntity>;
92256
+ content?: Maybe<Array<Maybe<Content>>>;
92197
92257
  createdDate?: Maybe<Scalars['DateTime']['output']>;
92198
92258
  description: Scalars['String']['output'];
92199
92259
  entityId?: Maybe<Scalars['String']['output']>;
@@ -92326,6 +92386,7 @@ export declare type SearchFilterInput = {
92326
92386
  locations: Array<Scalars['String']['input']>;
92327
92387
  mercuryFilters?: InputMaybe<SearchMercuryFilter>;
92328
92388
  thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
92389
+ trelloFilters?: InputMaybe<SearchTrelloFilter>;
92329
92390
  };
92330
92391
  export declare type SearchInterleaverScrapingResult = {
92331
92392
  __typename?: 'SearchInterleaverScrapingResult';
@@ -92892,6 +92953,9 @@ export declare type SearchTimeseriesCount = {
92892
92953
  __typename?: 'SearchTimeseriesCount';
92893
92954
  nodes: Array<TimeseriesCountItem>;
92894
92955
  };
92956
+ export declare type SearchTrelloFilter = {
92957
+ isRecentBias?: InputMaybe<Scalars['Boolean']['input']>;
92958
+ };
92895
92959
  export declare type SearchesByTerm = {
92896
92960
  __typename?: 'SearchesByTerm';
92897
92961
  nodes: Array<SearchesByTermItems>;
@@ -99131,6 +99195,49 @@ export declare type TrelloCardBadges = {
99131
99195
  viewer?: Maybe<TrelloCardViewer>;
99132
99196
  votes?: Maybe<Scalars['Int']['output']>;
99133
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
+ };
99134
99241
  export declare type TrelloCardConnection = {
99135
99242
  __typename?: 'TrelloCardConnection';
99136
99243
  edges?: Maybe<Array<TrelloCardEdge>>;
@@ -99235,6 +99342,9 @@ export declare type TrelloCardLimits = {
99235
99342
  checklists?: Maybe<TrelloCardLimit>;
99236
99343
  stickers?: Maybe<TrelloCardLimit>;
99237
99344
  };
99345
+ export declare type TrelloCardListClause = {
99346
+ listId: Scalars['ID']['input'];
99347
+ };
99238
99348
  export declare type TrelloCardLocation = {
99239
99349
  __typename?: 'TrelloCardLocation';
99240
99350
  address?: Maybe<Scalars['String']['output']>;
@@ -99873,6 +99983,7 @@ export declare type TrelloMemberNonPublicData = {
99873
99983
  export declare type TrelloMemberPrefs = {
99874
99984
  __typename?: 'TrelloMemberPrefs';
99875
99985
  colorBlind?: Maybe<Scalars['Boolean']['output']>;
99986
+ keyboardShortcutsEnabled?: Maybe<Scalars['Boolean']['output']>;
99876
99987
  };
99877
99988
  export declare type TrelloMemberUpdated = {
99878
99989
  __typename?: 'TrelloMemberUpdated';
@@ -99996,6 +100107,7 @@ export declare type TrelloMutationApi = {
99996
100107
  removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
99997
100108
  removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
99998
100109
  removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
100110
+ submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
99999
100111
  unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
100000
100112
  unwatchCard?: Maybe<TrelloWatchCardPayload>;
100001
100113
  updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
@@ -100005,6 +100117,7 @@ export declare type TrelloMutationApi = {
100005
100117
  updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
100006
100118
  updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
100007
100119
  updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
100120
+ updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
100008
100121
  watchCard?: Maybe<TrelloWatchCardPayload>;
100009
100122
  };
100010
100123
  export declare type TrelloMutationApiAddMemberToCardArgs = {
@@ -100043,6 +100156,9 @@ export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
100043
100156
  export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
100044
100157
  input: TrelloRemoveMemberFromWorkspaceInput;
100045
100158
  };
100159
+ export declare type TrelloMutationApiSubmitCardBatchToBoardArgs = {
100160
+ input: TrelloCardBatchSpecificationInput;
100161
+ };
100046
100162
  export declare type TrelloMutationApiUnarchiveCardArgs = {
100047
100163
  input: TrelloUnarchiveCardInput;
100048
100164
  };
@@ -100070,6 +100186,9 @@ export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
100070
100186
  export declare type TrelloMutationApiUpdateCardNameArgs = {
100071
100187
  input: TrelloUpdateCardNameInput;
100072
100188
  };
100189
+ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
100190
+ input: TrelloUpdateKeyboardShortcutsPrefInput;
100191
+ };
100073
100192
  export declare type TrelloMutationApiWatchCardArgs = {
100074
100193
  input: TrelloWatchCardInput;
100075
100194
  };
@@ -100506,6 +100625,7 @@ export declare type TrelloQueryApi = {
100506
100625
  boardByShortLink?: Maybe<TrelloBoard>;
100507
100626
  boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
100508
100627
  card?: Maybe<TrelloCard>;
100628
+ cardBatch?: Maybe<TrelloCardBatch>;
100509
100629
  echo?: Maybe<Scalars['String']['output']>;
100510
100630
  echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
100511
100631
  enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
@@ -100546,6 +100666,9 @@ export declare type TrelloQueryApiBoardMirrorCardInfoArgs = {
100546
100666
  export declare type TrelloQueryApiCardArgs = {
100547
100667
  id: Scalars['ID']['input'];
100548
100668
  };
100669
+ export declare type TrelloQueryApiCardBatchArgs = {
100670
+ id: Scalars['ID']['input'];
100671
+ };
100549
100672
  export declare type TrelloQueryApiEchosArgs = {
100550
100673
  echo: Array<Scalars['String']['input']>;
100551
100674
  };
@@ -100961,6 +101084,15 @@ export declare type TrelloUpdateCardNamePayload = Payload & {
100961
101084
  errors?: Maybe<Array<MutationError>>;
100962
101085
  success: Scalars['Boolean']['output'];
100963
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
+ };
100964
101096
  export declare type TrelloUploadedBackground = {
100965
101097
  __typename?: 'TrelloUploadedBackground';
100966
101098
  objectId: Scalars['ID']['output'];