@forge/cli-shared 8.15.3-next.3 → 8.15.3-next.3-experimental-bf21d1e

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,15 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.15.3-next.3-experimental-bf21d1e
4
+
5
+ ### Patch Changes
6
+
7
+ - 7e3c9ae: Improve error message when missing required scopes
8
+ - 43cbfaf: Update wording and links for forge login to enable scoped tokens
9
+ - Updated dependencies [ad5a470]
10
+ - Updated dependencies [4210da0]
11
+ - @forge/manifest@12.1.2-next.1-experimental-bf21d1e
12
+
3
13
  ## 8.15.3-next.3
4
14
 
5
15
  ### Patch Changes
@@ -35592,6 +35592,11 @@ export declare type DevAiMutationsSetAutofixEnabledStateForRepositoryArgs = {
35592
35592
  export declare type DevAiMutationsTriggerAutofixScanArgs = {
35593
35593
  input: DevAiTriggerAutofixScanInput;
35594
35594
  };
35595
+ export declare enum DevAiOwnershipFilter {
35596
+ All = "ALL",
35597
+ Own = "OWN",
35598
+ Shared = "SHARED"
35599
+ }
35595
35600
  export declare type DevAiPhaseEndedAutodevLog = DevAiAutodevLog & {
35596
35601
  __typename?: 'DevAiPhaseEndedAutodevLog';
35597
35602
  id: Scalars['ID']['output'];
@@ -35771,6 +35776,7 @@ export declare type DevAiRovoDevIssueViewResponseSessionsArgs = {
35771
35776
  cloudId?: InputMaybe<Scalars['ID']['input']>;
35772
35777
  first?: InputMaybe<Scalars['Int']['input']>;
35773
35778
  issueKey?: InputMaybe<Scalars['String']['input']>;
35779
+ ownershipFilter?: InputMaybe<DevAiOwnershipFilter>;
35774
35780
  sort?: InputMaybe<DevAiRovoDevSessionSort>;
35775
35781
  statusCategoryFilter?: InputMaybe<DevAiSessionStatusCategoryFilter>;
35776
35782
  };
@@ -145362,6 +145368,7 @@ export declare type QueryDevai_RovodevSessionsByIssueKeyArgs = {
145362
145368
  cloudId?: InputMaybe<Scalars['ID']['input']>;
145363
145369
  first?: InputMaybe<Scalars['Int']['input']>;
145364
145370
  issueKey?: InputMaybe<Scalars['String']['input']>;
145371
+ ownershipFilter?: InputMaybe<DevAiOwnershipFilter>;
145365
145372
  sort?: InputMaybe<DevAiRovoDevSessionSort>;
145366
145373
  statusCategoryFilter?: InputMaybe<DevAiSessionStatusCategoryFilter>;
145367
145374
  };