@forge/cli-shared 6.6.0 → 6.6.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.6.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 091886c: prepare installations product field to accept multiple products
8
+ - 29e8c8b: Change message to deprecated
9
+
3
10
  ## 6.6.0
4
11
 
5
12
  ### Minor Changes
@@ -53826,6 +53826,7 @@ export declare type JiraForgeExtension = {
53826
53826
  id: Scalars['ID']['output'];
53827
53827
  installationId: Scalars['String']['output'];
53828
53828
  license?: Maybe<JiraForgeExtensionLicense>;
53829
+ overrides?: Maybe<Scalars['JSON']['output']>;
53829
53830
  properties: Scalars['JSON']['output'];
53830
53831
  scopes: Array<Scalars['String']['output']>;
53831
53832
  type: Scalars['String']['output'];
@@ -87430,6 +87431,18 @@ export declare type TownsquareProjectEdge = {
87430
87431
  cursor: Scalars['String']['output'];
87431
87432
  node?: Maybe<TownsquareProject>;
87432
87433
  };
87434
+ export declare enum TownsquareProjectPhase {
87435
+ Done = "done",
87436
+ InProgress = "in_progress",
87437
+ Paused = "paused",
87438
+ Pending = "pending"
87439
+ }
87440
+ export declare type TownsquareProjectPhaseDetails = {
87441
+ __typename?: 'TownsquareProjectPhaseDetails';
87442
+ displayName?: Maybe<Scalars['String']['output']>;
87443
+ id: Scalars['Int']['output'];
87444
+ name?: Maybe<TownsquareProjectPhase>;
87445
+ };
87433
87446
  export declare enum TownsquareProjectSortEnum {
87434
87447
  CreationDateAsc = "CREATION_DATE_ASC",
87435
87448
  CreationDateDesc = "CREATION_DATE_DESC",
@@ -87463,6 +87476,38 @@ export declare enum TownsquareProjectStateValue {
87463
87476
  Paused = "paused",
87464
87477
  Pending = "pending"
87465
87478
  }
87479
+ export declare type TownsquareProjectUpdate = Node & {
87480
+ __typename?: 'TownsquareProjectUpdate';
87481
+ ari: Scalars['String']['output'];
87482
+ comments?: Maybe<TownsquareCommentConnection>;
87483
+ creationDate?: Maybe<Scalars['DateTime']['output']>;
87484
+ creator?: Maybe<User>;
87485
+ editDate?: Maybe<Scalars['DateTime']['output']>;
87486
+ id: Scalars['ID']['output'];
87487
+ lastEditedBy?: Maybe<User>;
87488
+ missedUpdate: Scalars['Boolean']['output'];
87489
+ newDueDate?: Maybe<TownsquareTargetDate>;
87490
+ newPhase?: Maybe<TownsquareProjectPhaseDetails>;
87491
+ newPhaseNew?: Maybe<TownsquareProjectPhaseDetails>;
87492
+ newState?: Maybe<TownsquareProjectState>;
87493
+ newTargetDate?: Maybe<Scalars['Date']['output']>;
87494
+ newTargetDateConfidence: Scalars['Int']['output'];
87495
+ oldDueDate?: Maybe<TownsquareTargetDate>;
87496
+ oldPhase?: Maybe<TownsquareProjectPhaseDetails>;
87497
+ oldPhaseNew?: Maybe<TownsquareProjectPhaseDetails>;
87498
+ oldState?: Maybe<TownsquareProjectState>;
87499
+ oldTargetDate?: Maybe<Scalars['Date']['output']>;
87500
+ oldTargetDateConfidence?: Maybe<Scalars['Int']['output']>;
87501
+ project?: Maybe<TownsquareProject>;
87502
+ summary?: Maybe<Scalars['String']['output']>;
87503
+ updateType?: Maybe<TownsquareUpdateType>;
87504
+ url?: Maybe<Scalars['String']['output']>;
87505
+ uuid?: Maybe<Scalars['UUID']['output']>;
87506
+ };
87507
+ export declare type TownsquareProjectUpdateCommentsArgs = {
87508
+ after?: InputMaybe<Scalars['String']['input']>;
87509
+ first?: InputMaybe<Scalars['Int']['input']>;
87510
+ };
87466
87511
  export declare type TownsquareQueryApi = {
87467
87512
  __typename?: 'TownsquareQueryApi';
87468
87513
  allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
@@ -87479,6 +87524,7 @@ export declare type TownsquareQueryApi = {
87479
87524
  project?: Maybe<TownsquareProject>;
87480
87525
  projectSearch?: Maybe<TownsquareProjectConnection>;
87481
87526
  projectTql?: Maybe<TownsquareProjectConnection>;
87527
+ projectUpdatesByAris?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
87482
87528
  projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
87483
87529
  tagsByAri?: Maybe<Array<Maybe<TownsquareTag>>>;
87484
87530
  };
@@ -87554,6 +87600,9 @@ export declare type TownsquareQueryApiProjectTqlArgs = {
87554
87600
  q: Scalars['String']['input'];
87555
87601
  sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
87556
87602
  };
87603
+ export declare type TownsquareQueryApiProjectUpdatesByArisArgs = {
87604
+ aris: Array<Scalars['ID']['input']>;
87605
+ };
87557
87606
  export declare type TownsquareQueryApiProjectsByAriArgs = {
87558
87607
  aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
87559
87608
  };