@forge/cli-shared 6.7.1-next.0 → 6.7.1-next.1

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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.7.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2cdac63: forge install should list all scopes
8
+
3
9
  ## 6.7.1-next.0
4
10
 
5
11
  ### Patch Changes
@@ -36619,6 +36619,7 @@ export declare type GraphStoreCreateSprintRetrospectiveWhiteboardRelationshipInp
36619
36619
  };
36620
36620
  export declare type GraphStoreCreateTeamConnectedToContainerInput = {
36621
36621
  relationships: Array<GraphStoreCreateTeamConnectedToContainerRelationshipInput>;
36622
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
36622
36623
  };
36623
36624
  export declare type GraphStoreCreateTeamConnectedToContainerPayload = Payload & {
36624
36625
  __typename?: 'GraphStoreCreateTeamConnectedToContainerPayload';
@@ -50163,6 +50164,13 @@ export declare type HelpCenterPermissionSettingsPayload = Payload & {
50163
50164
  success: Scalars['Boolean']['output'];
50164
50165
  };
50165
50166
  export declare type HelpCenterPermissionSettingsResult = HelpCenterPermissionSettings | QueryError;
50167
+ export declare type HelpCenterPermissions = {
50168
+ __typename?: 'HelpCenterPermissions';
50169
+ isAdvancedCustomizationEnabled: Scalars['Boolean']['output'];
50170
+ isHelpCenterAdmin: Scalars['Boolean']['output'];
50171
+ isLayoutEditable: Scalars['Boolean']['output'];
50172
+ };
50173
+ export declare type HelpCenterPermissionsResult = HelpCenterPermissions | QueryError;
50166
50174
  export declare type HelpCenterPortal = {
50167
50175
  __typename?: 'HelpCenterPortal';
50168
50176
  description?: Maybe<Scalars['String']['output']>;
@@ -50245,6 +50253,7 @@ export declare type HelpCenterQueryApi = {
50245
50253
  helpCenterPageById?: Maybe<HelpCenterPageQueryResult>;
50246
50254
  helpCenterPages?: Maybe<HelpCenterPageQueryResultConnection>;
50247
50255
  helpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
50256
+ helpCenterPermissions?: Maybe<HelpCenterPermissionsResult>;
50248
50257
  helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
50249
50258
  helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
50250
50259
  helpCenters?: Maybe<HelpCenterQueryResultConnection>;
@@ -50278,6 +50287,10 @@ export declare type HelpCenterQueryApiHelpCenterPermissionSettingsArgs = {
50278
50287
  helpCenterAri: Scalars['ID']['input'];
50279
50288
  last?: InputMaybe<Scalars['Int']['input']>;
50280
50289
  };
50290
+ export declare type HelpCenterQueryApiHelpCenterPermissionsArgs = {
50291
+ slug?: InputMaybe<Scalars['String']['input']>;
50292
+ workspaceAri: Scalars['ID']['input'];
50293
+ };
50281
50294
  export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
50282
50295
  helpCenterAri: Scalars['ID']['input'];
50283
50296
  };
@@ -52037,6 +52050,35 @@ export declare type InstanceAnalyticsCount = {
52037
52050
  __typename?: 'InstanceAnalyticsCount';
52038
52051
  user: Scalars['Int']['output'];
52039
52052
  };
52053
+ export declare type IntentDetectionResponse = {
52054
+ __typename?: 'IntentDetectionResponse';
52055
+ intentDetectionResults?: Maybe<Array<Maybe<IntentDetectionResult>>>;
52056
+ };
52057
+ export declare type IntentDetectionResult = {
52058
+ __typename?: 'IntentDetectionResult';
52059
+ entity?: Maybe<Scalars['String']['output']>;
52060
+ intent?: Maybe<IntentDetectionTopLevelIntent>;
52061
+ probability?: Maybe<Scalars['Float']['output']>;
52062
+ subintents?: Maybe<Array<Maybe<IntentDetectionSubType>>>;
52063
+ };
52064
+ export declare enum IntentDetectionSubType {
52065
+ Command = "COMMAND",
52066
+ Confluence = "CONFLUENCE",
52067
+ Evaluate = "EVALUATE",
52068
+ Jira = "JIRA",
52069
+ JobTitle = "JOB_TITLE",
52070
+ Llm = "LLM",
52071
+ Question = "QUESTION"
52072
+ }
52073
+ export declare enum IntentDetectionTopLevelIntent {
52074
+ JobTitle = "JOB_TITLE",
52075
+ KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
52076
+ NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
52077
+ Navigational = "NAVIGATIONAL",
52078
+ None = "NONE",
52079
+ Person = "PERSON",
52080
+ Team = "TEAM"
52081
+ }
52040
52082
  export declare type IntervalFilter = {
52041
52083
  end: Scalars['String']['input'];
52042
52084
  start: Scalars['String']['input'];
@@ -80761,6 +80803,7 @@ export declare type Query = {
80761
80803
  installationContexts?: Maybe<Array<InstallationContext>>;
80762
80804
  installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
80763
80805
  instanceAnalyticsCount?: Maybe<InstanceAnalyticsCount>;
80806
+ intentdetection_getIntent?: Maybe<IntentDetectionResponse>;
80764
80807
  internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
80765
80808
  ipmFlag?: Maybe<ContentPlatformIpmFlag>;
80766
80809
  ipmFlags: ContentPlatformIpmFlagSearchConnection;
@@ -82906,6 +82949,12 @@ export declare type QueryInstanceAnalyticsCountArgs = {
82906
82949
  eventName: Array<AnalyticsEventName>;
82907
82950
  startTime: Scalars['String']['input'];
82908
82951
  };
82952
+ export declare type QueryIntentdetection_GetIntentArgs = {
82953
+ accountId?: InputMaybe<Scalars['ID']['input']>;
82954
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
82955
+ locale?: InputMaybe<Scalars['String']['input']>;
82956
+ query?: InputMaybe<Scalars['String']['input']>;
82957
+ };
82909
82958
  export declare type QueryIpmFlagArgs = {
82910
82959
  id: Scalars['String']['input'];
82911
82960
  locale?: InputMaybe<Scalars['String']['input']>;