@forge/cli-shared 3.22.0-next.6 → 3.22.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,45 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.22.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 78523361: Update the CLI to prompt the user to select a product before displaying the list of templates for that product only
8
+
9
+ ### Patch Changes
10
+
11
+ - 853b3f1e: Bumping dependencies via Renovate:
12
+
13
+ - @graphql-tools/schema
14
+
15
+ - 2cf5ac83: Bumping dependencies via Renovate:
16
+
17
+ - @types/jest
18
+
19
+ - 9595140c: Bumping dependencies via Renovate:
20
+
21
+ - @types/cross-spawn
22
+
23
+ - b2198bc5: Updated the webtrigger CLI command to list site installations to choose from instead of requiring the explicit installation id
24
+ - 241e673d: Bumping dependencies via Renovate:
25
+
26
+ - @types/cheerio
27
+
28
+ - Updated dependencies [2cf5ac83]
29
+ - Updated dependencies [c0d1e462]
30
+ - Updated dependencies [3a4a72d0]
31
+ - Updated dependencies [eb6edcad]
32
+ - Updated dependencies [1b86561b]
33
+ - Updated dependencies [949b52dd]
34
+ - @forge/manifest@5.3.0
35
+
36
+ ## 3.22.0-next.7
37
+
38
+ ### Patch Changes
39
+
40
+ - Updated dependencies [1b86561b]
41
+ - @forge/manifest@5.3.0-next.5
42
+
3
43
  ## 3.22.0-next.6
4
44
 
5
45
  ### Patch Changes
