@forge/cli-shared 3.17.2-next.3 → 3.17.2-next.4

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
+ ## 3.17.2-next.4
4
+
5
+ ### Patch Changes
6
+
7
+ - cdf28f27: Improve user error detection
8
+
3
9
  ## 3.17.2-next.3
4
10
 
5
11
  ### Patch Changes
@@ -7553,6 +7553,7 @@ export type DevOpsBuildProvider = DevOpsDataProvider & {
7553
7553
  logoUrl?: Maybe<Scalars['URL']>;
7554
7554
  documentationUrl?: Maybe<Scalars['URL']>;
7555
7555
  appInstallationId?: Maybe<Scalars['ID']>;
7556
+ supportedActions?: Maybe<DevOpsSupportedActions>;
7556
7557
  };
7557
7558
  export declare enum DevOpsBuildState {
7558
7559
  Pending = "PENDING",
@@ -7573,6 +7574,7 @@ export type DevOpsDataProvider = {
7573
7574
  logoUrl?: Maybe<Scalars['URL']>;
7574
7575
  documentationUrl?: Maybe<Scalars['URL']>;
7575
7576
  appInstallationId?: Maybe<Scalars['ID']>;
7577
+ supportedActions?: Maybe<DevOpsSupportedActions>;
7576
7578
  };
7577
7579
  export type DevOpsDeploymentProvider = DevOpsDataProvider & {
7578
7580
  __typename?: 'DevOpsDeploymentProvider';
@@ -7582,6 +7584,7 @@ export type DevOpsDeploymentProvider = DevOpsDataProvider & {
7582
7584
  logoUrl?: Maybe<Scalars['URL']>;
7583
7585
  documentationUrl?: Maybe<Scalars['URL']>;
7584
7586
  appInstallationId?: Maybe<Scalars['ID']>;
7587
+ supportedActions?: Maybe<DevOpsSupportedActions>;
7585
7588
  };
7586
7589
  export type DevOpsDesignProvider = DevOpsDataProvider & {
7587
7590
  __typename?: 'DevOpsDesignProvider';
@@ -7591,6 +7594,7 @@ export type DevOpsDesignProvider = DevOpsDataProvider & {
7591
7594
  logoUrl?: Maybe<Scalars['URL']>;
7592
7595
  documentationUrl?: Maybe<Scalars['URL']>;
7593
7596
  appInstallationId?: Maybe<Scalars['ID']>;
7597
+ supportedActions?: Maybe<DevOpsSupportedActions>;
7594
7598
  grant3LOUrl?: Maybe<Scalars['String']>;
7595
7599
  };
7596
7600
  export type DevOpsDevInfoProvider = DevOpsDataProvider & {
@@ -7601,6 +7605,7 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
7601
7605
  logoUrl?: Maybe<Scalars['URL']>;
7602
7606
  documentationUrl?: Maybe<Scalars['URL']>;
7603
7607
  appInstallationId?: Maybe<Scalars['ID']>;
7608
+ supportedActions?: Maybe<DevOpsSupportedActions>;
7604
7609
  };
7605
7610
  export type DevOpsDocument = Node & {
7606
7611
  __typename?: 'DevOpsDocument';
@@ -7655,6 +7660,7 @@ export type DevOpsDocumentationProvider = DevOpsDataProvider & {
7655
7660
  logoUrl?: Maybe<Scalars['URL']>;
7656
7661
  documentationUrl?: Maybe<Scalars['URL']>;
7657
7662
  appInstallationId?: Maybe<Scalars['ID']>;
7663
+ supportedActions?: Maybe<DevOpsSupportedActions>;
7658
7664
  grant3LOUrl?: Maybe<Scalars['String']>;
7659
7665
  linkedContainers?: Maybe<AriGraphRelationshipConnection>;
7660
7666
  };
@@ -7740,6 +7746,7 @@ export type DevOpsFeatureFlagProvider = DevOpsDataProvider & {
7740
7746
  logoUrl?: Maybe<Scalars['URL']>;
7741
7747
  documentationUrl?: Maybe<Scalars['URL']>;
7742
7748
  appInstallationId?: Maybe<Scalars['ID']>;
7749
+ supportedActions?: Maybe<DevOpsSupportedActions>;
7743
7750
  createFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
7744
7751
  connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
7745
7752
  };
@@ -8023,6 +8030,7 @@ export type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
8023
8030
  logoUrl?: Maybe<Scalars['URL']>;
8024
8031
  documentationUrl?: Maybe<Scalars['URL']>;
8025
8032
  appInstallationId?: Maybe<Scalars['ID']>;
8033
+ supportedActions?: Maybe<DevOpsSupportedActions>;
8026
8034
  };
8027
8035
  export type DevOpsRepository = {
8028
8036
  __typename?: 'DevOpsRepository';
@@ -8053,6 +8061,7 @@ export type DevOpsSecurityProvider = DevOpsDataProvider & {
8053
8061
  logoUrl?: Maybe<Scalars['URL']>;
8054
8062
  documentationUrl?: Maybe<Scalars['URL']>;
8055
8063
  appInstallationId?: Maybe<Scalars['ID']>;
8064
+ supportedActions?: Maybe<DevOpsSupportedActions>;
8056
8065
  linkedWorkspaces?: Maybe<AriGraphRelationshipConnection>;
8057
8066
  linkedContainers?: Maybe<AriGraphRelationshipConnection>;
8058
8067
  };
@@ -8390,6 +8399,17 @@ export type DevOpsSummarisedFeatureFlags = {
8390
8399
  totalEnabledCount?: Maybe<Scalars['Int']>;
8391
8400
  totalRolledOutCount?: Maybe<Scalars['Int']>;
8392
8401
  };
8402
+ export type DevOpsSupportedActions = {
8403
+ __typename?: 'DevOpsSupportedActions';
8404
+ listContainers?: Maybe<Scalars['Boolean']>;
8405
+ searchConnectedWorkspaces?: Maybe<Scalars['Boolean']>;
8406
+ searchContainers?: Maybe<Scalars['Boolean']>;
8407
+ associate?: Maybe<Scalars['Boolean']>;
8408
+ disassociate?: Maybe<Scalars['Boolean']>;
8409
+ syncStatus?: Maybe<Scalars['Boolean']>;
8410
+ check3LO?: Maybe<Scalars['Boolean']>;
8411
+ grant3LO?: Maybe<Scalars['Boolean']>;
8412
+ };
8393
8413
  export type DevOpsThirdPartyRepository = CodeRepository & {
8394
8414
  __typename?: 'DevOpsThirdPartyRepository';
8395
8415
  id: Scalars['ID'];
@@ -13757,6 +13777,7 @@ export type JiraIssueBulkOperationProgress = {
13757
13777
  progress?: Maybe<Scalars['Long']>;
13758
13778
  totalIssueCount?: Maybe<Scalars['Int']>;
13759
13779
  unauthorisedSuccessfulIssueCount?: Maybe<Scalars['Int']>;
13780
+ successfulUnmappableIssuesCount?: Maybe<Scalars['Int']>;
13760
13781
  successfulIssues?: Maybe<JiraIssueConnection>;
13761
13782
  bulkOperationFailures?: Maybe<JiraIssueBulkOperationFailureConnection>;
13762
13783
  startTime?: Maybe<Scalars['DateTime']>;
@@ -17638,6 +17659,7 @@ export type JiraScreenTabLayoutFieldsEdge = {
17638
17659
  };
17639
17660
  export type JiraScreenTabLayoutItem = {
17640
17661
  __typename?: 'JiraScreenTabLayoutItem';
17662
+ id: Scalars['ID'];
17641
17663
  title: Scalars['String'];
17642
17664
  fields?: Maybe<JiraScreenTabLayoutFieldsConnection>;
17643
17665
  };