@forge/cli-shared 3.2.0-next.0 → 3.2.0-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 +13 -0
- package/out/graphql/graphql-types.d.ts +164 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +11 -2
- package/out/shared/error-handling.d.ts +1 -1
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +6 -3
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.2.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 94c798f: Exit with error when a Forge command is not recognised
|
|
8
|
+
|
|
9
|
+
## 3.2.0-next.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [d6ec15d]
|
|
14
|
+
- @forge/manifest@4.3.1-next.0
|
|
15
|
+
|
|
3
16
|
## 3.2.0-next.0
|
|
4
17
|
|
|
5
18
|
### Minor 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']>;
|
|
@@ -8576,6 +8627,23 @@ export declare type JiraCreateCustomFilterPayload = Payload & {
|
|
|
8576
8627
|
errors?: Maybe<Array<MutationError>>;
|
|
8577
8628
|
filter?: Maybe<JiraCustomFilter>;
|
|
8578
8629
|
};
|
|
8630
|
+
export declare type JiraCreateReleaseNoteConfluencePageInput = {
|
|
8631
|
+
versionId: Scalars['ID'];
|
|
8632
|
+
appLinkId?: Maybe<Scalars['ID']>;
|
|
8633
|
+
spaceId: Scalars['ID'];
|
|
8634
|
+
parentPageId: Scalars['ID'];
|
|
8635
|
+
issueFieldIds: Array<Scalars['ID']>;
|
|
8636
|
+
issueTypeIds: Array<Scalars['ID']>;
|
|
8637
|
+
};
|
|
8638
|
+
export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
8639
|
+
__typename?: 'JiraCreateReleaseNoteConfluencePagePayload';
|
|
8640
|
+
success: Scalars['Boolean'];
|
|
8641
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8642
|
+
releaseNotePageViewUrl?: Maybe<Scalars['URL']>;
|
|
8643
|
+
releaseNotePageEditUrl?: Maybe<Scalars['URL']>;
|
|
8644
|
+
addToRelatedWorkSuccess?: Maybe<Scalars['Boolean']>;
|
|
8645
|
+
version?: Maybe<JiraVersion>;
|
|
8646
|
+
};
|
|
8579
8647
|
export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
8580
8648
|
__typename?: 'JiraCustomFilter';
|
|
8581
8649
|
id: Scalars['ID'];
|
|
@@ -9798,7 +9866,7 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
9798
9866
|
before?: Maybe<Scalars['String']>;
|
|
9799
9867
|
after?: Maybe<Scalars['String']>;
|
|
9800
9868
|
};
|
|
9801
|
-
export declare type JiraIssueSearchError = JiraInvalidJqlError | JiraInvalidSyntaxError;
|
|
9869
|
+
export declare type JiraIssueSearchError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
9802
9870
|
export declare type JiraIssueSearchFieldSet = {
|
|
9803
9871
|
__typename?: 'JiraIssueSearchFieldSet';
|
|
9804
9872
|
fieldSetId?: Maybe<Scalars['String']>;
|
|
@@ -10566,6 +10634,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
10566
10634
|
export declare type JiraMutation = {
|
|
10567
10635
|
__typename?: 'JiraMutation';
|
|
10568
10636
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
10637
|
+
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
10569
10638
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
10570
10639
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
10571
10640
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -10591,6 +10660,9 @@ export declare type JiraMutation = {
|
|
|
10591
10660
|
export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
|
|
10592
10661
|
input: JiraUpdateReleaseNotesConfigurationInput;
|
|
10593
10662
|
};
|
|
10663
|
+
export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
10664
|
+
input: JiraCreateReleaseNoteConfluencePageInput;
|
|
10665
|
+
};
|
|
10594
10666
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
10595
10667
|
cloudId: Scalars['ID'];
|
|
10596
10668
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -11790,6 +11862,23 @@ export declare type JiraReleaseNotesConfiguration = {
|
|
|
11790
11862
|
issueTypeIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
11791
11863
|
issueKeyConfig?: Maybe<JiraReleaseNotesIssueKeyConfig>;
|
|
11792
11864
|
};
|
|
11865
|
+
export declare type JiraReleaseNotesInConfluenceAvailableSite = {
|
|
11866
|
+
__typename?: 'JiraReleaseNotesInConfluenceAvailableSite';
|
|
11867
|
+
siteId: Scalars['ID'];
|
|
11868
|
+
name?: Maybe<Scalars['String']>;
|
|
11869
|
+
url?: Maybe<Scalars['URL']>;
|
|
11870
|
+
isSystem?: Maybe<Scalars['Boolean']>;
|
|
11871
|
+
};
|
|
11872
|
+
export declare type JiraReleaseNotesInConfluenceAvailableSitesConnection = {
|
|
11873
|
+
__typename?: 'JiraReleaseNotesInConfluenceAvailableSitesConnection';
|
|
11874
|
+
pageInfo: PageInfo;
|
|
11875
|
+
edges?: Maybe<Array<Maybe<JiraReleaseNotesInConfluenceAvailableSitesEdge>>>;
|
|
11876
|
+
};
|
|
11877
|
+
export declare type JiraReleaseNotesInConfluenceAvailableSitesEdge = {
|
|
11878
|
+
__typename?: 'JiraReleaseNotesInConfluenceAvailableSitesEdge';
|
|
11879
|
+
cursor?: Maybe<Scalars['String']>;
|
|
11880
|
+
node?: Maybe<JiraReleaseNotesInConfluenceAvailableSite>;
|
|
11881
|
+
};
|
|
11793
11882
|
export declare enum JiraReleaseNotesIssueKeyConfig {
|
|
11794
11883
|
None = "NONE",
|
|
11795
11884
|
Unlinked = "UNLINKED",
|
|
@@ -12065,6 +12154,10 @@ export declare type JiraSecurityLevelFieldSecurityLevelsArgs = {
|
|
|
12065
12154
|
last?: Maybe<Scalars['Int']>;
|
|
12066
12155
|
before?: Maybe<Scalars['String']>;
|
|
12067
12156
|
};
|
|
12157
|
+
export declare type JiraServerError = {
|
|
12158
|
+
__typename?: 'JiraServerError';
|
|
12159
|
+
message?: Maybe<Scalars['String']>;
|
|
12160
|
+
};
|
|
12068
12161
|
export declare type JiraServiceManagementActiveApproval = Node & {
|
|
12069
12162
|
__typename?: 'JiraServiceManagementActiveApproval';
|
|
12070
12163
|
id: Scalars['ID'];
|
|
@@ -13159,6 +13252,7 @@ export declare type JiraVersion = Node & {
|
|
|
13159
13252
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
13160
13253
|
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
13161
13254
|
issues?: Maybe<JiraIssueConnection>;
|
|
13255
|
+
project?: Maybe<JiraProject>;
|
|
13162
13256
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
13163
13257
|
suggestedRelatedWorkCategories?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13164
13258
|
canEdit?: Maybe<Scalars['Boolean']>;
|
|
@@ -13168,6 +13262,7 @@ export declare type JiraVersion = Node & {
|
|
|
13168
13262
|
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
13169
13263
|
releaseNotes?: Maybe<JiraAdf>;
|
|
13170
13264
|
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
13265
|
+
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
13171
13266
|
};
|
|
13172
13267
|
export declare type JiraVersionIssuesArgs = {
|
|
13173
13268
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13205,6 +13300,13 @@ export declare type JiraVersionNativeReleaseNotesOptionsIssueFieldsArgs = {
|
|
|
13205
13300
|
export declare type JiraVersionReleaseNotesArgs = {
|
|
13206
13301
|
releaseNoteConfiguration?: Maybe<JiraVersionReleaseNotesConfigurationInput>;
|
|
13207
13302
|
};
|
|
13303
|
+
export declare type JiraVersionAvailableSitesArgs = {
|
|
13304
|
+
first?: Maybe<Scalars['Int']>;
|
|
13305
|
+
after?: Maybe<Scalars['String']>;
|
|
13306
|
+
last?: Maybe<Scalars['Int']>;
|
|
13307
|
+
before?: Maybe<Scalars['String']>;
|
|
13308
|
+
searchString?: Maybe<Scalars['String']>;
|
|
13309
|
+
};
|
|
13208
13310
|
export declare type JiraVersionConnectAddonIframeData = {
|
|
13209
13311
|
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
13210
13312
|
appKey?: Maybe<Scalars['String']>;
|
|
@@ -13844,6 +13946,8 @@ export declare type MercuryCreateStrategyInput = {
|
|
|
13844
13946
|
description?: Maybe<Scalars['String']>;
|
|
13845
13947
|
createdBy: Scalars['String'];
|
|
13846
13948
|
goals?: Maybe<Array<Maybe<MercuryLinkGoalInput>>>;
|
|
13949
|
+
contentId?: Maybe<Scalars['String']>;
|
|
13950
|
+
spaceKey?: Maybe<Scalars['String']>;
|
|
13847
13951
|
};
|
|
13848
13952
|
export declare type MercuryDeleteStrategyInput = {
|
|
13849
13953
|
strategyId: Scalars['ID'];
|
|
@@ -13897,6 +14001,8 @@ export declare type MercuryStrategy = Node & {
|
|
|
13897
14001
|
description?: Maybe<Scalars['String']>;
|
|
13898
14002
|
createdBy: Scalars['String'];
|
|
13899
14003
|
goals?: Maybe<Array<Maybe<MercuryAtlasGoal>>>;
|
|
14004
|
+
contentId?: Maybe<Scalars['String']>;
|
|
14005
|
+
spaceKey?: Maybe<Scalars['String']>;
|
|
13900
14006
|
};
|
|
13901
14007
|
export declare type MercuryStrategyConnection = {
|
|
13902
14008
|
__typename?: 'MercuryStrategyConnection';
|
|
@@ -13929,6 +14035,8 @@ export declare type MercuryUpdateStrategyInput = {
|
|
|
13929
14035
|
name?: Maybe<Scalars['String']>;
|
|
13930
14036
|
description?: Maybe<Scalars['String']>;
|
|
13931
14037
|
createdBy?: Maybe<Scalars['String']>;
|
|
14038
|
+
contentId?: Maybe<Scalars['String']>;
|
|
14039
|
+
spaceKey?: Maybe<Scalars['String']>;
|
|
13932
14040
|
};
|
|
13933
14041
|
export declare type MigrationKeys = {
|
|
13934
14042
|
__typename?: 'MigrationKeys';
|
|
@@ -15042,6 +15150,7 @@ export declare type PolarisIdeaExternalReferenceField = PolarisIdeaField & {
|
|
|
15042
15150
|
description?: Maybe<Scalars['String']>;
|
|
15043
15151
|
emoji?: Maybe<Scalars['String']>;
|
|
15044
15152
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
15153
|
+
configuration?: Maybe<Scalars['JSON']>;
|
|
15045
15154
|
};
|
|
15046
15155
|
export declare type PolarisIdeaField = {
|
|
15047
15156
|
id: Scalars['ID'];
|
|
@@ -17577,6 +17686,25 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
17577
17686
|
success: Scalars['Boolean'];
|
|
17578
17687
|
message: Scalars['String'];
|
|
17579
17688
|
};
|
|
17689
|
+
export declare enum ShepherdActionType {
|
|
17690
|
+
Create = "CREATE",
|
|
17691
|
+
Delete = "DELETE",
|
|
17692
|
+
Read = "READ",
|
|
17693
|
+
Update = "UPDATE"
|
|
17694
|
+
}
|
|
17695
|
+
export declare type ShepherdActivityHighlight = {
|
|
17696
|
+
__typename?: 'ShepherdActivityHighlight';
|
|
17697
|
+
action?: Maybe<ShepherdActionType>;
|
|
17698
|
+
actor?: Maybe<ShepherdUser>;
|
|
17699
|
+
subject?: Maybe<ShepherdSubject>;
|
|
17700
|
+
time?: Maybe<ShepherdTime>;
|
|
17701
|
+
};
|
|
17702
|
+
export declare type ShepherdActivityHighlightInput = {
|
|
17703
|
+
action?: Maybe<ShepherdActionType>;
|
|
17704
|
+
actor?: Maybe<Scalars['ID']>;
|
|
17705
|
+
subject?: Maybe<ShepherdSubjectInput>;
|
|
17706
|
+
time: ShepherdTimeInput;
|
|
17707
|
+
};
|
|
17580
17708
|
export declare type ShepherdAlert = {
|
|
17581
17709
|
__typename?: 'ShepherdAlert';
|
|
17582
17710
|
assignee?: Maybe<ShepherdUser>;
|
|
@@ -17586,6 +17714,7 @@ export declare type ShepherdAlert = {
|
|
|
17586
17714
|
id: Scalars['ID'];
|
|
17587
17715
|
orgId: Scalars['ID'];
|
|
17588
17716
|
status: ShepherdAlertStatus;
|
|
17717
|
+
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
17589
17718
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
17590
17719
|
title: Scalars['String'];
|
|
17591
17720
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
@@ -17611,6 +17740,10 @@ export declare enum ShepherdAlertStatus {
|
|
|
17611
17740
|
Triaged = "TRIAGED",
|
|
17612
17741
|
Untriaged = "UNTRIAGED"
|
|
17613
17742
|
}
|
|
17743
|
+
export declare type ShepherdAlertSupportingData = {
|
|
17744
|
+
__typename?: 'ShepherdAlertSupportingData';
|
|
17745
|
+
highlight: ShepherdHighlight;
|
|
17746
|
+
};
|
|
17614
17747
|
export declare enum ShepherdAlertTemplateType {
|
|
17615
17748
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
17616
17749
|
AdminPasswordReset = "ADMIN_PASSWORD_RESET",
|
|
@@ -17619,7 +17752,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
17619
17752
|
CreatedPolicy = "CREATED_POLICY",
|
|
17620
17753
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
17621
17754
|
CreatedTunnel = "CREATED_TUNNEL",
|
|
17622
|
-
|
|
17755
|
+
CreatedUserProvisioning = "CREATED_USER_PROVISIONING",
|
|
17623
17756
|
Default = "DEFAULT",
|
|
17624
17757
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
17625
17758
|
DeletedDomain = "DELETED_DOMAIN",
|
|
@@ -17656,6 +17789,7 @@ export declare type ShepherdConfigResult = QueryError | ShepherdConfig;
|
|
|
17656
17789
|
export declare type ShepherdCreateAlertInput = {
|
|
17657
17790
|
assignee?: Maybe<Scalars['ID']>;
|
|
17658
17791
|
cloudId?: Maybe<Scalars['ID']>;
|
|
17792
|
+
highlight?: Maybe<ShepherdHighlightInput>;
|
|
17659
17793
|
orgId: Scalars['ID'];
|
|
17660
17794
|
status?: Maybe<ShepherdAlertStatus>;
|
|
17661
17795
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
@@ -17749,6 +17883,10 @@ export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
17749
17883
|
statusCode?: Maybe<Scalars['Int']>;
|
|
17750
17884
|
type?: Maybe<ShepherdQueryErrorType>;
|
|
17751
17885
|
};
|
|
17886
|
+
export declare type ShepherdHighlight = ShepherdActivityHighlight;
|
|
17887
|
+
export declare type ShepherdHighlightInput = {
|
|
17888
|
+
activityHighlight?: Maybe<ShepherdActivityHighlightInput>;
|
|
17889
|
+
};
|
|
17752
17890
|
export declare type ShepherdMutation = {
|
|
17753
17891
|
__typename?: 'ShepherdMutation';
|
|
17754
17892
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
@@ -17839,6 +17977,17 @@ export declare type ShepherdSlackSubscription = ShepherdSubscription & {
|
|
|
17839
17977
|
updatedBy?: Maybe<Scalars['String']>;
|
|
17840
17978
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
17841
17979
|
};
|
|
17980
|
+
export declare type ShepherdSubject = {
|
|
17981
|
+
__typename?: 'ShepherdSubject';
|
|
17982
|
+
ari?: Maybe<Scalars['String']>;
|
|
17983
|
+
ati?: Maybe<Scalars['String']>;
|
|
17984
|
+
containerAri: Scalars['String'];
|
|
17985
|
+
};
|
|
17986
|
+
export declare type ShepherdSubjectInput = {
|
|
17987
|
+
ari?: Maybe<Scalars['String']>;
|
|
17988
|
+
ati?: Maybe<Scalars['String']>;
|
|
17989
|
+
containerAri: Scalars['String'];
|
|
17990
|
+
};
|
|
17842
17991
|
export declare type ShepherdSubscription = {
|
|
17843
17992
|
createdBy: Scalars['String'];
|
|
17844
17993
|
createdOn: Scalars['DateTime'];
|
|
@@ -17870,6 +18019,15 @@ export declare type ShepherdTestSubscriptionPayload = Payload & {
|
|
|
17870
18019
|
node?: Maybe<ShepherdSubscription>;
|
|
17871
18020
|
success: Scalars['Boolean'];
|
|
17872
18021
|
};
|
|
18022
|
+
export declare type ShepherdTime = {
|
|
18023
|
+
__typename?: 'ShepherdTime';
|
|
18024
|
+
end?: Maybe<Scalars['DateTime']>;
|
|
18025
|
+
start: Scalars['DateTime'];
|
|
18026
|
+
};
|
|
18027
|
+
export declare type ShepherdTimeInput = {
|
|
18028
|
+
end?: Maybe<Scalars['DateTime']>;
|
|
18029
|
+
start: Scalars['DateTime'];
|
|
18030
|
+
};
|
|
17873
18031
|
export declare type ShepherdUpdateAlertInput = {
|
|
17874
18032
|
assignee?: Maybe<Scalars['ID']>;
|
|
17875
18033
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -17919,6 +18077,7 @@ export declare type ShepherdUpdateWebhookInput = {
|
|
|
17919
18077
|
};
|
|
17920
18078
|
export declare type ShepherdUser = {
|
|
17921
18079
|
__typename?: 'ShepherdUser';
|
|
18080
|
+
aaid: Scalars['ID'];
|
|
17922
18081
|
user?: Maybe<User>;
|
|
17923
18082
|
};
|
|
17924
18083
|
export declare type ShepherdWebhookConnection = {
|
|
@@ -18249,6 +18408,7 @@ export declare type SupportRequest = {
|
|
|
18249
18408
|
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
18250
18409
|
lastComment: SupportRequestComments;
|
|
18251
18410
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
18411
|
+
capabilities?: Maybe<Array<Scalars['String']>>;
|
|
18252
18412
|
sourceId?: Maybe<Scalars['String']>;
|
|
18253
18413
|
activities: SupportRequestActivities;
|
|
18254
18414
|
};
|