@forge/cli-shared 3.4.0 → 3.4.1-next.0

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
+ ## 3.4.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [4ac7253]
8
+ - @forge/manifest@4.5.3-next.0
9
+
3
10
  ## 3.4.0
4
11
 
5
12
  ### Minor Changes
@@ -1852,8 +1852,6 @@ export declare type CompassCatalogMutationApi = {
1852
1852
  createCompassEvent?: Maybe<CompassCreateEventsPayload>;
1853
1853
  attachEventSource?: Maybe<AttachEventSourcePayload>;
1854
1854
  detachEventSource?: Maybe<DetachEventSourcePayload>;
1855
- createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
1856
- deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
1857
1855
  createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
1858
1856
  updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
1859
1857
  deleteTeamCheckin?: Maybe<CompassDeleteTeamCheckinPayload>;
@@ -1987,14 +1985,6 @@ export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
1987
1985
  export declare type CompassCatalogMutationApiDetachEventSourceArgs = {
1988
1986
  input: DetachEventSourceInput;
1989
1987
  };
1990
- export declare type CompassCatalogMutationApiCreateStarredComponentArgs = {
1991
- cloudId: Scalars['ID'];
1992
- input: CreateCompassStarredComponentInput;
1993
- };
1994
- export declare type CompassCatalogMutationApiDeleteStarredComponentArgs = {
1995
- cloudId: Scalars['ID'];
1996
- input: DeleteCompassStarredComponentInput;
1997
- };
1998
1988
  export declare type CompassCatalogMutationApiCreateTeamCheckinArgs = {
1999
1989
  input: CompassCreateTeamCheckinInput;
2000
1990
  };
@@ -2054,7 +2044,6 @@ export declare type CompassCatalogQueryApi = {
2054
2044
  searchComponentLabels?: Maybe<CompassComponentLabelsQueryResult>;
2055
2045
  scorecard?: Maybe<CompassScorecardResult>;
2056
2046
  scorecards?: Maybe<CompassScorecardsQueryResult>;
2057
- starredComponents?: Maybe<CompassStarredComponentQueryResult>;
2058
2047
  teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
2059
2048
  teamData?: Maybe<CompassTeamDataResult>;
2060
2049
  searchTeams?: Maybe<CompassSearchTeamsConnectionResult>;
@@ -2100,10 +2089,6 @@ export declare type CompassCatalogQueryApiScorecardsArgs = {
2100
2089
  cloudId: Scalars['ID'];
2101
2090
  query?: Maybe<CompassScorecardsQuery>;
2102
2091
  };
2103
- export declare type CompassCatalogQueryApiStarredComponentsArgs = {
2104
- cloudId: Scalars['ID'];
2105
- query?: Maybe<CompassStarredComponentQuery>;
2106
- };
2107
2092
  export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
2108
2093
  input: CompassTeamCheckinsInput;
2109
2094
  };
@@ -3382,22 +3367,6 @@ export declare type CompassSloMetricSourceConfigurationInput = {
3382
3367
  goodQuery: Scalars['String'];
3383
3368
  badQuery: Scalars['String'];
3384
3369
  };
3385
- export declare type CompassStarredComponentConnection = {
3386
- __typename?: 'CompassStarredComponentConnection';
3387
- nodes?: Maybe<Array<CompassComponent>>;
3388
- edges?: Maybe<Array<CompassStarredComponentEdge>>;
3389
- pageInfo: PageInfo;
3390
- };
3391
- export declare type CompassStarredComponentEdge = {
3392
- __typename?: 'CompassStarredComponentEdge';
3393
- cursor: Scalars['String'];
3394
- node?: Maybe<CompassComponent>;
3395
- };
3396
- export declare type CompassStarredComponentQuery = {
3397
- first?: Maybe<Scalars['Int']>;
3398
- after?: Maybe<Scalars['String']>;
3399
- };
3400
- export declare type CompassStarredComponentQueryResult = CompassStarredComponentConnection | QueryError;
3401
3370
  export declare type CompassSynchronizeLinkAssociationsInput = {
3402
3371
  cloudId: Scalars['ID'];
3403
3372
  forgeAppId: Scalars['ID'];
@@ -5007,15 +4976,6 @@ export declare type CreateCompassScorecardPayload = Payload & {
5007
4976
  errors?: Maybe<Array<MutationError>>;
5008
4977
  scorecardDetails?: Maybe<CompassScorecard>;
5009
4978
  };
5010
- export declare type CreateCompassStarredComponentInput = {
5011
- id: Scalars['ID'];
5012
- };
5013
- export declare type CreateCompassStarredComponentPayload = Payload & {
5014
- __typename?: 'CreateCompassStarredComponentPayload';
5015
- components?: Maybe<CompassStarredComponentConnection>;
5016
- success: Scalars['Boolean'];
5017
- errors?: Maybe<Array<MutationError>>;
5018
- };
5019
4979
  export declare type CreateCustomFilterInput = {
5020
4980
  boardId: Scalars['ID'];
5021
4981
  name: Scalars['String'];
@@ -5488,15 +5448,6 @@ export declare type DeleteCompassScorecardPayload = Payload & {
5488
5448
  errors?: Maybe<Array<MutationError>>;
5489
5449
  scorecardId: Scalars['ID'];
5490
5450
  };
5491
- export declare type DeleteCompassStarredComponentInput = {
5492
- id: Scalars['ID'];
5493
- };
5494
- export declare type DeleteCompassStarredComponentPayload = Payload & {
5495
- __typename?: 'DeleteCompassStarredComponentPayload';
5496
- components?: Maybe<CompassStarredComponentConnection>;
5497
- success: Scalars['Boolean'];
5498
- errors?: Maybe<Array<MutationError>>;
5499
- };
5500
5451
  export declare type DeleteCustomFilterInput = {
5501
5452
  boardId: Scalars['ID'];
5502
5453
  customFilterId: Scalars['String'];
@@ -6147,7 +6098,7 @@ export declare type DevOpsSecurityVulnerabilityDetailsLinkedJiraIssuesArgs = {
6147
6098
  };
6148
6099
  export declare type DevOpsSecurityVulnerabilityIdentifier = {
6149
6100
  __typename?: 'DevOpsSecurityVulnerabilityIdentifier';
6150
- id: Scalars['String'];
6101
+ displayName: Scalars['String'];
6151
6102
  url?: Maybe<Scalars['String']>;
6152
6103
  };
6153
6104
  export declare enum DevOpsSecurityVulnerabilitySeverity {
@@ -8481,6 +8432,7 @@ export declare type JiraChildIssuesWithinLimitIssuesArgs = {
8481
8432
  after?: Maybe<Scalars['String']>;
8482
8433
  last?: Maybe<Scalars['Int']>;
8483
8434
  before?: Maybe<Scalars['String']>;
8435
+ activeProjectsOnly?: Maybe<Scalars['Boolean']>;
8484
8436
  };
8485
8437
  export declare type JiraClassicConnectDevOpsProvider = JiraDevOpsProvider & {
8486
8438
  __typename?: 'JiraClassicConnectDevOpsProvider';
@@ -14109,6 +14061,7 @@ export declare type JiraWorkManagementNavigation = {
14109
14061
  __typename?: 'JiraWorkManagementNavigation';
14110
14062
  recentProjects?: Maybe<JiraProjectConnection>;
14111
14063
  favoriteProjects?: Maybe<JiraProjectConnection>;
14064
+ overviews?: Maybe<JiraWorkManagementOverviewConnection>;
14112
14065
  };
14113
14066
  export declare type JiraWorkManagementNavigationRecentProjectsArgs = {
14114
14067
  first?: Maybe<Scalars['Int']>;
@@ -14122,6 +14075,13 @@ export declare type JiraWorkManagementNavigationFavoriteProjectsArgs = {
14122
14075
  last?: Maybe<Scalars['Int']>;
14123
14076
  before?: Maybe<Scalars['String']>;
14124
14077
  };
14078
+ export declare type JiraWorkManagementNavigationOverviewsArgs = {
14079
+ cloudId: Scalars['ID'];
14080
+ first?: Maybe<Scalars['Int']>;
14081
+ after?: Maybe<Scalars['String']>;
14082
+ last?: Maybe<Scalars['Int']>;
14083
+ before?: Maybe<Scalars['String']>;
14084
+ };
14125
14085
  export declare type JiraWorkManagementOverview = Node & {
14126
14086
  __typename?: 'JiraWorkManagementOverview';
14127
14087
  id: Scalars['ID'];
@@ -14942,6 +14902,7 @@ export declare type MercuryQueryApi = {
14942
14902
  initiative?: Maybe<MercuryInitiative>;
14943
14903
  initiatives?: Maybe<MercuryInitiativeConnection>;
14944
14904
  teamAllocation?: Maybe<MercuryTeamAllocation>;
14905
+ teamAllocationForActiveInterval?: Maybe<MercuryTeamAllocation>;
14945
14906
  teamAllocationsByOrgLevel?: Maybe<MercuryTeamAllocationConnection>;
14946
14907
  teamAllocationsByOrgLevelForActiveInterval?: Maybe<MercuryTeamAllocationConnection>;
14947
14908
  intervals?: Maybe<MercuryIntervalConnection>;
@@ -14984,7 +14945,10 @@ export declare type MercuryQueryApiInitiativesArgs = {
14984
14945
  };
14985
14946
  export declare type MercuryQueryApiTeamAllocationArgs = {
14986
14947
  teamId: Scalars['ID'];
14987
- intervalId?: Maybe<Scalars['ID']>;
14948
+ intervalId: Scalars['ID'];
14949
+ };
14950
+ export declare type MercuryQueryApiTeamAllocationForActiveIntervalArgs = {
14951
+ teamId: Scalars['ID'];
14988
14952
  };
14989
14953
  export declare type MercuryQueryApiTeamAllocationsByOrgLevelArgs = {
14990
14954
  orgLevelId: Scalars['ID'];
@@ -15062,7 +15026,7 @@ export declare type MercuryTeam = Node & {
15062
15026
  export declare type MercuryTeamAllocation = {
15063
15027
  __typename?: 'MercuryTeamAllocation';
15064
15028
  id: Scalars['ID'];
15065
- intervalId?: Maybe<Scalars['ID']>;
15029
+ intervalId: Scalars['ID'];
15066
15030
  teamId: Scalars['ID'];
15067
15031
  teamAllocationEntries: Array<MercuryTeamAllocationEntry>;
15068
15032
  status: MercuryTeamAllocationStatus;
@@ -16838,6 +16802,7 @@ export declare type PolarisMatrixAxis = {
16838
16802
  dimension: Scalars['String'];
16839
16803
  field: PolarisIdeaField;
16840
16804
  fieldOptions?: Maybe<Array<PolarisGroupValue>>;
16805
+ reversed?: Maybe<Scalars['Boolean']>;
16841
16806
  };
16842
16807
  export declare type PolarisMatrixConfig = {
16843
16808
  __typename?: 'PolarisMatrixConfig';
@@ -18014,6 +17979,7 @@ export declare type RoadmapItem = {
18014
17979
  componentIds?: Maybe<Array<Scalars['ID']>>;
18015
17980
  inferredDueDate?: Maybe<Scalars['Date']>;
18016
17981
  inferredStartDate?: Maybe<Scalars['Date']>;
17982
+ resolved?: Maybe<Scalars['Boolean']>;
18017
17983
  };
18018
17984
  export declare type RoadmapItemConnection = {
18019
17985
  __typename?: 'RoadmapItemConnection';
@@ -19304,6 +19270,7 @@ export declare type ShepherdQuery = {
19304
19270
  shepherdSubscriptions?: Maybe<ShepherdSubscriptionsResult>;
19305
19271
  shepherdUser?: Maybe<ShepherdUser>;
19306
19272
  subscriptions?: Maybe<ShepherdSubscriptionsResult>;
19273
+ workspace?: Maybe<ShepherdWorkspaceResult>;
19307
19274
  };
19308
19275
  export declare type ShepherdQueryShepherdActivityArgs = {
19309
19276
  actions?: Maybe<Array<Maybe<ShepherdActionType>>>;
@@ -19333,6 +19300,12 @@ export declare type ShepherdQueryShepherdUserArgs = {
19333
19300
  export declare type ShepherdQuerySubscriptionsArgs = {
19334
19301
  workspace: Scalars['ID'];
19335
19302
  };
19303
+ export declare type ShepherdQueryWorkspaceArgs = {
19304
+ cloudId?: Maybe<Scalars['ID']>;
19305
+ hostname?: Maybe<Scalars['String']>;
19306
+ id?: Maybe<Scalars['ID']>;
19307
+ orgId?: Maybe<Scalars['ID']>;
19308
+ };
19336
19309
  export declare enum ShepherdQueryErrorType {
19337
19310
  NoProductAccess = "NO_PRODUCT_ACCESS",
19338
19311
  Unauthorized = "UNAUTHORIZED"
@@ -19537,6 +19510,21 @@ export declare enum ShepherdWebhookType {
19537
19510
  MicrosoftTeams = "MICROSOFT_TEAMS",
19538
19511
  Slack = "SLACK"
19539
19512
  }
19513
+ export declare type ShepherdWorkspace = {
19514
+ __typename?: 'ShepherdWorkspace';
19515
+ ari: Scalars['ID'];
19516
+ cloudId: Scalars['ID'];
19517
+ orgId: Scalars['ID'];
19518
+ };
19519
+ export declare type ShepherdWorkspaceConnection = {
19520
+ __typename?: 'ShepherdWorkspaceConnection';
19521
+ edges?: Maybe<Array<Maybe<ShepherdWorkspaceEdge>>>;
19522
+ };
19523
+ export declare type ShepherdWorkspaceEdge = {
19524
+ __typename?: 'ShepherdWorkspaceEdge';
19525
+ node?: Maybe<ShepherdWorkspace>;
19526
+ };
19527
+ export declare type ShepherdWorkspaceResult = QueryError | ShepherdWorkspaceConnection;
19540
19528
  export declare type SmartsContext = {
19541
19529
  userId: Scalars['String'];
19542
19530
  tenantId: Scalars['String'];
@@ -21204,6 +21192,7 @@ export declare type UpdatePolarisMatrixAxis = {
21204
21192
  dimension: Scalars['String'];
21205
21193
  field: Scalars['ID'];
21206
21194
  fieldOptions?: Maybe<Array<PolarisGroupValueInput>>;
21195
+ reversed?: Maybe<Scalars['Boolean']>;
21207
21196
  };
21208
21197
  export declare type UpdatePolarisMatrixConfig = {
21209
21198
  axes?: Maybe<Array<UpdatePolarisMatrixAxis>>;