@forge/cli-shared 3.3.0-next.0 → 3.3.0-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,5 +1,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.3.0-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b469c802]
8
+ - @forge/manifest@4.5.1-next.0
9
+
3
10
  ## 3.3.0-next.0
4
11
 
5
12
  ### Minor Changes
@@ -286,6 +286,16 @@ export declare type ActivityUser = {
286
286
  __typename?: 'ActivityUser';
287
287
  accountId: Scalars['ID'];
288
288
  };
289
+ export declare type AddAppContributorInput = {
290
+ appId: Scalars['ID'];
291
+ newContributorEmail: Scalars['String'];
292
+ role: AppContributorRole;
293
+ };
294
+ export declare type AddAppContributorResponsePayload = Payload & {
295
+ __typename?: 'AddAppContributorResponsePayload';
296
+ success: Scalars['Boolean'];
297
+ errors?: Maybe<Array<MutationError>>;
298
+ };
289
299
  export declare type AddCompassComponentLabelsInput = {
290
300
  componentId: Scalars['ID'];
291
301
  labelNames: Array<Scalars['String']>;
@@ -361,6 +371,9 @@ export declare type AppConnection = {
361
371
  pageInfo: PageInfo;
362
372
  totalCount?: Maybe<Scalars['Int']>;
363
373
  };
374
+ export declare enum AppContributorRole {
375
+ Admin = "ADMIN"
376
+ }
364
377
  export declare type AppDeployment = {
365
378
  __typename?: 'AppDeployment';
366
379
  id: Scalars['ID'];
@@ -985,7 +998,7 @@ export declare type AriGraphRelationshipNode = {
985
998
  id: Scalars['ID'];
986
999
  data?: Maybe<AriGraphRelationshipNodeData>;
987
1000
  };
988
- export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | JiraIssue;
1001
+ export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue;
989
1002
  export declare type AriGraphRelationshipsErrorReference = {
990
1003
  __typename?: 'AriGraphRelationshipsErrorReference';
991
1004
  from?: Maybe<Scalars['ID']>;
@@ -1130,6 +1143,8 @@ export declare type AuditsPageInfo = {
1130
1143
  __typename?: 'AuditsPageInfo';
1131
1144
  hasNextPage: Scalars['Boolean'];
1132
1145
  hasPreviousPage: Scalars['Boolean'];
1146
+ startCursor?: Maybe<Scalars['String']>;
1147
+ endCursor?: Maybe<Scalars['String']>;
1133
1148
  };
1134
1149
  export declare type AuthToken = {
1135
1150
  __typename?: 'AuthToken';
@@ -2383,6 +2398,7 @@ export declare type CompassCreateMetricSourceInput = {
2383
2398
  externalMetricSourceId: Scalars['ID'];
2384
2399
  url?: Maybe<Scalars['String']>;
2385
2400
  derived?: Maybe<Scalars['Boolean']>;
2401
+ externalConfiguration?: Maybe<CompassExternalMetricSourceConfigurationInput>;
2386
2402
  };
2387
2403
  export declare type CompassCreateMetricSourcePayload = Payload & {
2388
2404
  __typename?: 'CompassCreateMetricSourcePayload';
@@ -2746,6 +2762,10 @@ export declare type CompassExternalAliasInput = {
2746
2762
  externalId: Scalars['ID'];
2747
2763
  externalSource?: Maybe<Scalars['ID']>;
2748
2764
  };
2765
+ export declare type CompassExternalMetricSourceConfigurationInput = {
2766
+ slo?: Maybe<CompassSloMetricSourceConfigurationInput>;
2767
+ plain?: Maybe<CompassPlainMetricSourceConfigurationInput>;
2768
+ };
2749
2769
  export declare type CompassField = {
2750
2770
  definition?: Maybe<CompassFieldDefinition>;
2751
2771
  };
@@ -3079,6 +3099,9 @@ export declare type CompassMetricValuesTimeseries = {
3079
3099
  values?: Maybe<Array<Maybe<CompassMetricValue>>>;
3080
3100
  };
3081
3101
  export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
3102
+ export declare type CompassPlainMetricSourceConfigurationInput = {
3103
+ query: Scalars['String'];
3104
+ };
3082
3105
  export declare type CompassPushEvent = CompassEvent & {
3083
3106
  __typename?: 'CompassPushEvent';
3084
3107
  eventType: CompassEventType;
@@ -3339,6 +3362,10 @@ export declare type CompassSearchTeamsInput = {
3339
3362
  term?: Maybe<Scalars['String']>;
3340
3363
  labels?: Maybe<Array<Scalars['String']>>;
3341
3364
  };
3365
+ export declare type CompassSloMetricSourceConfigurationInput = {
3366
+ goodQuery: Scalars['String'];
3367
+ badQuery: Scalars['String'];
3368
+ };
3342
3369
  export declare type CompassStarredComponentConnection = {
3343
3370
  __typename?: 'CompassStarredComponentConnection';
3344
3371
  nodes?: Maybe<Array<CompassComponent>>;
@@ -5665,6 +5692,7 @@ export declare type DevOps = {
5665
5692
  pullRequestEntityDetails?: Maybe<Array<Maybe<DevOpsPullRequestDetails>>>;
5666
5693
  summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
5667
5694
  dataDepotProviders?: Maybe<DevOpsDataDepotProviders>;
5695
+ securityVulnerabilityEntityDetails?: Maybe<Array<Maybe<DevOpsSecurityVulnerabilityDetails>>>;
5668
5696
  ariGraph?: Maybe<AriGraph>;
5669
5697
  toolchain?: Maybe<Toolchain>;
5670
5698
  };
@@ -5684,6 +5712,9 @@ export declare type DevOpsDataDepotProvidersArgs = {
5684
5712
  id: Scalars['ID'];
5685
5713
  providerTypes?: Maybe<Array<DevOpsDataDepotProviderType>>;
5686
5714
  };
5715
+ export declare type DevOpsSecurityVulnerabilityEntityDetailsArgs = {
5716
+ ids: Array<Scalars['ID']>;
5717
+ };
5687
5718
  export declare type DevOpsAvatar = {
5688
5719
  __typename?: 'DevOpsAvatar';
5689
5720
  url?: Maybe<Scalars['URL']>;
@@ -5726,6 +5757,12 @@ export declare type DevOpsDataDepotSecurityProvider = DevOpsDataDepotProvider &
5726
5757
  logoUrl?: Maybe<Scalars['URL']>;
5727
5758
  documentationUrl?: Maybe<Scalars['URL']>;
5728
5759
  appInstallationId?: Maybe<Scalars['ID']>;
5760
+ linkedSecurityWorkspaces?: Maybe<AriGraphRelationshipConnection>;
5761
+ };
5762
+ export declare type DevOpsDataDepotSecurityProviderLinkedSecurityWorkspacesArgs = {
5763
+ first?: Maybe<Scalars['Int']>;
5764
+ after?: Maybe<Scalars['String']>;
5765
+ type?: Maybe<Scalars['String']>;
5729
5766
  };
5730
5767
  export declare type DevOpsEntities = {
5731
5768
  __typename?: 'DevOpsEntities';
@@ -6027,6 +6064,7 @@ export declare type DevOpsPullRequestDetails = {
6027
6064
  repositoryUrl?: Maybe<Scalars['String']>;
6028
6065
  title?: Maybe<Scalars['String']>;
6029
6066
  commentCount?: Maybe<Scalars['Int']>;
6067
+ authorId?: Maybe<Scalars['ID']>;
6030
6068
  author?: Maybe<User>;
6031
6069
  reviewers?: Maybe<Array<Maybe<DevOpsReviewer>>>;
6032
6070
  lastUpdated?: Maybe<Scalars['DateTime']>;
@@ -6059,8 +6097,45 @@ export declare enum DevOpsRepositoryHostingProviderFilter {
6059
6097
  export declare type DevOpsReviewer = {
6060
6098
  __typename?: 'DevOpsReviewer';
6061
6099
  approvalStatus?: Maybe<DevOpsPullRequestApprovalStatus>;
6100
+ userId?: Maybe<Scalars['ID']>;
6062
6101
  user?: Maybe<User>;
6063
6102
  };
6103
+ export declare type DevOpsSecurityVulnerabilityAdditionalInfo = {
6104
+ __typename?: 'DevOpsSecurityVulnerabilityAdditionalInfo';
6105
+ content?: Maybe<Scalars['String']>;
6106
+ url?: Maybe<Scalars['String']>;
6107
+ };
6108
+ export declare type DevOpsSecurityVulnerabilityDetails = {
6109
+ __typename?: 'DevOpsSecurityVulnerabilityDetails';
6110
+ id: Scalars['ID'];
6111
+ title?: Maybe<Scalars['String']>;
6112
+ description?: Maybe<Scalars['String']>;
6113
+ url?: Maybe<Scalars['String']>;
6114
+ severity?: Maybe<DevOpsSecurityVulnerabilitySeverity>;
6115
+ status?: Maybe<DevOpsSecurityVulnerabilityStatus>;
6116
+ identifiers: Array<DevOpsSecurityVulnerabilityIdentifier>;
6117
+ introducedDate?: Maybe<Scalars['DateTime']>;
6118
+ securityContainerId?: Maybe<Scalars['ID']>;
6119
+ additionalInfo?: Maybe<DevOpsSecurityVulnerabilityAdditionalInfo>;
6120
+ };
6121
+ export declare type DevOpsSecurityVulnerabilityIdentifier = {
6122
+ __typename?: 'DevOpsSecurityVulnerabilityIdentifier';
6123
+ id: Scalars['String'];
6124
+ url?: Maybe<Scalars['String']>;
6125
+ };
6126
+ export declare enum DevOpsSecurityVulnerabilitySeverity {
6127
+ Critical = "CRITICAL",
6128
+ High = "HIGH",
6129
+ Medium = "MEDIUM",
6130
+ Low = "LOW",
6131
+ Unknown = "UNKNOWN"
6132
+ }
6133
+ export declare enum DevOpsSecurityVulnerabilityStatus {
6134
+ Open = "OPEN",
6135
+ Closed = "CLOSED",
6136
+ Ignored = "IGNORED",
6137
+ Unknown = "UNKNOWN"
6138
+ }
6064
6139
  export declare type DevOpsService = Node & {
6065
6140
  __typename?: 'DevOpsService';
6066
6141
  id: Scalars['ID'];
@@ -6720,6 +6795,7 @@ export declare type DvcsQueryBitbucketWorkspacesLinkedToSiteArgs = {
6720
6795
  export declare type EcosystemMutation = {
6721
6796
  __typename?: 'EcosystemMutation';
6722
6797
  updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
6798
+ addAppContributor?: Maybe<AddAppContributorResponsePayload>;
6723
6799
  deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
6724
6800
  updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
6725
6801
  forgeAlerts?: Maybe<ForgeAlertsMutation>;
@@ -6727,6 +6803,9 @@ export declare type EcosystemMutation = {
6727
6803
  export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
6728
6804
  input: UpdateAppHostServiceScopesInput;
6729
6805
  };
6806
+ export declare type EcosystemMutationAddAppContributorArgs = {
6807
+ input: AddAppContributorInput;
6808
+ };
6730
6809
  export declare type EcosystemMutationDeleteUserGrantArgs = {
6731
6810
  input: DeleteUserGrantInput;
6732
6811
  };
@@ -8404,7 +8483,8 @@ export declare enum JiraCmdbAttributeType {
8404
8483
  Group = "GROUP",
8405
8484
  Version = "VERSION",
8406
8485
  Project = "PROJECT",
8407
- Status = "STATUS"
8486
+ Status = "STATUS",
8487
+ BitbucketRepo = "BITBUCKET_REPO"
8408
8488
  }
8409
8489
  export declare type JiraCmdbAvatar = {
8410
8490
  __typename?: 'JiraCmdbAvatar';
@@ -8417,6 +8497,14 @@ export declare type JiraCmdbAvatar = {
8417
8497
  url288?: Maybe<Scalars['String']>;
8418
8498
  mediaClientConfig?: Maybe<JiraCmdbMediaClientConfig>;
8419
8499
  };
8500
+ export declare type JiraCmdbBitbucketRepository = {
8501
+ __typename?: 'JiraCmdbBitbucketRepository';
8502
+ uuid?: Maybe<Scalars['String']>;
8503
+ name?: Maybe<Scalars['String']>;
8504
+ url?: Maybe<Scalars['URL']>;
8505
+ avatarUrl?: Maybe<Scalars['URL']>;
8506
+ bitbucketWorkspaceId?: Maybe<Scalars['String']>;
8507
+ };
8420
8508
  export declare type JiraCmdbConfigAttributeConnection = {
8421
8509
  __typename?: 'JiraCmdbConfigAttributeConnection';
8422
8510
  totalCount?: Maybe<Scalars['Int']>;
@@ -8495,6 +8583,7 @@ export declare type JiraCmdbObjectAttributeValue = {
8495
8583
  group?: Maybe<JiraGroup>;
8496
8584
  status?: Maybe<JiraCmdbStatusType>;
8497
8585
  project?: Maybe<JiraProject>;
8586
+ bitbucketRepo?: Maybe<JiraCmdbBitbucketRepository>;
8498
8587
  value?: Maybe<Scalars['String']>;
8499
8588
  displayValue?: Maybe<Scalars['String']>;
8500
8589
  searchValue?: Maybe<Scalars['String']>;
@@ -9374,6 +9463,7 @@ export declare type JiraHierarchyConfigError = {
9374
9463
  export declare type JiraHierarchyConfigTask = {
9375
9464
  __typename?: 'JiraHierarchyConfigTask';
9376
9465
  taskProgress?: Maybe<JiraLongRunningTaskProgress>;
9466
+ issueHierarchyConfig?: Maybe<Array<JiraIssueHierarchyConfigData>>;
9377
9467
  errors?: Maybe<Array<JiraHierarchyConfigError>>;
9378
9468
  };
9379
9469
  export declare enum JiraInstallDeploymentsBannerPrecondition {
@@ -9681,6 +9771,7 @@ export declare type JiraIssueHierarchyConfigurationMutationInput = {
9681
9771
  export declare type JiraIssueHierarchyConfigurationMutationResult = {
9682
9772
  __typename?: 'JiraIssueHierarchyConfigurationMutationResult';
9683
9773
  updateInitiated: Scalars['Boolean'];
9774
+ updateIssuesCount?: Maybe<Scalars['Long']>;
9684
9775
  success: Scalars['Boolean'];
9685
9776
  errors?: Maybe<Array<JiraHierarchyConfigError>>;
9686
9777
  };
@@ -13489,6 +13580,7 @@ export declare type JiraVersionIssuesArgs = {
13489
13580
  last?: Maybe<Scalars['Int']>;
13490
13581
  before?: Maybe<Scalars['String']>;
13491
13582
  filter?: Maybe<JiraVersionIssuesFilter>;
13583
+ sortBy?: Maybe<JiraVersionIssuesSortInput>;
13492
13584
  };
13493
13585
  export declare type JiraVersionReleaseNotesOptionsIssueTypesArgs = {
13494
13586
  first?: Maybe<Scalars['Int']>;
@@ -13583,6 +13675,17 @@ export declare enum JiraVersionIssuesFilter {
13583
13675
  OpenPullRequest = "OPEN_PULL_REQUEST",
13584
13676
  FailingBuild = "FAILING_BUILD"
13585
13677
  }
13678
+ export declare enum JiraVersionIssuesSortField {
13679
+ Assignee = "ASSIGNEE",
13680
+ Created = "CREATED",
13681
+ Key = "KEY",
13682
+ Priority = "PRIORITY",
13683
+ Status = "STATUS"
13684
+ }
13685
+ export declare type JiraVersionIssuesSortInput = {
13686
+ sortByField?: Maybe<JiraVersionIssuesSortField>;
13687
+ order?: Maybe<SortDirection>;
13688
+ };
13586
13689
  export declare type JiraVersionRelatedWork = {
13587
13690
  __typename?: 'JiraVersionRelatedWork';
13588
13691
  relatedWorkId?: Maybe<Scalars['ID']>;
@@ -17177,6 +17280,7 @@ export declare type RoadmapConfiguration = {
17177
17280
  statusCategories: Array<RoadmapStatusCategory>;
17178
17281
  userConfiguration?: Maybe<RoadmapUserConfiguration>;
17179
17282
  boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
17283
+ hierarchyConfiguration?: Maybe<RoadmapHierarchyConfiguration>;
17180
17284
  };
17181
17285
  export declare type RoadmapContent = {
17182
17286
  __typename?: 'RoadmapContent';
@@ -17252,6 +17356,10 @@ export declare type RoadmapHealthCheckResolution = {
17252
17356
  actionId: Scalars['ID'];
17253
17357
  fallbackMessage: Scalars['String'];
17254
17358
  };
17359
+ export declare type RoadmapHierarchyConfiguration = {
17360
+ __typename?: 'RoadmapHierarchyConfiguration';
17361
+ levelOneName: Scalars['String'];
17362
+ };
17255
17363
  export declare type RoadmapItem = {
17256
17364
  __typename?: 'RoadmapItem';
17257
17365
  id: Scalars['ID'];