@forge/cli-shared 7.0.0-next.4 → 7.0.0-next.5

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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 7.0.0-next.5
4
+
5
+ ### Major Changes
6
+
7
+ - 27f557d: Improve forge tunnel debugFunctionHandlers error handling
8
+
3
9
  ## 7.0.0-next.4
4
10
 
5
11
  ### Patch Changes
@@ -5464,17 +5464,36 @@ export declare enum CompassBuildEventState {
5464
5464
  }
5465
5465
  export declare type CompassCampaign = Node & {
5466
5466
  __typename?: 'CompassCampaign';
5467
+ appliedToComponents?: Maybe<CompassGoalAppliedToComponentsConnection>;
5467
5468
  createdByUser?: Maybe<User>;
5469
+ criteriaScoreStatisticsHistories?: Maybe<CompassScorecardCriteriaScoreStatisticsHistoryConnection>;
5468
5470
  description?: Maybe<Scalars['String']['output']>;
5469
5471
  dueDate?: Maybe<Scalars['DateTime']['output']>;
5472
+ filters?: Maybe<CompassGoalFilters>;
5470
5473
  goal?: Maybe<TownsquareGoal>;
5471
5474
  goalId?: Maybe<Scalars['ID']['output']>;
5472
5475
  id: Scalars['ID']['output'];
5473
5476
  name?: Maybe<Scalars['String']['output']>;
5474
5477
  scorecard?: Maybe<CompassScorecard>;
5478
+ scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
5475
5479
  startDate?: Maybe<Scalars['DateTime']['output']>;
5476
5480
  status?: Maybe<Scalars['String']['output']>;
5477
5481
  };
