@forge/cli-shared 8.8.0-next.2 → 8.8.0-next.3

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,14 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.8.0-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [96d7a67]
8
+ - Updated dependencies [e65918b]
9
+ - Updated dependencies [873a240]
10
+ - @forge/manifest@10.7.0-next.1
11
+
3
12
  ## 8.8.0-next.2
4
13
 
5
14
  ### Minor Changes
@@ -416,7 +416,7 @@ export declare type AvpCreateDashboardFilterResponse = {
416
416
  };
417
417
  export declare type AvpCreateDashboardFromTemplateInput = {
418
418
  cloudId: Scalars['ID']['input'];
419
- dashboard?: InputMaybe<AvpDashboardTemplateInput>;
419
+ dashboard: AvpDashboardTemplateInput;
420
420
  dashboardPermissionType?: InputMaybe<AvpDashboardPermissionType>;
421
421
  workspaceId: Scalars['ID']['input'];
422
422
  };
@@ -1735,16 +1735,23 @@ export declare enum AdminInviteAllowedAction {
1735
1735
  DirectInvite = "DIRECT_INVITE",
1736
1736
  RequestAccess = "REQUEST_ACCESS"
1737
1737
  }
1738
+ export declare type AdminInviteGroup = {
1739
+ __typename?: 'AdminInviteGroup';
1740
+ id: Scalars['ID']['output'];
1741
+ };
1742
+ export declare type AdminInviteGroupInput = {
1743
+ id: Scalars['ID']['input'];
1744
+ };
1738
1745
  export declare type AdminInviteInput = {
1739
1746
  groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
1740
1747
  inviteeNotificationSettings?: InputMaybe<AdminInviteeNotificationSettingsInput>;
1741
- resourceRole: Array<AdminResourceRoleInput>;
1748
+ resourceRole?: InputMaybe<Array<AdminResourceRoleInput>>;
1742
1749
  users: Array<AdminInviteUserInput>;
1743
1750
  };
1744
1751
  export declare type AdminInviteNotApplied = {
1745
1752
  __typename?: 'AdminInviteNotApplied';
1753
+ appliesTo?: Maybe<AdminUserInviteAppliesTo>;
1746
1754
  reason?: Maybe<AdminInviteNotAppliedReason>;
1747
- resourceRole?: Maybe<AdminResourceRole>;
1748
1755
  user?: Maybe<AdminInviteUser>;
1749
1756
  };
