@forge/cli-shared 8.3.0-next.0-experimental-ab129b0 → 8.3.0-next.0-experimental-47556b0

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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 8.3.0-next.0-experimental-ab129b0
3
+ ## 8.3.0-next.0-experimental-47556b0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
7
  - 10ac877: Support devspace in forge create command flow
8
+ - 55aac92: Added deploy list command
8
9
 
9
10
  ### Patch Changes
10
11
 
@@ -12,7 +13,7 @@
12
13
  - Updated dependencies [10c0bc6]
13
14
  - Updated dependencies [6447811]
14
15
  - Updated dependencies [2f446cf]
15
- - @forge/manifest@10.2.1-next.0-experimental-ab129b0
16
+ - @forge/manifest@10.2.1-next.0-experimental-47556b0
16
17
 
17
18
  ## 8.3.0-next.0
18
19
 
@@ -1279,7 +1279,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
1279
1279
  invocationDescription: Scalars['String']['output'];
1280
1280
  isActive: Scalars['Boolean']['output'];
1281
1281
  isDefault: Scalars['Boolean']['output'];
1282
- isValid: Scalars['Boolean']['output'];
1282
+ isValid: AgentStudioScenarioValidation;
1283
1283
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
1284
1284
  name: Scalars['String']['output'];
1285
1285
  };
@@ -1440,11 +1440,21 @@ export declare type AgentStudioScenario = {
1440
1440
  invocationDescription: Scalars['String']['output'];
1441
1441
  isActive: Scalars['Boolean']['output'];
1442
1442
  isDefault: Scalars['Boolean']['output'];
1443
- isValid: Scalars['Boolean']['output'];
1443
+ isValid: AgentStudioScenarioValidation;
1444
1444
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
1445
1445
  name: Scalars['String']['output'];
1446
1446
  };
1447
1447
  export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
1448
+ export declare type AgentStudioScenarioValidation = {
1449
+ __typename?: 'AgentStudioScenarioValidation';
1450
+ message?: Maybe<Array<Maybe<AgentStudioScenarioValidationError>>>;
1451
+ value: Scalars['Boolean']['output'];
1452
+ };
1453
+ export declare type AgentStudioScenarioValidationError = {
1454
+ __typename?: 'AgentStudioScenarioValidationError';
1455
+ key: Scalars['String']['output'];
1456
+ value: Scalars['String']['output'];
1457
+ };
1448
1458
  export declare type AgentStudioScenariosEdge = {
1449
1459
  __typename?: 'AgentStudioScenariosEdge';
1450
1460
  cursor: Scalars['String']['output'];
@@ -80106,6 +80116,30 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
80106
80116
  countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
80107
80117
  totalCount?: Maybe<Scalars['Int']['output']>;
80108
80118
  };
80119
+ export declare type MercuryOnCreateChangeProposalPayload = Payload & {
80120
+ __typename?: 'MercuryOnCreateChangeProposalPayload';
80121
+ errors?: Maybe<Array<MutationError>>;
80122
+ id: Scalars['ID']['output'];
80123
+ success: Scalars['Boolean']['output'];
80124
+ };
80125
+ export declare type MercuryOnDeleteChangeProposalPayload = Payload & {
80126
+ __typename?: 'MercuryOnDeleteChangeProposalPayload';
80127
+ errors?: Maybe<Array<MutationError>>;
80128
+ id: Scalars['ID']['output'];
80129
+ success: Scalars['Boolean']['output'];
80130
+ };
80131
+ export declare type MercuryOnUpdateChangeProposalPayload = Payload & {
80132
+ __typename?: 'MercuryOnUpdateChangeProposalPayload';
80133
+ errors?: Maybe<Array<MutationError>>;
80134
+ id: Scalars['ID']['output'];
80135
+ success: Scalars['Boolean']['output'];
80136
+ };
80137
+ export declare type MercuryOnUpdateStrategicEventPayload = Payload & {
80138
+ __typename?: 'MercuryOnUpdateStrategicEventPayload';
80139
+ errors?: Maybe<Array<MutationError>>;
80140
+ id: Scalars['ID']['output'];
80141
+ success: Scalars['Boolean']['output'];
80142
+ };
80109
80143
  export declare type MercuryOriginalProjectStatus = {
80110
80144
  mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
80111
80145
  };