5482
+ export declare type CompassCampaignAppliedToComponentsArgs = {
5483
+ after?: InputMaybe<Scalars['String']['input']>;
5484
+ first?: InputMaybe<Scalars['Int']['input']>;
5485
+ query?: InputMaybe<CompassGoalAppliedToComponentsQuery>;
5486
+ };
5487
+ export declare type CompassCampaignCriteriaScoreStatisticsHistoriesArgs = {
5488
+ after?: InputMaybe<Scalars['String']['input']>;
5489
+ first?: InputMaybe<Scalars['Int']['input']>;
5490
+ query?: InputMaybe<CompassGoalCriteriaScoreStatisticsHistoryQuery>;
5491
+ };
5492
+ export declare type CompassCampaignScorecardScoreStatisticsHistoriesArgs = {
5493
+ after?: InputMaybe<Scalars['String']['input']>;
5494
+ first?: InputMaybe<Scalars['Int']['input']>;
5495
+ query?: InputMaybe<CompassGoalScoreStatisticsHistoryQuery>;
5496
+ };
5478
5497
  export declare type CompassCampaignConnection = {
5479
5498
  __typename?: 'CompassCampaignConnection';
5480
5499
  edges?: Maybe<Array<CompassCampaignEdge>>;
@@ -7894,6 +7913,54 @@ export declare type CompassGlobalPermissions = {
7894
7913
  viewMetricDefinitions?: Maybe<CompassPermissionResult>;
7895
7914
  };
7896
7915
  export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
7916
+ export declare type CompassGoalAppliedToComponentsConnection = {
7917
+ __typename?: 'CompassGoalAppliedToComponentsConnection';
7918
+ edges?: Maybe<Array<CompassGoalAppliedToComponentsEdge>>;
7919
+ nodes?: Maybe<Array<CompassComponent>>;
7920
+ pageInfo: PageInfo;
7921
+ totalCount?: Maybe<Scalars['Int']['output']>;
7922
+ };
7923
+ export declare type CompassGoalAppliedToComponentsEdge = {
7924
+ __typename?: 'CompassGoalAppliedToComponentsEdge';
7925
+ cursor: Scalars['String']['output'];
7926
+ node?: Maybe<CompassComponent>;
7927
+ };
7928
+ export declare type CompassGoalAppliedToComponentsQuery = {
7929
+ sort?: InputMaybe<CompassGoalAppliedToComponentsQuerySort>;
7930
+ };
7931
+ export declare type CompassGoalAppliedToComponentsQuerySort = {
7932
+ name: Scalars['String']['input'];
7933
+ order: CompassQuerySortOrder;
7934
+ };
7935
+ export declare type CompassGoalCriteriaScoreStatisticsHistoryQuery = {
7936
+ filter?: InputMaybe<CompassGoalCriteriaScoreStatisticsHistoryQueryFilter>;
7937
+ };
7938
+ export declare type CompassGoalCriteriaScoreStatisticsHistoryQueryFilter = {
7939
+ componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
7940
+ date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
7941
+ owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
7942
+ };
7943
+ export declare type CompassGoalFilters = {
7944
+ __typename?: 'CompassGoalFilters';
7945
+ applicationTypes?: Maybe<Array<Scalars['String']['output']>>;
7946
+ componentLabels?: Maybe<Array<Scalars['String']['output']>>;
7947
+ componentOwnerIds?: Maybe<Array<Scalars['ID']['output']>>;
7948
+ componentTiers?: Maybe<Array<Scalars['String']['output']>>;
7949
+ };
7950
+ export declare type CompassGoalFiltersInput = {
7951
+ applicationTypes?: InputMaybe<Array<Scalars['String']['input']>>;
7952
+ componentLabels?: InputMaybe<Array<Scalars['String']['input']>>;
7953
+ componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
7954
+ componentTiers?: InputMaybe<Array<Scalars['String']['input']>>;
7955
+ };
7956
+ export declare type CompassGoalScoreStatisticsHistoryQuery = {
7957
+ filter?: InputMaybe<CompassGoalScoreStatisticsHistoryQueryFilter>;
7958
+ };
7959
+ export declare type CompassGoalScoreStatisticsHistoryQueryFilter = {
7960
+ componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
7961
+ date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
7962
+ owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
7963
+ };
7897
7964
  export declare type CompassHasCustomBooleanFieldLibraryScorecardCriterion = CompassLibraryScorecardCriterion & {
7898
7965
  __typename?: 'CompassHasCustomBooleanFieldLibraryScorecardCriterion';
7899
7966
  booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
@@ -9732,6 +9799,7 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
9732
9799
  export declare type CompassUpdateCampaignInput = {
9733
9800
  description?: InputMaybe<Scalars['String']['input']>;
9734
9801
  dueDate?: InputMaybe<Scalars['DateTime']['input']>;
9802
+ filters?: InputMaybe<CompassGoalFiltersInput>;
9735
9803
  goalId?: InputMaybe<Scalars['ID']['input']>;
9736
9804
  name?: InputMaybe<Scalars['String']['input']>;
9737
9805
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
@@ -22917,6 +22985,12 @@ export declare type DevAiGetSupportedReposArgs = {
22917
22985
  repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
22918
22986
  workspaceId: Scalars['ID']['input'];
22919
22987
  };
22988
+ export declare type DevAiArchivedTechnicalPlannerJobPayload = Payload & {
22989
+ __typename?: 'DevAiArchivedTechnicalPlannerJobPayload';
22990
+ errors?: Maybe<Array<MutationError>>;
22991
+ jobId?: Maybe<Scalars['ID']['output']>;
22992
+ success: Scalars['Boolean']['output'];
22993
+ };
22920
22994
  export declare type DevAiAutodevContinueJobWithPromptPayload = Payload & {
22921
22995
  __typename?: 'DevAiAutodevContinueJobWithPromptPayload';
22922
22996
  errors?: Maybe<Array<MutationError>>;
@@ -23390,9 +23464,17 @@ export declare enum DevAiSupportedRepoFilterOption {
23390
23464
  DisabledOnly = "DISABLED_ONLY",
23391
23465
  EnabledOnly = "ENABLED_ONLY"
23392
23466
  }
23467
+ export declare type DevAiTechnicalPlannerFileCounts = {
23468
+ __typename?: 'DevAiTechnicalPlannerFileCounts';
23469
+ addedCount: Scalars['Int']['output'];
23470
+ deletedCount: Scalars['Int']['output'];
23471
+ modifiedCount: Scalars['Int']['output'];
23472
+ };
23393
23473
  export declare type DevAiTechnicalPlannerJob = {
23394
23474
  __typename?: 'DevAiTechnicalPlannerJob';
23475
+ createdAt: Scalars['String']['output'];
23395
23476
  error?: Maybe<DevAiWorkflowRunError>;
23477
+ fileCounts?: Maybe<DevAiTechnicalPlannerFileCounts>;
23396
23478
  id: Scalars['ID']['output'];
23397
23479
  issueAri?: Maybe<Scalars['ID']['output']>;
23398
23480
  planAdf?: Maybe<Scalars['JSON']['output']>;
@@ -81980,6 +82062,7 @@ export declare type Mutation = {
81980
82062
  deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
81981
82063
  devAi?: Maybe<DevAiMutations>;
81982
82064
  devOps?: Maybe<DevOpsMutation>;
82065
+ devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
81983
82066
  devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
81984
82067
  devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
81985
82068
  devai_createFlow?: Maybe<DevAiFlowSessionCreatePayload>;
@@ -83354,6 +83437,10 @@ export declare type MutationDeleteTemplateArgs = {
83354
83437
  export declare type MutationDeleteWebTriggerUrlArgs = {
83355
83438
  id: Scalars['ID']['input'];
83356
83439
  };
83440
+ export declare type MutationDevai_ArchiveTechnicalPlannerJobArgs = {
83441
+ cloudId: Scalars['ID']['input'];
83442
+ jobId: Scalars['ID']['input'];
83443
+ };
83357
83444
  export declare type MutationDevai_CompleteFlowSessionArgs = {
83358
83445
  id: Scalars['ID']['input'];
83359
83446
  };
@@ -105363,7 +105450,6 @@ export declare type WorkSuggestionsUserProfile = {
105363
105450
  __typename?: 'WorkSuggestionsUserProfile';
105364
105451
  aaid: Scalars['String']['output'];
105365
105452
  createdOn: Scalars['String']['output'];
105366
- id: Scalars['String']['output'];
105367
105453
  persona?: Maybe<WorkSuggestionsUserPersona>;
105368
105454
  projectAris?: Maybe<Array<Scalars['ID']['output']>>;
105369
105455
  };