@forge/cli-shared 6.8.0-next.14 → 6.8.0-next.15-experimental-8477be1

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,45 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.8.0-next.15-experimental-8477be1
4
+
5
+ ### Minor Changes
6
+
7
+ - d156658: Switch the `forge create` flow to select product context first
8
+
9
+ ### Patch Changes
10
+
11
+ - 7243788: Displaying all product options and fixing wording
12
+ - 2cdac63: forge install should list all scopes
13
+ - c57e34a: Fix bundling when handlers are defined in subdirectories
14
+ - 9d231e9: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
15
+ - 0aad197: Change product wording to context
16
+ - 999a9d0: Update error messages for deployment
17
+ - 7a83fd9: Uninstall: Automatically select optional contexts when the required one is selected
18
+ - b503084: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
19
+ - 336f74f: Support serving i18n resources while using `forge tunnel`
20
+ - 210360b: Refactor text functions for easier read and maintenance
21
+ - a7db2e6: improve error message
22
+ - Updated dependencies [7243788]
23
+ - Updated dependencies [acf1edf]
24
+ - Updated dependencies [9d231e9]
25
+ - Updated dependencies [4b083be]
26
+ - Updated dependencies [94e48b9]
27
+ - Updated dependencies [de0bf46]
28
+ - Updated dependencies [b503084]
29
+ - Updated dependencies [336f74f]
30
+ - Updated dependencies [64daaa5]
31
+ - Updated dependencies [3a703de]
32
+ - Updated dependencies [003b1ed]
33
+ - @forge/manifest@8.9.0-next.8-experimental-8477be1
34
+ - @forge/i18n@0.0.5-next.0-experimental-8477be1
35
+
36
+ ## 6.8.0-next.15
37
+
38
+ ### Patch Changes
39
+
40
+ - Updated dependencies [4b083be]
41
+ - @forge/manifest@8.9.0-next.8
42
+
3
43
  ## 6.8.0-next.14
4
44
 
5
45
  ### Patch Changes
@@ -791,6 +791,7 @@ export declare type AgentStudioActionInput = {
791
791
  actionKey: Scalars['String']['input'];
792
792
  };