@@ -80980,6 +81014,27 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
80980
81014
  q?: InputMaybe<Scalars['String']['input']>;
80981
81015
  sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
80982
81016
  };
81017
+ export declare type MercurySubscriptionApi = {
81018
+ __typename?: 'MercurySubscriptionApi';
81019
+ onCreateChangeProposal?: Maybe<MercuryOnCreateChangeProposalPayload>;
81020
+ onDeleteChangeProposal?: Maybe<MercuryOnDeleteChangeProposalPayload>;
81021
+ onUpdateChangeProposal?: Maybe<MercuryOnUpdateChangeProposalPayload>;
81022
+ onUpdateStrategicEvent?: Maybe<MercuryOnUpdateStrategicEventPayload>;
81023
+ };
81024
+ export declare type MercurySubscriptionApiOnCreateChangeProposalArgs = {
81025
+ strategicEventId: Scalars['ID']['input'];
81026
+ };
81027
+ export declare type MercurySubscriptionApiOnDeleteChangeProposalArgs = {
81028
+ id: Scalars['ID']['input'];
81029
+ strategicEventId: Scalars['ID']['input'];
81030
+ };
81031
+ export declare type MercurySubscriptionApiOnUpdateChangeProposalArgs = {
81032
+ id: Scalars['ID']['input'];
81033
+ strategicEventId: Scalars['ID']['input'];
81034
+ };
81035
+ export declare type MercurySubscriptionApiOnUpdateStrategicEventArgs = {
81036
+ id: Scalars['ID']['input'];
81037
+ };
80983
81038
  export declare type MercuryTargetDate = {
80984
81039
  __typename?: 'MercuryTargetDate';
80985
81040
  targetDate?: Maybe<Scalars['String']['output']>;
@@ -81786,6 +81841,7 @@ export declare type Mutation = {
81786
81841
  favouriteSpaceBulk?: Maybe<FavouriteSpaceBulkPayload>;
81787
81842
  followUser?: Maybe<FollowUserPayload>;
81788
81843
  generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
81844
+ goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
81789
81845
  goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
81790
81846
  grantContentAccess?: Maybe<GrantContentAccessPayload>;
81791
81847
  graphStore?: Maybe<GraphStoreMutation>;
@@ -82970,6 +83026,9 @@ export declare type MutationGeneratePermsReportArgs = {
82970
83026
  id: Scalars['ID']['input'];
82971
83027
  targetType: PermsReportTargetType;
82972
83028
  };
83029
+ export declare type MutationGoals_AddGoalTeamLinkArgs = {
83030
+ input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
83031
+ };
82973
83032
  export declare type MutationGoals_SetWatchingGoalArgs = {
82974
83033
  input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
82975
83034
  };
@@ -96736,6 +96795,7 @@ export declare type Subscription = {
96736
96795
  ecosystem?: Maybe<EcosystemSubscription>;
96737
96796
  jira?: Maybe<JiraSubscription>;
96738
96797
  jsmChat?: Maybe<JsmChatSubscription>;
96798
+ mercury?: Maybe<MercurySubscriptionApi>;
96739
96799
  migration: MigrationSubscription;
96740
96800
  migrationPlanningService: MigrationPlanningServiceSubscription;
96741
96801
  sandbox: SandboxSubscription;
@@ -98551,6 +98611,17 @@ export declare type TownsquareGoalUpdateEdge = {
98551
98611
  cursor: Scalars['String']['output'];
98552
98612
  node?: Maybe<TownsquareGoalUpdate>;
98553
98613
  };
98614
+ export declare type TownsquareGoalsAddGoalTeamLinkInput = {
98615
+ goalId: Scalars['ID']['input'];
98616
+ teamId: Scalars['ID']['input'];
98617
+ };
98618
+ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
98619
+ __typename?: 'TownsquareGoalsAddGoalTeamLinkPayload';
98620
+ errors?: Maybe<Array<MutationError>>;
98621
+ goal?: Maybe<TownsquareGoal>;
98622
+ goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
98623
+ success: Scalars['Boolean']['output'];
98624
+ };
98554
98625
  export declare type TownsquareGoalsSetWatchingGoalInput = {
98555
98626
  goalId: Scalars['ID']['input'];
98556
98627
  isWatching: Scalars['Boolean']['input'];