@forge/cli-shared 2.6.1-next.1 → 2.6.1-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
|
@@ -16285,7 +16285,7 @@ export declare type ShepherdAlert = {
|
|
|
16285
16285
|
assignee?: Maybe<ShepherdUser>;
|
|
16286
16286
|
cloudId?: Maybe<Scalars['ID']>;
|
|
16287
16287
|
createdOn: Scalars['DateTime'];
|
|
16288
|
-
description?: Maybe<
|
|
16288
|
+
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
16289
16289
|
id: Scalars['ID'];
|
|
16290
16290
|
orgId: Scalars['ID'];
|
|
16291
16291
|
status: ShepherdAlertStatus;
|
|
@@ -16335,6 +16335,11 @@ export declare type ShepherdAppInfo = {
|
|
|
16335
16335
|
env: Scalars['String'];
|
|
16336
16336
|
loginUrl: Scalars['String'];
|
|
16337
16337
|
};
|
|
16338
|
+
export declare type ShepherdConfig = {
|
|
16339
|
+
__typename?: 'ShepherdConfig';
|
|
16340
|
+
descriptionTemplates?: Maybe<Array<Maybe<ShepherdDescriptionTemplate>>>;
|
|
16341
|
+
};
|
|
16342
|
+
export declare type ShepherdConfigResult = QueryError | ShepherdConfig;
|
|
16338
16343
|
export declare type ShepherdCreateAlertInput = {
|
|
16339
16344
|
assignee?: Maybe<Scalars['ID']>;
|
|
16340
16345
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -16394,6 +16399,11 @@ export declare type ShepherdDescriptionSection = {
|
|
|
16394
16399
|
text?: Maybe<Scalars['JSON']>;
|
|
16395
16400
|
type?: Maybe<ShepherdAlertDescriptionType>;
|
|
16396
16401
|
};
|
|
16402
|
+
export declare type ShepherdDescriptionTemplate = {
|
|
16403
|
+
__typename?: 'ShepherdDescriptionTemplate';
|
|
16404
|
+
text?: Maybe<Scalars['JSON']>;
|
|
16405
|
+
type?: Maybe<ShepherdAlertTemplateType>;
|
|
16406
|
+
};
|
|
16397
16407
|
export declare type ShepherdEmailConnection = {
|
|
16398
16408
|
__typename?: 'ShepherdEmailConnection';
|
|
16399
16409
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -16471,6 +16481,7 @@ export declare type ShepherdQuery = {
|
|
|
16471
16481
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
16472
16482
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
16473
16483
|
shepherdAppInfo: ShepherdAppInfo;
|
|
16484
|
+
shepherdConfig?: Maybe<ShepherdConfigResult>;
|
|
16474
16485
|
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
16475
16486
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
16476
16487
|
};
|