@forge/cli-shared 2.3.2-next.2 → 2.4.0-next.5

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,26 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.4.0-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [e411a29]
8
+ - @forge/manifest@3.5.0-next.4
9
+
10
+ ## 2.4.0-next.4
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [d094c69]
15
+ - @forge/manifest@3.5.0-next.3
16
+
17
+ ## 2.4.0-next.3
18
+
19
+ ### Minor Changes
20
+
21
+ - f33aada8: Fix vulnerability dependencies
22
+ - 726ef79d: Fix dependency vulnerabilities
23
+
3
24
  ## 2.3.2-next.2
4
25
 
5
26
  ### Patch Changes
@@ -5093,6 +5093,7 @@ export declare type DevOpsTool = Node & {
5093
5093
  group: DevOpsToolGroup;
5094
5094
  supportsContainers: Scalars['Boolean'];
5095
5095
  containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
5096
+ integration?: Maybe<DevOpsToolIntegration>;
5096
5097
  namespaces?: Maybe<DevOpsToolNamespaceConnection>;
5097
5098
  };
5098
5099
  export declare type DevOpsToolNamespacesArgs = {
@@ -5208,6 +5209,21 @@ export declare type DevOpsToolGroup = {
5208
5209
  groupId: Scalars['String'];
5209
5210
  groupName: Scalars['String'];
5210
5211
  };
5212
+ export declare type DevOpsToolIntegration = DevOpsToolIntegrationApp | DevOpsToolIntegrationProduct;
5213
+ export declare type DevOpsToolIntegrationApp = {
5214
+ __typename?: 'DevOpsToolIntegrationApp';
5215
+ appKey: Scalars['String'];
5216
+ appName: Scalars['String'];
5217
+ installed: Scalars['Boolean'];
5218
+ iconUrl?: Maybe<Scalars['String']>;
5219
+ };
5220
+ export declare type DevOpsToolIntegrationProduct = {
5221
+ __typename?: 'DevOpsToolIntegrationProduct';
5222
+ productKey: Scalars['String'];
5223
+ productName: Scalars['String'];
5224
+ available: Scalars['Boolean'];
5225
+ iconUrl?: Maybe<Scalars['String']>;
5226
+ };
5211
5227
  export declare type DevOpsToolNamespace = Node & {
5212
5228
  __typename?: 'DevOpsToolNamespace';
5213
5229
  id: Scalars['ID'];
@@ -7988,6 +8004,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
7988
8004
  export declare type JiraIssueType = Node & {
7989
8005
  __typename?: 'JiraIssueType';
7990
8006
  id: Scalars['ID'];
8007
+ issueTypeId?: Maybe<Scalars['String']>;
7991
8008
  name: Scalars['String'];
7992
8009
  description?: Maybe<Scalars['String']>;
7993
8010
  avatar?: Maybe<JiraAvatar>;
@@ -11168,6 +11185,7 @@ export declare type MarketplacePartner = {
11168
11185
  support?: Maybe<MarketplacePartnerSupport>;
11169
11186
  programs?: Maybe<MarketplacePartnerPrograms>;
11170
11187
  partnerType?: Maybe<MarketplacePartnerType>;
11188
+ partnerTier?: Maybe<MarketplacePartnerTier>;
11171
11189
  };
11172
11190
  export declare type MarketplacePartnerAddress = {
11173
11191
  __typename?: 'MarketplacePartnerAddress';
@@ -11220,6 +11238,16 @@ export declare enum MarketplacePartnerSupportHolidayFrequency {
11220
11238
  OneTime = "ONE_TIME",
11221
11239
  Annual = "ANNUAL"
11222
11240
  }
11241
+ export declare type MarketplacePartnerTier = {
11242
+ __typename?: 'MarketplacePartnerTier';
11243
+ type: MarketplacePartnerTierType;
11244
+ updatedDate: Scalars['String'];
11245
+ };
11246
+ export declare enum MarketplacePartnerTierType {
11247
+ Silver = "SILVER",
11248
+ Gold = "GOLD",
11249
+ Platinum = "PLATINUM"
11250
+ }
11223
11251
  export declare enum MarketplacePartnerType {
11224
11252
  AtlassianInternal = "ATLASSIAN_INTERNAL"
11225
11253
  }
@@ -12740,6 +12768,7 @@ export declare type PolarisMatrixAxis = {
12740
12768
  __typename?: 'PolarisMatrixAxis';
12741
12769
  dimension: Scalars['String'];
12742
12770
  field: PolarisIdeaField;
12771
+ fieldOptions?: Maybe<Array<PolarisGroupValue>>;
12743
12772
  };
12744
12773
  export declare type PolarisMatrixConfig = {
12745
12774
  __typename?: 'PolarisMatrixConfig';
@@ -13979,6 +14008,19 @@ export declare type RoadmapResolveHealthcheckPayload = Payload & {
13979
14008
  success: Scalars['Boolean'];
13980
14009
  errors?: Maybe<Array<MutationError>>;
13981
14010
  };
14011
+ export declare type RoadmapScheduleItemInput = {
14012
+ itemId: Scalars['ID'];
14013
+ dueDate?: Maybe<Scalars['Date']>;
14014
+ startDate?: Maybe<Scalars['Date']>;
14015
+ };
14016
+ export declare type RoadmapScheduleItemsInput = {
14017
+ scheduleRequests: Array<Maybe<RoadmapScheduleItemInput>>;
14018
+ };
14019
+ export declare type RoadmapScheduleItemsPayload = Payload & {
14020
+ __typename?: 'RoadmapScheduleItemsPayload';
14021
+ success: Scalars['Boolean'];
14022
+ errors?: Maybe<Array<MutationError>>;
14023
+ };
13982
14024
  export declare type RoadmapSprint = {
13983
14025
  __typename?: 'RoadmapSprint';
13984
14026
  id: Scalars['ID'];
@@ -14074,6 +14116,7 @@ export declare type RoadmapsMutation = {
14074
14116
  resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
14075
14117
  addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
14076
14118
  updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
14119
+ scheduleRoadmapItems?: Maybe<RoadmapScheduleItemsPayload>;
14077
14120
  addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
14078
14121
  removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
14079
14122
  };
@@ -14092,6 +14135,10 @@ export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
14092
14135
  sourceARI: Scalars['ID'];
14093
14136
  input: RoadmapUpdateItemInput;
14094
14137
  };
14138
+ export declare type RoadmapsMutationScheduleRoadmapItemsArgs = {
14139
+ sourceARI: Scalars['ID'];
14140
+ input: RoadmapScheduleItemsInput;
14141
+ };
14095
14142
  export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
14096
14143
  sourceARI: Scalars['ID'];
14097
14144
  input: RoadmapToggleDependencyInput;
@@ -15999,6 +16046,7 @@ export declare type UpdatePolarisInsightPayload = Payload & {
15999
16046
  export declare type UpdatePolarisMatrixAxis = {
16000
16047
  dimension: Scalars['String'];
16001
16048
  field: Scalars['ID'];
16049
+ fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
16002
16050
  };
16003
16051
  export declare type UpdatePolarisMatrixConfig = {
16004
16052
  axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;