@forge/cli-shared 3.1.1 → 3.2.0-next.1
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 +13 -0
- package/out/graphql/graphql-types.d.ts +150 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +11 -2
- package/out/ui/command-line-ui.d.ts +1 -0
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +6 -5
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.2.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [d6ec15d]
|
|
8
|
+
- @forge/manifest@4.3.1-next.0
|
|
9
|
+
|
|
10
|
+
## 3.2.0-next.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 7a27bcd: Display an error when prompting if not run in a terminal
|
|
15
|
+
|
|
3
16
|
## 3.1.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -955,7 +955,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
955
955
|
id: Scalars['ID'];
|
|
956
956
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
957
957
|
};
|
|
958
|
-
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | DevOpsPullRequestDetails;
|
|
958
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | DevOpsPullRequestDetails | JiraIssue;
|
|
959
959
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
960
960
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
961
961
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -1402,7 +1402,9 @@ export declare enum BuiltinPolarisIdeaField {
|
|
|
1402
1402
|
DeliveryStatus = "DELIVERY_STATUS",
|
|
1403
1403
|
IssueComments = "ISSUE_COMMENTS",
|
|
1404
1404
|
LinkedIssues = "LINKED_ISSUES",
|
|
1405
|
-
NumDataPoints = "NUM_DATA_POINTS"
|
|
1405
|
+
NumDataPoints = "NUM_DATA_POINTS",
|
|
1406
|
+
AtlasGoal = "ATLAS_GOAL",
|
|
1407
|
+
AtlasProject = "ATLAS_PROJECT"
|
|
1406
1408
|
}
|
|
1407
1409
|
export declare type BurndownChart = {
|
|
1408
1410
|
__typename?: 'BurndownChart';
|
|
@@ -1993,6 +1995,8 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1993
1995
|
starredComponents?: Maybe<CompassStarredComponentQueryResult>;
|
|
1994
1996
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1995
1997
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
1998
|
+
searchTeams?: Maybe<CompassSearchTeamsConnectionResult>;
|
|
1999
|
+
searchTeamLabels?: Maybe<CompassSearchTeamLabelsConnectionResult>;
|
|
1996
2000
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1997
2001
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1998
2002
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
@@ -2036,6 +2040,12 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
2036
2040
|
export declare type CompassCatalogQueryApiTeamDataArgs = {
|
|
2037
2041
|
input: CompassTeamDataInput;
|
|
2038
2042
|
};
|
|
2043
|
+
export declare type CompassCatalogQueryApiSearchTeamsArgs = {
|
|
2044
|
+
input: CompassSearchTeamsInput;
|
|
2045
|
+
};
|
|
2046
|
+
export declare type CompassCatalogQueryApiSearchTeamLabelsArgs = {
|
|
2047
|
+
input: CompassSearchTeamLabelsInput;
|
|
2048
|
+
};
|
|
2039
2049
|
export declare type CompassCatalogQueryApiMetricDefinitionsArgs = {
|
|
2040
2050
|
query: CompassMetricDefinitionsQuery;
|
|
2041
2051
|
};
|
|
@@ -3031,6 +3041,8 @@ export declare type CompassQueryFilter = {
|
|
|
3031
3041
|
in?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
3032
3042
|
gt?: Maybe<Scalars['String']>;
|
|
3033
3043
|
lt?: Maybe<Scalars['String']>;
|
|
3044
|
+
gte?: Maybe<Scalars['String']>;
|
|
3045
|
+
lte?: Maybe<Scalars['String']>;
|
|
3034
3046
|
};
|
|
3035
3047
|
export declare type CompassQuerySort = {
|
|
3036
3048
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3222,6 +3234,38 @@ export declare type CompassSearchComponentResult = {
|
|
|
3222
3234
|
component?: Maybe<CompassComponent>;
|
|
3223
3235
|
link: Scalars['URL'];
|
|
3224
3236
|
};
|
|
3237
|
+
export declare type CompassSearchTeamLabelsConnection = {
|
|
3238
|
+
__typename?: 'CompassSearchTeamLabelsConnection';
|
|
3239
|
+
edges?: Maybe<Array<CompassSearchTeamLabelsEdge>>;
|
|
3240
|
+
nodes?: Maybe<Array<CompassTeamLabel>>;
|
|
3241
|
+
pageInfo: PageInfo;
|
|
3242
|
+
};
|
|
3243
|
+
export declare type CompassSearchTeamLabelsConnectionResult = CompassSearchTeamLabelsConnection | QueryError;
|
|
3244
|
+
export declare type CompassSearchTeamLabelsEdge = {
|
|
3245
|
+
__typename?: 'CompassSearchTeamLabelsEdge';
|
|
3246
|
+
cursor: Scalars['String'];
|
|
3247
|
+
node?: Maybe<CompassTeamLabel>;
|
|
3248
|
+
};
|
|
3249
|
+
export declare type CompassSearchTeamLabelsInput = {
|
|
3250
|
+
cloudId: Scalars['ID'];
|
|
3251
|
+
};
|
|
3252
|
+
export declare type CompassSearchTeamsConnection = {
|
|
3253
|
+
__typename?: 'CompassSearchTeamsConnection';
|
|
3254
|
+
edges?: Maybe<Array<CompassSearchTeamsEdge>>;
|
|
3255
|
+
nodes?: Maybe<Array<CompassTeamData>>;
|
|
3256
|
+
pageInfo: PageInfo;
|
|
3257
|
+
};
|
|
3258
|
+
export declare type CompassSearchTeamsConnectionResult = CompassSearchTeamsConnection | QueryError;
|
|
3259
|
+
export declare type CompassSearchTeamsEdge = {
|
|
3260
|
+
__typename?: 'CompassSearchTeamsEdge';
|
|
3261
|
+
cursor: Scalars['String'];
|
|
3262
|
+
node?: Maybe<CompassTeamData>;
|
|
3263
|
+
};
|
|
3264
|
+
export declare type CompassSearchTeamsInput = {
|
|
3265
|
+
cloudId: Scalars['ID'];
|
|
3266
|
+
term?: Maybe<Scalars['String']>;
|
|
3267
|
+
labels?: Maybe<Array<Scalars['String']>>;
|
|
3268
|
+
};
|
|
3225
3269
|
export declare type CompassStarredComponentConnection = {
|
|
3226
3270
|
__typename?: 'CompassStarredComponentConnection';
|
|
3227
3271
|
nodes?: Maybe<Array<CompassComponent>>;
|
|
@@ -3282,6 +3326,7 @@ export declare type CompassTeamCheckinsInput = {
|
|
|
3282
3326
|
export declare type CompassTeamData = {
|
|
3283
3327
|
__typename?: 'CompassTeamData';
|
|
3284
3328
|
teamId?: Maybe<Scalars['ID']>;
|
|
3329
|
+
team?: Maybe<Team>;
|
|
3285
3330
|
labels?: Maybe<Array<CompassTeamLabel>>;
|
|
3286
3331
|
};
|
|
3287
3332
|
export declare type CompassTeamDataInput = {
|
|
@@ -4518,6 +4563,10 @@ export declare type ContentPlatformContextTheme = {
|
|
|
4518
4563
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
4519
4564
|
url?: Maybe<Scalars['String']>;
|
|
4520
4565
|
};
|
|
4566
|
+
export declare type ContentPlatformDateRangeFilter = {
|
|
4567
|
+
before: Scalars['DateTime'];
|
|
4568
|
+
after: Scalars['DateTime'];
|
|
4569
|
+
};
|
|
4521
4570
|
export declare type ContentPlatformImageAsset = {
|
|
4522
4571
|
__typename?: 'ContentPlatformImageAsset';
|
|
4523
4572
|
title: Scalars['String'];
|
|
@@ -4615,6 +4664,7 @@ export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
|
4615
4664
|
productFeatureFlags?: Maybe<Scalars['JSON']>;
|
|
4616
4665
|
releaseNoteFlagOffValues?: Maybe<Array<Scalars['String']>>;
|
|
4617
4666
|
publishStatus?: Maybe<Array<Scalars['String']>>;
|
|
4667
|
+
updatedAt?: Maybe<ContentPlatformDateRangeFilter>;
|
|
4618
4668
|
};
|
|
4619
4669
|
export declare type ContentPlatformReleaseNotesConnection = {
|
|
4620
4670
|
__typename?: 'ContentPlatformReleaseNotesConnection';
|
|
@@ -6711,6 +6761,7 @@ export declare type Extension = {
|
|
|
6711
6761
|
appOwner?: Maybe<User>;
|
|
6712
6762
|
appVersion?: Maybe<Scalars['String']>;
|
|
6713
6763
|
properties: Scalars['JSON'];
|
|
6764
|
+
oauthClientId: Scalars['ID'];
|
|
6714
6765
|
scopes: Array<Scalars['String']>;
|
|
6715
6766
|
principal?: Maybe<AppPrincipal>;
|
|
6716
6767
|
migrationKey?: Maybe<Scalars['String']>;
|
|
@@ -9798,7 +9849,7 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
9798
9849
|
before?: Maybe<Scalars['String']>;
|
|
9799
9850
|
after?: Maybe<Scalars['String']>;
|
|
9800
9851
|
};
|
|
9801
|
-
export declare type JiraIssueSearchError = JiraInvalidJqlError | JiraInvalidSyntaxError;
|
|
9852
|
+
export declare type JiraIssueSearchError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
9802
9853
|
export declare type JiraIssueSearchFieldSet = {
|
|
9803
9854
|
__typename?: 'JiraIssueSearchFieldSet';
|
|
9804
9855
|
fieldSetId?: Maybe<Scalars['String']>;
|
|
@@ -11790,6 +11841,23 @@ export declare type JiraReleaseNotesConfiguration = {
|
|
|
11790
11841
|
issueTypeIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
11791
11842
|
issueKeyConfig?: Maybe<JiraReleaseNotesIssueKeyConfig>;
|
|
11792
11843
|
};
|
|
11844
|
+
export declare type JiraReleaseNotesInConfluenceAvailableSite = {
|
|
11845
|
+
__typename?: 'JiraReleaseNotesInConfluenceAvailableSite';
|
|
11846
|
+
siteId: Scalars['ID'];
|
|
11847
|
+
name?: Maybe<Scalars['String']>;
|
|
11848
|
+
url?: Maybe<Scalars['URL']>;
|
|
11849
|
+
isSystem?: Maybe<Scalars['Boolean']>;
|
|
11850
|
+
};
|
|
11851
|
+
export declare type JiraReleaseNotesInConfluenceAvailableSitesConnection = {
|
|
11852
|
+
__typename?: 'JiraReleaseNotesInConfluenceAvailableSitesConnection';
|
|
11853
|
+
pageInfo: PageInfo;
|
|
11854
|
+
edges?: Maybe<Array<Maybe<JiraReleaseNotesInConfluenceAvailableSitesEdge>>>;
|
|
11855
|
+
};
|
|
11856
|
+
export declare type JiraReleaseNotesInConfluenceAvailableSitesEdge = {
|
|
11857
|
+
__typename?: 'JiraReleaseNotesInConfluenceAvailableSitesEdge';
|
|
11858
|
+
cursor?: Maybe<Scalars['String']>;
|
|
11859
|
+
node?: Maybe<JiraReleaseNotesInConfluenceAvailableSite>;
|
|
11860
|
+
};
|
|
11793
11861
|
export declare enum JiraReleaseNotesIssueKeyConfig {
|
|
11794
11862
|
None = "NONE",
|
|
11795
11863
|
Unlinked = "UNLINKED",
|
|
@@ -12065,6 +12133,10 @@ export declare type JiraSecurityLevelFieldSecurityLevelsArgs = {
|
|
|
12065
12133
|
last?: Maybe<Scalars['Int']>;
|
|
12066
12134
|
before?: Maybe<Scalars['String']>;
|
|
12067
12135
|
};
|
|
12136
|
+
export declare type JiraServerError = {
|
|
12137
|
+
__typename?: 'JiraServerError';
|
|
12138
|
+
message?: Maybe<Scalars['String']>;
|
|
12139
|
+
};
|
|
12068
12140
|
export declare type JiraServiceManagementActiveApproval = Node & {
|
|
12069
12141
|
__typename?: 'JiraServiceManagementActiveApproval';
|
|
12070
12142
|
id: Scalars['ID'];
|
|
@@ -13159,14 +13231,17 @@ export declare type JiraVersion = Node & {
|
|
|
13159
13231
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
13160
13232
|
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
13161
13233
|
issues?: Maybe<JiraIssueConnection>;
|
|
13234
|
+
project?: Maybe<JiraProject>;
|
|
13162
13235
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
13163
13236
|
suggestedRelatedWorkCategories?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13164
13237
|
canEdit?: Maybe<Scalars['Boolean']>;
|
|
13165
13238
|
canAddAndRemoveIssues?: Maybe<Scalars['Boolean']>;
|
|
13166
13239
|
releaseNotesOptionsIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
13167
13240
|
releaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
13241
|
+
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
13168
13242
|
releaseNotes?: Maybe<JiraAdf>;
|
|
13169
13243
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
13244
|
+
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
13170
13245
|
};
|
|
13171
13246
|
export declare type JiraVersionIssuesArgs = {
|
|
13172
13247
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13194,9 +13269,23 @@ export declare type JiraVersionReleaseNotesOptionsIssueFieldsArgs = {
|
|
|
13194
13269
|
before?: Maybe<Scalars['String']>;
|
|
13195
13270
|
searchString?: Maybe<Scalars['String']>;
|
|
13196
13271
|
};
|
|
13272
|
+
export declare type JiraVersionNativeReleaseNotesOptionsIssueFieldsArgs = {
|
|
13273
|
+
first?: Maybe<Scalars['Int']>;
|
|
13274
|
+
after?: Maybe<Scalars['String']>;
|
|
13275
|
+
last?: Maybe<Scalars['Int']>;
|
|
13276
|
+
before?: Maybe<Scalars['String']>;
|
|
13277
|
+
searchString?: Maybe<Scalars['String']>;
|
|
13278
|
+
};
|
|
13197
13279
|
export declare type JiraVersionReleaseNotesArgs = {
|
|
13198
13280
|
releaseNoteConfiguration?: Maybe<JiraVersionReleaseNotesConfigurationInput>;
|
|
13199
13281
|
};
|
|
13282
|
+
export declare type JiraVersionAvailableSitesArgs = {
|
|
13283
|
+
first?: Maybe<Scalars['Int']>;
|
|
13284
|
+
after?: Maybe<Scalars['String']>;
|
|
13285
|
+
last?: Maybe<Scalars['Int']>;
|
|
13286
|
+
before?: Maybe<Scalars['String']>;
|
|
13287
|
+
searchString?: Maybe<Scalars['String']>;
|
|
13288
|
+
};
|
|
13200
13289
|
export declare type JiraVersionConnectAddonIframeData = {
|
|
13201
13290
|
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
13202
13291
|
appKey?: Maybe<Scalars['String']>;
|
|
@@ -13836,6 +13925,8 @@ export declare type MercuryCreateStrategyInput = {
|
|
|
13836
13925
|
description?: Maybe<Scalars['String']>;
|
|
13837
13926
|
createdBy: Scalars['String'];
|
|
13838
13927
|
goals?: Maybe<Array<Maybe<MercuryLinkGoalInput>>>;
|
|
13928
|
+
contentId?: Maybe<Scalars['String']>;
|
|
13929
|
+
spaceKey?: Maybe<Scalars['String']>;
|
|
13839
13930
|
};
|
|
13840
13931
|
export declare type MercuryDeleteStrategyInput = {
|
|
13841
13932
|
strategyId: Scalars['ID'];
|
|
@@ -13889,6 +13980,8 @@ export declare type MercuryStrategy = Node & {
|
|
|
13889
13980
|
description?: Maybe<Scalars['String']>;
|
|
13890
13981
|
createdBy: Scalars['String'];
|
|
13891
13982
|
goals?: Maybe<Array<Maybe<MercuryAtlasGoal>>>;
|
|
13983
|
+
contentId?: Maybe<Scalars['String']>;
|
|
13984
|
+
spaceKey?: Maybe<Scalars['String']>;
|
|
13892
13985
|
};
|
|
13893
13986
|
export declare type MercuryStrategyConnection = {
|
|
13894
13987
|
__typename?: 'MercuryStrategyConnection';
|
|
@@ -13921,6 +14014,8 @@ export declare type MercuryUpdateStrategyInput = {
|
|
|
13921
14014
|
name?: Maybe<Scalars['String']>;
|
|
13922
14015
|
description?: Maybe<Scalars['String']>;
|
|
13923
14016
|
createdBy?: Maybe<Scalars['String']>;
|
|
14017
|
+
contentId?: Maybe<Scalars['String']>;
|
|
14018
|
+
spaceKey?: Maybe<Scalars['String']>;
|
|
13924
14019
|
};
|
|
13925
14020
|
export declare type MigrationKeys = {
|
|
13926
14021
|
__typename?: 'MigrationKeys';
|
|
@@ -15034,6 +15129,7 @@ export declare type PolarisIdeaExternalReferenceField = PolarisIdeaField & {
|
|
|
15034
15129
|
description?: Maybe<Scalars['String']>;
|
|
15035
15130
|
emoji?: Maybe<Scalars['String']>;
|
|
15036
15131
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
15132
|
+
configuration?: Maybe<Scalars['JSON']>;
|
|
15037
15133
|
};
|
|
15038
15134
|
export declare type PolarisIdeaField = {
|
|
15039
15135
|
id: Scalars['ID'];
|
|
@@ -17569,6 +17665,25 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
17569
17665
|
success: Scalars['Boolean'];
|
|
17570
17666
|
message: Scalars['String'];
|
|
17571
17667
|
};
|
|
17668
|
+
export declare enum ShepherdActionType {
|
|
17669
|
+
Create = "CREATE",
|
|
17670
|
+
Delete = "DELETE",
|
|
17671
|
+
Read = "READ",
|
|
17672
|
+
Update = "UPDATE"
|
|
17673
|
+
}
|
|
17674
|
+
export declare type ShepherdActivityHighlight = {
|
|
17675
|
+
__typename?: 'ShepherdActivityHighlight';
|
|
17676
|
+
action?: Maybe<ShepherdActionType>;
|
|
17677
|
+
actor?: Maybe<ShepherdUser>;
|
|
17678
|
+
subject?: Maybe<ShepherdSubject>;
|
|
17679
|
+
time?: Maybe<ShepherdTime>;
|
|
17680
|
+
};
|
|
17681
|
+
export declare type ShepherdActivityHighlightInput = {
|
|
17682
|
+
action?: Maybe<ShepherdActionType>;
|
|
17683
|
+
actor?: Maybe<Scalars['ID']>;
|
|
17684
|
+
subject?: Maybe<ShepherdSubjectInput>;
|
|
17685
|
+
time: ShepherdTimeInput;
|
|
17686
|
+
};
|
|
17572
17687
|
export declare type ShepherdAlert = {
|
|
17573
17688
|
__typename?: 'ShepherdAlert';
|
|
17574
17689
|
assignee?: Maybe<ShepherdUser>;
|
|
@@ -17578,6 +17693,7 @@ export declare type ShepherdAlert = {
|
|
|
17578
17693
|
id: Scalars['ID'];
|
|
17579
17694
|
orgId: Scalars['ID'];
|
|
17580
17695
|
status: ShepherdAlertStatus;
|
|
17696
|
+
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
17581
17697
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
17582
17698
|
title: Scalars['String'];
|
|
17583
17699
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
@@ -17603,6 +17719,10 @@ export declare enum ShepherdAlertStatus {
|
|
|
17603
17719
|
Triaged = "TRIAGED",
|
|
17604
17720
|
Untriaged = "UNTRIAGED"
|
|
17605
17721
|
}
|
|
17722
|
+
export declare type ShepherdAlertSupportingData = {
|
|
17723
|
+
__typename?: 'ShepherdAlertSupportingData';
|
|
17724
|
+
highlight: ShepherdHighlight;
|
|
17725
|
+
};
|
|
17606
17726
|
export declare enum ShepherdAlertTemplateType {
|
|
17607
17727
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
17608
17728
|
AdminPasswordReset = "ADMIN_PASSWORD_RESET",
|
|
@@ -17611,7 +17731,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
17611
17731
|
CreatedPolicy = "CREATED_POLICY",
|
|
17612
17732
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
17613
17733
|
CreatedTunnel = "CREATED_TUNNEL",
|
|
17614
|
-
|
|
17734
|
+
CreatedUserProvisioning = "CREATED_USER_PROVISIONING",
|
|
17615
17735
|
Default = "DEFAULT",
|
|
17616
17736
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
17617
17737
|
DeletedDomain = "DELETED_DOMAIN",
|
|
@@ -17648,6 +17768,7 @@ export declare type ShepherdConfigResult = QueryError | ShepherdConfig;
|
|
|
17648
17768
|
export declare type ShepherdCreateAlertInput = {
|
|
17649
17769
|
assignee?: Maybe<Scalars['ID']>;
|
|
17650
17770
|
cloudId?: Maybe<Scalars['ID']>;
|
|
17771
|
+
highlight?: Maybe<ShepherdHighlightInput>;
|
|
17651
17772
|
orgId: Scalars['ID'];
|
|
17652
17773
|
status?: Maybe<ShepherdAlertStatus>;
|
|
17653
17774
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
@@ -17741,6 +17862,10 @@ export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
17741
17862
|
statusCode?: Maybe<Scalars['Int']>;
|
|
17742
17863
|
type?: Maybe<ShepherdQueryErrorType>;
|
|
17743
17864
|
};
|
|
17865
|
+
export declare type ShepherdHighlight = ShepherdActivityHighlight;
|
|
17866
|
+
export declare type ShepherdHighlightInput = {
|
|
17867
|
+
activityHighlight?: Maybe<ShepherdActivityHighlightInput>;
|
|
17868
|
+
};
|
|
17744
17869
|
export declare type ShepherdMutation = {
|
|
17745
17870
|
__typename?: 'ShepherdMutation';
|
|
17746
17871
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
@@ -17831,6 +17956,17 @@ export declare type ShepherdSlackSubscription = ShepherdSubscription & {
|
|
|
17831
17956
|
updatedBy?: Maybe<Scalars['String']>;
|
|
17832
17957
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
17833
17958
|
};
|
|
17959
|
+
export declare type ShepherdSubject = {
|
|
17960
|
+
__typename?: 'ShepherdSubject';
|
|
17961
|
+
ari?: Maybe<Scalars['String']>;
|
|
17962
|
+
ati?: Maybe<Scalars['String']>;
|
|
17963
|
+
containerAri: Scalars['String'];
|
|
17964
|
+
};
|
|
17965
|
+
export declare type ShepherdSubjectInput = {
|
|
17966
|
+
ari?: Maybe<Scalars['String']>;
|
|
17967
|
+
ati?: Maybe<Scalars['String']>;
|
|
17968
|
+
containerAri: Scalars['String'];
|
|
17969
|
+
};
|
|
17834
17970
|
export declare type ShepherdSubscription = {
|
|
17835
17971
|
createdBy: Scalars['String'];
|
|
17836
17972
|
createdOn: Scalars['DateTime'];
|
|
@@ -17862,6 +17998,15 @@ export declare type ShepherdTestSubscriptionPayload = Payload & {
|
|
|
17862
17998
|
node?: Maybe<ShepherdSubscription>;
|
|
17863
17999
|
success: Scalars['Boolean'];
|
|
17864
18000
|
};
|
|
18001
|
+
export declare type ShepherdTime = {
|
|
18002
|
+
__typename?: 'ShepherdTime';
|
|
18003
|
+
end?: Maybe<Scalars['DateTime']>;
|
|
18004
|
+
start: Scalars['DateTime'];
|
|
18005
|
+
};
|
|
18006
|
+
export declare type ShepherdTimeInput = {
|
|
18007
|
+
end?: Maybe<Scalars['DateTime']>;
|
|
18008
|
+
start: Scalars['DateTime'];
|
|
18009
|
+
};
|
|
17865
18010
|
export declare type ShepherdUpdateAlertInput = {
|
|
17866
18011
|
assignee?: Maybe<Scalars['ID']>;
|
|
17867
18012
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -17911,6 +18056,7 @@ export declare type ShepherdUpdateWebhookInput = {
|
|
|
17911
18056
|
};
|
|
17912
18057
|
export declare type ShepherdUser = {
|
|
17913
18058
|
__typename?: 'ShepherdUser';
|
|
18059
|
+
aaid: Scalars['ID'];
|
|
17914
18060
|
user?: Maybe<User>;
|
|
17915
18061
|
};
|
|
17916
18062
|
export declare type ShepherdWebhookConnection = {
|