@forge/cli-shared 6.5.0 → 6.5.1-next.0

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.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [2ccf3f4]
8
+ - @forge/manifest@8.3.1-next.0
9
+
3
10
  ## 6.5.0
4
11
 
5
12
  ### Minor Changes
@@ -41868,6 +41868,7 @@ export declare type HelpLayout = Node & {
41868
41868
  id: Scalars['ID']['output'];
41869
41869
  reloadOnPublish?: Maybe<Scalars['Boolean']['output']>;
41870
41870
  sections?: Maybe<HelpLayoutSectionConnection>;
41871
+ visualConfig?: Maybe<HelpLayoutVisualConfig>;
41871
41872
  };
41872
41873
  export declare type HelpLayoutSectionsArgs = {
41873
41874
  after?: InputMaybe<Scalars['String']['input']>;
@@ -41953,6 +41954,16 @@ export declare type HelpLayoutBackgroundImageInput = {
41953
41954
  fileId?: InputMaybe<Scalars['String']['input']>;
41954
41955
  url?: InputMaybe<Scalars['String']['input']>;
41955
41956
  };
41957
+ export declare enum HelpLayoutBackgroundImageObjectFit {
41958
+ Contain = "CONTAIN",
41959
+ Cover = "COVER",
41960
+ Fill = "FILL"
41961
+ }
41962
+ export declare enum HelpLayoutBackgroundType {
41963
+ Color = "COLOR",
41964
+ Image = "IMAGE",
41965
+ Transparent = "TRANSPARENT"
41966
+ }
41956
41967
  export declare type HelpLayoutCompositeElement = {
41957
41968
  children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
41958
41969
  elementType?: Maybe<HelpLayoutCompositeElementType>;
@@ -42129,8 +42140,10 @@ export declare type HelpLayoutHeroElement = HelpLayoutVisualEntity & Node & {
42129
42140
  __typename?: 'HelpLayoutHeroElement';
42130
42141
  data?: Maybe<HelpLayoutHeroElementData>;
42131
42142
  elementType?: Maybe<HelpLayoutAtomicElementType>;
42143
+ hideSearchBar?: Maybe<Scalars['Boolean']['output']>;
42132
42144
  homePageTitle?: Maybe<Scalars['String']['output']>;
42133
42145
  id: Scalars['ID']['output'];
42146
+ useGlobalSettings?: Maybe<Scalars['Boolean']['output']>;
42134
42147
  userLanguageTag?: Maybe<Scalars['String']['output']>;
42135
42148
  visualConfig?: Maybe<HelpLayoutVisualConfig>;
42136
42149
  };
@@ -42140,6 +42153,8 @@ export declare type HelpLayoutHeroElementData = {
42140
42153
  userLanguageTag?: Maybe<Scalars['String']['output']>;
42141
42154
  };
42142
42155
  export declare type HelpLayoutHeroElementInput = {
42156
+ hideSearchBar?: InputMaybe<Scalars['Boolean']['input']>;
42157
+ useGlobalSettings?: InputMaybe<Scalars['Boolean']['input']>;
42143
42158
  visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
42144
42159
  };
42145
42160
  export declare enum HelpLayoutHorizontalAlignment {
@@ -42270,12 +42285,14 @@ export declare type HelpLayoutPortalsListData = {
42270
42285
  export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node & {
42271
42286
  __typename?: 'HelpLayoutPortalsListElement';
42272
42287
  data?: Maybe<HelpLayoutPortalsListData>;
42288
+ elementTitle?: Maybe<Scalars['String']['output']>;
42273
42289
  elementType?: Maybe<HelpLayoutAtomicElementType>;
42274
42290
  id: Scalars['ID']['output'];
42275
42291
  portals?: Maybe<Array<Maybe<HelpLayoutPortalCard>>>;
42276
42292
  visualConfig?: Maybe<HelpLayoutVisualConfig>;
42277
42293
  };
42278
42294
  export declare type HelpLayoutPortalsListInput = {
42295
+ elementTitle?: InputMaybe<Scalars['String']['input']>;
42279
42296
  visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
42280
42297
  };
42281
42298
  export declare enum HelpLayoutProjectType {
@@ -42371,6 +42388,7 @@ export declare type HelpLayoutSuggestedRequestFormsListElement = HelpLayoutVisua
42371
42388
  __typename?: 'HelpLayoutSuggestedRequestFormsListElement';
42372
42389
  config?: Maybe<Scalars['String']['output']>;
42373
42390
  data?: Maybe<HelpLayoutSuggestedRequestFormsListElementData>;
42391
+ elementTitle?: Maybe<Scalars['String']['output']>;
42374
42392
  elementType?: Maybe<HelpLayoutAtomicElementType>;
42375
42393
  id: Scalars['ID']['output'];
42376
42394
  suggestedRequestTypes?: Maybe<Array<HelpLayoutRequestForm>>;
@@ -42381,6 +42399,7 @@ export declare type HelpLayoutSuggestedRequestFormsListElementData = {
42381
42399
  suggestedRequestTypes?: Maybe<Array<HelpLayoutRequestForm>>;
42382
42400
  };
42383
42401
  export declare type HelpLayoutSuggestedRequestFormsListInput = {
42402
+ elementTitle?: InputMaybe<Scalars['String']['input']>;
42384
42403
  visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
42385
42404
  };
42386
42405
  export declare type HelpLayoutTopic = {
@@ -42402,6 +42421,7 @@ export declare type HelpLayoutTopicItem = {
42402
42421
  export declare type HelpLayoutTopicsListElement = HelpLayoutVisualEntity & Node & {
42403
42422
  __typename?: 'HelpLayoutTopicsListElement';
42404
42423
  data?: Maybe<HelpLayoutTopicsListElementData>;
42424
+ elementTitle?: Maybe<Scalars['String']['output']>;
42405
42425
  elementType?: Maybe<HelpLayoutAtomicElementType>;
42406
42426
  id: Scalars['ID']['output'];
42407
42427
  topics?: Maybe<Array<HelpLayoutTopic>>;
@@ -42412,11 +42432,13 @@ export declare type HelpLayoutTopicsListElementData = {
42412
42432
  topics?: Maybe<Array<HelpLayoutTopic>>;
42413
42433
  };
42414
42434
  export declare type HelpLayoutTopicsListInput = {
42435
+ elementTitle?: InputMaybe<Scalars['String']['input']>;
42415
42436
  visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
42416
42437
  };
42417
42438
  export declare type HelpLayoutUpdateInput = {
42418
42439
  layoutId: Scalars['ID']['input'];
42419
42440
  sections: Array<HelpLayoutSectionInput>;
42441
+ visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
42420
42442
  };
42421
42443
  export declare type HelpLayoutUpdatePayload = Payload & {
42422
42444
  __typename?: 'HelpLayoutUpdatePayload';
@@ -42435,17 +42457,23 @@ export declare type HelpLayoutVisualConfig = {
42435
42457
  alignment?: Maybe<HelpLayoutAlignmentSettings>;
42436
42458
  backgroundColor?: Maybe<Scalars['String']['output']>;
42437
42459
  backgroundImage?: Maybe<HelpLayoutBackgroundImage>;
42460
+ backgroundType?: Maybe<HelpLayoutBackgroundType>;
42438
42461
  foregroundColor?: Maybe<Scalars['String']['output']>;
42439
42462
  hidden?: Maybe<Scalars['Boolean']['output']>;
42463
+ objectFit?: Maybe<HelpLayoutBackgroundImageObjectFit>;
42440
42464
  themeTemplateId?: Maybe<Scalars['String']['output']>;
42465
+ titleColor?: Maybe<Scalars['String']['output']>;
42441
42466
  };
42442
42467
  export declare type HelpLayoutVisualConfigInput = {
42443
42468
  alignment?: InputMaybe<HelpLayoutAlignmentSettingsInput>;
42444
42469
  backgroundColor?: InputMaybe<Scalars['String']['input']>;
42445
42470
  backgroundImage?: InputMaybe<HelpLayoutBackgroundImageInput>;
42471
+ backgroundType?: InputMaybe<HelpLayoutBackgroundType>;
42446
42472
  foregroundColor?: InputMaybe<Scalars['String']['input']>;
42447
42473
  hidden?: InputMaybe<Scalars['Boolean']['input']>;
42474
+ objectFit?: InputMaybe<HelpLayoutBackgroundImageObjectFit>;
42448
42475
  themeTemplateId?: InputMaybe<Scalars['String']['input']>;
42476
+ titleColor?: InputMaybe<Scalars['String']['input']>;
42449
42477
  };
42450
42478
  export declare type HelpLayoutVisualEntity = {
42451
42479
  visualConfig?: Maybe<HelpLayoutVisualConfig>;
@@ -69749,6 +69777,7 @@ export declare type Query = {
69749
69777
  spaceWatchers?: Maybe<PaginatedPersonList>;
69750
69778
  spaces?: Maybe<PaginatedSpaceList>;
69751
69779
  spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
69780
+ sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
69752
69781
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
69753
69782
  suggest?: Maybe<QuerySuggestionApi>;
69754
69783
  suggestedSpaces?: Maybe<PaginatedSpaceList>;
@@ -72118,6 +72147,11 @@ export declare type QuerySpacesArgs = {
72118
72147
  export declare type QuerySpacesWithExemptionsArgs = {
72119
72148
  spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
72120
72149
  };
72150
+ export declare type QuerySqlSlowQueryLogsArgs = {
72151
+ installationId: Scalars['ID']['input'];
72152
+ interval: QueryInterval;
72153
+ queryType: Array<QueryType>;
72154
+ };
72121
72155
  export declare type QueryStalePagesArgs = {
72122
72156
  cursor?: InputMaybe<Scalars['String']['input']>;
72123
72157
  includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
@@ -72305,6 +72339,10 @@ export declare type QueryErrorExtension = {
72305
72339
  errorType?: Maybe<Scalars['String']['output']>;
72306
72340
  statusCode?: Maybe<Scalars['Int']['output']>;
72307
72341
  };
72342
+ export declare type QueryInterval = {
72343
+ endTime: Scalars['String']['input'];
72344
+ startTime: Scalars['String']['input'];
72345
+ };
72308
72346
  export declare type QueryPayload = {
72309
72347
  errors?: Maybe<Array<QueryError>>;
72310
72348
  success: Scalars['Boolean']['output'];
@@ -72340,6 +72378,14 @@ export declare type QuerySuggestionResultNode = {
72340
72378
  title?: Maybe<Scalars['String']['output']>;
72341
72379
  type?: Maybe<Scalars['String']['output']>;
72342
72380
  };
72381
+ export declare enum QueryType {
72382
+ All = "ALL",
72383
+ Delete = "DELETE",
72384
+ Insert = "INSERT",
72385
+ Other = "OTHER",
72386
+ Select = "SELECT",
72387
+ Update = "UPDATE"
72388
+ }
72343
72389
  export declare type QuickReload = {
72344
72390
  __typename?: 'QuickReload';
72345
72391
  comments: Array<QuickReloadComment>;
@@ -72508,6 +72554,7 @@ export declare type RadarPosition = Node & RadarEntity & {
72508
72554
  entityId: Scalars['ID']['output'];
72509
72555
  fieldValues: Array<RadarFieldValueIdPair>;
72510
72556
  id: Scalars['ID']['output'];
72557
+ isManager: Scalars['Boolean']['output'];
72511
72558
  manager?: Maybe<RadarPosition>;
72512
72559
  reportingLine?: Maybe<Array<RadarPosition>>;
72513
72560
  type?: Maybe<RadarEntityType>;
@@ -73689,6 +73736,15 @@ export declare enum RoleAssignmentPrincipalType {
73689
73736
  Team = "TEAM",
73690
73737
  User = "USER"
73691
73738
  }
73739
+ export declare type SqlSlowQueryLogsResponse = {
73740
+ __typename?: 'SQLSlowQueryLogsResponse';
73741
+ avgQueryExecutionTime: Scalars['Float']['output'];
73742
+ percentileQueryExecutionTime: Scalars['Float']['output'];
73743
+ query: Scalars['String']['output'];
73744
+ queryCount: Scalars['Int']['output'];
73745
+ rowsReturned: Scalars['Int']['output'];
73746
+ rowsScanned: Scalars['Int']['output'];
73747
+ };
73692
73748
  export declare type Sandbox = {
73693
73749
  __typename?: 'Sandbox';
73694
73750
  events: Array<SandboxEvent>;
@@ -80376,14 +80432,10 @@ export declare type TrelloCreatePlannerCalendarEventInput = {
80376
80432
  providerAccountId: Scalars['ID']['input'];
80377
80433
  };
80378
80434
  export declare type TrelloCreatePlannerCalendarEventOptions = {
80379
- allDay?: InputMaybe<Scalars['Boolean']['input']>;
80380
- description?: InputMaybe<Scalars['String']['input']>;
80435
+ cardId?: InputMaybe<Scalars['ID']['input']>;
80381
80436
  end: Scalars['DateTime']['input'];
80382
- eventType?: InputMaybe<TrelloPlannerCalendarEventType>;
80383
- readOnly?: InputMaybe<Scalars['Boolean']['input']>;
80384
80437
  start: Scalars['DateTime']['input'];
80385
80438
  title: Scalars['String']['input'];
80386
- visibility?: InputMaybe<TrelloPlannerCalendarEventVisibility>;
80387
80439
  };
80388
80440
  export declare type TrelloCreatePlannerCalendarEventPayload = Payload & {
80389
80441
  __typename?: 'TrelloCreatePlannerCalendarEventPayload';
@@ -80959,8 +81011,8 @@ export declare enum TrelloPlannerCalendarEventStatus {
80959
81011
  }
80960
81012
  export declare enum TrelloPlannerCalendarEventType {
80961
81013
  Default = "DEFAULT",
80962
- FocusTime = "FOCUS_TIME",
80963
- OutOfOffice = "OUT_OF_OFFICE"
81014
+ OutOfOffice = "OUT_OF_OFFICE",
81015
+ PlannerEvent = "PLANNER_EVENT"
80964
81016
  }
80965
81017
  export declare enum TrelloPlannerCalendarEventVisibility {
80966
81018
  Default = "DEFAULT",
@@ -81771,7 +81823,7 @@ export declare type UnifiedLearning = UnifiedINode & {
81771
81823
  recentCoursesBadges?: Maybe<UnifiedUProfileBadgesResult>;
81772
81824
  };
81773
81825
  export declare type UnifiedLearningCertificationsArgs = {
81774
- after?: InputMaybe<Scalars['Int']['input']>;
81826
+ after?: InputMaybe<Scalars['String']['input']>;
81775
81827
  first?: InputMaybe<Scalars['Int']['input']>;
81776
81828
  sortDirection?: InputMaybe<UnifiedSortDirection>;
81777
81829
  sortField?: InputMaybe<UnifiedLearningCertificationSortField>;