@forge/cli-shared 3.23.4-next.2 → 3.23.4

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,22 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.23.4
4
+
5
+ ### Patch Changes
6
+
7
+ - a5d062c: Added error messages for Forge apps containing Connect modules where there is an installation error due to a macro collision or failed descriptor validation.
8
+ - Updated dependencies [a44f2ba]
9
+ - Updated dependencies [b44f823]
10
+ - Updated dependencies [75f0e40]
11
+ - @forge/manifest@6.0.0
12
+
13
+ ## 3.23.4-next.3
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [a44f2ba]
18
+ - @forge/manifest@6.0.0-next.2
19
+
3
20
  ## 3.23.4-next.2
4
21
 
5
22
  ### Patch Changes
@@ -29350,7 +29350,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
29350
29350
  JiraMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
29351
29351
  JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
29352
29352
  JiraNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
29353
- JiraParentField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
29353
+ JiraParentIssueField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
29354
29354
  JiraPriorityField?: InputMaybe<Array<JiraUpdatePriorityFieldInput>>;
29355
29355
  JiraRadioSelectField?: InputMaybe<Array<JiraUpdateRadioSelectFieldInput>>;
29356
29356
  JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
@@ -30354,6 +30354,7 @@ export declare type JiraMutation = {
30354
30354
  grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
30355
30355
  initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
30356
30356
  jiraFilterMutation?: Maybe<JiraFilterMutation>;
30357
+ jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
30357
30358
  jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
30358
30359
  jwmUpdateActiveBackground?: Maybe<JiraWorkManagementUpdateActiveBackgroundPayload>;
30359
30360
  linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
@@ -30517,6 +30518,9 @@ export declare type JiraMutationInitializeProjectNotificationPreferencesArgs = {
30517
30518
  cloudId: Scalars['ID']['input'];
30518
30519
  input: JiraInitializeProjectNotificationPreferencesInput;
30519
30520
  };
30521
+ export declare type JiraMutationJwmCreateSavedViewArgs = {
30522
+ input: JiraWorkManagementCreateSavedViewInput;
30523
+ };
30520
30524
  export declare type JiraMutationJwmDeleteAttachmentArgs = {
30521
30525
  input: JiraWorkManagementDeleteAttachmentInput;
30522
30526
  };
@@ -36080,6 +36084,17 @@ export declare type JiraWorkManagementCreateOverviewPayload = Payload & {
36080
36084
  jwmOverview?: Maybe<JiraWorkManagementOverview>;
36081
36085
  success: Scalars['Boolean']['output'];
36082
36086
  };
36087
+ export declare type JiraWorkManagementCreateSavedViewInput = {
36088
+ label?: InputMaybe<Scalars['String']['input']>;
36089
+ projectId: Scalars['ID']['input'];
36090
+ typeKey: Scalars['String']['input'];
36091
+ };
36092
+ export declare type JiraWorkManagementCreateSavedViewPayload = Payload & {
36093
+ __typename?: 'JiraWorkManagementCreateSavedViewPayload';
36094
+ errors?: Maybe<Array<MutationError>>;
36095
+ savedView?: Maybe<JiraWorkManagementSavedView>;
36096
+ success: Scalars['Boolean']['output'];
36097
+ };
36083
36098
  export declare type JiraWorkManagementCustomBackground = {
36084
36099
  __typename?: 'JiraWorkManagementCustomBackground';
36085
36100
  activeCount?: Maybe<Scalars['Long']['output']>;
@@ -46691,6 +46706,7 @@ export declare type VirtualAgentChannelConfig = {
46691
46706
  };
46692
46707
  export declare type VirtualAgentConfiguration = Node & {
46693
46708
  __typename?: 'VirtualAgentConfiguration';
46709
+ conversations?: Maybe<VirtualAgentConversationsConnection>;
46694
46710
  flowEditorFlow?: Maybe<VirtualAgentFlowEditor>;
46695
46711
  id: Scalars['ID']['output'];
46696
46712
  intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
@@ -46701,6 +46717,11 @@ export declare type VirtualAgentConfiguration = Node & {
46701
46717
  virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
46702
46718
  virtualAgentStatisticsProjection?: Maybe<VirtualAgentStatisticsProjection>;
46703
46719
  };
46720
+ export declare type VirtualAgentConfigurationConversationsArgs = {
46721
+ after?: InputMaybe<Scalars['String']['input']>;
46722
+ filter: VirtualAgentConversationsFilter;
46723
+ first?: InputMaybe<Scalars['Int']['input']>;
46724
+ };
46704
46725
  export declare type VirtualAgentConfigurationFlowEditorFlowArgs = {
46705
46726
  flowRevisionId: Scalars['String']['input'];
46706
46727
  };
@@ -46720,6 +46741,53 @@ export declare type VirtualAgentConfigurationVirtualAgentStatisticsProjectionArg
46720
46741
  startDate?: InputMaybe<Scalars['String']['input']>;
46721
46742
  };
46722
46743
  export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
46744
+ export declare type VirtualAgentConversation = Node & {
46745
+ __typename?: 'VirtualAgentConversation';
46746
+ action?: Maybe<VirtualAgentConversationActionType>;
46747
+ csat?: Maybe<Scalars['Int']['output']>;
46748
+ firstMessageContent?: Maybe<Scalars['String']['output']>;
46749
+ id: Scalars['ID']['output'];
46750
+ intentProjectionTmp?: Maybe<VirtualAgentIntentProjectionTmp>;
46751
+ linkToSource?: Maybe<Scalars['String']['output']>;
46752
+ startedAt?: Maybe<Scalars['DateTime']['output']>;
46753
+ state?: Maybe<VirtualAgentConversationState>;
46754
+ };
46755
+ export declare enum VirtualAgentConversationActionType {
46756
+ AiAnswered = "AI_ANSWERED",
46757
+ Matched = "MATCHED",
46758
+ Unhandled = "UNHANDLED"
46759
+ }
46760
+ export declare enum VirtualAgentConversationCsatOptionType {
46761
+ CsatOption_1 = "CSAT_OPTION_1",
46762
+ CsatOption_2 = "CSAT_OPTION_2",
46763
+ CsatOption_3 = "CSAT_OPTION_3",
46764
+ CsatOption_4 = "CSAT_OPTION_4",
46765
+ CsatOption_5 = "CSAT_OPTION_5"
46766
+ }
46767
+ export declare type VirtualAgentConversationEdge = {
46768
+ __typename?: 'VirtualAgentConversationEdge';
46769
+ cursor: Scalars['String']['output'];
46770
+ node?: Maybe<VirtualAgentConversation>;
46771
+ };
46772
+ export declare enum VirtualAgentConversationState {
46773
+ Closed = "CLOSED",
46774
+ Escalated = "ESCALATED",
46775
+ Open = "OPEN",
46776
+ Resolved = "RESOLVED"
46777
+ }
46778
+ export declare type VirtualAgentConversationsConnection = {
46779
+ __typename?: 'VirtualAgentConversationsConnection';
46780
+ edges?: Maybe<Array<Maybe<VirtualAgentConversationEdge>>>;
46781
+ nodes?: Maybe<Array<Maybe<VirtualAgentConversation>>>;
46782
+ pageInfo: PageInfo;
46783
+ };
46784
+ export declare type VirtualAgentConversationsFilter = {
46785
+ actions?: InputMaybe<Array<VirtualAgentConversationActionType>>;
46786
+ csatOptions?: InputMaybe<Array<VirtualAgentConversationCsatOptionType>>;
46787
+ endDate: Scalars['DateTime']['input'];
46788
+ startDate: Scalars['DateTime']['input'];
46789
+ states?: InputMaybe<Array<VirtualAgentConversationState>>;
46790
+ };
46723
46791
  export declare type VirtualAgentCreateChatChannelInput = {
46724
46792
  isTriageChannel: Scalars['Boolean']['input'];
46725
46793
  isVirtualAgentTestChannel: Scalars['Boolean']['input'];
@@ -46830,6 +46898,12 @@ export declare type VirtualAgentIntentProjectionQuestionProjectionsArgs = {
46830
46898
  first?: InputMaybe<Scalars['Int']['input']>;
46831
46899
  };
46832
46900
  export declare type VirtualAgentIntentProjectionResult = VirtualAgentIntentProjection | VirtualAgentQueryError;
46901
+ export declare type VirtualAgentIntentProjectionTmp = Node & {
46902
+ __typename?: 'VirtualAgentIntentProjectionTmp';
46903
+ description?: Maybe<Scalars['String']['output']>;
46904
+ id: Scalars['ID']['output'];
46905
+ name: Scalars['String']['output'];
46906
+ };
46833
46907
  export declare type VirtualAgentIntentQuestionProjection = Node & {
46834
46908
  __typename?: 'VirtualAgentIntentQuestionProjection';
46835
46909
  id: Scalars['ID']['output'];