@forge/cli-shared 6.8.0-next.15 → 6.8.0-next.15-experimental-beb5acf

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-beb5acf
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-beb5acf
34
+ - @forge/i18n@0.0.5-next.0-experimental-beb5acf
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>;
@@ -2552,32 +2619,6 @@ export declare type Author = {
2552
2619
  id?: Maybe<Scalars['String']['output']>;
2553
2620
  name?: Maybe<Scalars['String']['output']>;
2554
2621
  };
2555
- export declare type AutoSuggestionApi = {
2556
- __typename?: 'AutoSuggestionAPI';
2557
- suggest?: Maybe<AutoSuggestionNodes>;
2558
- };
2559
- export declare type AutoSuggestionApiSuggestArgs = {
2560
- filters: AutoSuggestionFilters;
2561
- limit: Scalars['Int']['input'];
2562
- query?: InputMaybe<Scalars['String']['input']>;
2563
- };
2564
- export declare type AutoSuggestionFilters = {
2565
- contextType: Scalars['String']['input'];
2566
- organizationId: Scalars['String']['input'];
2567
- principalId: Scalars['String']['input'];
2568
- productKey: Scalars['String']['input'];
2569
- siteId: Scalars['String']['input'];
2570
- };
2571
- export declare type AutoSuggestionNodes = {
2572
- __typename?: 'AutoSuggestionNodes';
2573
- nodes: Array<AutoSuggestionResult>;
2574
- totalCount: Scalars['Int']['output'];
2575
- };
2576
- export declare type AutoSuggestionResult = {
2577
- __typename?: 'AutoSuggestionResult';
2578
- title: Scalars['String']['output'];
2579
- type: Scalars['String']['output'];
2580
- };
2581
2622
  export declare type AuxEffectsInvocationPayload = {
2582
2623
  config?: InputMaybe<Scalars['JSON']['input']>;
2583
2624
  context: Scalars['JSON']['input'];
@@ -7421,7 +7462,7 @@ export declare enum CompassLifecycleFilterOperator {
7421
7462
  Nor = "NOR",
7422
7463
  Or = "OR"
7423
7464
  }
7424
- export declare type CompassLink = Node & {
7465
+ export declare type CompassLink = {
7425
7466
  __typename?: 'CompassLink';
7426
7467
  eventSources?: Maybe<Array<EventSource>>;
7427
7468
  id: Scalars['ID']['output'];
@@ -8210,6 +8251,7 @@ export declare type CompassScorecardCriterionScoreMetadataEventConnection = {
8210
8251
  edges?: Maybe<Array<CompassScorecardCriterionScoreMetadataEventEdge>>;
8211
8252
  nodes?: Maybe<Array<CompassEvent>>;
8212
8253
  pageInfo?: Maybe<PageInfo>;
8254
+ totalCount?: Maybe<Scalars['Int']['output']>;
8213
8255
  };
8214
8256
  export declare type CompassScorecardCriterionScoreMetadataEventEdge = {
8215
8257
  __typename?: 'CompassScorecardCriterionScoreMetadataEventEdge';
@@ -21885,6 +21927,7 @@ export declare type DevAiFlowSession = {
21885
21927
  createdBy?: Maybe<Scalars['String']['output']>;
21886
21928
  id: Scalars['ID']['output'];
21887
21929
  issueARI?: Maybe<Scalars['ID']['output']>;
21930
+ jiraHost?: Maybe<Scalars['String']['output']>;
21888
21931
  pipelines?: Maybe<Array<Maybe<DevAiFlowPipeline>>>;
21889
21932
  repoUrl?: Maybe<Scalars['String']['output']>;
21890
21933
  sessionARI: Scalars['ID']['output'];
@@ -53979,6 +54022,7 @@ export declare type JiraAutodevJob = {
53979
54022
  agent?: Maybe<DevAiRovoAgent>;
53980
54023
  branchName?: Maybe<Scalars['String']['output']>;
53981
54024
  branchUrl?: Maybe<Scalars['String']['output']>;
54025
+ changesSummary?: Maybe<Scalars['String']['output']>;
53982
54026
  codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
53983
54027
  currentWorkflow?: Maybe<Scalars['String']['output']>;
53984
54028
  error?: Maybe<JiraAutodevJobPermissionError>;
@@ -54001,6 +54045,7 @@ export declare type JiraAutodevJob = {
54001
54045
  state?: Maybe<JiraAutodevState>;
54002
54046
  status?: Maybe<JiraAutodevStatus>;
54003
54047
  statusHistory?: Maybe<JiraAutodevStatusHistoryItemConnection>;
54048
+ taskSummary?: Maybe<Scalars['String']['output']>;
54004
54049
  };
54005
54050
  export declare type JiraAutodevJobAgentArgs = {
54006
54051
  cloudId: Scalars['ID']['input'];
@@ -63201,6 +63246,7 @@ export declare type JiraProject = Node & {
63201
63246
  name: Scalars['String']['output'];
63202
63247
  navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
63203
63248
  opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
63249
+ optionsPerFieldLimit?: Maybe<Scalars['Int']['output']>;
63204
63250
  projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
63205
63251
  projectId?: Maybe<Scalars['String']['output']>;
63206
63252
  projectScopedFieldsCount?: Maybe<Scalars['Int']['output']>;
@@ -70654,6 +70700,7 @@ export declare type JsmChatMutation = {
70654
70700
  createConversation?: Maybe<JsmChatCreateConversationPayload>;
70655
70701
  createConversationAnalyticsEvent?: Maybe<JsmChatCreateConversationAnalyticsOutput>;
70656
70702
  createWebConversationMessage?: Maybe<JsmChatCreateWebConversationMessagePayload>;
70703
+ deleteMsTeamsMapping: JsmChatDeleteSlackChannelMappingOutput;
70657
70704
  deleteSlackChannelMapping: JsmChatDeleteSlackChannelMappingOutput;
70658
70705
  disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
70659
70706
  disconnectMsTeamsJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
@@ -70691,6 +70738,10 @@ export declare type JsmChatMutationCreateWebConversationMessageArgs = {
70691
70738
  input: JsmChatCreateWebConversationMessageInput;
70692
70739
  workspaceAri: Scalars['ID']['input'];
70693
70740
  };
70741
+ export declare type JsmChatMutationDeleteMsTeamsMappingArgs = {
70742
+ jiraProjectAri: Scalars['ID']['input'];
70743
+ msTeamsChannelAri: Scalars['ID']['input'];
70744
+ };
70694
70745
  export declare type JsmChatMutationDeleteSlackChannelMappingArgs = {
70695
70746
  jiraProjectAri: Scalars['ID']['input'];
70696
70747
  slackChannelAri: Scalars['ID']['input'];
@@ -73970,6 +74021,44 @@ export declare type MarketplaceStoreBillingSystemResponse = {
73970
74021
  __typename?: 'MarketplaceStoreBillingSystemResponse';
73971
74022
  billingSystem: MarketplaceStoreBillingSystem;
73972
74023
  };
74024
+ export declare type MarketplaceStoreBundleDetailResponse = {
74025
+ __typename?: 'MarketplaceStoreBundleDetailResponse';
74026
+ developerId: Scalars['ID']['output'];
74027
+ heroImage?: Maybe<MarketplaceStoreProductListingImage>;
74028
+ highlights: Array<MarketplaceStoreProductListingHighlight>;
74029
+ id: Scalars['ID']['output'];
74030
+ logo: MarketplaceStoreProductListingImage;
74031
+ moreDetails?: Maybe<Scalars['String']['output']>;
74032
+ name: Scalars['String']['output'];
74033
+ partner: MarketplaceStoreBundlePartner;
74034
+ screenshots?: Maybe<Array<Maybe<MarketplaceStoreProductListingScreenshot>>>;
74035
+ supportDetails?: Maybe<MarketplaceStoreBundleSupportDetails>;
74036
+ tagLine?: Maybe<Scalars['String']['output']>;
74037
+ vendorLinks?: Maybe<MarketplaceStoreBundleVendorLinks>;
74038
+ youtubeId?: Maybe<Scalars['String']['output']>;
74039
+ };
74040
+ export declare type MarketplaceStoreBundlePartner = {
74041
+ __typename?: 'MarketplaceStoreBundlePartner';
74042
+ developerSpace?: Maybe<MarketplaceStoreDeveloperSpace>;
74043
+ enrollments?: Maybe<Array<Maybe<MarketplaceStorePartnerEnrollment>>>;
74044
+ id: Scalars['ID']['output'];
74045
+ listing?: Maybe<MarketplaceStorePartnerListing>;
74046
+ };
74047
+ export declare type MarketplaceStoreBundleSupportDetails = {
74048
+ __typename?: 'MarketplaceStoreBundleSupportDetails';
74049
+ appStatusPage?: Maybe<Scalars['String']['output']>;
74050
+ forums?: Maybe<Scalars['String']['output']>;
74051
+ issueTracker?: Maybe<Scalars['String']['output']>;
74052
+ privacy?: Maybe<Scalars['String']['output']>;
74053
+ supportTicketSystem?: Maybe<Scalars['String']['output']>;
74054
+ };
74055
+ export declare type MarketplaceStoreBundleVendorLinks = {
74056
+ __typename?: 'MarketplaceStoreBundleVendorLinks';
74057
+ documentation?: Maybe<Scalars['String']['output']>;
74058
+ eula?: Maybe<Scalars['String']['output']>;
74059
+ learnMore?: Maybe<Scalars['String']['output']>;
74060
+ purchase?: Maybe<Scalars['String']['output']>;
74061
+ };
73973
74062
  export declare type MarketplaceStoreCategoryHeroSection = {
73974
74063
  __typename?: 'MarketplaceStoreCategoryHeroSection';
73975
74064
  backgroundColor: Scalars['String']['output'];
@@ -74400,11 +74489,35 @@ export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricing
74400
74489
  export declare type MarketplaceStoreProduct = {
74401
74490
  appKey?: InputMaybe<Scalars['String']['input']>;
74402
74491
  };
74492
+ export declare type MarketplaceStoreProductListingHighlight = {
74493
+ __typename?: 'MarketplaceStoreProductListingHighlight';
74494
+ caption?: Maybe<Scalars['String']['output']>;
74495
+ screenshot: MarketplaceStoreProductListingScreenshot;
74496
+ summary: Scalars['String']['output'];
74497
+ thumbnail?: Maybe<MarketplaceStoreProductListingImage>;
74498
+ title: Scalars['String']['output'];
74499
+ };
74500
+ export declare type MarketplaceStoreProductListingImage = {
74501
+ __typename?: 'MarketplaceStoreProductListingImage';
74502
+ altText?: Maybe<Scalars['String']['output']>;
74503
+ fileId: Scalars['String']['output'];
74504
+ fileName: Scalars['String']['output'];
74505
+ height: Scalars['Int']['output'];
74506
+ imageType: Scalars['String']['output'];
74507
+ url?: Maybe<Scalars['String']['output']>;
74508
+ width: Scalars['Int']['output'];
74509
+ };
74510
+ export declare type MarketplaceStoreProductListingScreenshot = {
74511
+ __typename?: 'MarketplaceStoreProductListingScreenshot';
74512
+ caption?: Maybe<Scalars['String']['output']>;
74513
+ image: MarketplaceStoreProductListingImage;
74514
+ };
74403
74515
  export declare type MarketplaceStoreQueryApi = {
74404
74516
  __typename?: 'MarketplaceStoreQueryApi';
74405
74517
  appReviewsByAppId: MarketplaceStoreReviewsResponse;
74406
74518
  appReviewsByAppKey: MarketplaceStoreReviewsResponse;
74407
74519
  billingSystem: MarketplaceStoreBillingSystemResponse;
74520
+ bundleDetail: MarketplaceStoreBundleDetailResponse;
74408
74521
  category: MarketplaceStoreCategoryResponse;
74409
74522
  cmtAvailability: MarketplaceStoreCmtAvailabilityResponse;
74410
74523
  collection: MarketplaceStoreCollectionResponse;
@@ -74437,6 +74550,9 @@ export declare type MarketplaceStoreQueryApiAppReviewsByAppKeyArgs = {
74437
74550
  export declare type MarketplaceStoreQueryApiBillingSystemArgs = {
74438
74551
  billingSystemInput: MarketplaceStoreBillingSystemInput;
74439
74552
  };
74553
+ export declare type MarketplaceStoreQueryApiBundleDetailArgs = {
74554
+ bundleId: Scalars['String']['input'];
74555
+ };
74440
74556
  export declare type MarketplaceStoreQueryApiCategoryArgs = {
74441
74557
  slug: Scalars['String']['input'];
74442
74558
  };
@@ -74642,6 +74758,16 @@ export declare type MercuryBudgetAggregation = {
74642
74758
  aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
74643
74759
  totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
74644
74760
  };
74761
+ export declare type MercuryChange = MercuryCreateFocusAreaChange | MercuryPositionAllocationChange;
74762
+ export declare type MercuryChangeInterface = {
74763
+ changeProposal?: Maybe<MercuryChangeProposal>;
74764
+ changeType: MercuryChangeType;
74765
+ createdBy?: Maybe<User>;
74766
+ createdDate: Scalars['DateTime']['output'];
74767
+ id: Scalars['ID']['output'];
74768
+ updatedBy?: Maybe<User>;
74769
+ updatedDate: Scalars['DateTime']['output'];
74770
+ };
74645
74771
  export declare type MercuryChangeProposal = Node & {
74646
74772
  __typename?: 'MercuryChangeProposal';
74647
74773
  comments?: Maybe<MercuryChangeProposalCommentConnection>;
@@ -74741,6 +74867,10 @@ export declare type MercuryChangeProposalUpdateCommentPayload = {
74741
74867
  success: Scalars['Boolean']['output'];
74742
74868
  updatedComment?: Maybe<MercuryChangeProposalComment>;
74743
74869
  };
74870
+ export declare enum MercuryChangeType {
74871
+ CreateFocusArea = "CREATE_FOCUS_AREA",
74872
+ PositionAllocation = "POSITION_ALLOCATION"
74873
+ }
74744
74874
  export declare type MercuryComment = Node & {
74745
74875
  __typename?: 'MercuryComment';
74746
74876
  ari: Scalars['String']['output'];
@@ -74786,6 +74916,19 @@ export declare type MercuryCreateCommentPayload = Payload & {
74786
74916
  errors?: Maybe<Array<MutationError>>;
74787
74917
  success: Scalars['Boolean']['output'];
74788
74918
  };
74919
+ export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node & {
74920
+ __typename?: 'MercuryCreateFocusAreaChange';
74921
+ changeProposal?: Maybe<MercuryChangeProposal>;
74922
+ changeType: MercuryChangeType;
74923
+ createdBy?: Maybe<User>;
74924
+ createdDate: Scalars['DateTime']['output'];
74925
+ focusAreaName: Scalars['String']['output'];
74926
+ focusAreaOwner?: Maybe<User>;
74927
+ focusAreaType?: Maybe<Scalars['ID']['output']>;
74928
+ id: Scalars['ID']['output'];
74929
+ updatedBy?: Maybe<User>;
74930
+ updatedDate: Scalars['DateTime']['output'];
74931
+ };
74789
74932
  export declare type MercuryCreateFocusAreaInput = {
74790
74933
  cloudId: Scalars['ID']['input'];
74791
74934
  externalId?: InputMaybe<Scalars['String']['input']>;
@@ -74845,6 +74988,14 @@ export declare type MercuryDeleteAllPreferencesByUserPayload = Payload & {
74845
74988
  errors?: Maybe<Array<MutationError>>;
74846
74989
  success: Scalars['Boolean']['output'];
74847
74990
  };
74991
+ export declare type MercuryDeleteChangesInput = {
74992
+ changeIds: Array<Scalars['ID']['input']>;
74993
+ };
74994
+ export declare type MercuryDeleteChangesPayload = Payload & {
74995
+ __typename?: 'MercuryDeleteChangesPayload';
74996
+ errors?: Maybe<Array<MutationError>>;
74997
+ success: Scalars['Boolean']['output'];
74998
+ };
74848
74999
  export declare type MercuryDeleteCommentInput = {
74849
75000
  cloudId: Scalars['ID']['input'];
74850
75001
  id: Scalars['ID']['input'];
@@ -75538,6 +75689,23 @@ export declare type MercuryPortfolioSpendAggregation = {
75538
75689
  __typename?: 'MercuryPortfolioSpendAggregation';
75539
75690
  aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
75540
75691
  };
75692
+ export declare type MercuryPositionAllocationChange = MercuryChangeInterface & Node & {
75693
+ __typename?: 'MercuryPositionAllocationChange';
75694
+ changeProposal?: Maybe<MercuryChangeProposal>;
75695
+ changeType: MercuryChangeType;
75696
+ createdBy?: Maybe<User>;
75697
+ createdDate: Scalars['DateTime']['output'];
75698
+ id: Scalars['ID']['output'];
75699
+ position?: Maybe<RadarPosition>;
75700
+ sourceFocusArea?: Maybe<MercuryFocusArea>;
75701
+ targetFocusArea?: Maybe<MercuryFocusArea>;
75702
+ updatedBy?: Maybe<User>;
75703
+ updatedDate: Scalars['DateTime']['output'];
75704
+ };
75705
+ export declare type MercuryPositionAllocationChangeInput = {
75706
+ positionId: Scalars['ID']['input'];
75707
+ targetFocusAreaId: Scalars['ID']['input'];
75708
+ };
75541
75709
  export declare type MercuryPreference = Node & {
75542
75710
  __typename?: 'MercuryPreference';
75543
75711
  id: Scalars['ID']['output'];
@@ -75560,6 +75728,16 @@ export declare enum MercuryProjectTargetDateType {
75560
75728
  Month = "MONTH",
75561
75729
  Quarter = "QUARTER"
75562
75730
  }
75731
+ export declare type MercuryProposeChangesInput = {
75732
+ changeProposalId: Scalars['ID']['input'];
75733
+ positionAllocations: Array<MercuryPositionAllocationChangeInput>;
75734
+ };
75735
+ export declare type MercuryProposeChangesPayload = Payload & {
75736
+ __typename?: 'MercuryProposeChangesPayload';
75737
+ changes?: Maybe<Array<MercuryChange>>;
75738
+ errors?: Maybe<Array<MutationError>>;
75739
+ success: Scalars['Boolean']['output'];
75740
+ };
75563
75741
  export declare type MercuryProvider = Node & {
75564
75742
  __typename?: 'MercuryProvider';
75565
75743
  configurationState: MercuryProviderConfigurationState;
@@ -75994,12 +76172,20 @@ export declare type MercuryStrategicEventUpdateCommentPayload = {
75994
76172
  export declare type MercuryStrategicEventsMutationApi = {
75995
76173
  __typename?: 'MercuryStrategicEventsMutationApi';
75996
76174
  createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
76175
+ createChangeProposalComment?: Maybe<MercuryChangeProposalCreateCommentPayload>;
75997
76176
  createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
76177
+ createStrategicEventComment?: Maybe<MercuryStrategicEventCreateCommentPayload>;
76178
+ deleteChangeProposalComment?: Maybe<MercuryChangeProposalDeleteCommentPayload>;
76179
+ deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
76180
+ deleteStrategicEventComment?: Maybe<MercuryStrategicEventDeleteCommentPayload>;
76181
+ proposeChanges?: Maybe<MercuryProposeChangesPayload>;
75998
76182
  transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
75999
76183
  transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
76184
+ updateChangeProposalComment?: Maybe<MercuryChangeProposalUpdateCommentPayload>;
76000
76185
  updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
76001
76186
  updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
76002
76187
  updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
76188
+ updateStrategicEventComment?: Maybe<MercuryStrategicEventUpdateCommentPayload>;
76003
76189
  updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
76004
76190
  updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
76005
76191
  updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
@@ -76008,15 +76194,36 @@ export declare type MercuryStrategicEventsMutationApi = {
76008
76194
  export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
76009
76195
  input: MercuryCreateChangeProposalInput;
76010
76196
  };
76197
+ export declare type MercuryStrategicEventsMutationApiCreateChangeProposalCommentArgs = {
76198
+ input: MercuryChangeProposalCreateCommentInput;
76199
+ };
76011
76200
  export declare type MercuryStrategicEventsMutationApiCreateStrategicEventArgs = {
76012
76201
  input: MercuryCreateStrategicEventInput;
76013
76202
  };
76203
+ export declare type MercuryStrategicEventsMutationApiCreateStrategicEventCommentArgs = {
76204
+ input: MercuryStrategicEventCreateCommentInput;
76205
+ };
76206
+ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
76207
+ input: MercuryChangeProposalDeleteCommentInput;
76208
+ };
76209
+ export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
76210
+ input?: InputMaybe<MercuryDeleteChangesInput>;
76211
+ };
76212
+ export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
76213
+ input: MercuryStrategicEventDeleteCommentInput;
76214
+ };
76215
+ export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
76216
+ input: MercuryProposeChangesInput;
76217
+ };
76014
76218
  export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
76015
76219
  input: MercuryTransitionChangeProposalStatusInput;
76016
76220
  };
76017
76221
  export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventStatusArgs = {
76018
76222
  input: MercuryTransitionStrategicEventStatusInput;
76019
76223
  };
76224
+ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
76225
+ input: MercuryChangeProposalUpdateCommentInput;
76226
+ };
76020
76227
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
76021
76228
  input: MercuryUpdateChangeProposalDescriptionInput;
76022
76229
  };
@@ -76026,6 +76233,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalNameArg
76026
76233
  export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerArgs = {
76027
76234
  input: MercuryUpdateChangeProposalOwnerInput;
76028
76235
  };
76236
+ export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
76237
+ input: MercuryStrategicEventUpdateCommentInput;
76238
+ };
76029
76239
  export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventDescriptionArgs = {
76030
76240
  input: MercuryUpdateStrategicEventDescriptionInput;
76031
76241
  };
@@ -76044,6 +76254,7 @@ export declare type MercuryStrategicEventsQueryApi = {
76044
76254
  changeProposalStatuses: Array<MercuryChangeProposalStatus>;
76045
76255
  changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
76046
76256
  changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
76257
+ changes?: Maybe<Array<Maybe<MercuryChange>>>;
76047
76258
  strategicEvent?: Maybe<MercuryStrategicEvent>;
76048
76259
  strategicEventStatuses: Array<MercuryStrategicEventStatus>;
76049
76260
  strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
@@ -76065,6 +76276,9 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
76065
76276
  q?: InputMaybe<Scalars['String']['input']>;
76066
76277
  sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
76067
76278
  };
76279
+ export declare type MercuryStrategicEventsQueryApiChangesArgs = {
76280
+ ids: Array<Scalars['ID']['input']>;
76281
+ };
76068
76282
  export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
76069
76283
  id: Scalars['ID']['input'];
76070
76284
  };
@@ -76850,6 +77064,8 @@ export declare type Mutation = {
76850
77064
  devOps?: Maybe<DevOpsMutation>;
76851
77065
  devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
76852
77066
  devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
77067
+ devai_flowCreate?: Maybe<DevAiFlowSession>;
77068
+ devai_flowSessionComplete?: Maybe<DevAiFlowSession>;
76853
77069
  devai_flowSessionCreate?: Maybe<DevAiFlowSession>;
76854
77070
  devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
76855
77071
  devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
@@ -78097,6 +78313,16 @@ export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
78097
78313
  repoUrl: Scalars['URL']['input'];
78098
78314
  summary?: InputMaybe<Scalars['String']['input']>;
78099
78315
  };
78316
+ export declare type MutationDevai_FlowCreateArgs = {
78317
+ cloudId: Scalars['String']['input'];
78318
+ createdBy: Scalars['String']['input'];
78319
+ issueARI?: InputMaybe<Scalars['ID']['input']>;
78320
+ jiraHost: Scalars['String']['input'];
78321
+ repoUrl: Scalars['URL']['input'];
78322
+ };
78323
+ export declare type MutationDevai_FlowSessionCompleteArgs = {
78324
+ id: Scalars['ID']['input'];
78325
+ };
78100
78326
  export declare type MutationDevai_FlowSessionCreateArgs = {
78101
78327
  cloudId: Scalars['String']['input'];
78102
78328
  createdBy: Scalars['String']['input'];
@@ -81867,6 +82093,7 @@ export declare type Query = {
81867
82093
  jiraReleases?: Maybe<JiraReleases>;
81868
82094
  jiraServers?: Maybe<JiraServersResult>;
81869
82095
  jira_boardView?: Maybe<JiraBoardView>;
82096
+ jira_categoryField?: Maybe<JiraJqlField>;
81870
82097
  jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
81871
82098
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
81872
82099
  jira_projectByIdOrKey?: Maybe<JiraProject>;
@@ -82035,7 +82262,6 @@ export declare type Query = {
82035
82262
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
82036
82263
  suggest?: Maybe<QuerySuggestionApi>;
82037
82264
  suggestedSpaces?: Maybe<PaginatedSpaceList>;
82038
- suggestions?: Maybe<AutoSuggestionApi>;
82039
82265
  team?: Maybe<TeamQuery>;
82040
82266
  teamCalendarSettings?: Maybe<TeamCalendarSettings>;
82041
82267
  teamLabels?: Maybe<PaginatedLabelList>;
@@ -84074,6 +84300,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
84074
84300
  export declare type QueryJira_BoardViewArgs = {
84075
84301
  input: JiraBoardViewInput;
84076
84302
  };
84303
+ export declare type QueryJira_CategoryFieldArgs = {
84304
+ cloudId: Scalars['ID']['input'];
84305
+ };
84077
84306
  export declare type QueryJira_IsRovoLlmEnabledArgs = {
84078
84307
  cloudId: Scalars['ID']['input'];
84079
84308
  };