@forge/cli-shared 6.7.1-next.0 → 6.7.1-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,5 +1,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.7.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [94e48b9]
8
+ - @forge/manifest@8.9.0-next.0
9
+
10
+ ## 6.7.1-next.1
11
+
12
+ ### Patch Changes
13
+
14
+ - 2cdac63: forge install should list all scopes
15
+
3
16
  ## 6.7.1-next.0
4
17
 
5
18
  ### 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'];
@@ -73712,6 +73754,7 @@ export declare type MercuryBudgetAggregation = {
73712
73754
  };
73713
73755
  export declare type MercuryChangeProposal = Node & {
73714
73756
  __typename?: 'MercuryChangeProposal';
73757
+ comments?: Maybe<MercuryChangeProposalCommentConnection>;
73715
73758
  description?: Maybe<Scalars['String']['output']>;
73716
73759
  id: Scalars['ID']['output'];
73717
73760
  name: Scalars['String']['output'];
@@ -73720,12 +73763,54 @@ export declare type MercuryChangeProposal = Node & {
73720
73763
  statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
73721
73764
  strategicEvent?: Maybe<MercuryStrategicEvent>;
73722
73765
  };
73766
+ export declare type MercuryChangeProposalCommentsArgs = {
73767
+ after?: InputMaybe<Scalars['String']['input']>;
73768
+ first?: InputMaybe<Scalars['Int']['input']>;
73769
+ };
73770
+ export declare type MercuryChangeProposalComment = {
73771
+ __typename?: 'MercuryChangeProposalComment';
73772
+ content: Scalars['String']['output'];
73773
+ createdBy: Scalars['ID']['output'];
73774
+ createdDate: Scalars['String']['output'];
73775
+ id: Scalars['ID']['output'];
73776
+ };
73777
+ export declare type MercuryChangeProposalCommentConnection = {
73778
+ __typename?: 'MercuryChangeProposalCommentConnection';
73779
+ edges?: Maybe<Array<Maybe<MercuryChangeProposalCommentEdge>>>;
73780
+ pageInfo: PageInfo;
73781
+ totalCount?: Maybe<Scalars['Int']['output']>;
73782
+ };
73783
+ export declare type MercuryChangeProposalCommentEdge = {
73784
+ __typename?: 'MercuryChangeProposalCommentEdge';
73785
+ cursor: Scalars['String']['output'];
73786
+ node?: Maybe<MercuryChangeProposalComment>;
73787
+ };
73723
73788
  export declare type MercuryChangeProposalConnection = {
73724
73789
  __typename?: 'MercuryChangeProposalConnection';
73725
73790
  edges?: Maybe<Array<Maybe<MercuryChangeProposalEdge>>>;
73726
73791
  pageInfo: PageInfo;
73727
73792
  totalCount?: Maybe<Scalars['Int']['output']>;
73728
73793
  };
73794
+ export declare type MercuryChangeProposalCreateCommentInput = {
73795
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
73796
+ content: Scalars['String']['input'];
73797
+ id: Scalars['ID']['input'];
73798
+ };
73799
+ export declare type MercuryChangeProposalCreateCommentPayload = Payload & {
73800
+ __typename?: 'MercuryChangeProposalCreateCommentPayload';
73801
+ createdComment?: Maybe<MercuryChangeProposalComment>;
73802
+ errors?: Maybe<Array<MutationError>>;
73803
+ success: Scalars['Boolean']['output'];
73804
+ };
73805
+ export declare type MercuryChangeProposalDeleteCommentInput = {
73806
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
73807
+ id: Scalars['ID']['input'];
73808
+ };
73809
+ export declare type MercuryChangeProposalDeleteCommentPayload = Payload & {
73810
+ __typename?: 'MercuryChangeProposalDeleteCommentPayload';
73811
+ errors?: Maybe<Array<MutationError>>;
73812
+ success: Scalars['Boolean']['output'];
73813
+ };
73729
73814
  export declare type MercuryChangeProposalEdge = {
73730
73815
  __typename?: 'MercuryChangeProposalEdge';
73731
73816
  cursor: Scalars['String']['output'];
@@ -73755,6 +73840,17 @@ export declare type MercuryChangeProposalStatusTransitions = {
73755
73840
  __typename?: 'MercuryChangeProposalStatusTransitions';
73756
73841
  available: Array<MercuryChangeProposalStatusTransition>;
73757
73842
  };
73843
+ export declare type MercuryChangeProposalUpdateCommentInput = {
73844
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
73845
+ content: Scalars['String']['input'];
73846
+ id: Scalars['ID']['input'];
73847
+ };
73848
+ export declare type MercuryChangeProposalUpdateCommentPayload = {
73849
+ __typename?: 'MercuryChangeProposalUpdateCommentPayload';
73850
+ errors?: Maybe<Array<MutationError>>;
73851
+ success: Scalars['Boolean']['output'];
73852
+ updatedComment?: Maybe<MercuryChangeProposalComment>;
73853
+ };
73758
73854
  export declare type MercuryComment = Node & {
73759
73855
  __typename?: 'MercuryComment';
73760
73856
  ari: Scalars['String']['output'];
@@ -73810,6 +73906,7 @@ export declare type MercuryCreateFocusAreaInput = {
73810
73906
  export declare type MercuryCreateFocusAreaPayload = Payload & {
73811
73907
  __typename?: 'MercuryCreateFocusAreaPayload';
73812
73908
  createdFocusArea?: Maybe<MercuryFocusArea>;
73909
+ entityChangeRequirements?: Maybe<MercuryFocusAreaChangeRequirements>;
73813
73910
  errors?: Maybe<Array<MutationError>>;
73814
73911
  success: Scalars['Boolean']['output'];
73815
73912
  };
@@ -74064,6 +74161,12 @@ export declare type MercuryFocusAreaAllocations = {
74064
74161
  __typename?: 'MercuryFocusAreaAllocations';
74065
74162
  human?: Maybe<MercuryHumanResourcesAllocation>;
74066
74163
  };
74164
+ export declare type MercuryFocusAreaChangeRequirements = {
74165
+ __typename?: 'MercuryFocusAreaChangeRequirements';
74166
+ changeProposalId?: Maybe<Scalars['ID']['output']>;
74167
+ changeProposalName?: Maybe<Scalars['String']['output']>;
74168
+ strategicEventId?: Maybe<Scalars['ID']['output']>;
74169
+ };
74067
74170
  export declare type MercuryFocusAreaConnection = {
74068
74171
  __typename?: 'MercuryFocusAreaConnection';
74069
74172
  edges?: Maybe<Array<Maybe<MercuryFocusAreaEdge>>>;
@@ -74897,6 +75000,7 @@ export declare enum MercuryStatusColor {
74897
75000
  }
74898
75001
  export declare type MercuryStrategicEvent = Node & {
74899
75002
  __typename?: 'MercuryStrategicEvent';
75003
+ comments?: Maybe<MercuryStrategicEventCommentConnection>;
74900
75004
  description?: Maybe<Scalars['String']['output']>;
74901
75005
  id: Scalars['ID']['output'];
74902
75006
  name: Scalars['String']['output'];
@@ -74905,12 +75009,54 @@ export declare type MercuryStrategicEvent = Node & {
74905
75009
  statusTransitions?: Maybe<MercuryStrategicEventStatusTransitions>;
74906
75010
  targetDate?: Maybe<Scalars['String']['output']>;
74907
75011
  };
75012
+ export declare type MercuryStrategicEventCommentsArgs = {
75013
+ after?: InputMaybe<Scalars['String']['input']>;
75014
+ first?: InputMaybe<Scalars['Int']['input']>;
75015
+ };
75016
+ export declare type MercuryStrategicEventComment = {
75017
+ __typename?: 'MercuryStrategicEventComment';
75018
+ content: Scalars['String']['output'];
75019
+ createdBy: Scalars['ID']['output'];
75020
+ createdDate: Scalars['String']['output'];
75021
+ id: Scalars['ID']['output'];
75022
+ };
75023
+ export declare type MercuryStrategicEventCommentConnection = {
75024
+ __typename?: 'MercuryStrategicEventCommentConnection';
75025
+ edges?: Maybe<Array<Maybe<MercuryStrategicEventCommentEdge>>>;
75026
+ pageInfo: PageInfo;
75027
+ totalCount?: Maybe<Scalars['Int']['output']>;
75028
+ };
75029
+ export declare type MercuryStrategicEventCommentEdge = {
75030
+ __typename?: 'MercuryStrategicEventCommentEdge';
75031
+ cursor: Scalars['String']['output'];
75032
+ node?: Maybe<MercuryStrategicEventComment>;
75033
+ };
74908
75034
  export declare type MercuryStrategicEventConnection = {
74909
75035
  __typename?: 'MercuryStrategicEventConnection';
74910
75036
  edges?: Maybe<Array<Maybe<MercuryStrategicEventEdge>>>;
74911
75037
  pageInfo: PageInfo;
74912
75038
  totalCount?: Maybe<Scalars['Int']['output']>;
74913
75039
  };
75040
+ export declare type MercuryStrategicEventCreateCommentInput = {
75041
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
75042
+ content: Scalars['String']['input'];
75043
+ id: Scalars['ID']['input'];
75044
+ };
75045
+ export declare type MercuryStrategicEventCreateCommentPayload = Payload & {
75046
+ __typename?: 'MercuryStrategicEventCreateCommentPayload';
75047
+ createdComment?: Maybe<MercuryStrategicEventComment>;
75048
+ errors?: Maybe<Array<MutationError>>;
75049
+ success: Scalars['Boolean']['output'];
75050
+ };
75051
+ export declare type MercuryStrategicEventDeleteCommentInput = {
75052
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
75053
+ id: Scalars['ID']['input'];
75054
+ };
75055
+ export declare type MercuryStrategicEventDeleteCommentPayload = Payload & {
75056
+ __typename?: 'MercuryStrategicEventDeleteCommentPayload';
75057
+ errors?: Maybe<Array<MutationError>>;
75058
+ success: Scalars['Boolean']['output'];
75059
+ };
74914
75060
  export declare type MercuryStrategicEventEdge = {
74915
75061
  __typename?: 'MercuryStrategicEventEdge';
74916
75062
  cursor: Scalars['String']['output'];
@@ -74942,6 +75088,17 @@ export declare type MercuryStrategicEventStatusTransitions = {
74942
75088
  __typename?: 'MercuryStrategicEventStatusTransitions';
74943
75089
  available: Array<MercuryStrategicEventStatusTransition>;
74944
75090
  };
75091
+ export declare type MercuryStrategicEventUpdateCommentInput = {
75092
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
75093
+ content: Scalars['String']['input'];
75094
+ id: Scalars['ID']['input'];
75095
+ };
75096
+ export declare type MercuryStrategicEventUpdateCommentPayload = {
75097
+ __typename?: 'MercuryStrategicEventUpdateCommentPayload';
75098
+ errors?: Maybe<Array<MutationError>>;
75099
+ success: Scalars['Boolean']['output'];
75100
+ updatedComment?: Maybe<MercuryStrategicEventComment>;
75101
+ };
74945
75102
  export declare type MercuryStrategicEventsMutationApi = {
74946
75103
  __typename?: 'MercuryStrategicEventsMutationApi';
74947
75104
  createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
@@ -80761,6 +80918,7 @@ export declare type Query = {
80761
80918
  installationContexts?: Maybe<Array<InstallationContext>>;
80762
80919
  installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
80763
80920
  instanceAnalyticsCount?: Maybe<InstanceAnalyticsCount>;
80921
+ intentdetection_getIntent?: Maybe<IntentDetectionResponse>;
80764
80922
  internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
80765
80923
  ipmFlag?: Maybe<ContentPlatformIpmFlag>;
80766
80924
  ipmFlags: ContentPlatformIpmFlagSearchConnection;
@@ -82906,6 +83064,12 @@ export declare type QueryInstanceAnalyticsCountArgs = {
82906
83064
  eventName: Array<AnalyticsEventName>;
82907
83065
  startTime: Scalars['String']['input'];
82908
83066
  };
83067
+ export declare type QueryIntentdetection_GetIntentArgs = {
83068
+ accountId?: InputMaybe<Scalars['ID']['input']>;
83069
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
83070
+ locale?: InputMaybe<Scalars['String']['input']>;
83071
+ query?: InputMaybe<Scalars['String']['input']>;
83072
+ };
82909
83073
  export declare type QueryIpmFlagArgs = {
82910
83074
  id: Scalars['String']['input'];
82911
83075
  locale?: InputMaybe<Scalars['String']['input']>;