1750
1757
  export declare enum AdminInviteNotAppliedReason {
@@ -1755,7 +1762,7 @@ export declare enum AdminInviteNotAppliedReason {
1755
1762
  }
1756
1763
  export declare type AdminInvitePendingApproval = {
1757
1764
  __typename?: 'AdminInvitePendingApproval';
1758
- resourceRole?: Maybe<AdminResourceRole>;
1765
+ appliesTo?: Maybe<AdminUserInviteAppliesTo>;
1759
1766
  user?: Maybe<AdminInviteUser>;
1760
1767
  };
1761
1768
  export declare type AdminInvitePolicy = {
@@ -2179,7 +2186,7 @@ export declare type AdminUserConnection = {
2179
2186
  };
2180
2187
  export declare type AdminUserDirectlyInvited = {
2181
2188
  __typename?: 'AdminUserDirectlyInvited';
2182
- resourceRole?: Maybe<AdminResourceRole>;
2189
+ appliesTo?: Maybe<AdminUserInviteAppliesTo>;
2183
2190
  user?: Maybe<AdminInviteUser>;
2184
2191
  };
2185
2192
  export declare type AdminUserEdge = {
@@ -2187,6 +2194,7 @@ export declare type AdminUserEdge = {
2187
2194
  cursor: Scalars['String']['output'];
2188
2195
  node?: Maybe<AdminUser>;
2189
2196
  };
2197
+ export declare type AdminUserInviteAppliesTo = AdminInviteGroup | AdminResourceRole;
2190
2198
  export declare type AdminUserManagement = {
2191
2199
  __typename?: 'AdminUserManagement';
2192
2200
  availableRoles?: Maybe<Array<Scalars['String']['output']>>;
@@ -2447,6 +2455,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
2447
2455
  instructions?: Maybe<Scalars['String']['output']>;
2448
2456
  invocationDescription?: Maybe<Scalars['String']['output']>;
2449
2457
  isActive: Scalars['Boolean']['output'];
2458
+ isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
2450
2459
  isDefault: Scalars['Boolean']['output'];
2451
2460
  isValid: AgentStudioScenarioValidation;
2452
2461
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
@@ -2586,6 +2595,7 @@ export declare type AgentStudioCreateScenarioInput = {
2586
2595
  instructions?: InputMaybe<Scalars['String']['input']>;
2587
2596
  invocationDescription?: InputMaybe<Scalars['String']['input']>;
2588
2597
  isActive?: InputMaybe<Scalars['Boolean']['input']>;
2598
+ isDeepResearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
2589
2599
  isDefault?: InputMaybe<Scalars['Boolean']['input']>;
2590
2600
  knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
2591
2601
  name: Scalars['String']['input'];
@@ -2781,6 +2791,7 @@ export declare type AgentStudioScenario = {
2781
2791
  instructions?: Maybe<Scalars['String']['output']>;
2782
2792
  invocationDescription?: Maybe<Scalars['String']['output']>;
2783
2793
  isActive: Scalars['Boolean']['output'];
2794
+ isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
2784
2795
  isDefault: Scalars['Boolean']['output'];
2785
2796
  isValid: AgentStudioScenarioValidation;
2786
2797
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
@@ -3032,6 +3043,7 @@ export declare type AgentStudioUpdateScenarioInput = {
3032
3043
  instructions?: InputMaybe<Scalars['String']['input']>;
3033
3044
  invocationDescription?: InputMaybe<Scalars['String']['input']>;
3034
3045
  isActive?: InputMaybe<Scalars['Boolean']['input']>;
3046
+ isDeepResearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
3035
3047
  isDefault?: InputMaybe<Scalars['Boolean']['input']>;
3036
3048
  knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
3037
3049
  name?: InputMaybe<Scalars['String']['input']>;
@@ -10389,6 +10401,7 @@ export declare type CompassComponent = Node & {
10389
10401
  metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
10390
10402
  name: Scalars['String']['output'];
10391
10403
  ownerId?: Maybe<Scalars['ID']['output']>;
10404
+ ownerTeam?: Maybe<TeamV2>;
10392
10405
  packageDependencies?: Maybe<CompassComponentPackageDependencyConnection>;
10393
10406
  relationships?: Maybe<CompassRelationshipConnectionResult>;
10394
10407
  scorecardScore?: Maybe<CompassScorecardScore>;
@@ -14802,6 +14815,7 @@ export declare type ConfluenceAnswer = {
14802
14815
  id: Scalars['ID']['output'];
14803
14816
  isAccepted: Scalars['Boolean']['output'];
14804
14817
  latestVersion?: Maybe<ConfluenceContentVersion>;
14818
+ operations?: Maybe<Array<Maybe<ConfluenceQuestionsOperationCheck>>>;
14805
14819
  voteProperties: ConfluenceVotePropertyValue;
14806
14820
  };
14807
14821
  export declare type ConfluenceAnswerCommentsArgs = {
@@ -16063,6 +16077,15 @@ export declare type ConfluenceDeleteCommentPayload = {
16063
16077
  errors?: Maybe<Array<MutationError>>;
16064
16078
  success: Scalars['Boolean']['output'];
16065
16079
  };
16080
+ export declare type ConfluenceDeleteContentVersionInput = {
16081
+ versionNumber?: InputMaybe<Scalars['Int']['input']>;
16082
+ };
16083
+ export declare type ConfluenceDeleteContentVersionPayload = Payload & {
16084
+ __typename?: 'ConfluenceDeleteContentVersionPayload';
16085
+ errors?: Maybe<Array<MutationError>>;
16086
+ success: Scalars['Boolean']['output'];
16087
+ version?: Maybe<Version>;
16088
+ };
16066
16089
  export declare type ConfluenceDeleteCustomApplicationLinkInput = {
16067
16090
  id: Scalars['ID']['input'];
16068
16091
  };
@@ -21948,6 +21971,12 @@ export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
21948
21971
  ids?: Maybe<Array<Scalars['ID']['output']>>;
21949
21972
  success: Scalars['Boolean']['output'];
21950
21973
  };
21974
+ export declare type CplsMutationErrorExtension = MutationErrorExtension & {
21975
+ __typename?: 'CplsMutationErrorExtension';
21976
+ errorId?: Maybe<Scalars['String']['output']>;
21977
+ errorType?: Maybe<Scalars['String']['output']>;
21978
+ statusCode?: Maybe<Scalars['Int']['output']>;
21979
+ };
21951
21980
  export declare type CplsSearchCustomContributionTargetsInput = {
21952
21981
  after?: InputMaybe<Scalars['String']['input']>;
21953
21982
  before?: InputMaybe<Scalars['String']['input']>;
@@ -35890,6 +35919,7 @@ export declare type GraphStore = {
35890
35919
  userViewedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection>;
35891
35920
  userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
35892
35921
  userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
35922
+ userViewedDocumentInverse?: Maybe<GraphStoreSimplifiedUserViewedDocumentInverseConnection>;
35893
35923
  userViewedGoalUpdate?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateConnection>;
35894
35924
  userViewedGoalUpdateBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
35895
35925
  userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
@@ -40965,6 +40995,13 @@ export declare type GraphStoreUserViewedConfluencePageInverseArgs = {
40965
40995
  id: Scalars['ID']['input'];
40966
40996
  sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
40967
40997
  };
40998
+ export declare type GraphStoreUserViewedDocumentInverseArgs = {
40999
+ after?: InputMaybe<Scalars['String']['input']>;
41000
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
41001
+ first?: InputMaybe<Scalars['Int']['input']>;
41002
+ id: Scalars['ID']['input'];
41003
+ sort?: InputMaybe<GraphStoreUserViewedDocumentSortInput>;
41004
+ };
40968
41005
  export declare type GraphStoreUserViewedGoalUpdateArgs = {
40969
41006
  after?: InputMaybe<Scalars['String']['input']>;
40970
41007
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -56498,6 +56535,20 @@ export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseEdge = {
56498
56535
  };
56499
56536
  export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56500
56537
  export declare type GraphStoreSimplifiedUserViewedConfluencePageUnion = ConfluencePage;
56538
+ export declare type GraphStoreSimplifiedUserViewedDocumentInverseConnection = HasPageInfo & {
56539
+ __typename?: 'GraphStoreSimplifiedUserViewedDocumentInverseConnection';
56540
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedDocumentInverseEdge>>>;
56541
+ pageInfo: PageInfo;
56542
+ };
56543
+ export declare type GraphStoreSimplifiedUserViewedDocumentInverseEdge = {
56544
+ __typename?: 'GraphStoreSimplifiedUserViewedDocumentInverseEdge';
56545
+ createdAt: Scalars['DateTime']['output'];
56546
+ cursor?: Maybe<Scalars['String']['output']>;
56547
+ id: Scalars['ID']['output'];
56548
+ lastUpdated: Scalars['DateTime']['output'];
56549
+ node?: Maybe<GraphStoreSimplifiedUserViewedDocumentInverseUnion>;
56550
+ };
56551
+ export declare type GraphStoreSimplifiedUserViewedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56501
56552
  export declare type GraphStoreSimplifiedUserViewedGoalUpdateConnection = HasPageInfo & {
56502
56553
  __typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateConnection';
56503
56554
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedGoalUpdateEdge>>>;
@@ -57810,6 +57861,9 @@ export declare type GraphStoreUserViewedConfluenceBlogpostSortInput = {
57810
57861
  export declare type GraphStoreUserViewedConfluencePageSortInput = {
57811
57862
  lastModified?: InputMaybe<GraphStoreSortInput>;
57812
57863
  };
57864
+ export declare type GraphStoreUserViewedDocumentSortInput = {
57865
+ lastModified?: InputMaybe<GraphStoreSortInput>;
57866
+ };
57813
57867
  export declare type GraphStoreUserViewedGoalUpdateSortInput = {
57814
57868
  lastModified?: InputMaybe<GraphStoreSortInput>;
57815
57869
  };
@@ -71774,6 +71828,22 @@ export declare type JiraMergeVersionPayload = Payload & {
71774
71828
  success: Scalars['Boolean']['output'];
71775
71829
  targetVersion?: Maybe<JiraVersion>;
71776
71830
  };
71831
+ export declare enum JiraMoveBoardViewIssueToCellEnd {
71832
+ Bottom = "BOTTOM",
71833
+ Top = "TOP"
71834
+ }
71835
+ export declare type JiraMoveBoardViewIssueToCellEndInput = {
71836
+ cellId: Scalars['ID']['input'];
71837
+ end: JiraMoveBoardViewIssueToCellEnd;
71838
+ id: Scalars['ID']['input'];
71839
+ settings?: InputMaybe<JiraBoardViewSettings>;
71840
+ };
71841
+ export declare type JiraMoveBoardViewIssueToCellEndPayload = Payload & {
71842
+ __typename?: 'JiraMoveBoardViewIssueToCellEndPayload';
71843
+ errors?: Maybe<Array<MutationError>>;
71844
+ issue?: Maybe<JiraIssue>;
71845
+ success: Scalars['Boolean']['output'];
71846
+ };
71777
71847
  export declare type JiraMoveIssuesToFixVersionInput = {
71778
71848
  issueIds: Array<Scalars['ID']['input']>;
71779
71849
  originalVersionId: Scalars['ID']['input'];
@@ -91365,6 +91435,7 @@ export declare type Mutation = {
91365
91435
  confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
91366
91436
  confluence_deleteCalendar?: Maybe<ConfluenceDeleteCalendarPayload>;
91367
91437
  confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
91438
+ confluence_deleteContentVersion?: Maybe<ConfluenceDeleteContentVersionPayload>;
91368
91439
  confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
91369
91440
  confluence_deleteQuestion?: Maybe<ConfluenceDeleteQuestionPayload>;
91370
91441
  confluence_deleteReaction?: Maybe<ConfluenceReactionPayload>;
@@ -91647,6 +91718,7 @@ export declare type Mutation = {
91647
91718
  jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
91648
91719
  jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
91649
91720
  jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
91721
+ jira_moveBoardViewIssueToCellEnd?: Maybe<JiraMoveBoardViewIssueToCellEndPayload>;
91650
91722
  jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
91651
91723
  jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
91652
91724
  jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
@@ -92491,6 +92563,10 @@ export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
92491
92563
  cloudId: Scalars['ID']['input'];
92492
92564
  input: ConfluenceDeleteCalendarCustomEventTypeInput;
92493
92565
  };
92566
+ export declare type MutationConfluence_DeleteContentVersionArgs = {
92567
+ input?: InputMaybe<ConfluenceDeleteContentVersionInput>;
92568
+ pageAri: Scalars['ID']['input'];
92569
+ };
92494
92570
  export declare type MutationConfluence_DeleteCustomRoleArgs = {
92495
92571
  cloudId: Scalars['ID']['input'];
92496
92572
  input: ConfluenceDeleteCustomRoleInput;
@@ -93465,6 +93541,9 @@ export declare type MutationJira_EditFieldSchemeArgs = {
93465
93541
  cloudId: Scalars['ID']['input'];
93466
93542
  input: JiraEditFieldSchemeInput;
93467
93543
  };
93544
+ export declare type MutationJira_MoveBoardViewIssueToCellEndArgs = {
93545
+ input: JiraMoveBoardViewIssueToCellEndInput;
93546
+ };
93468
93547
  export declare type MutationJira_OrderIssueSearchFormattingRuleArgs = {
93469
93548
  input: JiraOrderIssueSearchFormattingRuleInput;
93470
93549
  };
@@ -100368,6 +100447,7 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
100368
100447
  id: Scalars['ID']['input'];
100369
100448
  };
100370
100449
  export declare type QueryJira_BacklogArgs = {
100450
+ activeQuickFilters?: InputMaybe<Array<Scalars['ID']['input']>>;
100371
100451
  boardId: Scalars['ID']['input'];
100372
100452
  };
100373
100453
  export declare type QueryJira_BacklogViewArgs = {
@@ -124645,6 +124725,8 @@ export declare type SpacePermissionInfo = {
124645
124725
  description?: Maybe<Scalars['String']['output']>;
124646
124726
  displayName: Scalars['String']['output'];
124647
124727
  group: SpacePermissionGroup;
124728
+ hubDescription?: Maybe<Scalars['String']['output']>;
124729
+ hubDisplayName?: Maybe<Scalars['String']['output']>;
124648
124730
  id: Scalars['String']['output'];
124649
124731
  priority: Scalars['Int']['output'];
124650
124732
  requiredSpacePermissions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -128608,6 +128690,7 @@ export declare type TownsquareMetric = Node & {
128608
128690
  externalEntityId?: Maybe<Scalars['String']['output']>;
128609
128691
  id: Scalars['ID']['output'];
128610
128692
  name?: Maybe<Scalars['String']['output']>;
128693
+ source?: Maybe<Scalars['String']['output']>;
128611
128694
  subType?: Maybe<Scalars['String']['output']>;
128612
128695
  type?: Maybe<TownsquareMetricType>;
128613
128696
  values?: Maybe<TownsquareMetricValueConnection>;
@@ -129075,6 +129158,12 @@ export declare type TownsquareProjectsCanCreateProjectFusionPayload = {
129075
129158
  canCreateFusionResult?: Maybe<TownsquareCanCreateFusionResult>;
129076
129159
  issue?: Maybe<JiraIssue>;
129077
129160
  };
129161
+ export declare type TownsquareProjectsChildWorkItemsAlreadyLinkedMutationErrorExtension = MutationErrorExtension & {
129162
+ __typename?: 'TownsquareProjectsChildWorkItemsAlreadyLinkedMutationErrorExtension';
129163
+ canReplace?: Maybe<Scalars['Boolean']['output']>;
129164
+ errorType?: Maybe<Scalars['String']['output']>;
129165
+ statusCode?: Maybe<Scalars['Int']['output']>;
129166
+ };
129078
129167
  export declare type TownsquareProjectsCloneInput = {
129079
129168
  addLinks?: InputMaybe<Scalars['Boolean']['input']>;
129080
129169
  addWatchers?: InputMaybe<Scalars['Boolean']['input']>;
@@ -131739,6 +131828,16 @@ export declare type TrelloListViewer = {
131739
131828
  __typename?: 'TrelloListViewer';
131740
131829
  subscribed?: Maybe<Scalars['Boolean']['output']>;
131741
131830
  };
131831
+ export declare type TrelloMarkInboxNotificationsReadInput = {
131832
+ ids?: InputMaybe<Array<Scalars['ID']['input']>>;
131833
+ read?: InputMaybe<Scalars['Boolean']['input']>;
131834
+ };
131835
+ export declare type TrelloMarkInboxNotificationsReadPayload = {
131836
+ __typename?: 'TrelloMarkInboxNotificationsReadPayload';
131837
+ success: Scalars['Boolean']['output'];
131838
+ updatedCount: Scalars['Int']['output'];
131839
+ updatedNotificationsIds?: Maybe<Array<Scalars['ID']['output']>>;
131840
+ };
131742
131841
  export declare type TrelloMember = Node & {
131743
131842
  __typename?: 'TrelloMember';
131744
131843
  activityBlocked?: Maybe<Scalars['Boolean']['output']>;
@@ -131951,6 +132050,26 @@ export declare type TrelloMoveInboxCardToBoardEntities = {
131951
132050
  card?: Maybe<TrelloActionCardEntity>;
131952
132051
  memberCreator?: Maybe<TrelloActionMemberEntity>;
131953
132052
  };
132053
+ export declare type TrelloMovePlannerCalendarEventInput = {
132054
+ sourceEvent: TrelloMovePlannerCalendarEventSourceOptions;
132055
+ targetPlannerCalendar: TrelloMovePlannerCalendarEventTargetOptions;
132056
+ };
132057
+ export declare type TrelloMovePlannerCalendarEventPayload = Payload & {
132058
+ __typename?: 'TrelloMovePlannerCalendarEventPayload';
132059
+ errors?: Maybe<Array<MutationError>>;
132060
+ movedEvent?: Maybe<TrelloPlannerCalendarEventDeleted>;
132061
+ plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
132062
+ success: Scalars['Boolean']['output'];
132063
+ };
132064
+ export declare type TrelloMovePlannerCalendarEventSourceOptions = {
132065
+ plannerCalendarEventId: Scalars['ID']['input'];
132066
+ plannerCalendarId: Scalars['ID']['input'];
132067
+ providerAccountId: Scalars['ID']['input'];
132068
+ };
132069
+ export declare type TrelloMovePlannerCalendarEventTargetOptions = {
132070
+ plannerCalendarId: Scalars['ID']['input'];
132071
+ providerAccountId: Scalars['ID']['input'];
132072
+ };
131954
132073
  export declare type TrelloMutationApi = {
131955
132074
  __typename?: 'TrelloMutationApi';
131956
132075
  addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
@@ -131969,7 +132088,9 @@ export declare type TrelloMutationApi = {
131969
132088
  deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
131970
132089
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
131971
132090
  generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
132091
+ markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
131972
132092
  mergeCards?: Maybe<TrelloMergeCardsPayload>;
132093
+ movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
131973
132094
  pinCard?: Maybe<TrelloPinCardPayload>;
131974
132095
  removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
131975
132096
  removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
@@ -132045,9 +132166,15 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
132045
132166
  export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
132046
132167
  input: TrelloGenerateChecklistsForCardInput;
132047
132168
  };
132169
+ export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
132170
+ input?: InputMaybe<TrelloMarkInboxNotificationsReadInput>;
132171
+ };
132048
132172
  export declare type TrelloMutationApiMergeCardsArgs = {
132049
132173
  input: TrelloMergeCardsInput;
132050
132174
  };
132175
+ export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
132176
+ input: TrelloMovePlannerCalendarEventInput;
132177
+ };
132051
132178
  export declare type TrelloMutationApiPinCardArgs = {
132052
132179
  input: TrelloPinCardInput;
132053
132180
  };