@forge/cli-shared 3.2.3-next.1 → 3.2.3-next.3

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.2.3-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [72f098e]
8
+ - @forge/manifest@4.5.0-next.3
9
+
10
+ ## 3.2.3-next.2
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [be216ec6]
15
+ - @forge/manifest@4.5.0-next.2
16
+
3
17
  ## 3.2.3-next.1
4
18
 
5
19
  ### Patch Changes
@@ -5663,6 +5663,7 @@ export declare type DevOps = {
5663
5663
  summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
5664
5664
  pullRequestEntityDetails?: Maybe<Array<Maybe<DevOpsPullRequestDetails>>>;
5665
5665
  summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
5666
+ dataDepotProviders?: Maybe<DevOpsDataDepotProviders>;
5666
5667
  ariGraph?: Maybe<AriGraph>;
5667
5668
  };
5668
5669
  export declare type DevOpsEntitiesByAssociationsArgs = {
@@ -5677,6 +5678,10 @@ export declare type DevOpsPullRequestEntityDetailsArgs = {
5677
5678
  export declare type DevOpsSummarisedEntitiesArgs = {
5678
5679
  ids: Array<Scalars['ID']>;
5679
5680
  };
5681
+ export declare type DevOpsDataDepotProvidersArgs = {
5682
+ id: Scalars['ID'];
5683
+ providerTypes?: Maybe<Array<DevOpsDataDepotProviderType>>;
5684
+ };
5680
5685
  export declare type DevOpsAvatar = {
5681
5686
  __typename?: 'DevOpsAvatar';
5682
5687
  url?: Maybe<Scalars['URL']>;
@@ -5691,6 +5696,35 @@ export declare type DevOpsContainerRelationshipEntityPropertyInput = {
5691
5696
  key: Scalars['String'];
5692
5697
  value: Scalars['JSON'];
5693
5698
  };
5699
+ export declare type DevOpsDataDepotProvider = {
5700
+ id: Scalars['ID'];
5701
+ name?: Maybe<Scalars['String']>;
5702
+ homeUrl?: Maybe<Scalars['URL']>;
5703
+ logoUrl?: Maybe<Scalars['URL']>;
5704
+ documentationUrl?: Maybe<Scalars['URL']>;
5705
+ appInstallationId?: Maybe<Scalars['ID']>;
5706
+ };
5707
+ export declare enum DevOpsDataDepotProviderType {
5708
+ DevInfo = "DEV_INFO",
5709
+ Build = "BUILD",
5710
+ Deployment = "DEPLOYMENT",
5711
+ FeatureFlag = "FEATURE_FLAG",
5712
+ RemoteLinks = "REMOTE_LINKS",
5713
+ Security = "SECURITY"
5714
+ }
5715
+ export declare type DevOpsDataDepotProviders = {
5716
+ __typename?: 'DevOpsDataDepotProviders';
5717
+ securityProviders?: Maybe<Array<DevOpsDataDepotSecurityProvider>>;
5718
+ };
5719
+ export declare type DevOpsDataDepotSecurityProvider = DevOpsDataDepotProvider & {
5720
+ __typename?: 'DevOpsDataDepotSecurityProvider';
5721
+ id: Scalars['ID'];
5722
+ name?: Maybe<Scalars['String']>;
5723
+ homeUrl?: Maybe<Scalars['URL']>;
5724
+ logoUrl?: Maybe<Scalars['URL']>;
5725
+ documentationUrl?: Maybe<Scalars['URL']>;
5726
+ appInstallationId?: Maybe<Scalars['ID']>;
5727
+ };
5694
5728
  export declare type DevOpsEntities = {
5695
5729
  __typename?: 'DevOpsEntities';
5696
5730
  featureFlagEntities?: Maybe<DevOpsFeatureFlagConnection>;
@@ -15101,6 +15135,37 @@ export declare type NewCardParent = {
15101
15135
  export declare type Node = {
15102
15136
  id: Scalars['ID'];
15103
15137
  };
15138
+ export declare type OAuthClientsAccountGrant = {
15139
+ __typename?: 'OAuthClientsAccountGrant';
15140
+ clientId?: Maybe<Scalars['String']>;
15141
+ scopes?: Maybe<Array<Scalars['String']>>;
15142
+ };
15143
+ export declare type OAuthClientsAccountGrantConnection = {
15144
+ __typename?: 'OAuthClientsAccountGrantConnection';
15145
+ edges?: Maybe<Array<Maybe<OAuthClientsAccountGrantEdge>>>;
15146
+ nodes?: Maybe<Array<Maybe<OAuthClientsAccountGrant>>>;
15147
+ pageInfo: OAuthClientsAccountGrantPageInfo;
15148
+ };
15149
+ export declare type OAuthClientsAccountGrantEdge = {
15150
+ __typename?: 'OAuthClientsAccountGrantEdge';
15151
+ cursor?: Maybe<Scalars['String']>;
15152
+ node?: Maybe<OAuthClientsAccountGrant>;
15153
+ };
15154
+ export declare type OAuthClientsAccountGrantPageInfo = {
15155
+ __typename?: 'OAuthClientsAccountGrantPageInfo';
15156
+ hasNextPage: Scalars['Boolean'];
15157
+ hasPreviousPage: Scalars['Boolean'];
15158
+ startCursor?: Maybe<Scalars['String']>;
15159
+ endCursor?: Maybe<Scalars['String']>;
15160
+ };
15161
+ export declare type OAuthClientsQuery = {
15162
+ __typename?: 'OAuthClientsQuery';
15163
+ allAccountGrantsForUser?: Maybe<OAuthClientsAccountGrantConnection>;
15164
+ };
15165
+ export declare type OAuthClientsQueryAllAccountGrantsForUserArgs = {
15166
+ first?: Maybe<Scalars['Int']>;
15167
+ after?: Maybe<Scalars['String']>;
15168
+ };
15104
15169
  export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
15105
15170
  export declare type OpsgenieAlertCountByPriority = {
15106
15171
  __typename?: 'OpsgenieAlertCountByPriority';
@@ -16465,6 +16530,7 @@ export declare type Query = {
16465
16530
  ecosystem?: Maybe<EcosystemQuery>;
16466
16531
  appDeployment?: Maybe<AppDeployment>;
16467
16532
  jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
16533
+ oauthClients?: Maybe<OAuthClientsQuery>;
16468
16534
  helpCenter?: Maybe<HelpCenterQueryApi>;
16469
16535
  };
16470
16536
  export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {