@forge/cli-shared

8.15.1-next.28.15.1-next.3
out/graphql/graphql-types.d.ts
out/graphql/graphql-types.d.ts
+56−12
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -570,9 +570,9 @@
     envVar?: Maybe<AvpEnvVarWithChart>;
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];
 };
-export declare type AvpDashboard = {
+export declare type AvpDashboard = Node & {
     __typename?: 'AVPDashboard';
     access?: Maybe<Scalars['Int']['output']>;
     category?: Maybe<Scalars['String']['output']>;
     charts?: Maybe<Array<AvpChart>>;
@@ -580,9 +580,9 @@
     creator?: Maybe<Scalars['String']['output']>;
     description?: Maybe<Scalars['String']['output']>;
     envVars?: Maybe<Array<AvpEnvVar>>;
     fromTemplate?: Maybe<Scalars['String']['output']>;
-    id?: Maybe<Scalars['ID']['output']>;
+    id: Scalars['ID']['output'];
     isReadOnly?: Maybe<Scalars['Boolean']['output']>;
     settings?: Maybe<AvpDashboardSettings>;
     status?: Maybe<AvpDashboardStatus>;
     templateVersion?: Maybe<Scalars['Int']['output']>;
@@ -4224,12 +4224,8 @@
     deletedScheduleName?: Maybe<Scalars['String']['output']>;
     errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
     success: Scalars['Boolean']['output'];
 };
-export declare type AgentWorkspaceHelloWorld = {
-    __typename?: 'AgentWorkspaceHelloWorld';
-    value: Scalars['String']['output'];
-};
 export declare type AgentWorkspacePageInfo = {
     __typename?: 'AgentWorkspacePageInfo';
     endCursor?: Maybe<Scalars['String']['output']>;
     hasNextPage: Scalars['Boolean']['output'];
@@ -4682,12 +4678,14 @@
 };
 export declare type AppContainerInstance = {
     __typename?: 'AppContainerInstance';
     containerStatus?: Maybe<Scalars['String']['output']>;
+    cpu?: Maybe<Scalars['String']['output']>;
     createdAt?: Maybe<Scalars['String']['output']>;
     healthStatus?: Maybe<Scalars['String']['output']>;
     id: Scalars['ID']['output'];
     imageURI?: Maybe<Scalars['String']['output']>;
+    memory?: Maybe<Scalars['String']['output']>;
 };
 export declare type AppContainerInstances = {
     __typename?: 'AppContainerInstances';
     instances?: Maybe<Array<AppContainerInstance>>;
@@ -26312,16 +26310,16 @@
 export declare type CplsFilters = {
     __typename?: 'CplsFilters';
     contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
     customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
-    jiraWorkItemStatuses?: Maybe<Array<Scalars['ID']['output']>>;
+    jiraWorkItemStatusNames?: Maybe<Array<Scalars['String']['output']>>;
     jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
     workTypes?: Maybe<Array<CplsWorkType>>;
 };
 export declare type CplsFiltersInput = {
     contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
     customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
-    jiraWorkItemStatuses?: InputMaybe<Array<Scalars['ID']['input']>>;
+    jiraWorkItemStatusNames?: InputMaybe<Array<Scalars['String']['input']>>;
     jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
     workTypes?: InputMaybe<Array<CplsWorkType>>;
 };
 export declare type CplsImportCapacityDataInput = {
@@ -28215,8 +28213,15 @@
 export declare enum CustomerServiceContextType {
     Default = "DEFAULT",
     Issue = "ISSUE"
 }
+export declare type CustomerServiceCsmCustomer = Node & {
+    __typename?: 'CustomerServiceCsmCustomer';
+    details: CustomerServiceCustomDetailValuesQueryResult;
+    email?: Maybe<Scalars['String']['output']>;
+    id: Scalars['ID']['output'];
+    name?: Maybe<Scalars['String']['output']>;
+};
 export declare type CustomerServiceCustomAttributeOptionStyle = {
     __typename?: 'CustomerServiceCustomAttributeOptionStyle';
     backgroundColour: Scalars['String']['output'];
 };
@@ -96456,8 +96461,9 @@
 }
 export declare type JiraInvalidIssueSearchInputError = {
     __typename?: 'JiraInvalidIssueSearchInputError';
     message?: Maybe<Scalars['String']['output']>;
+    statusCode?: Maybe<Scalars['Int']['output']>;
 };
 export declare type JiraInvalidJqlError = {
     __typename?: 'JiraInvalidJqlError';
     messages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -124057,8 +124063,9 @@
     spf_deleteAskUpdate?: Maybe<SpfDeleteAskUpdatePayload>;
     spf_deletePlan?: Maybe<SpfDeletePlanPayload>;
     spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
     spf_deletePlanScenarioInvestment?: Maybe<SpfDeletePlanScenarioInvestmentPayload>;
+    spf_deletePlanScenarioInvestments?: Maybe<SpfDeletePlanScenarioInvestmentsPayload>;
     spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
     spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
     spf_removePlanOwner?: Maybe<SpfRemovePlanOwnerPayload>;
     spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
@@ -127178,8 +127185,11 @@
 };
 export declare type MutationSpf_DeletePlanScenarioInvestmentArgs = {
     input: SpfDeletePlanScenarioInvestmentInput;
 };
+export declare type MutationSpf_DeletePlanScenarioInvestmentsArgs = {
+    input: SpfDeletePlanScenarioInvestmentsInput;
+};
 export declare type MutationSpf_RejectProposedDateArgs = {
     input: SpfResolveProposedDateInput;
 };
 export declare type MutationSpf_RemovePlanApproverArgs = {
@@ -130587,9 +130597,8 @@
     agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
     agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
     agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
     agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
-    agentWorkspace_helloWorld?: Maybe<AgentWorkspaceHelloWorld>;
     agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
     agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
     agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
     aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
@@ -130692,8 +130701,9 @@
     avp_getChart?: Maybe<AvpChart>;
     avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
     avp_getDashboard?: Maybe<AvpDashboard>;
     avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
+    avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
     avp_getFilterExpression?: Maybe<AvpFilterExpression>;
     avpanalytics_getmodeldata?: Maybe<AvpAnalyticsGetModelDataResponse>;
     avpanalytics_listModels?: Maybe<AvpAnalyticsListModelsResponse>;
     bitbucket?: Maybe<BitbucketQuery>;
@@ -130944,8 +130954,9 @@
     csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
     csmAi_getAvailableByod?: Maybe<CsmAiByodContentsResult>;
     csmAi_getSupportWidget?: Maybe<CsmAiWidgetConfigResult>;
     csmAi_getWidget?: Maybe<CsmAiWidgetConfigResult>;
+    csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
     currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
     customer360_customer?: Maybe<Customer360Customer>;
     customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
     customerService?: Maybe<CustomerServiceQueryApi>;
@@ -132019,11 +132030,8 @@
 export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
     cloudId: Scalars['String']['input'];
     containerAri: Scalars['ID']['input'];
 };
-export declare type QueryAgentWorkspace_HelloWorldArgs = {
-    userName: Scalars['String']['input'];
-};
 export declare type QueryAgentWorkspace_ScheduleArgs = {
     projectId: Scalars['ID']['input'];
     scheduleId: Scalars['ID']['input'];
 };
@@ -132558,8 +132566,11 @@
 };
 export declare type QueryAvp_GetDashboardTemplatesArgs = {
     input: AvpGetDashboardTemplatesInput;
 };
+export declare type QueryAvp_GetDashboardsByArisArgs = {
+    ids: Array<Scalars['ID']['input']>;
+};
 export declare type QueryAvp_GetFilterExpressionArgs = {
     dashboardAri: Scalars['ID']['input'];
 };
 export declare type QueryAvpanalytics_GetmodeldataArgs = {
@@ -133738,8 +133749,11 @@
 export declare type QueryCsmAi_GetWidgetArgs = {
     helpCenterAri: Scalars['ID']['input'];
     widgetId: Scalars['ID']['input'];
 };
+export declare type QueryCsmCustomersByIdsArgs = {
+    csmCustomerAris: Array<Scalars['ID']['input']>;
+};
 export declare type QueryCustomer360_CustomerArgs = {
     domain: Scalars['String']['input'];
 };
 export declare type QueryCustomer360_CustomersByIdArgs = {
@@ -160198,8 +160212,17 @@
     errors?: Maybe<Array<MutationError>>;
     id: Scalars['ID']['output'];
     success: Scalars['Boolean']['output'];
 };
+export declare type SpfDeletePlanScenarioInvestmentsInput = {
+    ids: Array<Scalars['ID']['input']>;
+};
+export declare type SpfDeletePlanScenarioInvestmentsPayload = Payload & {
+    __typename?: 'SpfDeletePlanScenarioInvestmentsPayload';
+    errors?: Maybe<Array<MutationError>>;
+    ids: Array<Scalars['ID']['output']>;
+    success: Scalars['Boolean']['output'];
+};
 export declare type SpfDeletePlanScenarioPayload = Payload & {
     __typename?: 'SpfDeletePlanScenarioPayload';
     errors?: Maybe<Array<MutationError>>;
     id: Scalars['ID']['output'];
@@ -163000,8 +163023,9 @@
     linkCustomFieldToValue?: Maybe<TeamCustomFieldKeyValues>;
     removeChild?: Maybe<TeamV2>;
     removeParent?: Maybe<TeamV2>;
     setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
+    setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
     updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
     updateTeam?: Maybe<TeamUpdatePayload>;
     updateType?: Maybe<TeamType>;
 };
@@ -163070,8 +163094,11 @@
 };
 export declare type TeamMutationSetNotificationConfigurationArgs = {
     input: TeamSetNotificationConfigurationInput;
 };
+export declare type TeamMutationSetScopeNotificationConfigurationArgs = {
+    input: TeamSetScopeNotificationConfigurationInput;
+};
 export declare type TeamMutationUpdateRoleAssignmentsArgs = {
     organizationId: Scalars['ID']['input'];
     principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
     principalsToRemove: Array<InputMaybe<Scalars['ID']['input']>>;
@@ -163124,8 +163151,9 @@
     customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
     customFieldsWithinTeam?: Maybe<Array<TeamCustomFieldKeyValues>>;
     notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
     roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
+    scopeNotificationConfigurations?: Maybe<Array<TeamScopeNotificationConfiguration>>;
     team?: Maybe<Team>;
     teamSearch?: Maybe<TeamSearchResultConnection>;
     teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
     teamV2?: Maybe<TeamV2>;
@@ -163152,8 +163180,11 @@
     first?: InputMaybe<Scalars['Int']['input']>;
     organizationId: Scalars['ID']['input'];
     role: TeamRole;
 };
+export declare type TeamQueryScopeNotificationConfigurationsArgs = {
+    ari: Scalars['ID']['input'];
+};
 export declare type TeamQueryTeamArgs = {
     id: Scalars['ID']['input'];
 };
 export declare type TeamQueryTeamSearchArgs = {
@@ -163203,8 +163234,15 @@
     edges?: Maybe<Array<Maybe<TeamPrincipalEdge>>>;
     nodes?: Maybe<Array<Maybe<TeamPrincipal>>>;
     pageInfo: PageInfo;
 };
+export declare type TeamScopeNotificationConfiguration = {
+    __typename?: 'TeamScopeNotificationConfiguration';
+    ari: Scalars['ID']['output'];
+    enabled: Scalars['Boolean']['output'];
+    notificationChannel: TeamNotificationChannel;
+    notificationType: TeamNotificationType;
+};
 export declare enum TeamSearchField {
     Description = "DESCRIPTION",
     Name = "NAME"
 }
@@ -163252,8 +163290,14 @@
     enabled: Scalars['Boolean']['input'];
     notificationChannel: TeamNotificationChannel;
     notificationType: TeamNotificationType;
 };
+export declare type TeamSetScopeNotificationConfigurationInput = {
+    ari: Scalars['ID']['input'];
+    enabled: Scalars['Boolean']['input'];
+    notificationChannel: TeamNotificationChannel;
+    notificationType: TeamNotificationType;
+};
 export declare type TeamSort = {
     field: TeamSortField;
     order?: InputMaybe<TeamSortOrder>;
 };