@forge/cli-shared 5.5.0 → 5.5.1

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 5.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [01ed6bd]
8
+ - @forge/manifest@7.7.1
9
+
10
+ ## 5.5.1-next.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [01ed6bd]
15
+ - @forge/manifest@7.7.1-next.0
16
+
3
17
  ## 5.5.0
4
18
 
5
19
  ### Minor Changes
@@ -3781,6 +3781,7 @@ export declare type CompassComponent = Node & {
3781
3781
  state?: Maybe<Scalars['String']['output']>;
3782
3782
  type: CompassComponentType;
3783
3783
  typeId: Scalars['ID']['output'];
3784
+ typeMetadata?: Maybe<CompassComponentTypeObject>;
3784
3785
  viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
3785
3786
  viewerSubscription?: Maybe<CompassViewerSubscription>;
3786
3787
  };
@@ -3973,6 +3974,7 @@ export declare type CompassComponentHasScorecardsAppliedEdge = {
3973
3974
  activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
3974
3975
  cursor: Scalars['String']['output'];
3975
3976
  node?: Maybe<CompassScorecard>;
3977
+ scorecardScore?: Maybe<CompassScorecardScore>;
3976
3978
  };
3977
3979
  export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
3978
3980
  query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
@@ -41097,6 +41099,7 @@ export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
41097
41099
  errors?: Maybe<Array<MutationError>>;
41098
41100
  relatedWorkV2Edge?: Maybe<JiraVersionRelatedWorkV2Edge>;
41099
41101
  releaseNotePageEditUrl?: Maybe<Scalars['URL']['output']>;
41102
+ releaseNotePageSubType?: Maybe<Scalars['String']['output']>;
41100
41103
  releaseNotePageViewUrl?: Maybe<Scalars['URL']['output']>;
41101
41104
  success: Scalars['Boolean']['output'];
41102
41105
  version?: Maybe<JiraVersion>;
@@ -41356,6 +41359,17 @@ export declare type JiraDefaultGrantTypeValue = Node & {
41356
41359
  id: Scalars['ID']['output'];
41357
41360
  name: Scalars['String']['output'];
41358
41361
  };
41362
+ export declare type JiraDefaultUnsplashImagesInput = {
41363
+ cloudId: Scalars['ID']['input'];
41364
+ pageNumber?: InputMaybe<Scalars['Int']['input']>;
41365
+ pageSize?: InputMaybe<Scalars['Int']['input']>;
41366
+ width?: InputMaybe<Scalars['Int']['input']>;
41367
+ };
41368
+ export declare type JiraDefaultUnsplashImagesPage = {
41369
+ __typename?: 'JiraDefaultUnsplashImagesPage';
41370
+ results?: Maybe<Array<Maybe<JiraUnsplashImage>>>;
41371
+ };
41372
+ export declare type JiraDefaultUnsplashImagesPageResult = JiraDefaultUnsplashImagesPage | QueryError;
41359
41373
  export declare type JiraDeleteCustomBackgroundInput = {
41360
41374
  cloudId: Scalars['ID']['input'];
41361
41375
  customBackgroundId: Scalars['ID']['input'];
@@ -47504,6 +47518,7 @@ export declare type JiraQuery = {
47504
47518
  childIssuesLimit?: Maybe<Scalars['Long']['output']>;
47505
47519
  containerNavigation?: Maybe<JiraContainerNavigationResult>;
47506
47520
  customBackgrounds?: Maybe<JiraCustomBackgroundConnection>;
47521
+ defaultUnsplashImages?: Maybe<JiraDefaultUnsplashImagesPageResult>;
47507
47522
  deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
47508
47523
  deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
47509
47524
  devOps?: Maybe<JiraDevOpsQuery>;
@@ -47773,6 +47788,9 @@ export declare type JiraQueryCustomBackgroundsArgs = {
47773
47788
  first?: InputMaybe<Scalars['Int']['input']>;
47774
47789
  last?: InputMaybe<Scalars['Int']['input']>;
47775
47790
  };
47791
+ export declare type JiraQueryDefaultUnsplashImagesArgs = {
47792
+ input: JiraDefaultUnsplashImagesInput;
47793
+ };
47776
47794
  export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
47777
47795
  projectId: Scalars['ID']['input'];
47778
47796
  };