793
793
  export declare type AgentStudioAgent = {
794
+ connectedChannels?: Maybe<AgentStudioConnectedChannels>;
794
795
  description?: Maybe<Scalars['String']['output']>;
795
796
  id: Scalars['ID']['output'];
796
797
  name?: Maybe<Scalars['String']['output']>;
@@ -802,6 +803,7 @@ export declare enum AgentStudioAgentType {
802
803
  export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
803
804
  __typename?: 'AgentStudioAssistant';
804
805
  actions?: Maybe<AgentStudioActionConfiguration>;
806
+ connectedChannels?: Maybe<AgentStudioConnectedChannels>;
805
807
  conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
806
808
  creator?: Maybe<User>;
807
809
  description?: Maybe<Scalars['String']['output']>;
@@ -810,6 +812,13 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
810
812
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
811
813
  name?: Maybe<Scalars['String']['output']>;
812
814
  };
815
+ export declare type AgentStudioChannel = {
816
+ connected?: Maybe<Scalars['Boolean']['output']>;
817
+ };
818
+ export declare type AgentStudioConfluenceChannel = AgentStudioChannel & {
819
+ __typename?: 'AgentStudioConfluenceChannel';
820
+ connected?: Maybe<Scalars['Boolean']['output']>;
821
+ };
813
822
  export declare type AgentStudioConfluenceKnowledgeFilter = {
814
823
  __typename?: 'AgentStudioConfluenceKnowledgeFilter';
815
824
  parentFilter?: Maybe<Array<Scalars['ID']['output']>>;
@@ -819,6 +828,10 @@ export declare type AgentStudioConfluenceKnowledgeFilterInput = {
819
828
  parentFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
820
829
  spaceFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
821
830
  };
831
+ export declare type AgentStudioConnectedChannels = {
832
+ __typename?: 'AgentStudioConnectedChannels';
833
+ channels?: Maybe<Array<AgentStudioChannel>>;
834
+ };
822
835
  export declare type AgentStudioConversationStarterSuggestions = {
823
836
  __typename?: 'AgentStudioConversationStarterSuggestions';
824
837
  suggestions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -838,6 +851,29 @@ export declare type AgentStudioCreateAgentPayload = Payload & {
838
851
  errors?: Maybe<Array<MutationError>>;
839
852
  success: Scalars['Boolean']['output'];
840
853
  };
854
+ export declare type AgentStudioEmailChannel = AgentStudioChannel & {
855
+ __typename?: 'AgentStudioEmailChannel';
856
+ connected?: Maybe<Scalars['Boolean']['output']>;
857
+ incomingEmails?: Maybe<Array<AgentStudioIncomingEmail>>;
858
+ };
859
+ export declare type AgentStudioHelpCenter = {
860
+ __typename?: 'AgentStudioHelpCenter';
861
+ name?: Maybe<Scalars['String']['output']>;
862
+ url?: Maybe<Scalars['String']['output']>;
863
+ };
864
+ export declare type AgentStudioHelpCenterChannel = AgentStudioChannel & {
865
+ __typename?: 'AgentStudioHelpCenterChannel';
866
+ connected?: Maybe<Scalars['Boolean']['output']>;
867
+ helpCenters?: Maybe<Array<AgentStudioHelpCenter>>;
868
+ };
869
+ export declare type AgentStudioIncomingEmail = {
870
+ __typename?: 'AgentStudioIncomingEmail';
871
+ emailAddress?: Maybe<Scalars['String']['output']>;
872
+ };
873
+ export declare type AgentStudioJiraChannel = AgentStudioChannel & {
874
+ __typename?: 'AgentStudioJiraChannel';
875
+ connected?: Maybe<Scalars['Boolean']['output']>;
876
+ };
841
877
  export declare type AgentStudioJiraKnowledgeFilter = {
842
878
  __typename?: 'AgentStudioJiraKnowledgeFilter';
843
879
  projectFilter?: Maybe<Array<Scalars['ID']['output']>>;
@@ -870,19 +906,50 @@ export declare type AgentStudioKnowledgeSourceInput = {
870
906
  filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
871
907
  source: Scalars['String']['input'];
872
908
  };
909
+ export declare type AgentStudioPortalChannel = AgentStudioChannel & {
910
+ __typename?: 'AgentStudioPortalChannel';
911
+ connected?: Maybe<Scalars['Boolean']['output']>;
912
+ url?: Maybe<Scalars['String']['output']>;
913
+ };
873
914
  export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
874
915
  __typename?: 'AgentStudioServiceAgent';
916
+ connectedChannels?: Maybe<AgentStudioConnectedChannels>;
917
+ defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
875
918
  description?: Maybe<Scalars['String']['output']>;
876
919
  id: Scalars['ID']['output'];
877
920
  linkedJiraProject?: Maybe<JiraProject>;
878
921
  name?: Maybe<Scalars['String']['output']>;
879
922
  };
923
+ export declare type AgentStudioSlackChannel = AgentStudioChannel & {
924
+ __typename?: 'AgentStudioSlackChannel';
925
+ channels?: Maybe<Array<AgentStudioSlackChannelDetails>>;
926
+ connected?: Maybe<Scalars['Boolean']['output']>;
927
+ teamName?: Maybe<Scalars['String']['output']>;
928
+ teamUrl?: Maybe<Scalars['String']['output']>;
929
+ };
930
+ export declare type AgentStudioSlackChannelDetails = {
931
+ __typename?: 'AgentStudioSlackChannelDetails';
932
+ channelName?: Maybe<Scalars['String']['output']>;
933
+ channelUrl?: Maybe<Scalars['String']['output']>;
934
+ };
880
935
  export declare type AgentStudioSuggestConversationStartersInput = {
881
936
  agentDescription?: InputMaybe<Scalars['String']['input']>;
882
937
  agentInstructions?: InputMaybe<Scalars['String']['input']>;
883
938
  agentName?: InputMaybe<Scalars['String']['input']>;
884
939
  };
885
940
  export declare type AgentStudioSuggestConversationStartersResult = AgentStudioConversationStarterSuggestions | QueryError;
941
+ export declare type AgentStudioTeamsChannel = AgentStudioChannel & {
942
+ __typename?: 'AgentStudioTeamsChannel';
943
+ channels?: Maybe<Array<AgentStudioTeamsChannelDetails>>;
944
+ connected?: Maybe<Scalars['Boolean']['output']>;
945
+ teamName?: Maybe<Scalars['String']['output']>;
946
+ teamUrl?: Maybe<Scalars['String']['output']>;
947
+ };
948
+ export declare type AgentStudioTeamsChannelDetails = {
949
+ __typename?: 'AgentStudioTeamsChannelDetails';
950
+ channelName?: Maybe<Scalars['String']['output']>;
951
+ channelUrl?: Maybe<Scalars['String']['output']>;
952
+ };
886
953
  export declare type AgentStudioUpdateAgentActionsPayload = Payload & {
887
954
  __typename?: 'AgentStudioUpdateAgentActionsPayload';
888
955
  agent?: Maybe<AgentStudioAgent>;
@@ -7421,7 +7488,7 @@ export declare enum CompassLifecycleFilterOperator {
7421
7488
  Nor = "NOR",
7422
7489
  Or = "OR"
7423
7490
  }
7424
- export declare type CompassLink = Node & {
7491
+ export declare type CompassLink = {
7425
7492
  __typename?: 'CompassLink';
7426
7493
  eventSources?: Maybe<Array<EventSource>>;
7427
7494
  id: Scalars['ID']['output'];
@@ -8210,6 +8277,7 @@ export declare type CompassScorecardCriterionScoreMetadataEventConnection = {
8210
8277
  edges?: Maybe<Array<CompassScorecardCriterionScoreMetadataEventEdge>>;
8211
8278
  nodes?: Maybe<Array<CompassEvent>>;
8212
8279
  pageInfo?: Maybe<PageInfo>;
8280
+ totalCount?: Maybe<Scalars['Int']['output']>;
8213
8281
  };
8214
8282
  export declare type CompassScorecardCriterionScoreMetadataEventEdge = {
8215
8283
  __typename?: 'CompassScorecardCriterionScoreMetadataEventEdge';
@@ -53979,6 +54047,7 @@ export declare type JiraAutodevJob = {
53979
54047
  agent?: Maybe<DevAiRovoAgent>;
53980
54048
  branchName?: Maybe<Scalars['String']['output']>;
53981
54049
  branchUrl?: Maybe<Scalars['String']['output']>;
54050
+ changesSummary?: Maybe<Scalars['String']['output']>;
53982
54051
  codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
53983
54052
  currentWorkflow?: Maybe<Scalars['String']['output']>;
53984
54053
  error?: Maybe<JiraAutodevJobPermissionError>;
@@ -54001,6 +54070,7 @@ export declare type JiraAutodevJob = {
54001
54070
  state?: Maybe<JiraAutodevState>;
54002
54071
  status?: Maybe<JiraAutodevStatus>;
54003
54072
  statusHistory?: Maybe<JiraAutodevStatusHistoryItemConnection>;
54073
+ taskSummary?: Maybe<Scalars['String']['output']>;
54004
54074
  };
54005
54075
  export declare type JiraAutodevJobAgentArgs = {
54006
54076
  cloudId: Scalars['ID']['input'];
@@ -56841,6 +56911,10 @@ export declare type JiraDisableJourneyConfigurationInput = {
56841
56911
  id: Scalars['ID']['input'];
56842
56912
  version: Scalars['Long']['input'];
56843
56913
  };
56914
+ export declare type JiraDiscardUnpublishedChangesJourneyConfigurationInput = {
56915
+ etag?: InputMaybe<Scalars['String']['input']>;
56916
+ id: Scalars['ID']['input'];
56917
+ };
56844
56918
  export declare type JiraDiscardUserBoardViewConfigInput = {
56845
56919
  settings?: InputMaybe<JiraBoardViewSettings>;
56846
56920
  viewId: Scalars['ID']['input'];
@@ -59946,7 +60020,8 @@ export declare enum JiraJourneyStatus {
59946
60020
  Archived = "ARCHIVED",
59947
60021
  Disabled = "DISABLED",
59948
60022
  Draft = "DRAFT",
59949
- Published = "PUBLISHED"
60023
+ Published = "PUBLISHED",
60024
+ Superseded = "SUPERSEDED"
59950
60025
  }
59951
60026
  export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
59952
60027
  __typename?: 'JiraJourneyStatusDependency';
@@ -61175,6 +61250,7 @@ export declare type JiraMutation = {
61175
61250
  deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
61176
61251
  devOps?: Maybe<JiraDevOpsMutation>;
61177
61252
  disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
61253
+ discardUnpublishedChangesJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
61178
61254
  duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
61179
61255
  editCustomField?: Maybe<JiraEditCustomFieldPayload>;
61180
61256
  grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
@@ -61497,6 +61573,10 @@ export declare type JiraMutationDisableJiraJourneyConfigurationArgs = {
61497
61573
  cloudId: Scalars['ID']['input'];
61498
61574
  input: JiraDisableJourneyConfigurationInput;
61499
61575
  };
61576
+ export declare type JiraMutationDiscardUnpublishedChangesJiraJourneyConfigurationArgs = {
61577
+ cloudId: Scalars['ID']['input'];
61578
+ input: JiraDiscardUnpublishedChangesJourneyConfigurationInput;
61579
+ };
61500
61580
  export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
61501
61581
  cloudId: Scalars['ID']['input'];
61502
61582
  input: JiraDuplicateJourneyConfigurationInput;
@@ -62055,6 +62135,7 @@ export declare enum JiraNavigationItemTypeKey {
62055
62135
  Forms = "FORMS",
62056
62136
  GetStarted = "GET_STARTED",
62057
62137
  Goals = "GOALS",
62138
+ Inbox = "INBOX",
62058
62139
  Incidents = "INCIDENTS",
62059
62140
  Issues = "ISSUES",
62060
62141
  List = "LIST",
@@ -63190,6 +63271,7 @@ export declare type JiraProject = Node & {
63190
63271
  name: Scalars['String']['output'];
63191
63272
  navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
63192
63273
  opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
63274
+ optionsPerFieldLimit?: Maybe<Scalars['Int']['output']>;
63193
63275
  projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
63194
63276
  projectId?: Maybe<Scalars['String']['output']>;
63195
63277
  projectScopedFieldsCount?: Maybe<Scalars['Int']['output']>;
@@ -70643,6 +70725,7 @@ export declare type JsmChatMutation = {
70643
70725
  createConversation?: Maybe<JsmChatCreateConversationPayload>;
70644
70726
  createConversationAnalyticsEvent?: Maybe<JsmChatCreateConversationAnalyticsOutput>;
70645
70727
  createWebConversationMessage?: Maybe<JsmChatCreateWebConversationMessagePayload>;
70728
+ deleteMsTeamsMapping: JsmChatDeleteSlackChannelMappingOutput;
70646
70729
  deleteSlackChannelMapping: JsmChatDeleteSlackChannelMappingOutput;
70647
70730
  disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
70648
70731
  disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
@@ -70680,6 +70763,10 @@ export declare type JsmChatMutationCreateWebConversationMessageArgs = {
70680
70763
  input: JsmChatCreateWebConversationMessageInput;
70681
70764
  workspaceAri: Scalars['ID']['input'];
70682
70765
  };
70766
+ export declare type JsmChatMutationDeleteMsTeamsMappingArgs = {
70767
+ jiraProjectAri: Scalars['ID']['input'];
70768
+ msTeamsChannelAri: Scalars['ID']['input'];
70769
+ };
70683
70770
  export declare type JsmChatMutationDeleteSlackChannelMappingArgs = {
70684
70771
  jiraProjectAri: Scalars['ID']['input'];
70685
70772
  slackChannelAri: Scalars['ID']['input'];
@@ -73959,6 +74046,44 @@ export declare type MarketplaceStoreBillingSystemResponse = {
73959
74046
  __typename?: 'MarketplaceStoreBillingSystemResponse';
73960
74047
  billingSystem: MarketplaceStoreBillingSystem;
73961
74048
  };
74049
+ export declare type MarketplaceStoreBundleDetailResponse = {
74050
+ __typename?: 'MarketplaceStoreBundleDetailResponse';
74051
+ developerId: Scalars['ID']['output'];
74052
+ heroImage?: Maybe<MarketplaceStoreProductListingImage>;
74053
+ highlights: Array<MarketplaceStoreProductListingHighlight>;
74054
+ id: Scalars['ID']['output'];
74055
+ logo: MarketplaceStoreProductListingImage;
74056
+ moreDetails?: Maybe<Scalars['String']['output']>;
74057
+ name: Scalars['String']['output'];
74058
+ partner: MarketplaceStoreBundlePartner;
74059
+ screenshots?: Maybe<Array<Maybe<MarketplaceStoreProductListingScreenshot>>>;
74060
+ supportDetails?: Maybe<MarketplaceStoreBundleSupportDetails>;
74061
+ tagLine?: Maybe<Scalars['String']['output']>;
74062
+ vendorLinks?: Maybe<MarketplaceStoreBundleVendorLinks>;
74063
+ youtubeId?: Maybe<Scalars['String']['output']>;
74064
+ };
74065
+ export declare type MarketplaceStoreBundlePartner = {
74066
+ __typename?: 'MarketplaceStoreBundlePartner';
74067
+ developerSpace?: Maybe<MarketplaceStoreDeveloperSpace>;
74068
+ enrollments?: Maybe<Array<Maybe<MarketplaceStorePartnerEnrollment>>>;
74069
+ id: Scalars['ID']['output'];
74070
+ listing?: Maybe<MarketplaceStorePartnerListing>;
74071
+ };
74072
+ export declare type MarketplaceStoreBundleSupportDetails = {
74073
+ __typename?: 'MarketplaceStoreBundleSupportDetails';
74074
+ appStatusPage?: Maybe<Scalars['String']['output']>;
74075
+ forums?: Maybe<Scalars['String']['output']>;
74076
+ issueTracker?: Maybe<Scalars['String']['output']>;
74077
+ privacy?: Maybe<Scalars['String']['output']>;
74078
+ supportTicketSystem?: Maybe<Scalars['String']['output']>;
74079
+ };
74080
+ export declare type MarketplaceStoreBundleVendorLinks = {
74081
+ __typename?: 'MarketplaceStoreBundleVendorLinks';
74082
+ documentation?: Maybe<Scalars['String']['output']>;
74083
+ eula?: Maybe<Scalars['String']['output']>;
74084
+ learnMore?: Maybe<Scalars['String']['output']>;
74085
+ purchase?: Maybe<Scalars['String']['output']>;
74086
+ };
73962
74087
  export declare type MarketplaceStoreCategoryHeroSection = {
73963
74088
  __typename?: 'MarketplaceStoreCategoryHeroSection';
73964
74089
  backgroundColor: Scalars['String']['output'];
@@ -74389,11 +74514,35 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
74389
74514
  export declare type MarketplaceStoreProduct = {
74390
74515
  appKey?: InputMaybe<Scalars['String']['input']>;
74391
74516
  };
74517
+ export declare type MarketplaceStoreProductListingHighlight = {
74518
+ __typename?: 'MarketplaceStoreProductListingHighlight';
74519
+ caption?: Maybe<Scalars['String']['output']>;
74520
+ screenshot: MarketplaceStoreProductListingScreenshot;
74521
+ summary: Scalars['String']['output'];
74522
+ thumbnail?: Maybe<MarketplaceStoreProductListingImage>;
74523
+ title: Scalars['String']['output'];
74524
+ };
74525
+ export declare type MarketplaceStoreProductListingImage = {
74526
+ __typename?: 'MarketplaceStoreProductListingImage';
74527
+ altText?: Maybe<Scalars['String']['output']>;
74528
+ fileId: Scalars['String']['output'];
74529
+ fileName: Scalars['String']['output'];
74530
+ height: Scalars['Int']['output'];
74531
+ imageType: Scalars['String']['output'];
74532
+ url?: Maybe<Scalars['String']['output']>;
74533
+ width: Scalars['Int']['output'];
74534
+ };
74535
+ export declare type MarketplaceStoreProductListingScreenshot = {
74536
+ __typename?: 'MarketplaceStoreProductListingScreenshot';
74537
+ caption?: Maybe<Scalars['String']['output']>;
74538
+ image: MarketplaceStoreProductListingImage;
74539
+ };
74392
74540
  export declare type MarketplaceStoreQueryApi = {
74393
74541
  __typename?: 'MarketplaceStoreQueryApi';
74394
74542
  appReviewsByAppId: MarketplaceStoreReviewsResponse;
74395
74543
  appReviewsByAppKey: MarketplaceStoreReviewsResponse;
74396
74544
  billingSystem: MarketplaceStoreBillingSystemResponse;
74545
+ bundleDetail: MarketplaceStoreBundleDetailResponse;
74397
74546
  category: MarketplaceStoreCategoryResponse;
74398
74547
  cmtAvailability: MarketplaceStoreCmtAvailabilityResponse;
74399
74548
  collection: MarketplaceStoreCollectionResponse;
@@ -74426,6 +74575,9 @@ export declare type MarketplaceStoreQueryApiAppReviewsByAppKeyArgs = {
74426
74575
  export declare type MarketplaceStoreQueryApiBillingSystemArgs = {
74427
74576
  billingSystemInput: MarketplaceStoreBillingSystemInput;
74428
74577
  };
74578
+ export declare type MarketplaceStoreQueryApiBundleDetailArgs = {
74579
+ bundleId: Scalars['String']['input'];
74580
+ };
74429
74581
  export declare type MarketplaceStoreQueryApiCategoryArgs = {
74430
74582
  slug: Scalars['String']['input'];
74431
74583
  };
@@ -74631,6 +74783,16 @@ export declare type MercuryBudgetAggregation = {
74631
74783
  aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
74632
74784
  totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
74633
74785
  };
74786
+ export declare type MercuryChange = MercuryCreateFocusAreaChange | MercuryPositionAllocationChange;
74787
+ export declare type MercuryChangeInterface = {
74788
+ changeProposal?: Maybe<MercuryChangeProposal>;
74789
+ changeType: MercuryChangeType;
74790
+ createdBy?: Maybe<User>;
74791
+ createdDate: Scalars['DateTime']['output'];
74792
+ id: Scalars['ID']['output'];
74793
+ updatedBy?: Maybe<User>;
74794
+ updatedDate: Scalars['DateTime']['output'];
74795
+ };
74634
74796
  export declare type MercuryChangeProposal = Node & {
74635
74797
  __typename?: 'MercuryChangeProposal';
74636
74798
  comments?: Maybe<MercuryChangeProposalCommentConnection>;
@@ -74730,6 +74892,10 @@ export declare type MercuryChangeProposalUpdateCommentPayload = {
74730
74892
  success: Scalars['Boolean']['output'];
74731
74893
  updatedComment?: Maybe<MercuryChangeProposalComment>;
74732
74894
  };
74895
+ export declare enum MercuryChangeType {
74896
+ CreateFocusArea = "CREATE_FOCUS_AREA",
74897
+ PositionAllocation = "POSITION_ALLOCATION"
74898
+ }
74733
74899
  export declare type MercuryComment = Node & {
74734
74900
  __typename?: 'MercuryComment';
74735
74901
  ari: Scalars['String']['output'];
@@ -74775,6 +74941,19 @@ export declare type MercuryCreateCommentPayload = Payload & {
74775
74941
  errors?: Maybe<Array<MutationError>>;
74776
74942
  success: Scalars['Boolean']['output'];
74777
74943
  };
74944
+ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node & {
74945
+ __typename?: 'MercuryCreateFocusAreaChange';
74946
+ changeProposal?: Maybe<MercuryChangeProposal>;
74947
+ changeType: MercuryChangeType;
74948
+ createdBy?: Maybe<User>;
74949
+ createdDate: Scalars['DateTime']['output'];
74950
+ focusAreaName: Scalars['String']['output'];
74951
+ focusAreaOwner?: Maybe<User>;
74952
+ focusAreaType?: Maybe<Scalars['ID']['output']>;
74953
+ id: Scalars['ID']['output'];
74954
+ updatedBy?: Maybe<User>;
74955
+ updatedDate: Scalars['DateTime']['output'];
74956
+ };
74778
74957
  export declare type MercuryCreateFocusAreaInput = {
74779
74958
  cloudId: Scalars['ID']['input'];
74780
74959
  externalId?: InputMaybe<Scalars['String']['input']>;
@@ -74834,6 +75013,14 @@ export declare type MercuryDeleteAllPreferencesByUserPayload = Payload & {
74834
75013
  errors?: Maybe<Array<MutationError>>;
74835
75014
  success: Scalars['Boolean']['output'];
74836
75015
  };
75016
+ export declare type MercuryDeleteChangesInput = {
75017
+ changeIds: Array<Scalars['ID']['input']>;
75018
+ };
75019
+ export declare type MercuryDeleteChangesPayload = Payload & {
75020
+ __typename?: 'MercuryDeleteChangesPayload';
75021
+ errors?: Maybe<Array<MutationError>>;
75022
+ success: Scalars['Boolean']['output'];
75023
+ };
74837
75024
  export declare type MercuryDeleteCommentInput = {
74838
75025
  cloudId: Scalars['ID']['input'];
74839
75026
  id: Scalars['ID']['input'];
@@ -75527,6 +75714,23 @@ export declare type MercuryPortfolioSpendAggregation = {
75527
75714
  __typename?: 'MercuryPortfolioSpendAggregation';
75528
75715
  aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
75529
75716
  };
75717
+ export declare type MercuryPositionAllocationChange = MercuryChangeInterface & Node & {
75718
+ __typename?: 'MercuryPositionAllocationChange';
75719
+ changeProposal?: Maybe<MercuryChangeProposal>;
75720
+ changeType: MercuryChangeType;
75721
+ createdBy?: Maybe<User>;
75722
+ createdDate: Scalars['DateTime']['output'];
75723
+ id: Scalars['ID']['output'];
75724
+ position?: Maybe<RadarPosition>;
75725
+ sourceFocusArea?: Maybe<MercuryFocusArea>;
75726
+ targetFocusArea?: Maybe<MercuryFocusArea>;
75727
+ updatedBy?: Maybe<User>;
75728
+ updatedDate: Scalars['DateTime']['output'];
75729
+ };
75730
+ export declare type MercuryPositionAllocationChangeInput = {
75731
+ positionId: Scalars['ID']['input'];
75732
+ targetFocusAreaId: Scalars['ID']['input'];
75733
+ };
75530
75734
  export declare type MercuryPreference = Node & {
75531
75735
  __typename?: 'MercuryPreference';
75532
75736
  id: Scalars['ID']['output'];
@@ -75549,6 +75753,16 @@ export declare enum MercuryProjectTargetDateType {
75549
75753
  Month = "MONTH",
75550
75754
  Quarter = "QUARTER"
75551
75755
  }
75756
+ export declare type MercuryProposeChangesInput = {
75757
+ changeProposalId: Scalars['ID']['input'];
75758
+ positionAllocations: Array<MercuryPositionAllocationChangeInput>;
75759
+ };
75760
+ export declare type MercuryProposeChangesPayload = Payload & {
75761
+ __typename?: 'MercuryProposeChangesPayload';
75762
+ changes?: Maybe<Array<MercuryChange>>;
75763
+ errors?: Maybe<Array<MutationError>>;
75764
+ success: Scalars['Boolean']['output'];
75765
+ };
75552
75766
  export declare type MercuryProvider = Node & {
75553
75767
  __typename?: 'MercuryProvider';
75554
75768
  configurationState: MercuryProviderConfigurationState;
@@ -75983,12 +76197,20 @@ export declare type MercuryStrategicEventUpdateCommentPayload = {
75983
76197
  export declare type MercuryStrategicEventsMutationApi = {
75984
76198
  __typename?: 'MercuryStrategicEventsMutationApi';
75985
76199
  createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
76200
+ createChangeProposalComment?: Maybe<MercuryChangeProposalCreateCommentPayload>;
75986
76201
  createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
76202
+ createStrategicEventComment?: Maybe<MercuryStrategicEventCreateCommentPayload>;
76203
+ deleteChangeProposalComment?: Maybe<MercuryChangeProposalDeleteCommentPayload>;
76204
+ deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
76205
+ deleteStrategicEventComment?: Maybe<MercuryStrategicEventDeleteCommentPayload>;
76206
+ proposeChanges?: Maybe<MercuryProposeChangesPayload>;
75987
76207
  transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
75988
76208
  transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
76209
+ updateChangeProposalComment?: Maybe<MercuryChangeProposalUpdateCommentPayload>;
75989
76210
  updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
75990
76211
  updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
75991
76212
  updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
76213
+ updateStrategicEventComment?: Maybe<MercuryStrategicEventUpdateCommentPayload>;
75992
76214
  updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
75993
76215
  updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
75994
76216
  updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
@@ -75997,15 +76219,36 @@ export declare type MercuryStrategicEventsMutationApi = {
75997
76219
  export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
75998
76220
  input: MercuryCreateChangeProposalInput;
75999
76221
  };
76222
+ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalCommentArgs = {
76223
+ input: MercuryChangeProposalCreateCommentInput;
76224
+ };
76000
76225
  export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
76001
76226
  input: MercuryCreateStrategicEventInput;
76002
76227
  };
76228
+ export declare type MercuryStrategicEventsMutationApiCreateStrategicEventCommentArgs = {
76229
+ input: MercuryStrategicEventCreateCommentInput;
76230
+ };
76231
+ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
76232
+ input: MercuryChangeProposalDeleteCommentInput;
76233
+ };
76234
+ export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
76235
+ input?: InputMaybe<MercuryDeleteChangesInput>;
76236
+ };
76237
+ export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
76238
+ input: MercuryStrategicEventDeleteCommentInput;
76239
+ };
76240
+ export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
76241
+ input: MercuryProposeChangesInput;
76242
+ };
76003
76243
  export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
76004
76244
  input: MercuryTransitionChangeProposalStatusInput;
76005
76245
  };
76006
76246
  export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventStatusArgs = {
76007
76247
  input: MercuryTransitionStrategicEventStatusInput;
76008
76248
  };
76249
+ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
76250
+ input: MercuryChangeProposalUpdateCommentInput;
76251
+ };
76009
76252
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
76010
76253
  input: MercuryUpdateChangeProposalDescriptionInput;
76011
76254
  };
@@ -76015,6 +76258,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalNameArg
76015
76258
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerArgs = {
76016
76259
  input: MercuryUpdateChangeProposalOwnerInput;
76017
76260
  };
76261
+ export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
76262
+ input: MercuryStrategicEventUpdateCommentInput;
76263
+ };
76018
76264
  export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventDescriptionArgs = {
76019
76265
  input: MercuryUpdateStrategicEventDescriptionInput;
76020
76266
  };
@@ -76033,6 +76279,7 @@ export declare type MercuryStrategicEventsQueryApi = {
76033
76279
  changeProposalStatuses: Array<MercuryChangeProposalStatus>;
76034
76280
  changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
76035
76281
  changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
76282
+ changes?: Maybe<Array<Maybe<MercuryChange>>>;
76036
76283
  strategicEvent?: Maybe<MercuryStrategicEvent>;
76037
76284
  strategicEventStatuses: Array<MercuryStrategicEventStatus>;
76038
76285
  strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
@@ -76054,6 +76301,9 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
76054
76301
  q?: InputMaybe<Scalars['String']['input']>;
76055
76302
  sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
76056
76303
  };
76304
+ export declare type MercuryStrategicEventsQueryApiChangesArgs = {
76305
+ ids: Array<Scalars['ID']['input']>;
76306
+ };
76057
76307
  export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
76058
76308
  id: Scalars['ID']['input'];
76059
76309
  };
@@ -81856,6 +82106,7 @@ export declare type Query = {
81856
82106
  jiraReleases?: Maybe<JiraReleases>;
81857
82107
  jiraServers?: Maybe<JiraServersResult>;
81858
82108
  jira_boardView?: Maybe<JiraBoardView>;
82109
+ jira_categoryField?: Maybe<JiraJqlField>;
81859
82110
  jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
81860
82111
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
81861
82112
  jira_projectByIdOrKey?: Maybe<JiraProject>;
@@ -84063,6 +84314,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
84063
84314
  export declare type QueryJira_BoardViewArgs = {
84064
84315
  input: JiraBoardViewInput;
84065
84316
  };
84317
+ export declare type QueryJira_CategoryFieldArgs = {
84318
+ cloudId: Scalars['ID']['input'];
84319
+ };
84066
84320
  export declare type QueryJira_IsRovoLlmEnabledArgs = {
84067
84321
  cloudId: Scalars['ID']['input'];
84068
84322
  };