@forge/cli-shared 6.8.0-next.11 → 6.8.0-next.13

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.8.0-next.13
4
+
5
+ ### Patch Changes
6
+
7
+ - c57e34a: Fix bundling when handlers are defined in subdirectories
8
+
9
+ ## 6.8.0-next.12
10
+
11
+ ### Patch Changes
12
+
13
+ - 7243788: Displaying all product options and fixing wording
14
+ - Updated dependencies [7243788]
15
+ - @forge/manifest@8.9.0-next.7
16
+
3
17
  ## 6.8.0-next.11
4
18
 
5
19
  ### Patch Changes
@@ -4781,6 +4781,7 @@ export declare type CompassCatalogMutationApi = {
4781
4781
  updateComponent?: Maybe<UpdateCompassComponentPayload>;
4782
4782
  updateComponentApi?: Maybe<UpdateComponentApiPayload>;
4783
4783
  updateComponentApiUpload?: Maybe<UpdateComponentApiUploadPayload>;
4784
+ updateComponentByReference?: Maybe<UpdateCompassComponentPayload>;
4784
4785
  updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
4785
4786
  updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
4786
4787
  updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
@@ -5026,6 +5027,9 @@ export declare type CompassCatalogMutationApiUpdateComponentApiArgs = {
5026
5027
  export declare type CompassCatalogMutationApiUpdateComponentApiUploadArgs = {
5027
5028
  input: UpdateComponentApiUploadInput;
5028
5029
  };
5030
+ export declare type CompassCatalogMutationApiUpdateComponentByReferenceArgs = {
5031
+ input: UpdateCompassComponentByReferenceInput;
5032
+ };
5029
5033
  export declare type CompassCatalogMutationApiUpdateComponentDataManagerMetadataArgs = {
5030
5034
  input: UpdateCompassComponentDataManagerMetadataInput;
5031
5035
  };
@@ -7919,6 +7923,7 @@ export declare type CompassScorecardAppliedToComponentsQuery = {
7919
7923
  };
7920
7924
  export declare type CompassScorecardAppliedToComponentsQueryFilter = {
7921
7925
  fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
7926
+ labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
7922
7927
  owners?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
7923
7928
  score?: InputMaybe<CompassScorecardAppliedToComponentsThresholdFilter>;
7924
7929
  scoreRanges?: InputMaybe<CompassScorecardAppliedToComponentsScoreRangeFilter>;
@@ -50197,6 +50202,7 @@ export declare type GrowthUnifiedProfileUserFootprints = {
50197
50202
  export declare type GrowthUnifiedProfileUserProfile = {
50198
50203
  __typename?: 'GrowthUnifiedProfileUserProfile';
50199
50204
  domainType?: Maybe<GrowthUnifiedProfileDomainType>;
50205
+ teamType?: Maybe<Scalars['String']['output']>;
50200
50206
  userType?: Maybe<GrowthUnifiedProfileEntryType>;
50201
50207
  };
50202
50208
  export declare type GrowthUnifiedProfileUtm = {
@@ -81723,6 +81729,7 @@ export declare type Query = {
81723
81729
  jiraReleases?: Maybe<JiraReleases>;
81724
81730
  jiraServers?: Maybe<JiraServersResult>;
81725
81731
  jira_boardView?: Maybe<JiraBoardView>;
81732
+ jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
81726
81733
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
81727
81734
  jira_projectByIdOrKey?: Maybe<JiraProject>;
81728
81735
  jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
@@ -83921,6 +83928,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
83921
83928
  export declare type QueryJira_BoardViewArgs = {
83922
83929
  input: JiraBoardViewInput;
83923
83930
  };
83931
+ export declare type QueryJira_IsRovoLlmEnabledArgs = {
83932
+ cloudId: Scalars['ID']['input'];
83933
+ };
83924
83934
  export declare type QueryJira_IssueSearchViewsByIdsArgs = {
83925
83935
  ids: Array<Scalars['ID']['input']>;
83926
83936
  };
@@ -95997,6 +96007,17 @@ export declare type UpdateCommentInput = {
95997
96007
  commentId: Scalars['ID']['input'];
95998
96008
  version?: InputMaybe<Scalars['Int']['input']>;
95999
96009
  };
96010
+ export declare type UpdateCompassComponentByReferenceInput = {
96011
+ componentDescriptionDetails?: InputMaybe<CompassComponentDescriptionDetailsInput>;
96012
+ customFields?: InputMaybe<Array<CompassCustomFieldInput>>;
96013
+ description?: InputMaybe<Scalars['String']['input']>;
96014
+ fields?: InputMaybe<Array<UpdateCompassFieldInput>>;
96015
+ name?: InputMaybe<Scalars['String']['input']>;
96016
+ ownerId?: InputMaybe<Scalars['ID']['input']>;
96017
+ reference: ComponentReferenceInput;
96018
+ slug?: InputMaybe<Scalars['String']['input']>;
96019
+ state?: InputMaybe<Scalars['String']['input']>;
96020
+ };
96000
96021
  export declare type UpdateCompassComponentDataManagerMetadataInput = {
96001
96022
  componentId: Scalars['ID']['input'];
96002
96023
  externalSourceURL?: InputMaybe<Scalars['URL']['input']>;
@@ -97056,6 +97077,7 @@ export declare type VirtualAgentConfiguration = Node & {
97056
97077
  intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
97057
97078
  isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
97058
97079
  liveIntentsCount?: Maybe<Scalars['Int']['output']>;
97080
+ offerEscalationConfig?: Maybe<VirtualAgentOfferEscalationConfig>;
97059
97081
  respondToQueries: Scalars['Boolean']['output'];
97060
97082
  standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
97061
97083
  virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
@@ -97154,6 +97176,7 @@ export declare type VirtualAgentCreateChatChannelPayload = Payload & {
97154
97176
  export declare type VirtualAgentCreateConfigurationInput = {
97155
97177
  defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
97156
97178
  isAiResponsesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
97179
+ offerEscalationConfig?: InputMaybe<VirtualAgentOfferEscalationOptionsInput>;
97157
97180
  respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
97158
97181
  };
97159
97182
  export declare type VirtualAgentCreateConfigurationPayload = Payload & {
@@ -97425,6 +97448,17 @@ export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs =
97425
97448
  input: VirtualAgentUpdateConfigurationInput;
97426
97449
  virtualAgentConfigurationId: Scalars['ID']['input'];
97427
97450
  };
97451
+ export declare type VirtualAgentOfferEscalationConfig = {
97452
+ __typename?: 'VirtualAgentOfferEscalationConfig';
97453
+ isRaiseARequestEnabled?: Maybe<Scalars['Boolean']['output']>;
97454
+ isSeeSearchResultsEnabled?: Maybe<Scalars['Boolean']['output']>;
97455
+ isTryAskingAnotherWayEnabled?: Maybe<Scalars['Boolean']['output']>;
97456
+ };
97457
+ export declare type VirtualAgentOfferEscalationOptionsInput = {
97458
+ isRaiseARequestEnabled?: InputMaybe<Scalars['Boolean']['input']>;
97459
+ isSeeSearchResultsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
97460
+ isTryAskingAnotherWayEnabled?: InputMaybe<Scalars['Boolean']['input']>;
97461
+ };
97428
97462
  export declare type VirtualAgentQueryApi = {
97429
97463
  __typename?: 'VirtualAgentQueryApi';
97430
97464
  availableToHelpCenter?: Maybe<Scalars['Boolean']['output']>;
@@ -97523,6 +97557,7 @@ export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
97523
97557
  export declare type VirtualAgentUpdateConfigurationInput = {
97524
97558
  defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
97525
97559
  isAiResponsesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
97560
+ offerEscalationConfig?: InputMaybe<VirtualAgentOfferEscalationOptionsInput>;
97526
97561
  respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
97527
97562
  };
97528
97563
  export declare type VirtualAgentUpdateConfigurationPayload = Payload & {