@@ -8394,7 +8394,7 @@ export type DevOpsBranchInfo = {
8394
8394
  export type DevOpsBuildDetails = {
8395
8395
  __typename?: 'DevOpsBuildDetails';
8396
8396
  associatedAris?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
8397
- buildNumber?: Maybe<Scalars['Int']['output']>;
8397
+ buildNumber?: Maybe<Scalars['Long']['output']>;
8398
8398
  description?: Maybe<Scalars['String']['output']>;
8399
8399
  displayName?: Maybe<Scalars['String']['output']>;
8400
8400
  id: Scalars['ID']['output'];
@@ -8408,6 +8408,7 @@ export type DevOpsBuildDetails = {
8408
8408
  export type DevOpsBuildProvider = DevOpsDataProvider & {
8409
8409
  __typename?: 'DevOpsBuildProvider';
8410
8410
  appInstallationId?: Maybe<Scalars['ID']['output']>;
8411
+ configState?: Maybe<JiraAppConfigState>;
8411
8412
  documentationUrl?: Maybe<Scalars['URL']['output']>;
8412
8413
  homeUrl?: Maybe<Scalars['URL']['output']>;
8413
8414
  id: Scalars['ID']['output'];
@@ -8416,6 +8417,9 @@ export type DevOpsBuildProvider = DevOpsDataProvider & {
8416
8417
  providerType?: Maybe<DevOpsProviderType>;
8417
8418
  supportedActions?: Maybe<DevOpsSupportedActions>;
8418
8419
  };
8420
+ export type DevOpsBuildProviderConfigStateArgs = {
8421
+ cloudId: Scalars['ID']['input'];
8422
+ };
8419
8423
  export declare enum DevOpsBuildState {
8420
8424
  Cancelled = "CANCELLED",
8421
8425
  Failed = "FAILED",
@@ -8437,6 +8441,7 @@ export type DevOpsContainerRelationshipEntityPropertyInput = {
8437
8441
  };
8438
8442
  export type DevOpsDataProvider = {
8439
8443
  appInstallationId?: Maybe<Scalars['ID']['output']>;
8444
+ configState?: Maybe<JiraAppConfigState>;
8440
8445
  documentationUrl?: Maybe<Scalars['URL']['output']>;
8441
8446
  homeUrl?: Maybe<Scalars['URL']['output']>;
8442
8447
  id: Scalars['ID']['output'];
@@ -8445,9 +8450,13 @@ export type DevOpsDataProvider = {
8445
8450
  providerType?: Maybe<DevOpsProviderType>;
8446
8451
  supportedActions?: Maybe<DevOpsSupportedActions>;
8447
8452
  };
8453
+ export type DevOpsDataProviderConfigStateArgs = {
8454
+ cloudId: Scalars['ID']['input'];
8455
+ };
8448
8456
  export type DevOpsDeploymentProvider = DevOpsDataProvider & {
8449
8457
  __typename?: 'DevOpsDeploymentProvider';
8450
8458
  appInstallationId?: Maybe<Scalars['ID']['output']>;
8459
+ configState?: Maybe<JiraAppConfigState>;
8451
8460
  documentationUrl?: Maybe<Scalars['URL']['output']>;
8452
8461
  homeUrl?: Maybe<Scalars['URL']['output']>;
8453
8462
  id: Scalars['ID']['output'];
@@ -8456,6 +8465,9 @@ export type DevOpsDeploymentProvider = DevOpsDataProvider & {
8456
8465
  providerType?: Maybe<DevOpsProviderType>;
8457
8466
  supportedActions?: Maybe<DevOpsSupportedActions>;
8458
8467
  };
8468
+ export type DevOpsDeploymentProviderConfigStateArgs = {
8469
+ cloudId: Scalars['ID']['input'];
8470
+ };
8459
8471
  export type DevOpsDesign = Node & {
8460
8472
  __typename?: 'DevOpsDesign';
8461
8473
  displayName?: Maybe<Scalars['String']['output']>;
@@ -8476,6 +8488,7 @@ export type DevOpsDesignProviderArgs = {
8476
8488
  export type DevOpsDesignProvider = DevOpsDataProvider & {
8477
8489
  __typename?: 'DevOpsDesignProvider';
8478
8490
  appInstallationId?: Maybe<Scalars['ID']['output']>;
8491
+ configState?: Maybe<JiraAppConfigState>;
8479
8492
  documentationUrl?: Maybe<Scalars['URL']['output']>;
8480
8493
  grant3LOUrl?: Maybe<Scalars['String']['output']>;
8481
8494
  handledDomainName?: Maybe<Scalars['String']['output']>;
@@ -8486,6 +8499,9 @@ export type DevOpsDesignProvider = DevOpsDataProvider & {
8486
8499
  providerType?: Maybe<DevOpsProviderType>;
8487
8500
  supportedActions?: Maybe<DevOpsSupportedActions>;
8488
8501
  };
8502
+ export type DevOpsDesignProviderConfigStateArgs = {
8503
+ cloudId: Scalars['ID']['input'];
8504
+ };
8489
8505
  export declare enum DevOpsDesignStatus {
8490
8506
  None = "NONE",
8491
8507
  ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
@@ -8502,6 +8518,7 @@ export declare enum DevOpsDesignType {
8502
8518
  export type DevOpsDevInfoProvider = DevOpsDataProvider & {
8503
8519
  __typename?: 'DevOpsDevInfoProvider';
8504
8520
  appInstallationId?: Maybe<Scalars['ID']['output']>;
8521
+ configState?: Maybe<JiraAppConfigState>;
8505
8522
  documentationUrl?: Maybe<Scalars['URL']['output']>;
8506
8523
  homeUrl?: Maybe<Scalars['URL']['output']>;
8507
8524
  id: Scalars['ID']['output'];
@@ -8511,6 +8528,9 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
8511
8528
  supportedActions?: Maybe<DevOpsSupportedActions>;
8512
8529
  workspaces?: Maybe<ToolchainWorkspaceConnection>;
8513
8530
  };
8531
+ export type DevOpsDevInfoProviderConfigStateArgs = {
8532
+ cloudId: Scalars['ID']['input'];
8533
+ };
8514
8534
  export type DevOpsDevInfoProviderWorkspacesArgs = {
8515
8535
  cloudId: Scalars['ID']['input'];
8516
8536
  };
@@ -8562,6 +8582,7 @@ export type DevOpsDocumentType = {
8562
8582
  export type DevOpsDocumentationProvider = DevOpsDataProvider & {
8563
8583
  __typename?: 'DevOpsDocumentationProvider';
8564
8584
  appInstallationId?: Maybe<Scalars['ID']['output']>;
8585
+ configState?: Maybe<JiraAppConfigState>;
8565
8586
  documentationUrl?: Maybe<Scalars['URL']['output']>;
8566
8587
  grant3LOUrl?: Maybe<Scalars['String']['output']>;
8567
8588
  homeUrl?: Maybe<Scalars['URL']['output']>;
@@ -8572,6 +8593,9 @@ export type DevOpsDocumentationProvider = DevOpsDataProvider & {
8572
8593
  providerType?: Maybe<DevOpsProviderType>;
8573
8594
  supportedActions?: Maybe<DevOpsSupportedActions>;
8574
8595
  };
8596
+ export type DevOpsDocumentationProviderConfigStateArgs = {
8597
+ cloudId: Scalars['ID']['input'];
8598
+ };
8575
8599
  export type DevOpsDocumentationProviderLinkedContainersArgs = {
8576
8600
  after?: InputMaybe<Scalars['String']['input']>;
8577
8601
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -8650,6 +8674,7 @@ export type DevOpsFeatureFlagEdge = {
8650
8674
  export type DevOpsFeatureFlagProvider = DevOpsDataProvider & {
8651
8675
  __typename?: 'DevOpsFeatureFlagProvider';
8652
8676
  appInstallationId?: Maybe<Scalars['ID']['output']>;
8677
+ configState?: Maybe<JiraAppConfigState>;
8653
8678
  connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']['output']>;
8654
8679
  createFeatureFlagTemplateUrl?: Maybe<Scalars['String']['output']>;
8655
8680
  documentationUrl?: Maybe<Scalars['URL']['output']>;
@@ -8660,6 +8685,9 @@ export type DevOpsFeatureFlagProvider = DevOpsDataProvider & {
8660
8685
  providerType?: Maybe<DevOpsProviderType>;
8661
8686
  supportedActions?: Maybe<DevOpsSupportedActions>;
8662
8687
  };
8688
+ export type DevOpsFeatureFlagProviderConfigStateArgs = {
8689
+ cloudId: Scalars['ID']['input'];
8690
+ };
8663
8691
  export type DevOpsFeatureFlagSummary = {
8664
8692
  __typename?: 'DevOpsFeatureFlagSummary';
8665
8693
  defaultValue?: Maybe<Scalars['String']['output']>;
@@ -8863,6 +8891,7 @@ export type DevOpsMutation_EmptyArgs = {
8863
8891
  export type DevOpsOperationsProvider = DevOpsDataProvider & {
8864
8892
  __typename?: 'DevOpsOperationsProvider';
8865
8893
  appInstallationId?: Maybe<Scalars['ID']['output']>;
8894
+ configState?: Maybe<JiraAppConfigState>;
8866
8895
  documentationUrl?: Maybe<Scalars['URL']['output']>;
8867
8896
  homeUrl?: Maybe<Scalars['URL']['output']>;
8868
8897
  id: Scalars['ID']['output'];
@@ -8872,6 +8901,9 @@ export type DevOpsOperationsProvider = DevOpsDataProvider & {
8872
8901
  providerType?: Maybe<DevOpsProviderType>;
8873
8902
  supportedActions?: Maybe<DevOpsSupportedActions>;
8874
8903
  };
8904
+ export type DevOpsOperationsProviderConfigStateArgs = {
8905
+ cloudId: Scalars['ID']['input'];
8906
+ };
8875
8907
  export type DevOpsOperationsProviderLinkedContainersArgs = {
8876
8908
  after?: InputMaybe<Scalars['String']['input']>;
8877
8909
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -8957,6 +8989,7 @@ export declare enum DevOpsRelationshipCertaintyFilter {
8957
8989
  export type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
8958
8990
  __typename?: 'DevOpsRemoteLinksProvider';
8959
8991
  appInstallationId?: Maybe<Scalars['ID']['output']>;
8992
+ configState?: Maybe<JiraAppConfigState>;
8960
8993
  documentationUrl?: Maybe<Scalars['URL']['output']>;
8961
8994
  homeUrl?: Maybe<Scalars['URL']['output']>;
8962
8995
  id: Scalars['ID']['output'];
@@ -8965,6 +8998,9 @@ export type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
8965
8998
  providerType?: Maybe<DevOpsProviderType>;
8966
8999
  supportedActions?: Maybe<DevOpsSupportedActions>;
8967
9000
  };
9001
+ export type DevOpsRemoteLinksProviderConfigStateArgs = {
9002
+ cloudId: Scalars['ID']['input'];
9003
+ };
8968
9004
  export type DevOpsRepository = {
8969
9005
  __typename?: 'DevOpsRepository';
8970
9006
  avatarUrl?: Maybe<Scalars['URL']['output']>;
@@ -8989,6 +9025,7 @@ export type DevOpsReviewer = {
8989
9025
  export type DevOpsSecurityProvider = DevOpsDataProvider & {
8990
9026
  __typename?: 'DevOpsSecurityProvider';
8991
9027
  appInstallationId?: Maybe<Scalars['ID']['output']>;
9028
+ configState?: Maybe<JiraAppConfigState>;
8992
9029
  documentationUrl?: Maybe<Scalars['URL']['output']>;
8993
9030
  homeUrl?: Maybe<Scalars['URL']['output']>;
8994
9031
  id: Scalars['ID']['output'];
@@ -9000,6 +9037,9 @@ export type DevOpsSecurityProvider = DevOpsDataProvider & {
9000
9037
  supportedActions?: Maybe<DevOpsSupportedActions>;
9001
9038
  workspaces?: Maybe<ToolchainWorkspaceConnection>;
9002
9039
  };
9040
+ export type DevOpsSecurityProviderConfigStateArgs = {
9041
+ cloudId: Scalars['ID']['input'];
9042
+ };
9003
9043
  export type DevOpsSecurityProviderLinkedContainersArgs = {
9004
9044
  after?: InputMaybe<Scalars['String']['input']>;
9005
9045
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -18839,7 +18879,9 @@ export type InfluentsNotificationItem = {
18839
18879
  };
18840
18880
  export type InfluentsNotificationMutation = {
18841
18881
  __typename?: 'InfluentsNotificationMutation';
18882
+ archiveAllNotifications?: Maybe<Scalars['String']['output']>;
18842
18883
  archiveNotifications?: Maybe<Scalars['String']['output']>;
18884
+ archiveNotificationsByGroupId?: Maybe<Scalars['String']['output']>;
18843
18885
  clearUnseenCount?: Maybe<Scalars['String']['output']>;
18844
18886
  markNotificationsAsRead?: Maybe<Scalars['String']['output']>;
18845
18887
  markNotificationsByGroupIdAsRead?: Maybe<Scalars['String']['output']>;
@@ -18847,9 +18889,21 @@ export type InfluentsNotificationMutation = {
18847
18889
  markNotificationsByIdsAsRead?: Maybe<Scalars['String']['output']>;
18848
18890
  markNotificationsByIdsAsUnread?: Maybe<Scalars['String']['output']>;
18849
18891
  };
18892
+ export type InfluentsNotificationMutationArchiveAllNotificationsArgs = {
18893
+ beforeInclusive?: InputMaybe<Scalars['String']['input']>;
18894
+ beforeInclusiveTimestamp?: InputMaybe<Scalars['String']['input']>;
18895
+ category?: InputMaybe<InfluentsNotificationCategory>;
18896
+ product?: InputMaybe<Scalars['String']['input']>;
18897
+ workspaceId?: InputMaybe<Scalars['String']['input']>;
18898
+ };
18850
18899
  export type InfluentsNotificationMutationArchiveNotificationsArgs = {
18851
18900
  ids: Array<Scalars['String']['input']>;
18852
18901
  };
18902
+ export type InfluentsNotificationMutationArchiveNotificationsByGroupIdArgs = {
18903
+ beforeInclusive?: InputMaybe<Scalars['String']['input']>;
18904
+ category?: InputMaybe<InfluentsNotificationCategory>;
18905
+ groupId: Scalars['String']['input'];
18906
+ };
18853
18907
  export type InfluentsNotificationMutationClearUnseenCountArgs = {
18854
18908
  product?: InputMaybe<Scalars['String']['input']>;
18855
18909
  workspaceId?: InputMaybe<Scalars['String']['input']>;
@@ -18937,6 +18991,7 @@ export type Insights = {
18937
18991
  };
18938
18992
  export type InsightsNextBestTasksByContextAriArgs = {
18939
18993
  contextAri: InsightsContextAri;
18994
+ statusId?: InputMaybe<Scalars['String']['input']>;
18940
18995
  };
18941
18996
  export type InsightsBuildDetails = {
18942
18997
  __typename?: 'InsightsBuildDetails';
@@ -18977,7 +19032,7 @@ export type InsightsNextBestTask = {
18977
19032
  title: Scalars['String']['output'];
18978
19033
  url: Scalars['String']['output'];
18979
19034
  };
18980
- export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails;
19035
+ export type InsightsNextBestTaskDetails = InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
18981
19036
  export type InsightsPullRequestNeedsWorkDetails = {
18982
19037
  __typename?: 'InsightsPullRequestNeedsWorkDetails';
18983
19038
  commentCount: Scalars['Int']['output'];
@@ -18994,10 +19049,26 @@ export type InsightsPullRequestReviewDetails = {
18994
19049
  };
18995
19050
  export declare enum InsightsTaskType {
18996
19051
  BuildFailed = "BUILD_FAILED",
19052
+ CritVuln = "CRIT_VULN",
18997
19053
  DeploymentFailed = "DEPLOYMENT_FAILED",
18998
19054
  PrNeedsWork = "PR_NEEDS_WORK",
18999
19055
  PrReview = "PR_REVIEW"
19000
19056
  }
19057
+ export type InsightsVulnDetails = {
19058
+ __typename?: 'InsightsVulnDetails';
19059
+ id: Scalars['ID']['output'];
19060
+ introducedDate: Scalars['String']['output'];
19061
+ issueId: Scalars['String']['output'];
19062
+ issueKey: Scalars['String']['output'];
19063
+ securityContainerName: Scalars['String']['output'];
19064
+ status: InsightsVulnerabilityStatus;
19065
+ };
19066
+ export declare enum InsightsVulnerabilityStatus {
19067
+ Closed = "CLOSED",
19068
+ Ignored = "IGNORED",
19069
+ Open = "OPEN",
19070
+ Unknown = "UNKNOWN"
19071
+ }
19001
19072
  export type InstallationContextWithLogAccess = {
19002
19073
  __typename?: 'InstallationContextWithLogAccess';
19003
19074
  installationContext: Scalars['ID']['output'];
@@ -29519,31 +29590,32 @@ export declare enum MarketplaceProgramStatus {
29519
29590
  NotAParticipant = "NOT_A_PARTICIPANT",
29520
29591
  Rejected = "REJECTED"
29521
29592
  }
29522
- export declare enum MarketplaceStoreAppEditionType {
29523
- Advanced = "ADVANCED",
29524
- Free = "FREE",
29525
- Sandbox = "SANDBOX",
29526
- Standard = "STANDARD"
29527
- }
29528
29593
  export type MarketplaceStoreInstallAppInput = {
29529
29594
  appKey: Scalars['String']['input'];
29530
- cloudId: Scalars['ID']['input'];
29531
- editionType?: InputMaybe<MarketplaceStoreAppEditionType>;
29595
+ target: MarketplaceStoreInstallAppTargetInput;
29532
29596
  };
29533
- export type MarketplaceStoreInstallAppRequest = {
29534
- __typename?: 'MarketplaceStoreInstallAppRequest';
29597
+ export type MarketplaceStoreInstallAppStatus = {
29598
+ __typename?: 'MarketplaceStoreInstallAppStatus';
29535
29599
  id: Scalars['ID']['output'];
29536
29600
  };
29601
+ export type MarketplaceStoreInstallAppTargetInput = {
29602
+ cloudId: Scalars['ID']['input'];
29603
+ product: MarketplaceStoreInstallationTargetProduct;
29604
+ };
29605
+ export declare enum MarketplaceStoreInstallationTargetProduct {
29606
+ Confluence = "CONFLUENCE",
29607
+ Jira = "JIRA"
29608
+ }
29537
29609
  export type MarketplaceStoreMutationApi = {
29538
29610
  __typename?: 'MarketplaceStoreMutationApi';
29539
- installApp: MarketplaceStoreInstallAppRequest;
29611
+ installApp: MarketplaceStoreInstallAppStatus;
29540
29612
  };
29541
29613
  export type MarketplaceStoreMutationApiInstallAppArgs = {
29542
29614
  input: MarketplaceStoreInstallAppInput;
29543
29615
  };
29544
29616
  export type MarketplaceStoreQueryApi = {
29545
29617
  __typename?: 'MarketplaceStoreQueryApi';
29546
- installAppStatus: MarketplaceStoreInstallAppRequest;
29618
+ installAppStatus: MarketplaceStoreInstallAppStatus;
29547
29619
  };
29548
29620
  export type MarketplaceStoreQueryApiInstallAppStatusArgs = {
29549
29621
  id: Scalars['ID']['input'];
@@ -34767,6 +34839,7 @@ export declare enum ShepherdAlertTemplateType {
34767
34839
  ConfluenceDataDiscoveryCreditCard = "CONFLUENCE_DATA_DISCOVERY_CREDIT_CARD",
34768
34840
  ConfluenceDataDiscoveryCrypto = "CONFLUENCE_DATA_DISCOVERY_CRYPTO",
34769
34841
  ConfluenceDataDiscoveryIban = "CONFLUENCE_DATA_DISCOVERY_IBAN",
34842
+ ConfluenceDataDiscoveryJwtKey = "CONFLUENCE_DATA_DISCOVERY_JWT_KEY",
34770
34843
  ConfluenceDataDiscoveryPrivateKey = "CONFLUENCE_DATA_DISCOVERY_PRIVATE_KEY",
34771
34844
  ConfluenceDataDiscoveryUsSsn = "CONFLUENCE_DATA_DISCOVERY_US_SSN",
34772
34845
  ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",