@forge/cli-shared 3.16.0-next.13 → 3.16.0-next.14
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
|
@@ -8183,6 +8183,7 @@ export declare type EcosystemQuery = {
|
|
|
8183
8183
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
8184
8184
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
8185
8185
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
8186
|
+
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
8186
8187
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
8187
8188
|
};
|
|
8188
8189
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -8227,6 +8228,9 @@ export declare type EcosystemQueryForgeMetricsArgs = {
|
|
|
8227
8228
|
export declare type EcosystemQueryForgeAuditLogsArgs = {
|
|
8228
8229
|
appId: Scalars['ID'];
|
|
8229
8230
|
};
|
|
8231
|
+
export declare type EcosystemQueryForgeContributorsArgs = {
|
|
8232
|
+
appAri: Scalars['ID'];
|
|
8233
|
+
};
|
|
8230
8234
|
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
8231
8235
|
appId: Scalars['ID'];
|
|
8232
8236
|
};
|
|
@@ -8567,6 +8571,21 @@ export declare type ForgeAuditLogsConnection = {
|
|
|
8567
8571
|
nodes: Array<ForgeAuditLog>;
|
|
8568
8572
|
pageInfo: PageInfo;
|
|
8569
8573
|
};
|
|
8574
|
+
export declare type ForgeAuditLogsContributorActivity = {
|
|
8575
|
+
__typename?: 'ForgeAuditLogsContributorActivity';
|
|
8576
|
+
accountId: Scalars['String'];
|
|
8577
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
8578
|
+
email?: Maybe<Scalars['String']>;
|
|
8579
|
+
isOwner?: Maybe<Scalars['Boolean']>;
|
|
8580
|
+
publicName: Scalars['String'];
|
|
8581
|
+
status: Scalars['String'];
|
|
8582
|
+
lastActive?: Maybe<Scalars['String']>;
|
|
8583
|
+
};
|
|
8584
|
+
export declare type ForgeAuditLogsContributorsActivityData = {
|
|
8585
|
+
__typename?: 'ForgeAuditLogsContributorsActivityData';
|
|
8586
|
+
contributors: Array<ForgeAuditLogsContributorActivity>;
|
|
8587
|
+
};
|
|
8588
|
+
export declare type ForgeAuditLogsContributorsActivityResult = ForgeAuditLogsContributorsActivityData | QueryError;
|
|
8570
8589
|
export declare type ForgeAuditLogsQuery = {
|
|
8571
8590
|
__typename?: 'ForgeAuditLogsQuery';
|
|
8572
8591
|
appId: Scalars['ID'];
|