@forge/cli-shared 8.17.1-next.3 → 8.17.1-next.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.17.1-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a1a0375]
8
+ - @forge/manifest@12.4.0-next.3
9
+
3
10
  ## 8.17.1-next.3
4
11
 
5
12
  ### Patch Changes
@@ -5778,7 +5778,7 @@ export declare type AgentWorkspaceEligibleGroup = {
5778
5778
  __typename?: 'AgentWorkspaceEligibleGroup';
5779
5779
  group?: Maybe<IdentityGroup>;
5780
5780
  groupAri: Scalars['ID']['output'];
5781
- membersPreview: AgentWorkspaceGroupMembersPreview;
5781
+ members: Array<AgentWorkspaceGroupMember>;
5782
5782
  };
5783
5783
  export declare type AgentWorkspaceEligibleGroupsPayload = {
5784
5784
  __typename?: 'AgentWorkspaceEligibleGroupsPayload';
@@ -5798,16 +5798,11 @@ export declare type AgentWorkspaceFindBestMatchAgentsPayload = {
5798
5798
  rankedAgents?: Maybe<Array<AgentWorkspaceRankedAgent>>;
5799
5799
  success: Scalars['Boolean']['output'];
5800
5800
  };
5801
- export declare type AgentWorkspaceGroupMemberPreview = {
5802
- __typename?: 'AgentWorkspaceGroupMemberPreview';
5801
+ export declare type AgentWorkspaceGroupMember = {
5802
+ __typename?: 'AgentWorkspaceGroupMember';
5803
5803
  accountId: Scalars['String']['output'];
5804
5804
  user?: Maybe<User>;
5805
5805
  };
5806
- export declare type AgentWorkspaceGroupMembersPreview = {
5807
- __typename?: 'AgentWorkspaceGroupMembersPreview';
5808
- hasMoreMembers: Scalars['Boolean']['output'];
5809
- members: Array<AgentWorkspaceGroupMemberPreview>;
5810
- };
5811
5806
  export declare type AgentWorkspaceGroupTooLarge = {
5812
5807
  __typename?: 'AgentWorkspaceGroupTooLarge';
5813
5808
  group?: Maybe<IdentityGroup>;
@@ -33708,6 +33703,23 @@ export declare type CplsDeleteAllSuggestionsForUserPayload = Payload & {
33708
33703
  errors?: Maybe<Array<MutationError>>;
33709
33704
  success: Scalars['Boolean']['output'];
33710
33705
  };
33706
+ export declare type CplsDeleteContributionSuggestionForUserInput = {
33707
+ contributions: Array<CplsDeleteContributionSuggestionInput>;
33708
+ scopeId: Scalars['ID']['input'];
33709
+ };
33710
+ export declare type CplsDeleteContributionSuggestionInput = {
33711
+ contributorDataId: Scalars['ID']['input'];
33712
+ endDate: Scalars['Date']['input'];
33713
+ startDate: Scalars['Date']['input'];
33714
+ workId: Scalars['ID']['input'];
33715
+ };
33716
+ export declare type CplsDeleteContributionSuggestionsPayload = Payload & {
33717
+ __typename?: 'CplsDeleteContributionSuggestionsPayload';
33718
+ contributors?: Maybe<Array<Maybe<CplsContributorEdge>>>;
33719
+ errors?: Maybe<Array<MutationError>>;
33720
+ success: Scalars['Boolean']['output'];
33721
+ works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
33722
+ };
33711
33723
  export declare type CplsDeleteContributorScopeAssociationInput = {
33712
33724
  cloudId: Scalars['ID']['input'];
33713
33725
  contributorDataIds: Array<Scalars['ID']['input']>;
@@ -33719,6 +33731,16 @@ export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
33719
33731
  ids?: Maybe<Array<Scalars['ID']['output']>>;
33720
33732
  success: Scalars['Boolean']['output'];
33721
33733
  };
33734
+ export declare type CplsDeleteContributorScopeAssociationSuggestionForUserInput = {
33735
+ contributorDataIds: Array<Scalars['ID']['input']>;
33736
+ scopeId: Scalars['ID']['input'];
33737
+ };
33738
+ export declare type CplsDeleteContributorScopeAssociationSuggestionPayload = Payload & {
33739
+ __typename?: 'CplsDeleteContributorScopeAssociationSuggestionPayload';
33740
+ errors?: Maybe<Array<MutationError>>;
33741
+ ids?: Maybe<Array<Scalars['ID']['output']>>;
33742
+ success: Scalars['Boolean']['output'];
33743
+ };
33722
33744
  export declare type CplsDeleteContributorWorkAssociationInput = {
33723
33745
  cloudId: Scalars['ID']['input'];
33724
33746
  contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
@@ -33737,6 +33759,24 @@ export declare type CplsDeleteContributorWorkAssociationPayloadContributorsBySco
33737
33759
  export declare type CplsDeleteContributorWorkAssociationPayloadWorksByScopeArgs = {
33738
33760
  scopeId: Scalars['ID']['input'];
33739
33761
  };
33762
+ export declare type CplsDeleteContributorWorkAssociationSuggestionForUserInput = {
33763
+ contributorWorkAssociations: Array<CplsContributorWorkAssociation>;
33764
+ scopeId: Scalars['ID']['input'];
33765
+ };
33766
+ export declare type CplsDeleteContributorWorkAssociationSuggestionPayload = Payload & {
33767
+ __typename?: 'CplsDeleteContributorWorkAssociationSuggestionPayload';
33768
+ contributorsByScope?: Maybe<Array<Maybe<CplsContributor>>>;
33769
+ errors?: Maybe<Array<MutationError>>;
33770
+ ids?: Maybe<Array<Scalars['ID']['output']>>;
33771
+ success: Scalars['Boolean']['output'];
33772
+ worksByScope?: Maybe<Array<Maybe<CplsWork>>>;
33773
+ };
33774
+ export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadContributorsByScopeArgs = {
33775
+ scopeId: Scalars['ID']['input'];
33776
+ };
33777
+ export declare type CplsDeleteContributorWorkAssociationSuggestionPayloadWorksByScopeArgs = {
33778
+ scopeId: Scalars['ID']['input'];
33779
+ };
33740
33780
  export declare type CplsDeleteWorkScopeAssociationsInput = {
33741
33781
  cloudId: Scalars['ID']['input'];
33742
33782
  scopeId: Scalars['ID']['input'];
@@ -123514,6 +123554,16 @@ export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
123514
123554
  errors?: Maybe<Array<MutationError>>;
123515
123555
  success: Scalars['Boolean']['output'];
123516
123556
  };
123557
+ export declare type JiraSetTimelineSearchFiltersInput = {
123558
+ additionalJql?: InputMaybe<Scalars['String']['input']>;
123559
+ filters?: InputMaybe<JiraTimelineSearchFilterInput>;
123560
+ viewId: Scalars['ID']['input'];
123561
+ };
123562
+ export declare type JiraSetTimelineSearchFiltersPayload = Payload & {
123563
+ __typename?: 'JiraSetTimelineSearchFiltersPayload';
123564
+ errors?: Maybe<Array<MutationError>>;
123565
+ success: Scalars['Boolean']['output'];
123566
+ };
123517
123567
  export declare type JiraSetTimelineViewFieldSetsInput = {
123518
123568
  fieldSetIds: Array<Scalars['String']['input']>;
123519
123569
  viewId: Scalars['ID']['input'];
@@ -125034,7 +125084,13 @@ export declare type JiraTimelineProjectSettings = {
125034
125084
  isUserBoardAdmin?: Maybe<Scalars['Boolean']['output']>;
125035
125085
  rankIssueSupported?: Maybe<Scalars['Boolean']['output']>;
125036
125086
  };
125087
+ export declare type JiraTimelineSearchFilterInput = {
125088
+ customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
125089
+ quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
125090
+ };
125037
125091
  export declare type JiraTimelineStaticViewInput = {
125092
+ hideDependencies?: InputMaybe<Scalars['Boolean']['input']>;
125093
+ hideReleases?: InputMaybe<Scalars['Boolean']['input']>;
125038
125094
  hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
125039
125095
  rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
125040
125096
  };
@@ -141710,8 +141766,11 @@ export declare type Mutation = {
141710
141766
  cpls_createCustomContributionTargetWithWorkAssociation?: Maybe<CplsCreateCustomContributionTargetWithWorkAssociationPayload>;
141711
141767
  cpls_createSuggestions?: Maybe<CplsCreateSuggestionsPayload>;
141712
141768
  cpls_deleteAllSuggestionsForUser?: Maybe<CplsDeleteAllSuggestionsForUserPayload>;
141769
+ cpls_deleteContributionSuggestionForUser?: Maybe<CplsDeleteContributionSuggestionsPayload>;
141713
141770
  cpls_deleteContributorScopeAssociation?: Maybe<CplsDeleteContributorScopeAssociationPayload>;
141771
+ cpls_deleteContributorScopeAssociationSuggestionForUser?: Maybe<CplsDeleteContributorScopeAssociationSuggestionPayload>;
141714
141772
  cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
141773
+ cpls_deleteContributorWorkAssociationSuggestionForUser?: Maybe<CplsDeleteContributorWorkAssociationSuggestionPayload>;
141715
141774
  cpls_deleteWorkScopeAssociations?: Maybe<CplsDeleteWorkScopeAssociationsPayload>;
141716
141775
  cpls_importCapacityData?: Maybe<CplsImportCapacityDataPayload>;
141717
141776
  cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
@@ -142058,6 +142117,7 @@ export declare type Mutation = {
142058
142117
  jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
142059
142118
  jira_setTimelineBarColorMode?: Maybe<JiraSetTimelineBarColorModePayload>;
142060
142119
  jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
142120
+ jira_setTimelineSearchFilters?: Maybe<JiraSetTimelineSearchFiltersPayload>;
142061
142121
  jira_setTimelineViewFieldSets?: Maybe<JiraSetTimelineViewFieldSetsPayload>;
142062
142122
  jira_setTimelineViewHideDependencies?: Maybe<JiraSetTimelineViewHideDependenciesPayload>;
142063
142123
  jira_setTimelineViewHideReleases?: Maybe<JiraSetTimelineViewHideReleasesPayload>;
@@ -143943,12 +144003,21 @@ export declare type MutationCpls_CreateSuggestionsArgs = {
143943
144003
  export declare type MutationCpls_DeleteAllSuggestionsForUserArgs = {
143944
144004
  input: CplsDeleteAllSuggestionsForUserInput;
143945
144005
  };
144006
+ export declare type MutationCpls_DeleteContributionSuggestionForUserArgs = {
144007
+ input: CplsDeleteContributionSuggestionForUserInput;
144008
+ };
143946
144009
  export declare type MutationCpls_DeleteContributorScopeAssociationArgs = {
143947
144010
  input: CplsDeleteContributorScopeAssociationInput;
143948
144011
  };
144012
+ export declare type MutationCpls_DeleteContributorScopeAssociationSuggestionForUserArgs = {
144013
+ input: CplsDeleteContributorScopeAssociationSuggestionForUserInput;
144014
+ };
143949
144015
  export declare type MutationCpls_DeleteContributorWorkAssociationArgs = {
143950
144016
  input: CplsDeleteContributorWorkAssociationInput;
143951
144017
  };
144018
+ export declare type MutationCpls_DeleteContributorWorkAssociationSuggestionForUserArgs = {
144019
+ input: CplsDeleteContributorWorkAssociationSuggestionForUserInput;
144020
+ };
143952
144021
  export declare type MutationCpls_DeleteWorkScopeAssociationsArgs = {
143953
144022
  input: CplsDeleteWorkScopeAssociationsInput;
143954
144023
  };
@@ -145077,6 +145146,9 @@ export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
145077
145146
  cloudId: Scalars['ID']['input'];
145078
145147
  input: JiraSetTimelineHighlightedReleasesInput;
145079
145148
  };
145149
+ export declare type MutationJira_SetTimelineSearchFiltersArgs = {
145150
+ input: JiraSetTimelineSearchFiltersInput;
145151
+ };
145080
145152
  export declare type MutationJira_SetTimelineViewFieldSetsArgs = {
145081
145153
  input: JiraSetTimelineViewFieldSetsInput;
145082
145154
  };
@@ -150627,6 +150699,7 @@ export declare type Query = {
150627
150699
  stakeholderComms_testAPIStandardPlusOnly?: Maybe<Scalars['String']['output']>;
150628
150700
  stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
150629
150701
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
150702
+ studio_solutionPlan?: Maybe<StudioSolutionPlan>;
150630
150703
  suggest?: Maybe<QuerySuggestionApi>;
150631
150704
  suggestedSpaces?: Maybe<PaginatedSpaceList>;
150632
150705
  supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
@@ -155656,6 +155729,11 @@ export declare type QueryStalePagesArgs = {
155656
155729
  sort?: InputMaybe<StalePagesSortingType>;
155657
155730
  spaceId: Scalars['ID']['input'];
155658
155731
  };
155732
+ export declare type QueryStudio_SolutionPlanArgs = {
155733
+ solutionId: Scalars['String']['input'];
155734
+ solutionVersion: Scalars['Int']['input'];
155735
+ workspaceId: Scalars['ID']['input'];
155736
+ };
155659
155737
  export declare type QuerySuggestedSpacesArgs = {
155660
155738
  connections?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
155661
155739
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -182399,6 +182477,60 @@ export declare enum StringUserInputType {
182399
182477
  Paragraph = "PARAGRAPH",
182400
182478
  Text = "TEXT"
182401
182479
  }
182480
+ export declare type StudioBuild = {
182481
+ __typename?: 'StudioBuild';
182482
+ buildId?: Maybe<Scalars['UUID']['output']>;
182483
+ dependencies?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
182484
+ number?: Maybe<Scalars['Int']['output']>;
182485
+ overview?: Maybe<Scalars['String']['output']>;
182486
+ specification?: Maybe<StudioBuildSpecification>;
182487
+ state?: Maybe<StudioBuildState>;
182488
+ type?: Maybe<StudioBuildType>;
182489
+ };
182490
+ export declare type StudioBuildSpecification = {
182491
+ __typename?: 'StudioBuildSpecification';
182492
+ details?: Maybe<Scalars['String']['output']>;
182493
+ };
182494
+ export declare enum StudioBuildState {
182495
+ Failed = "FAILED",
182496
+ InProgress = "IN_PROGRESS",
182497
+ Success = "SUCCESS",
182498
+ Waiting = "WAITING"
182499
+ }
182500
+ export declare enum StudioBuildType {
182501
+ AutomationRule = "AUTOMATION_RULE",
182502
+ EcosystemApp = "ECOSYSTEM_APP",
182503
+ RovoAgent = "ROVO_AGENT"
182504
+ }
182505
+ export declare type StudioBuilds = {
182506
+ __typename?: 'StudioBuilds';
182507
+ sequence?: Maybe<Array<Maybe<StudioBuild>>>;
182508
+ };
182509
+ export declare enum StudioPlanState {
182510
+ Completed = "COMPLETED",
182511
+ Disabled = "DISABLED",
182512
+ Draft = "DRAFT",
182513
+ Failed = "FAILED",
182514
+ InProgress = "IN_PROGRESS"
182515
+ }
182516
+ export declare type StudioSolutionPlan = {
182517
+ __typename?: 'StudioSolutionPlan';
182518
+ builds?: Maybe<StudioBuilds>;
182519
+ conversationId?: Maybe<Scalars['UUID']['output']>;
182520
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
182521
+ createdBy?: Maybe<User>;
182522
+ currentBuildNumber?: Maybe<Scalars['Int']['output']>;
182523
+ name?: Maybe<Scalars['String']['output']>;
182524
+ numBuilds?: Maybe<Scalars['Int']['output']>;
182525
+ planId?: Maybe<Scalars['UUID']['output']>;
182526
+ solutionId?: Maybe<Scalars['UUID']['output']>;
182527
+ solutionVersion?: Maybe<Scalars['Int']['output']>;
182528
+ spaceId?: Maybe<Scalars['UUID']['output']>;
182529
+ state?: Maybe<StudioPlanState>;
182530
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
182531
+ updatedBy?: Maybe<User>;
182532
+ workspaceId: Scalars['ID']['output'];
182533
+ };
182402
182534
  export declare type SubjectKey = {
182403
182535
  __typename?: 'SubjectKey';
182404
182536
  confluencePerson?: Maybe<ConfluencePerson>;