@forge/cli-shared 3.23.2-next.2 → 3.23.2-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,13 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.23.2-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - f26e69c: Bumping dependencies via Renovate:
8
+
9
+ - @sentry/node
10
+
3
11
  ## 3.23.2-next.2
4
12
 
5
13
  ### Patch Changes
@@ -31246,6 +31246,7 @@ export declare type JiraQuery = {
31246
31246
  stringUserProperty?: Maybe<JiraEntityPropertyString>;
31247
31247
  systemFilters?: Maybe<JiraSystemFilterConnection>;
31248
31248
  timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
31249
+ uiModifications?: Maybe<Array<JiraUiModification>>;
31249
31250
  userHomePage?: Maybe<JiraHomePage>;
31250
31251
  userPreferences?: Maybe<JiraUserPreferences>;
31251
31252
  userSegmentation?: Maybe<JiraUserSegmentation>;
@@ -31727,6 +31728,9 @@ export declare type JiraQuerySystemFiltersArgs = {
31727
31728
  export declare type JiraQueryTimeTrackingSettingsArgs = {
31728
31729
  cloudId: Scalars['ID']['input'];
31729
31730
  };
31731
+ export declare type JiraQueryUiModificationsArgs = {
31732
+ context: JiraUiModificationsContextInput;
31733
+ };
31730
31734
  export declare type JiraQueryUserHomePageArgs = {
31731
31735
  cloudId: Scalars['ID']['input'];
31732
31736
  };
@@ -33850,6 +33854,22 @@ export declare type JiraUiExposedError = {
33850
33854
  __typename?: 'JiraUIExposedError';
33851
33855
  message?: Maybe<Scalars['String']['output']>;
33852
33856
  };
33857
+ export declare type JiraUiModification = {
33858
+ __typename?: 'JiraUiModification';
33859
+ appEnvId: Scalars['String']['output'];
33860
+ data?: Maybe<Scalars['String']['output']>;
33861
+ id: Scalars['ID']['output'];
33862
+ };
33863
+ export declare type JiraUiModificationsContextInput = {
33864
+ issueTypeId: Scalars['ID']['input'];
33865
+ projectId: Scalars['ID']['input'];
33866
+ viewType: JiraUiModificationsViewType;
33867
+ };
33868
+ export declare enum JiraUiModificationsViewType {
33869
+ Gic = "GIC",
33870
+ IssueTransition = "IssueTransition",
33871
+ IssueView = "IssueView"
33872
+ }
33853
33873
  export declare type JiraUnlinkIssuesFromIncidentMutationInput = {
33854
33874
  incidentId: Scalars['ID']['input'];
33855
33875
  issueIds: Array<Scalars['ID']['input']>;
@@ -35722,6 +35742,7 @@ export declare type MarketplaceStoreInstallAppTargetInput = {
35722
35742
  product: MarketplaceStoreInstallationTargetProduct;
35723
35743
  };
35724
35744
  export declare enum MarketplaceStoreInstallationTargetProduct {
35745
+ Compass = "COMPASS",
35725
35746
  Confluence = "CONFLUENCE",
35726
35747
  Jira = "JIRA"
35727
35748
  }