@forge/cli-shared 8.15.1-next.0-experimental-5b18257 → 8.15.1-next.1

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,10 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 8.15.1-next.0-experimental-5b18257
3
+ ## 8.15.1-next.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - 2719ab7: Add image tag filtering for container repository listing
7
+ - 19807bf: Changed schema for container resources
8
+ - Updated dependencies [19807bf]
9
+ - @forge/manifest@12.1.0-next.0
8
10
 
9
11
  ## 8.15.1-next.0
10
12
 
@@ -3341,6 +3341,7 @@ export declare type AgentStudioBatchEvaluationJobRun = {
3341
3341
  id: Scalars['ID']['output'];
3342
3342
  jobId: Scalars['ID']['output'];
3343
3343
  judgeFailureCount?: Maybe<Scalars['Int']['output']>;
3344
+ judgeMode?: Maybe<AgentStudioJudgeMode>;
3344
3345
  judgeResolution?: Maybe<AgentStudioDatasetResolution>;
3345
3346
  judgeSuccessCount?: Maybe<Scalars['Int']['output']>;
3346
3347
  resolutionRate?: Maybe<Scalars['Float']['output']>;
@@ -3465,6 +3466,7 @@ export declare type AgentStudioCreateBatchEvaluationJobInput = {
3465
3466
  agentVersionId: Scalars['String']['input'];
3466
3467
  datasetId: Scalars['String']['input'];
3467
3468
  judgeConfigId: Scalars['String']['input'];
3469
+ judgeMode?: InputMaybe<AgentStudioJudgeMode>;
3468
3470
  name: Scalars['String']['input'];
3469
3471
  };
3470
3472
  export declare type AgentStudioCreateBatchEvaluationJobPayload = Payload & {
@@ -3585,6 +3587,7 @@ export declare type AgentStudioEvaluationResult = {
3585
3587
  judgeDecision?: Maybe<AgentStudioJudgementDecision>;
3586
3588
  judgeErrorMessage?: Maybe<Scalars['String']['output']>;
3587
3589
  judgeEvaluatedAt?: Maybe<Scalars['String']['output']>;
3590
+ judgeMode?: Maybe<AgentStudioJudgeMode>;
3588
3591
  judgeReasoning?: Maybe<Scalars['String']['output']>;
3589
3592
  responseTimeMs?: Maybe<Scalars['Int']['output']>;
3590
3593
  runId: Scalars['ID']['output'];
@@ -3668,6 +3671,7 @@ export declare type AgentStudioJobExecutionHistoryNode = {
3668
3671
  failureCount?: Maybe<Scalars['Int']['output']>;
3669
3672
  jobId: Scalars['ID']['output'];
3670
3673
  judgeFailureCount?: Maybe<Scalars['Int']['output']>;
3674
+ judgeMode?: Maybe<AgentStudioJudgeMode>;
3671
3675
  judgeSuccessCount?: Maybe<Scalars['Int']['output']>;
3672
3676
  projectId?: Maybe<Scalars['String']['output']>;
3673
3677
  resolutionRate?: Maybe<Scalars['Float']['output']>;
@@ -3693,6 +3697,11 @@ export declare type AgentStudioJsmKnowledgeFilter = {
3693
3697
  export declare type AgentStudioJsmKnowledgeFilterInput = {
3694
3698
  jsmProjectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
3695
3699
  };
3700
+ export declare enum AgentStudioJudgeMode {
3701
+ Judgeless = "JUDGELESS",
3702
+ ReferenceBased = "REFERENCE_BASED",
3703
+ ReferenceFree = "REFERENCE_FREE"
3704
+ }
3696
3705
  export declare enum AgentStudioJudgementDecision {
3697
3706
  Successful = "SUCCESSFUL",
3698
3707
  Unjudged = "UNJUDGED",
@@ -29057,7 +29066,8 @@ export declare type CustomerServiceTemplateForm = Node & {
29057
29066
  export declare enum CustomerServiceTemplateFormChannelType {
29058
29067
  Email = "EMAIL",
29059
29068
  Embed = "EMBED",
29060
- SupportSite = "SUPPORT_SITE"
29069
+ SupportSite = "SUPPORT_SITE",
29070
+ Voice = "VOICE"
29061
29071
  }
29062
29072
  export declare type CustomerServiceTemplateFormConnection = {
29063
29073
  __typename?: 'CustomerServiceTemplateFormConnection';
@@ -90988,10 +90998,12 @@ export declare type JiraBoardView = JiraView & Node & {
90988
90998
  canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
90989
90999
  canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
90990
91000
  canEditIssues?: Maybe<Scalars['Boolean']['output']>;
91001
+ canEditSprint?: Maybe<Scalars['Boolean']['output']>;
90991
91002
  canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
90992
91003
  canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
90993
91004
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
90994
91005
  canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
91006
+ canStartStopSprint?: Maybe<Scalars['Boolean']['output']>;
90995
91007
  canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
90996
91008
  cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
90997
91009
  columns?: Maybe<JiraBoardViewColumnConnection>;
@@ -91007,6 +91019,7 @@ export declare type JiraBoardView = JiraView & Node & {
91007
91019
  isWorkflowsMigrationAvailable?: Maybe<Scalars['Boolean']['output']>;
91008
91020
  layout?: Maybe<JiraBoardViewLayout>;
91009
91021
  selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
91022
+ sprints?: Maybe<JiraSprintConnection>;
91010
91023
  unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
91011
91024
  };
91012
91025
  export declare type JiraBoardViewCardOptionsArgs = {
@@ -91037,6 +91050,10 @@ export declare type JiraBoardViewLayoutArgs = {
91037
91050
  export declare type JiraBoardViewSelectedWorkflowIdArgs = {
91038
91051
  settings?: InputMaybe<JiraBoardViewSettings>;
91039
91052
  };
91053
+ export declare type JiraBoardViewSprintsArgs = {
91054
+ after?: InputMaybe<Scalars['String']['input']>;
91055
+ first?: InputMaybe<Scalars['Int']['input']>;
91056
+ };
91040
91057
  export declare type JiraBoardViewUnmappedStatusesArgs = {
91041
91058
  after?: InputMaybe<Scalars['String']['input']>;
91042
91059
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -109781,6 +109798,7 @@ export declare type JiraTrashCustomFieldsPayload = Payload & {
109781
109798
  failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
109782
109799
  succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
109783
109800
  success: Scalars['Boolean']['output'];
109801
+ trashedFields?: Maybe<Array<JiraIssueFieldConfig>>;
109784
109802
  };
109785
109803
  export declare type JiraTrashGlobalCustomFieldsInput = {
109786
109804
  fieldIds: Array<Scalars['String']['input']>;
@@ -131097,6 +131115,7 @@ export declare type Query = {
131097
131115
  jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
131098
131116
  jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
131099
131117
  jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
131118
+ jira_fieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
131100
131119
  jira_fieldsPerSchemeLimit?: Maybe<Scalars['Int']['output']>;
131101
131120
  jira_isAgentAssignable?: Maybe<Scalars['Boolean']['output']>;
131102
131121
  jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -134466,6 +134485,11 @@ export declare type QueryJira_FieldSchemesArgs = {
134466
134485
  export declare type QueryJira_FieldSchemesByArIsArgs = {
134467
134486
  ids: Array<Scalars['ID']['input']>;
134468
134487
  };
134488
+ export declare type QueryJira_FieldTypeGroupsArgs = {
134489
+ after?: InputMaybe<Scalars['String']['input']>;
134490
+ cloudId: Scalars['ID']['input'];
134491
+ first?: InputMaybe<Scalars['Int']['input']>;
134492
+ };
134469
134493
  export declare type QueryJira_FieldsPerSchemeLimitArgs = {
134470
134494
  cloudId: Scalars['ID']['input'];
134471
134495
  };
@@ -162908,6 +162932,8 @@ export declare type TeamMutation = {
162908
162932
  deleteCustomFieldValue?: Maybe<Scalars['Boolean']['output']>;
162909
162933
  deleteTeam?: Maybe<TeamDeletePayload>;
162910
162934
  deleteTeamType?: Maybe<TeamType>;
162935
+ linkCustomFieldToOption?: Maybe<TeamCustomFieldKeyValues>;
162936
+ linkCustomFieldToValue?: Maybe<TeamCustomFieldKeyValues>;
162911
162937
  removeChild?: Maybe<TeamV2>;
162912
162938
  removeParent?: Maybe<TeamV2>;
162913
162939
  setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
@@ -162960,6 +162986,15 @@ export declare type TeamMutationDeleteTeamArgs = {
162960
162986
  export declare type TeamMutationDeleteTeamTypeArgs = {
162961
162987
  id: Scalars['ID']['input'];
162962
162988
  };
162989
+ export declare type TeamMutationLinkCustomFieldToOptionArgs = {
162990
+ customFieldValueId: Scalars['ID']['input'];
162991
+ teamId: Scalars['ID']['input'];
162992
+ };
162993
+ export declare type TeamMutationLinkCustomFieldToValueArgs = {
162994
+ customFieldId: Scalars['ID']['input'];
162995
+ customFieldValue: Scalars['String']['input'];
162996
+ teamId: Scalars['ID']['input'];
162997
+ };
162963
162998
  export declare type TeamMutationRemoveChildArgs = {
162964
162999
  childId: Scalars['ID']['input'];
162965
163000
  siteId: Scalars['ID']['input'];
@@ -163848,7 +163883,7 @@ export declare enum TownsquareAccessControlCapability {
163848
163883
  Create = "CREATE"
163849
163884
  }
163850
163885
  export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
163851
- export declare type TownsquareActivityChange = TownsquareGoalCreatedChange;
163886
+ export declare type TownsquareActivityChange = TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange;
163852
163887
  export declare type TownsquareActivityItem = {
163853
163888
  __typename?: 'TownsquareActivityItem';
163854
163889
  actor?: Maybe<User>;
@@ -164522,6 +164557,11 @@ export declare type TownsquareGoalMetricUpdateEdge = {
164522
164557
  cursor: Scalars['String']['output'];
164523
164558
  node?: Maybe<TownsquareGoalMetricUpdate>;
164524
164559
  };
164560
+ export declare type TownsquareGoalOwnerUpdatedChange = {
164561
+ __typename?: 'TownsquareGoalOwnerUpdatedChange';
164562
+ newOwner?: Maybe<User>;
164563
+ oldOwner?: Maybe<User>;
164564
+ };
164525
164565
  export declare type TownsquareGoalProgress = {
164526
164566
  __typename?: 'TownsquareGoalProgress';
164527
164567
  percentage?: Maybe<Scalars['Float']['output']>;