@forge/cli-shared 3.6.2-next.1-experimental-58938ba → 3.6.2-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,12 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 3.6.2-next.1-experimental-58938ba
3
+ ## 3.6.2-next.2
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - 1eca527f: Type-safe argument and option handling
8
- - Updated dependencies [23a89df6]
9
- - @forge/manifest@4.7.1-next.0-experimental-58938ba
7
+ - 589467c: Bumping dependencies via Renovate:
8
+
9
+ - cross-spawn
10
10
 
11
11
  ## 3.6.2-next.1
12
12
 
@@ -9242,7 +9242,8 @@ export declare enum JiraCmdbAttributeType {
9242
9242
  Version = "VERSION",
9243
9243
  Project = "PROJECT",
9244
9244
  Status = "STATUS",
9245
- BitbucketRepo = "BITBUCKET_REPO"
9245
+ BitbucketRepo = "BITBUCKET_REPO",
9246
+ OpsgenieTeam = "OPSGENIE_TEAM"
9246
9247
  }
9247
9248
  export declare type JiraCmdbAvatar = {
9248
9249
  __typename?: 'JiraCmdbAvatar';
@@ -9342,6 +9343,7 @@ export declare type JiraCmdbObjectAttributeValue = {
9342
9343
  status?: Maybe<JiraCmdbStatusType>;
9343
9344
  project?: Maybe<JiraProject>;
9344
9345
  bitbucketRepo?: Maybe<JiraCmdbBitbucketRepository>;
9346
+ opsgenieTeam?: Maybe<JiraOpsgenieTeam>;
9345
9347
  value?: Maybe<Scalars['String']>;
9346
9348
  displayValue?: Maybe<Scalars['String']>;
9347
9349
  searchValue?: Maybe<Scalars['String']>;
@@ -12214,6 +12216,12 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
12214
12216
  marketplaceApp?: Maybe<MarketplaceApp>;
12215
12217
  };
12216
12218
  export declare type JiraOnIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
12219
+ export declare type JiraOpsgenieTeam = Node & {
12220
+ __typename?: 'JiraOpsgenieTeam';
12221
+ id: Scalars['ID'];
12222
+ name?: Maybe<Scalars['String']>;
12223
+ url?: Maybe<Scalars['String']>;
12224
+ };
12217
12225
  export declare type JiraOption = Node & {
12218
12226
  __typename?: 'JiraOption';
12219
12227
  id: Scalars['ID'];
@@ -19193,10 +19201,12 @@ export declare type RoadmapChildItem = {
19193
19201
  itemTypeId: Scalars['ID'];
19194
19202
  parentId?: Maybe<Scalars['ID']>;
19195
19203
  summary?: Maybe<Scalars['String']>;
19204
+ assigneeId?: Maybe<Scalars['ID']>;
19196
19205
  assignee?: Maybe<User>;
19197
19206
  dueDateRFC3339?: Maybe<Scalars['Date']>;
19198
19207
  startDateRFC3339?: Maybe<Scalars['Date']>;
19199
19208
  status?: Maybe<RoadmapItemStatus>;
19209
+ statusId?: Maybe<Scalars['ID']>;
19200
19210
  dependencies?: Maybe<Array<Scalars['ID']>>;
19201
19211
  color?: Maybe<RoadmapPaletteColor>;
19202
19212
  rank?: Maybe<Scalars['String']>;
@@ -19354,6 +19364,7 @@ export declare type RoadmapItem = {
19354
19364
  startDate?: Maybe<Scalars['DateTime']>;
19355
19365
  startDateRFC3339?: Maybe<Scalars['Date']>;
19356
19366
  status?: Maybe<RoadmapItemStatus>;
19367
+ statusId?: Maybe<Scalars['ID']>;
19357
19368
  statusCategory?: Maybe<RoadmapItemStatusCategory>;
19358
19369
  createdDate?: Maybe<Scalars['DateTime']>;
19359
19370
  resolutionDate?: Maybe<Scalars['DateTime']>;
@@ -19414,9 +19425,11 @@ export declare type RoadmapLevelOneItem = {
19414
19425
  parentId?: Maybe<Scalars['ID']>;
19415
19426
  summary?: Maybe<Scalars['String']>;
19416
19427
  assignee?: Maybe<User>;
19428
+ assigneeId?: Maybe<Scalars['ID']>;
19417
19429
  dueDateRFC3339?: Maybe<Scalars['Date']>;
19418
19430
  startDateRFC3339?: Maybe<Scalars['Date']>;
19419
19431
  status?: Maybe<RoadmapItemStatus>;
19432
+ statusId?: Maybe<Scalars['ID']>;
19420
19433
  dependencies?: Maybe<Array<Scalars['ID']>>;
19421
19434
  color?: Maybe<RoadmapPaletteColor>;
19422
19435
  rank?: Maybe<Scalars['String']>;
@@ -19428,6 +19441,7 @@ export declare type RoadmapLevelOneItem = {
19428
19441
  inferredStartDate?: Maybe<Scalars['Date']>;
19429
19442
  resolved?: Maybe<Scalars['Boolean']>;
19430
19443
  childIssueCount: Scalars['Int'];
19444
+ progress: Array<RoadmapProgressEntry>;
19431
19445
  };
19432
19446
  export declare type RoadmapLevelOneItemConnection = {
19433
19447
  __typename?: 'RoadmapLevelOneItemConnection';
@@ -19476,6 +19490,11 @@ export declare enum RoadmapPaletteColor {
19476
19490
  DarkOrange = "DARK_ORANGE",
19477
19491
  DarkGrey = "DARK_GREY"
19478
19492
  }
19493
+ export declare type RoadmapProgressEntry = {
19494
+ __typename?: 'RoadmapProgressEntry';
19495
+ statusCategoryId: Scalars['ID'];
19496
+ count: Scalars['Int'];
19497
+ };
19479
19498
  export declare type RoadmapProject = {
19480
19499
  __typename?: 'RoadmapProject';
19481
19500
  id: Scalars['ID'];