@forge/cli-shared 3.2.3-next.1 → 3.2.3-next.2
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
|
@@ -15101,6 +15101,37 @@ export declare type NewCardParent = {
|
|
|
15101
15101
|
export declare type Node = {
|
|
15102
15102
|
id: Scalars['ID'];
|
|
15103
15103
|
};
|
|
15104
|
+
export declare type OAuthClientsAccountGrant = {
|
|
15105
|
+
__typename?: 'OAuthClientsAccountGrant';
|
|
15106
|
+
clientId?: Maybe<Scalars['String']>;
|
|
15107
|
+
scopes?: Maybe<Array<Scalars['String']>>;
|
|
15108
|
+
};
|
|
15109
|
+
export declare type OAuthClientsAccountGrantConnection = {
|
|
15110
|
+
__typename?: 'OAuthClientsAccountGrantConnection';
|
|
15111
|
+
edges?: Maybe<Array<Maybe<OAuthClientsAccountGrantEdge>>>;
|
|
15112
|
+
nodes?: Maybe<Array<Maybe<OAuthClientsAccountGrant>>>;
|
|
15113
|
+
pageInfo: OAuthClientsAccountGrantPageInfo;
|
|
15114
|
+
};
|
|
15115
|
+
export declare type OAuthClientsAccountGrantEdge = {
|
|
15116
|
+
__typename?: 'OAuthClientsAccountGrantEdge';
|
|
15117
|
+
cursor?: Maybe<Scalars['String']>;
|
|
15118
|
+
node?: Maybe<OAuthClientsAccountGrant>;
|
|
15119
|
+
};
|
|
15120
|
+
export declare type OAuthClientsAccountGrantPageInfo = {
|
|
15121
|
+
__typename?: 'OAuthClientsAccountGrantPageInfo';
|
|
15122
|
+
hasNextPage: Scalars['Boolean'];
|
|
15123
|
+
hasPreviousPage: Scalars['Boolean'];
|
|
15124
|
+
startCursor?: Maybe<Scalars['String']>;
|
|
15125
|
+
endCursor?: Maybe<Scalars['String']>;
|
|
15126
|
+
};
|
|
15127
|
+
export declare type OAuthClientsQuery = {
|
|
15128
|
+
__typename?: 'OAuthClientsQuery';
|
|
15129
|
+
allAccountGrantsForUser?: Maybe<OAuthClientsAccountGrantConnection>;
|
|
15130
|
+
};
|
|
15131
|
+
export declare type OAuthClientsQueryAllAccountGrantsForUserArgs = {
|
|
15132
|
+
first?: Maybe<Scalars['Int']>;
|
|
15133
|
+
after?: Maybe<Scalars['String']>;
|
|
15134
|
+
};
|
|
15104
15135
|
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
|
|
15105
15136
|
export declare type OpsgenieAlertCountByPriority = {
|
|
15106
15137
|
__typename?: 'OpsgenieAlertCountByPriority';
|
|
@@ -16465,6 +16496,7 @@ export declare type Query = {
|
|
|
16465
16496
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
16466
16497
|
appDeployment?: Maybe<AppDeployment>;
|
|
16467
16498
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
16499
|
+
oauthClients?: Maybe<OAuthClientsQuery>;
|
|
16468
16500
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
16469
16501
|
};
|
|
16470
16502
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|