@forge/cli-shared 6.5.1-next.1 → 6.5.1-next.2

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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.5.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [adf93f2]
8
+ - @forge/manifest@8.3.1-next.2
9
+
3
10
  ## 6.5.1-next.1
4
11
 
5
12
  ### Patch Changes
@@ -699,12 +699,43 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
699
699
  ScheduledStartDate = "SCHEDULED_START_DATE",
700
700
  Visibility = "VISIBILITY"
701
701
  }
702
+ export declare type AgentAiContextPanelResponse = {
703
+ __typename?: 'AgentAIContextPanelResponse';
704
+ nextSteps?: Maybe<Scalars['String']['output']>;
705
+ reporterDetails?: Maybe<Scalars['String']['output']>;
706
+ suggestedActions?: Maybe<Array<Maybe<AgentAiSuggestAction>>>;
707
+ suggestedEscalation?: Maybe<Scalars['String']['output']>;
708
+ summary?: Maybe<Scalars['String']['output']>;
709
+ };
702
710
  export declare type AgentAiIssueSummary = {
703
711
  __typename?: 'AgentAIIssueSummary';
704
712
  createdAt?: Maybe<Scalars['Long']['output']>;
705
713
  id?: Maybe<Scalars['String']['output']>;
706
714
  summary?: Maybe<AgentAiSummary>;
707
715
  };
716
+ export declare type AgentAiSuggestAction = {
717
+ __typename?: 'AgentAISuggestAction';
718
+ content?: Maybe<AgentAiSuggestedActionContent>;
719
+ context?: Maybe<AgentAiSuggestedActionContext>;
720
+ type?: Maybe<Scalars['String']['output']>;
721
+ };
722
+ export declare type AgentAiSuggestActionContextForPriority = {
723
+ __typename?: 'AgentAISuggestActionContextForPriority';
724
+ iconUrl?: Maybe<Scalars['String']['output']>;
725
+ id?: Maybe<Scalars['String']['output']>;
726
+ name?: Maybe<Scalars['String']['output']>;
727
+ };
728
+ export declare type AgentAiSuggestedActionContent = {
729
+ __typename?: 'AgentAISuggestedActionContent';
730
+ description?: Maybe<Scalars['String']['output']>;
731
+ title?: Maybe<Scalars['String']['output']>;
732
+ };
733
+ export declare type AgentAiSuggestedActionContext = {
734
+ __typename?: 'AgentAISuggestedActionContext';
735
+ fieldId?: Maybe<Scalars['String']['output']>;
736
+ id?: Maybe<Scalars['String']['output']>;
737
+ suggestion?: Maybe<AgentAiSuggestActionContextForPriority>;
738
+ };
708
739
  export declare type AgentAiSummary = {
709
740
  __typename?: 'AgentAISummary';
710
741
  adf?: Maybe<Scalars['String']['output']>;
@@ -1541,7 +1572,7 @@ export declare type AppStorageSqlDatabaseMigration = {
1541
1572
  __typename?: 'AppStorageSqlDatabaseMigration';
1542
1573
  id: Scalars['Int']['output'];
1543
1574
  migratedAt: Scalars['String']['output'];
1544
- name: Scalars['String']['output'];
1575
+ name?: Maybe<Scalars['String']['output']>;
1545
1576
  };
1546
1577
  export declare type AppStorageSqlDatabasePayload = {
1547
1578
  __typename?: 'AppStorageSqlDatabasePayload';
@@ -5184,6 +5215,7 @@ export declare type CompassCreateDeploymentEventPropertiesInput = {
5184
5215
  };
5185
5216
  export declare type CompassCreateEventInput = {
5186
5217
  cloudId: Scalars['ID']['input'];
5218
+ componentId?: InputMaybe<Scalars['String']['input']>;
5187
5219
  event: CompassEventInput;
5188
5220
  };
5189
5221
  export declare type CompassCreateEventsPayload = Payload & {
@@ -22622,6 +22654,11 @@ export declare type ExternalCommit = Node & {
22622
22654
  export declare enum ExternalCommitFlags {
22623
22655
  MergeCommit = "MERGE_COMMIT"
22624
22656
  }
22657
+ export declare type ExternalContributor = {
22658
+ __typename?: 'ExternalContributor';
22659
+ interactionCount?: Maybe<Scalars['Long']['output']>;
22660
+ user?: Maybe<ExternalUser>;
22661
+ };
22625
22662
  export declare type ExternalConversation = Node & {
22626
22663
  __typename?: 'ExternalConversation';
22627
22664
  associatedWith?: Maybe<ExternalAssociationConnection>;
@@ -23065,6 +23102,7 @@ export declare type ExternalVideo = Node & {
23065
23102
  associatedWith?: Maybe<ExternalAssociationConnection>;
23066
23103
  chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
23067
23104
  commentCount?: Maybe<Scalars['Long']['output']>;
23105
+ contributors?: Maybe<Array<Maybe<ExternalContributor>>>;
23068
23106
  createdAt?: Maybe<Scalars['String']['output']>;
23069
23107
  createdBy?: Maybe<ExternalUser>;
23070
23108
  description?: Maybe<Scalars['String']['output']>;
@@ -31393,11 +31431,16 @@ export declare type GraphStoreAtlasHomeQueryConnection = {
31393
31431
  nodes: Array<GraphStoreAtlasHomeQueryNode>;
31394
31432
  pageInfo: PageInfo;
31395
31433
  };
31396
- export declare type GraphStoreAtlasHomeQueryNode = {
31397
- __typename?: 'GraphStoreAtlasHomeQueryNode';
31434
+ export declare type GraphStoreAtlasHomeQueryItem = {
31435
+ __typename?: 'GraphStoreAtlasHomeQueryItem';
31398
31436
  data?: Maybe<GraphStoreAtlasHomeFeedQueryToNodeUnion>;
31399
31437
  id: Scalars['ID']['output'];
31400
31438
  };
31439
+ export declare type GraphStoreAtlasHomeQueryNode = {
31440
+ __typename?: 'GraphStoreAtlasHomeQueryNode';
31441
+ item?: Maybe<GraphStoreAtlasHomeQueryItem>;
31442
+ source: Scalars['String']['output'];
31443
+ };
31401
31444
  export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
31402
31445
  lastModified?: InputMaybe<GraphStoreSortInput>;
31403
31446
  };
@@ -41989,10 +42032,13 @@ export declare enum HelpCenterMediaConfigOperationType {
41989
42032
  export declare type HelpCenterMutationApi = {
41990
42033
  __typename?: 'HelpCenterMutationApi';
41991
42034
  createHelpCenter?: Maybe<HelpCenterCreatePayload>;
42035
+ createHelpCenterPage?: Maybe<HelpCenterPageCreatePayload>;
41992
42036
  createTopic?: Maybe<HelpCenterCreateTopicPayload>;
41993
42037
  deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
42038
+ deleteHelpCenterPage?: Maybe<HelpCenterPageDeletePayload>;
41994
42039
  deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
41995
42040
  updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
42041
+ updateHelpCenterPage?: Maybe<HelpCenterPageUpdatePayload>;
41996
42042
  updateHelpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsPayload>;
41997
42043
  updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
41998
42044
  updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
@@ -42004,18 +42050,27 @@ export declare type HelpCenterMutationApi = {
42004
42050
  export declare type HelpCenterMutationApiCreateHelpCenterArgs = {
42005
42051
  input: HelpCenterCreateInput;
42006
42052
  };
42053
+ export declare type HelpCenterMutationApiCreateHelpCenterPageArgs = {
42054
+ input: HelpCenterPageCreateInput;
42055
+ };
42007
42056
  export declare type HelpCenterMutationApiCreateTopicArgs = {
42008
42057
  input: HelpCenterBulkCreateTopicsInput;
42009
42058
  };
42010
42059
  export declare type HelpCenterMutationApiDeleteHelpCenterArgs = {
42011
42060
  input: HelpCenterDeleteInput;
42012
42061
  };
42062
+ export declare type HelpCenterMutationApiDeleteHelpCenterPageArgs = {
42063
+ input: HelpCenterPageDeleteInput;
42064
+ };
42013
42065
  export declare type HelpCenterMutationApiDeleteTopicArgs = {
42014
42066
  input: HelpCenterBulkDeleteTopicInput;
42015
42067
  };
42016
42068
  export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
42017
42069
  input: HelpCenterUpdateInput;
42018
42070
  };
42071
+ export declare type HelpCenterMutationApiUpdateHelpCenterPageArgs = {
42072
+ input: HelpCenterPageUpdateInput;
42073
+ };
42019
42074
  export declare type HelpCenterMutationApiUpdateHelpCenterPermissionSettingsArgs = {
42020
42075
  input: HelpCenterPermissionSettingsInput;
42021
42076
  };
@@ -42046,6 +42101,75 @@ export declare type HelpCenterNameInput = {
42046
42101
  default: Scalars['String']['input'];
42047
42102
  translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
42048
42103
  };
42104
+ export declare type HelpCenterPage = Node & {
42105
+ __typename?: 'HelpCenterPage';
42106
+ createdAt?: Maybe<Scalars['String']['output']>;
42107
+ description?: Maybe<HelpCenterPageDescription>;
42108
+ helpCenterAri: Scalars['ID']['output'];
42109
+ id: Scalars['ID']['output'];
42110
+ name?: Maybe<HelpCenterPageName>;
42111
+ pageLayout?: Maybe<HelpCenterPageLayout>;
42112
+ updatedAt?: Maybe<Scalars['String']['output']>;
42113
+ };
42114
+ export declare type HelpCenterPageCreateInput = {
42115
+ clonePageAri?: InputMaybe<Scalars['String']['input']>;
42116
+ description: Scalars['String']['input'];
42117
+ helpCenterAri: Scalars['String']['input'];
42118
+ name: Scalars['String']['input'];
42119
+ };
42120
+ export declare type HelpCenterPageCreatePayload = Payload & {
42121
+ __typename?: 'HelpCenterPageCreatePayload';
42122
+ errors?: Maybe<Array<MutationError>>;
42123
+ helpCenterPage?: Maybe<HelpCenterPage>;
42124
+ success: Scalars['Boolean']['output'];
42125
+ };
42126
+ export declare type HelpCenterPageDeleteInput = {
42127
+ helpCenterPageAri: Scalars['String']['input'];
42128
+ };
42129
+ export declare type HelpCenterPageDeletePayload = Payload & {
42130
+ __typename?: 'HelpCenterPageDeletePayload';
42131
+ errors?: Maybe<Array<MutationError>>;
42132
+ helpCenterPageAri?: Maybe<Scalars['ID']['output']>;
42133
+ success: Scalars['Boolean']['output'];
42134
+ };
42135
+ export declare type HelpCenterPageDescription = {
42136
+ __typename?: 'HelpCenterPageDescription';
42137
+ default: Scalars['String']['output'];
42138
+ };
42139
+ export declare type HelpCenterPageLayout = {
42140
+ __typename?: 'HelpCenterPageLayout';
42141
+ layoutAri: Scalars['ID']['output'];
42142
+ };
42143
+ export declare type HelpCenterPageName = {
42144
+ __typename?: 'HelpCenterPageName';
42145
+ default: Scalars['String']['output'];
42146
+ };
42147
+ export declare type HelpCenterPageQueryResult = HelpCenterPage | QueryError;
42148
+ export declare type HelpCenterPageQueryResultConnection = {
42149
+ __typename?: 'HelpCenterPageQueryResultConnection';
42150
+ edges?: Maybe<Array<HelpCenterPageQueryResultEdge>>;
42151
+ nodes?: Maybe<Array<HelpCenterPageQueryResult>>;
42152
+ pageInfo?: Maybe<PageInfo>;
42153
+ };
42154
+ export declare type HelpCenterPageQueryResultEdge = {
42155
+ __typename?: 'HelpCenterPageQueryResultEdge';
42156
+ cursor: Scalars['String']['output'];
42157
+ node?: Maybe<HelpCenterPageQueryResult>;
42158
+ };
42159
+ export declare enum HelpCenterPageType {
42160
+ Custom = "CUSTOM"
42161
+ }
42162
+ export declare type HelpCenterPageUpdateInput = {
42163
+ description: Scalars['String']['input'];
42164
+ helpCenterPageAri: Scalars['String']['input'];
42165
+ name: Scalars['String']['input'];
42166
+ };
42167
+ export declare type HelpCenterPageUpdatePayload = Payload & {
42168
+ __typename?: 'HelpCenterPageUpdatePayload';
42169
+ errors?: Maybe<Array<MutationError>>;
42170
+ helpCenterPage?: Maybe<HelpCenterPage>;
42171
+ success: Scalars['Boolean']['output'];
42172
+ };
42049
42173
  export declare type HelpCenterPermissionSettings = {
42050
42174
  __typename?: 'HelpCenterPermissionSettings';
42051
42175
  accessControlType: HelpCenterAccessControlType;
@@ -42142,6 +42266,8 @@ export declare type HelpCenterQueryApi = {
42142
42266
  helpCenterByHoistedProjectId?: Maybe<HelpCenterQueryResult>;
42143
42267
  helpCenterByHoistedProjectIdRouted?: Maybe<HelpCenterQueryResult>;
42144
42268
  helpCenterById?: Maybe<HelpCenterQueryResult>;
42269
+ helpCenterPageById?: Maybe<HelpCenterPageQueryResult>;
42270
+ helpCenterPages?: Maybe<HelpCenterPageQueryResultConnection>;
42145
42271
  helpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
42146
42272
  helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
42147
42273
  helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
@@ -42161,6 +42287,14 @@ export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdRoutedArgs = {
42161
42287
  export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
42162
42288
  helpCenterAri: Scalars['ID']['input'];
42163
42289
  };
42290
+ export declare type HelpCenterQueryApiHelpCenterPageByIdArgs = {
42291
+ helpCenterPageAri: Scalars['ID']['input'];
42292
+ };
42293
+ export declare type HelpCenterQueryApiHelpCenterPagesArgs = {
42294
+ after?: InputMaybe<Scalars['String']['input']>;
42295
+ first?: InputMaybe<Scalars['Int']['input']>;
42296
+ helpCenterAri: Scalars['ID']['input'];
42297
+ };
42164
42298
  export declare type HelpCenterQueryApiHelpCenterPermissionSettingsArgs = {
42165
42299
  helpCenterAri: Scalars['ID']['input'];
42166
42300
  };
@@ -46205,15 +46339,24 @@ export declare enum JiraColorSchemeThemeSetting {
46205
46339
  }
46206
46340
  export declare type JiraComment = {
46207
46341
  author?: Maybe<User>;
46342
+ childComments?: Maybe<JiraCommentConnection>;
46208
46343
  commentId: Scalars['ID']['output'];
46209
46344
  created: Scalars['DateTime']['output'];
46345
+ isDeleted?: Maybe<Scalars['Boolean']['output']>;
46210
46346
  issue?: Maybe<JiraIssue>;
46211
46347
  permissionLevel?: Maybe<JiraPermissionLevel>;
46212
46348
  richText?: Maybe<JiraRichText>;
46349
+ threadParentId?: Maybe<Scalars['ID']['output']>;
46213
46350
  updateAuthor?: Maybe<User>;
46214
46351
  updated?: Maybe<Scalars['DateTime']['output']>;
46215
46352
  webUrl?: Maybe<Scalars['URL']['output']>;
46216
46353
  };
46354
+ export declare type JiraCommentChildCommentsArgs = {
46355
+ after?: InputMaybe<Scalars['String']['input']>;
46356
+ before?: InputMaybe<Scalars['String']['input']>;
46357
+ first?: InputMaybe<Scalars['Int']['input']>;
46358
+ last?: InputMaybe<Scalars['Int']['input']>;
46359
+ };
46217
46360
  export declare type JiraCommentConnection = {
46218
46361
  __typename?: 'JiraCommentConnection';
46219
46362
  edges?: Maybe<Array<Maybe<JiraCommentEdge>>>;
@@ -56201,19 +56344,28 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
56201
56344
  __typename?: 'JiraServiceManagementComment';
56202
56345
  author?: Maybe<User>;
56203
56346
  authorCanSeeRequest?: Maybe<Scalars['Boolean']['output']>;
56347
+ childComments?: Maybe<JiraCommentConnection>;
56204
56348
  commentId: Scalars['ID']['output'];
56205
56349
  created: Scalars['DateTime']['output'];
56206
56350
  eventOccurredAt?: Maybe<Scalars['DateTime']['output']>;
56207
56351
  id: Scalars['ID']['output'];
56352
+ isDeleted?: Maybe<Scalars['Boolean']['output']>;
56208
56353
  issue?: Maybe<JiraIssue>;
56209
56354
  jsdIncidentActivityViewHidden?: Maybe<Scalars['Boolean']['output']>;
56210
56355
  permissionLevel?: Maybe<JiraPermissionLevel>;
56211
56356
  richText?: Maybe<JiraRichText>;
56357
+ threadParentId?: Maybe<Scalars['ID']['output']>;
56212
56358
  updateAuthor?: Maybe<User>;
56213
56359
  updated?: Maybe<Scalars['DateTime']['output']>;
56214
56360
  visibility?: Maybe<JiraServiceManagementCommentVisibility>;
56215
56361
  webUrl?: Maybe<Scalars['URL']['output']>;
56216
56362
  };
56363
+ export declare type JiraServiceManagementCommentChildCommentsArgs = {
56364
+ after?: InputMaybe<Scalars['String']['input']>;
56365
+ before?: InputMaybe<Scalars['String']['input']>;
56366
+ first?: InputMaybe<Scalars['Int']['input']>;
56367
+ last?: InputMaybe<Scalars['Int']['input']>;
56368
+ };
56217
56369
  export declare enum JiraServiceManagementCommentVisibility {
56218
56370
  Internal = "INTERNAL",
56219
56371
  VisibleToHelpseeker = "VISIBLE_TO_HELPSEEKER"
@@ -63561,6 +63713,23 @@ export declare type MarketplaceStoreHomePageSectionScreenSpecificProperties = {
63561
63713
  md: MarketplaceStoreHomePageSectionScreenConfig;
63562
63714
  sm: MarketplaceStoreHomePageSectionScreenConfig;
63563
63715
  };
63716
+ export declare type MarketplaceStoreHostLicense = {
63717
+ __typename?: 'MarketplaceStoreHostLicense';
63718
+ autoRenewal: Scalars['Boolean']['output'];
63719
+ evaluation: Scalars['Boolean']['output'];
63720
+ licenseType: Scalars['String']['output'];
63721
+ maximumNumberOfUsers: Scalars['Int']['output'];
63722
+ subscriptionAnnual?: Maybe<Scalars['Boolean']['output']>;
63723
+ valid: Scalars['Boolean']['output'];
63724
+ };
63725
+ export declare type MarketplaceStoreHostStatusResponse = {
63726
+ __typename?: 'MarketplaceStoreHostStatusResponse';
63727
+ billingCurrency: Scalars['String']['output'];
63728
+ hostCmtEnabled: Scalars['Boolean']['output'];
63729
+ hostLicense: MarketplaceStoreHostLicense;
63730
+ pacUnavailable: Scalars['Boolean']['output'];
63731
+ upmLicensedHostUsers: Scalars['Int']['output'];
63732
+ };
63564
63733
  export declare type MarketplaceStoreInstallAppInput = {
63565
63734
  appKey: Scalars['String']['input'];
63566
63735
  target: MarketplaceStoreInstallAppTargetInput;
@@ -63590,6 +63759,7 @@ export declare enum MarketplaceStoreInstallationTargetProduct {
63590
63759
  export declare type MarketplaceStoreInstalledAppDetailsResponse = {
63591
63760
  __typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
63592
63761
  installed?: Maybe<Scalars['Boolean']['output']>;
63762
+ licenseActive?: Maybe<Scalars['Boolean']['output']>;
63593
63763
  };
63594
63764
  export declare type MarketplaceStoreLoggedInUser = {
63595
63765
  __typename?: 'MarketplaceStoreLoggedInUser';
@@ -63755,6 +63925,7 @@ export declare type MarketplaceStoreQueryApi = {
63755
63925
  editionsByAppKey: Array<MarketplaceStoreEdition>;
63756
63926
  geoip: MarketplaceStoreGeoIpResponse;
63757
63927
  homePage: MarketplaceStoreHomePageResponse;
63928
+ hostStatus: MarketplaceStoreHostStatusResponse;
63758
63929
  installAppStatus: MarketplaceStoreInstallAppResponse;
63759
63930
  installedAppDetails: MarketplaceStoreInstalledAppDetailsResponse;
63760
63931
  myReview: MarketplaceStoreCurrentUserReviewResponse;
@@ -63784,11 +63955,14 @@ export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
63784
63955
  export declare type MarketplaceStoreQueryApiHomePageArgs = {
63785
63956
  productId?: InputMaybe<Scalars['String']['input']>;
63786
63957
  };
63958
+ export declare type MarketplaceStoreQueryApiHostStatusArgs = {
63959
+ input: MarketplaceStoreInstallAppTargetInput;
63960
+ };
63787
63961
  export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
63788
63962
  id: Scalars['ID']['input'];
63789
63963
  };
63790
63964
  export declare type MarketplaceStoreQueryApiInstalledAppDetailsArgs = {
63791
- input?: InputMaybe<MarketplaceStoreInstallAppInput>;
63965
+ input: MarketplaceStoreInstallAppInput;
63792
63966
  };
63793
63967
  export declare type MarketplaceStoreQueryApiMyReviewArgs = {
63794
63968
  appKey: Scalars['String']['input'];
@@ -64172,6 +64346,7 @@ export declare type MercuryFocusArea = Node & {
64172
64346
  parent?: Maybe<MercuryFocusArea>;
64173
64347
  status: MercuryFocusAreaStatus;
64174
64348
  statusTransitions: MercuryFocusAreaStatusTransitions;
64349
+ subFocusAreas?: Maybe<MercuryFocusAreaConnection>;
64175
64350
  targetDate?: Maybe<MercuryTargetDate>;
64176
64351
  teamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
64177
64352
  updatedDate: Scalars['String']['output'];
@@ -64185,6 +64360,10 @@ export declare type MercuryFocusAreaFocusAreaStatusUpdatesArgs = {
64185
64360
  createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
64186
64361
  first?: InputMaybe<Scalars['Int']['input']>;
64187
64362
  };
64363
+ export declare type MercuryFocusAreaSubFocusAreasArgs = {
64364
+ q?: InputMaybe<Scalars['String']['input']>;
64365
+ sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
64366
+ };
64188
64367
  export declare type MercuryFocusAreaTeamAllocationsArgs = {
64189
64368
  after?: InputMaybe<Scalars['String']['input']>;
64190
64369
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -69787,6 +69966,7 @@ export declare type Query = {
69787
69966
  adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
69788
69967
  adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
69789
69968
  adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
69969
+ agentAI_contextPanel?: Maybe<AgentAiContextPanelResponse>;
69790
69970
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummary>;
69791
69971
  allIndividualSpaces?: Maybe<SpaceInfoConnection>;
69792
69972
  allTemplates?: Maybe<PaginatedTemplateInfoList>;
@@ -70371,6 +70551,7 @@ export declare type Query = {
70371
70551
  spaceWatchers?: Maybe<PaginatedPersonList>;
70372
70552
  spaces?: Maybe<PaginatedSpaceList>;
70373
70553
  spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
70554
+ sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
70374
70555
  sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
70375
70556
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
70376
70557
  suggest?: Maybe<QuerySuggestionApi>;
@@ -70436,6 +70617,10 @@ export declare type QueryAdminAnnouncementBannerSettingsByCriteriaArgs = {
70436
70617
  isAscending?: InputMaybe<Scalars['Boolean']['input']>;
70437
70618
  orderBy?: InputMaybe<AdminAnnouncementBannerSettingsByCriteriaOrder>;
70438
70619
  };
70620
+ export declare type QueryAgentAi_ContextPanelArgs = {
70621
+ cloudId: Scalars['ID']['input'];
70622
+ issueId?: InputMaybe<Scalars['String']['input']>;
70623
+ };
70439
70624
  export declare type QueryAgentAi_SummarizeIssueArgs = {
70440
70625
  cloudId: Scalars['ID']['input'];
70441
70626
  issueId?: InputMaybe<Scalars['String']['input']>;
@@ -72754,6 +72939,9 @@ export declare type QuerySpacesArgs = {
72754
72939
  export declare type QuerySpacesWithExemptionsArgs = {
72755
72940
  spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
72756
72941
  };
72942
+ export declare type QuerySqlSchemaSizeLogArgs = {
72943
+ installationId: Scalars['ID']['input'];
72944
+ };
72757
72945
  export declare type QuerySqlSlowQueryLogsArgs = {
72758
72946
  installationId: Scalars['ID']['input'];
72759
72947
  interval: QueryInterval;
@@ -74349,6 +74537,10 @@ export declare enum RoleAssignmentPrincipalType {
74349
74537
  Team = "TEAM",
74350
74538
  User = "USER"
74351
74539
  }
74540
+ export declare type SqlSchemaSizeLogResponse = {
74541
+ __typename?: 'SQLSchemaSizeLogResponse';
74542
+ databaseSize: Scalars['String']['output'];
74543
+ };
74352
74544
  export declare type SqlSlowQueryLogsResponse = {
74353
74545
  __typename?: 'SQLSlowQueryLogsResponse';
74354
74546
  avgQueryExecutionTime: Scalars['Float']['output'];