@forge/cli-shared 6.8.0-next.15 → 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,38 @@
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
+
3
36
  ## 6.8.0-next.15
4
37
 
5
38
  ### 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'];
@@ -63201,6 +63271,7 @@ export declare type JiraProject = Node & {
63201
63271
  name: Scalars['String']['output'];
63202
63272
  navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
63203
63273
  opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
63274
+ optionsPerFieldLimit?: Maybe<Scalars['Int']['output']>;
63204
63275
  projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
63205
63276
  projectId?: Maybe<Scalars['String']['output']>;
63206
63277
  projectScopedFieldsCount?: Maybe<Scalars['Int']['output']>;
@@ -70654,6 +70725,7 @@ export declare type JsmChatMutation = {
70654
70725
  createConversation?: Maybe<JsmChatCreateConversationPayload>;
70655
70726
  createConversationAnalyticsEvent?: Maybe<JsmChatCreateConversationAnalyticsOutput>;
70656
70727
  createWebConversationMessage?: Maybe<JsmChatCreateWebConversationMessagePayload>;
70728
+ deleteMsTeamsMapping: JsmChatDeleteSlackChannelMappingOutput;
70657
70729
  deleteSlackChannelMapping: JsmChatDeleteSlackChannelMappingOutput;
70658
70730
  disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
70659
70731
  disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
@@ -70691,6 +70763,10 @@ export declare type JsmChatMutationCreateWebConversationMessageArgs = {
70691
70763
  input: JsmChatCreateWebConversationMessageInput;
70692
70764
  workspaceAri: Scalars['ID']['input'];
70693
70765
  };
70766
+ export declare type JsmChatMutationDeleteMsTeamsMappingArgs = {
70767
+ jiraProjectAri: Scalars['ID']['input'];
70768
+ msTeamsChannelAri: Scalars['ID']['input'];
70769
+ };
70694
70770
  export declare type JsmChatMutationDeleteSlackChannelMappingArgs = {
70695
70771
  jiraProjectAri: Scalars['ID']['input'];
70696
70772
  slackChannelAri: Scalars['ID']['input'];
@@ -73970,6 +74046,44 @@ export declare type MarketplaceStoreBillingSystemResponse = {
73970
74046
  __typename?: 'MarketplaceStoreBillingSystemResponse';
73971
74047
  billingSystem: MarketplaceStoreBillingSystem;
73972
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
+ };
73973
74087
  export declare type MarketplaceStoreCategoryHeroSection = {
73974
74088
  __typename?: 'MarketplaceStoreCategoryHeroSection';
73975
74089
  backgroundColor: Scalars['String']['output'];
@@ -74400,11 +74514,35 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
74400
74514
  export declare type MarketplaceStoreProduct = {
74401
74515
  appKey?: InputMaybe<Scalars['String']['input']>;
74402
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
+ };
74403
74540
  export declare type MarketplaceStoreQueryApi = {
74404
74541
  __typename?: 'MarketplaceStoreQueryApi';
74405
74542
  appReviewsByAppId: MarketplaceStoreReviewsResponse;
74406
74543
  appReviewsByAppKey: MarketplaceStoreReviewsResponse;
74407
74544
  billingSystem: MarketplaceStoreBillingSystemResponse;
74545
+ bundleDetail: MarketplaceStoreBundleDetailResponse;
74408
74546
  category: MarketplaceStoreCategoryResponse;
74409
74547
  cmtAvailability: MarketplaceStoreCmtAvailabilityResponse;
74410
74548
  collection: MarketplaceStoreCollectionResponse;
@@ -74437,6 +74575,9 @@ export declare type MarketplaceStoreQueryApiAppReviewsByAppKeyArgs = {
74437
74575
  export declare type MarketplaceStoreQueryApiBillingSystemArgs = {
74438
74576
  billingSystemInput: MarketplaceStoreBillingSystemInput;
74439
74577
  };
74578
+ export declare type MarketplaceStoreQueryApiBundleDetailArgs = {
74579
+ bundleId: Scalars['String']['input'];
74580
+ };
74440
74581
  export declare type MarketplaceStoreQueryApiCategoryArgs = {
74441
74582
  slug: Scalars['String']['input'];
74442
74583
  };
@@ -74642,6 +74783,16 @@ export declare type MercuryBudgetAggregation = {
74642
74783
  aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
74643
74784
  totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
74644
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
+ };
74645
74796
  export declare type MercuryChangeProposal = Node & {
74646
74797
  __typename?: 'MercuryChangeProposal';
74647
74798
  comments?: Maybe<MercuryChangeProposalCommentConnection>;
@@ -74741,6 +74892,10 @@ export declare type MercuryChangeProposalUpdateCommentPayload = {
74741
74892
  success: Scalars['Boolean']['output'];
74742
74893
  updatedComment?: Maybe<MercuryChangeProposalComment>;
74743
74894
  };
74895
+ export declare enum MercuryChangeType {
74896
+ CreateFocusArea = "CREATE_FOCUS_AREA",
74897
+ PositionAllocation = "POSITION_ALLOCATION"
74898
+ }
74744
74899
  export declare type MercuryComment = Node & {
74745
74900
  __typename?: 'MercuryComment';
74746
74901
  ari: Scalars['String']['output'];
@@ -74786,6 +74941,19 @@ export declare type MercuryCreateCommentPayload = Payload & {
74786
74941
  errors?: Maybe<Array<MutationError>>;
74787
74942
  success: Scalars['Boolean']['output'];
74788
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
+ };
74789
74957
  export declare type MercuryCreateFocusAreaInput = {
74790
74958
  cloudId: Scalars['ID']['input'];
74791
74959
  externalId?: InputMaybe<Scalars['String']['input']>;
@@ -74845,6 +75013,14 @@ export declare type MercuryDeleteAllPreferencesByUserPayload = Payload & {
74845
75013
  errors?: Maybe<Array<MutationError>>;
74846
75014
  success: Scalars['Boolean']['output'];
74847
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
+ };
74848
75024
  export declare type MercuryDeleteCommentInput = {
74849
75025
  cloudId: Scalars['ID']['input'];
74850
75026
  id: Scalars['ID']['input'];
@@ -75538,6 +75714,23 @@ export declare type MercuryPortfolioSpendAggregation = {
75538
75714
  __typename?: 'MercuryPortfolioSpendAggregation';
75539
75715
  aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
75540
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
+ };
75541
75734
  export declare type MercuryPreference = Node & {
75542
75735
  __typename?: 'MercuryPreference';
75543
75736
  id: Scalars['ID']['output'];
@@ -75560,6 +75753,16 @@ export declare enum MercuryProjectTargetDateType {
75560
75753
  Month = "MONTH",
75561
75754
  Quarter = "QUARTER"
75562
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
+ };
75563
75766
  export declare type MercuryProvider = Node & {
75564
75767
  __typename?: 'MercuryProvider';
75565
75768
  configurationState: MercuryProviderConfigurationState;
@@ -75994,12 +76197,20 @@ export declare type MercuryStrategicEventUpdateCommentPayload = {
75994
76197
  export declare type MercuryStrategicEventsMutationApi = {
75995
76198
  __typename?: 'MercuryStrategicEventsMutationApi';
75996
76199
  createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
76200
+ createChangeProposalComment?: Maybe<MercuryChangeProposalCreateCommentPayload>;
75997
76201
  createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
76202
+ createStrategicEventComment?: Maybe<MercuryStrategicEventCreateCommentPayload>;
76203
+ deleteChangeProposalComment?: Maybe<MercuryChangeProposalDeleteCommentPayload>;
76204
+ deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
76205
+ deleteStrategicEventComment?: Maybe<MercuryStrategicEventDeleteCommentPayload>;
76206
+ proposeChanges?: Maybe<MercuryProposeChangesPayload>;
75998
76207
  transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
75999
76208
  transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
76209
+ updateChangeProposalComment?: Maybe<MercuryChangeProposalUpdateCommentPayload>;
76000
76210
  updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
76001
76211
  updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
76002
76212
  updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
76213
+ updateStrategicEventComment?: Maybe<MercuryStrategicEventUpdateCommentPayload>;
76003
76214
  updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
76004
76215
  updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
76005
76216
  updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
@@ -76008,15 +76219,36 @@ export declare type MercuryStrategicEventsMutationApi = {
76008
76219
  export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
76009
76220
  input: MercuryCreateChangeProposalInput;
76010
76221
  };
76222
+ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalCommentArgs = {
76223
+ input: MercuryChangeProposalCreateCommentInput;
76224
+ };
76011
76225
  export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
76012
76226
  input: MercuryCreateStrategicEventInput;
76013
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
+ };
76014
76243
  export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
76015
76244
  input: MercuryTransitionChangeProposalStatusInput;
76016
76245
  };
76017
76246
  export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventStatusArgs = {
76018
76247
  input: MercuryTransitionStrategicEventStatusInput;
76019
76248
  };
76249
+ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
76250
+ input: MercuryChangeProposalUpdateCommentInput;
76251
+ };
76020
76252
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
76021
76253
  input: MercuryUpdateChangeProposalDescriptionInput;
76022
76254
  };
@@ -76026,6 +76258,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalNameArg
76026
76258
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerArgs = {
76027
76259
  input: MercuryUpdateChangeProposalOwnerInput;
76028
76260
  };
76261
+ export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
76262
+ input: MercuryStrategicEventUpdateCommentInput;
76263
+ };
76029
76264
  export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventDescriptionArgs = {
76030
76265
  input: MercuryUpdateStrategicEventDescriptionInput;
76031
76266
  };
@@ -76044,6 +76279,7 @@ export declare type MercuryStrategicEventsQueryApi = {
76044
76279
  changeProposalStatuses: Array<MercuryChangeProposalStatus>;
76045
76280
  changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
76046
76281
  changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
76282
+ changes?: Maybe<Array<Maybe<MercuryChange>>>;
76047
76283
  strategicEvent?: Maybe<MercuryStrategicEvent>;
76048
76284
  strategicEventStatuses: Array<MercuryStrategicEventStatus>;
76049
76285
  strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
@@ -76065,6 +76301,9 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
76065
76301
  q?: InputMaybe<Scalars['String']['input']>;
76066
76302
  sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
76067
76303
  };
76304
+ export declare type MercuryStrategicEventsQueryApiChangesArgs = {
76305
+ ids: Array<Scalars['ID']['input']>;
76306
+ };
76068
76307
  export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
76069
76308
  id: Scalars['ID']['input'];
76070
76309
  };
@@ -81867,6 +82106,7 @@ export declare type Query = {
81867
82106
  jiraReleases?: Maybe<JiraReleases>;
81868
82107
  jiraServers?: Maybe<JiraServersResult>;
81869
82108
  jira_boardView?: Maybe<JiraBoardView>;
82109
+ jira_categoryField?: Maybe<JiraJqlField>;
81870
82110
  jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
81871
82111
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
81872
82112
  jira_projectByIdOrKey?: Maybe<JiraProject>;
@@ -84074,6 +84314,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
84074
84314
  export declare type QueryJira_BoardViewArgs = {
84075
84315
  input: JiraBoardViewInput;
84076
84316
  };
84317
+ export declare type QueryJira_CategoryFieldArgs = {
84318
+ cloudId: Scalars['ID']['input'];
84319
+ };
84077
84320
  export declare type QueryJira_IsRovoLlmEnabledArgs = {
84078
84321
  cloudId: Scalars['ID']['input'];
84079
84322
  };