@forge/cli-shared 3.20.2 → 3.20.3-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 +16 -0
- package/out/graphql/graphql-types.d.ts +109 -13
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +14 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.20.3-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b5342a9d]
|
|
8
|
+
- Updated dependencies [1d53ee6b]
|
|
9
|
+
- @forge/util@1.3.3-next.0
|
|
10
|
+
- @forge/manifest@4.20.4-next.1
|
|
11
|
+
|
|
12
|
+
## 3.20.3-next.0
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [22dd431]
|
|
17
|
+
- @forge/manifest@4.20.4-next.0
|
|
18
|
+
|
|
3
19
|
## 3.20.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -1497,6 +1497,7 @@ export type AppsFilter = {
|
|
|
1497
1497
|
export type AquaIssueContext = {
|
|
1498
1498
|
__typename?: 'AquaIssueContext';
|
|
1499
1499
|
commentId?: Maybe<Scalars['Long']['output']>;
|
|
1500
|
+
issue?: Maybe<JiraIssue>;
|
|
1500
1501
|
issueId?: Maybe<Scalars['Long']['output']>;
|
|
1501
1502
|
};
|
|
1502
1503
|
export type AquaNotificationDetails = {
|
|
@@ -1712,6 +1713,7 @@ export type ArjConfiguration = {
|
|
|
1712
1713
|
epicLinkCustomFieldId?: Maybe<Scalars['String']['output']>;
|
|
1713
1714
|
parentCustomFieldId?: Maybe<Scalars['String']['output']>;
|
|
1714
1715
|
storyPointEstimateCustomFieldId?: Maybe<Scalars['String']['output']>;
|
|
1716
|
+
storyPointsCustomFieldId?: Maybe<Scalars['String']['output']>;
|
|
1715
1717
|
};
|
|
1716
1718
|
export type ArjHierarchyConfigurationLevel = {
|
|
1717
1719
|
__typename?: 'ArjHierarchyConfigurationLevel';
|
|
@@ -10273,8 +10275,11 @@ export type Graph = {
|
|
|
10273
10275
|
__typename?: 'Graph';
|
|
10274
10276
|
fetchAllRelationships?: Maybe<GraphSimpleRelationshipConnection>;
|
|
10275
10277
|
incidentAssociatedPostIncidentReviewLinkRelationship?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
10276
|
-
incidentAssociatedPostIncidentReviewLinkRelationshipBatch?: Maybe<Array<Maybe<
|
|
10278
|
+
incidentAssociatedPostIncidentReviewLinkRelationshipBatch?: Maybe<Array<Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>>>;
|
|
10277
10279
|
incidentAssociatedPostIncidentReviewLinkRelationshipInverse?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
10280
|
+
incidentHasActionItemRelationship?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
10281
|
+
incidentHasActionItemRelationshipBatch?: Maybe<Array<Maybe<GraphIncidentHasActionItemRelationshipConnection>>>;
|
|
10282
|
+
incidentHasActionItemRelationshipInverse?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
10278
10283
|
issueAssociatedDesign?: Maybe<GraphJiraDesignConnection>;
|
|
10279
10284
|
issueAssociatedDesignInverse?: Maybe<GraphJiraIssueConnection>;
|
|
10280
10285
|
issueAssociatedDesignRelationship?: Maybe<GraphIssueAssociatedDesignRelationshipConnection>;
|
|
@@ -10340,6 +10345,19 @@ export type GraphIncidentAssociatedPostIncidentReviewLinkRelationshipInverseArgs
|
|
|
10340
10345
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10341
10346
|
to: Scalars['ID']['input'];
|
|
10342
10347
|
};
|
|
10348
|
+
export type GraphIncidentHasActionItemRelationshipArgs = {
|
|
10349
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
10350
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10351
|
+
from: Scalars['ID']['input'];
|
|
10352
|
+
};
|
|
10353
|
+
export type GraphIncidentHasActionItemRelationshipBatchArgs = {
|
|
10354
|
+
from: Array<Scalars['ID']['input']>;
|
|
10355
|
+
};
|
|
10356
|
+
export type GraphIncidentHasActionItemRelationshipInverseArgs = {
|
|
10357
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
10358
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10359
|
+
to: Scalars['ID']['input'];
|
|
10360
|
+
};
|
|
10343
10361
|
export type GraphIssueAssociatedDesignArgs = {
|
|
10344
10362
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
10345
10363
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -10588,6 +10606,12 @@ export type GraphConfluencePageEdge = {
|
|
|
10588
10606
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
10589
10607
|
node: GraphConfluencePage;
|
|
10590
10608
|
};
|
|
10609
|
+
export type GraphCreateIncidentHasActionItemInput = {
|
|
10610
|
+
from: Scalars['ID']['input'];
|
|
10611
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
10612
|
+
to: Scalars['ID']['input'];
|
|
10613
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
10614
|
+
};
|
|
10591
10615
|
export type GraphCreateIssueAssociatedDesignInput = {
|
|
10592
10616
|
from: Scalars['ID']['input'];
|
|
10593
10617
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -10758,6 +10782,12 @@ export type GraphGenericFetchAllRelationshipsArgs = {
|
|
|
10758
10782
|
updatedFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
10759
10783
|
updatedTo?: InputMaybe<Scalars['DateTime']['input']>;
|
|
10760
10784
|
};
|
|
10785
|
+
export type GraphIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
|
|
10786
|
+
__typename?: 'GraphIncidentAssociatedPostIncidentReviewLinkPayload';
|
|
10787
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10788
|
+
incidentAssociatedPostIncidentReviewLinkRelationship: Array<Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationship>>;
|
|
10789
|
+
success: Scalars['Boolean']['output'];
|
|
10790
|
+
};
|
|
10761
10791
|
export type GraphIncidentAssociatedPostIncidentReviewLinkRelationship = Node & {
|
|
10762
10792
|
__typename?: 'GraphIncidentAssociatedPostIncidentReviewLinkRelationship';
|
|
10763
10793
|
from: GraphGeneric;
|
|
@@ -10765,11 +10795,6 @@ export type GraphIncidentAssociatedPostIncidentReviewLinkRelationship = Node & {
|
|
|
10765
10795
|
lastUpdated: Scalars['DateTime']['output'];
|
|
10766
10796
|
to: GraphGeneric;
|
|
10767
10797
|
};
|
|
10768
|
-
export type GraphIncidentAssociatedPostIncidentReviewLinkRelationshipBatchResult = {
|
|
10769
|
-
__typename?: 'GraphIncidentAssociatedPostIncidentReviewLinkRelationshipBatchResult';
|
|
10770
|
-
fromId: Scalars['ID']['output'];
|
|
10771
|
-
relationships?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
10772
|
-
};
|
|
10773
10798
|
export type GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection = {
|
|
10774
10799
|
__typename?: 'GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection';
|
|
10775
10800
|
edges: Array<Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipEdge>>;
|
|
@@ -10780,6 +10805,29 @@ export type GraphIncidentAssociatedPostIncidentReviewLinkRelationshipEdge = {
|
|
|
10780
10805
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
10781
10806
|
node: GraphIncidentAssociatedPostIncidentReviewLinkRelationship;
|
|
10782
10807
|
};
|
|
10808
|
+
export type GraphIncidentHasActionItemPayload = Payload & {
|
|
10809
|
+
__typename?: 'GraphIncidentHasActionItemPayload';
|
|
10810
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10811
|
+
incidentHasActionItemRelationship: Array<Maybe<GraphIncidentHasActionItemRelationship>>;
|
|
10812
|
+
success: Scalars['Boolean']['output'];
|
|
10813
|
+
};
|
|
10814
|
+
export type GraphIncidentHasActionItemRelationship = Node & {
|
|
10815
|
+
__typename?: 'GraphIncidentHasActionItemRelationship';
|
|
10816
|
+
from: GraphGeneric;
|
|
10817
|
+
id: Scalars['ID']['output'];
|
|
10818
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
10819
|
+
to: GraphJiraIssue;
|
|
10820
|
+
};
|
|
10821
|
+
export type GraphIncidentHasActionItemRelationshipConnection = {
|
|
10822
|
+
__typename?: 'GraphIncidentHasActionItemRelationshipConnection';
|
|
10823
|
+
edges: Array<Maybe<GraphIncidentHasActionItemRelationshipEdge>>;
|
|
10824
|
+
pageInfo: PageInfo;
|
|
10825
|
+
};
|
|
10826
|
+
export type GraphIncidentHasActionItemRelationshipEdge = {
|
|
10827
|
+
__typename?: 'GraphIncidentHasActionItemRelationshipEdge';
|
|
10828
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
10829
|
+
node: GraphIncidentHasActionItemRelationship;
|
|
10830
|
+
};
|
|
10783
10831
|
export type GraphIssueAssociatedDesignPayload = Payload & {
|
|
10784
10832
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
10785
10833
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -10887,6 +10935,7 @@ export type GraphJiraDocumentEdge = {
|
|
|
10887
10935
|
};
|
|
10888
10936
|
export type GraphJiraIssue = Node & {
|
|
10889
10937
|
__typename?: 'GraphJiraIssue';
|
|
10938
|
+
data?: Maybe<JiraIssue>;
|
|
10890
10939
|
id: Scalars['ID']['output'];
|
|
10891
10940
|
incident?: Maybe<JsmIncident>;
|
|
10892
10941
|
};
|
|
@@ -10972,10 +11021,14 @@ export type GraphJiraVulnerabilityEdge = {
|
|
|
10972
11021
|
};
|
|
10973
11022
|
export type GraphMutation = {
|
|
10974
11023
|
__typename?: 'GraphMutation';
|
|
11024
|
+
createIncidentHasActionItem?: Maybe<GraphIncidentHasActionItemPayload>;
|
|
10975
11025
|
createIssueAssociatedDesign?: Maybe<GraphIssueAssociatedDesignPayload>;
|
|
10976
11026
|
createIssueAssociatedPr?: Maybe<GraphIssueAssociatedPrPayload>;
|
|
10977
11027
|
createSprintRetrospectivePage?: Maybe<GraphSprintRetrospectivePagePayload>;
|
|
10978
11028
|
};
|
|
11029
|
+
export type GraphMutationCreateIncidentHasActionItemArgs = {
|
|
11030
|
+
input: GraphCreateIncidentHasActionItemInput;
|
|
11031
|
+
};
|
|
10979
11032
|
export type GraphMutationCreateIssueAssociatedDesignArgs = {
|
|
10980
11033
|
input: GraphCreateIssueAssociatedDesignInput;
|
|
10981
11034
|
};
|
|
@@ -12744,6 +12797,17 @@ export type HelpObjectStoreMutationApiDeleteProviderConnectionArgs = {
|
|
|
12744
12797
|
export type HelpObjectStoreMutationApiUpdateProviderConnectionArgs = {
|
|
12745
12798
|
input: HelpObjectStoreProviderConnectionInput;
|
|
12746
12799
|
};
|
|
12800
|
+
export type HelpObjectStoreProviderAuthStatus = {
|
|
12801
|
+
__typename?: 'HelpObjectStoreProviderAuthStatus';
|
|
12802
|
+
authUrl?: Maybe<Scalars['String']['output']>;
|
|
12803
|
+
isAuthRequired: Scalars['Boolean']['output'];
|
|
12804
|
+
provider: Scalars['String']['output'];
|
|
12805
|
+
};
|
|
12806
|
+
export type HelpObjectStoreProviderAuthStatusResult = HelpObjectStoreProviderAuthStatuses | HelpObjectStoreProvidersAuthError;
|
|
12807
|
+
export type HelpObjectStoreProviderAuthStatuses = {
|
|
12808
|
+
__typename?: 'HelpObjectStoreProviderAuthStatuses';
|
|
12809
|
+
providerAuthStatuses: Array<Maybe<HelpObjectStoreProviderAuthStatus>>;
|
|
12810
|
+
};
|
|
12747
12811
|
export type HelpObjectStoreProviderConnection = Node & {
|
|
12748
12812
|
__typename?: 'HelpObjectStoreProviderConnection';
|
|
12749
12813
|
containerId?: Maybe<Scalars['String']['output']>;
|
|
@@ -12802,10 +12866,16 @@ export type HelpObjectStoreProviderConnections = {
|
|
|
12802
12866
|
export type HelpObjectStoreProviderConnectionsInput = {
|
|
12803
12867
|
providerConnections: Array<HelpObjectStoreProviderConnectionInput>;
|
|
12804
12868
|
};
|
|
12869
|
+
export type HelpObjectStoreProvidersAuthError = {
|
|
12870
|
+
__typename?: 'HelpObjectStoreProvidersAuthError';
|
|
12871
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
12872
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
12873
|
+
};
|
|
12805
12874
|
export type HelpObjectStoreQueryApi = {
|
|
12806
12875
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
12807
12876
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
12808
12877
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
12878
|
+
providerAuthStatuses?: Maybe<HelpObjectStoreProviderAuthStatusResult>;
|
|
12809
12879
|
providerConnections?: Maybe<HelpObjectStoreProviderConnectionResult>;
|
|
12810
12880
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
12811
12881
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
@@ -12816,6 +12886,9 @@ export type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
12816
12886
|
export type HelpObjectStoreQueryApiChannelsArgs = {
|
|
12817
12887
|
ids: Array<Scalars['ID']['input']>;
|
|
12818
12888
|
};
|
|
12889
|
+
export type HelpObjectStoreQueryApiProviderAuthStatusesArgs = {
|
|
12890
|
+
cloudId: Scalars['ID']['input'];
|
|
12891
|
+
};
|
|
12819
12892
|
export type HelpObjectStoreQueryApiProviderConnectionsArgs = {
|
|
12820
12893
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
12821
12894
|
cloudId: Scalars['ID']['input'];
|
|
@@ -15479,6 +15552,10 @@ export type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
15479
15552
|
name: Scalars['String']['output'];
|
|
15480
15553
|
type: Scalars['String']['output'];
|
|
15481
15554
|
};
|
|
15555
|
+
export declare enum JiraGlobalIssueCreateView {
|
|
15556
|
+
FullModal = "FULL_MODAL",
|
|
15557
|
+
MiniModal = "MINI_MODAL"
|
|
15558
|
+
}
|
|
15482
15559
|
export type JiraGlobalPermission = {
|
|
15483
15560
|
__typename?: 'JiraGlobalPermission';
|
|
15484
15561
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -15643,6 +15720,7 @@ export type JiraIssue = Node & {
|
|
|
15643
15720
|
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
15644
15721
|
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
15645
15722
|
id: Scalars['ID']['output'];
|
|
15723
|
+
incidentActionItems?: Maybe<GraphIncidentHasActionItemRelationshipConnection>;
|
|
15646
15724
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
15647
15725
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
15648
15726
|
issueColorField?: Maybe<JiraColorField>;
|
|
@@ -15653,7 +15731,7 @@ export type JiraIssue = Node & {
|
|
|
15653
15731
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
15654
15732
|
key: Scalars['String']['output'];
|
|
15655
15733
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
15656
|
-
postIncidentReviewLinks?: Maybe<
|
|
15734
|
+
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
15657
15735
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
15658
15736
|
shadowFieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
15659
15737
|
storyPointEstimateField?: Maybe<JiraNumberField>;
|
|
@@ -21727,10 +21805,13 @@ export type JiraUserIssueFieldConfiguration = {
|
|
|
21727
21805
|
export type JiraUserPreferences = {
|
|
21728
21806
|
__typename?: 'JiraUserPreferences';
|
|
21729
21807
|
colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
|
|
21808
|
+
globalIssueCreateView?: Maybe<JiraGlobalIssueCreateView>;
|
|
21809
|
+
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
21730
21810
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
21731
21811
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
21732
21812
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
21733
21813
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
21814
|
+
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
21734
21815
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
21735
21816
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
21736
21817
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
@@ -22607,7 +22688,6 @@ export type MarketplaceApp = {
|
|
|
22607
22688
|
listingStatus: MarketplaceListingStatus;
|
|
22608
22689
|
logo?: Maybe<MarketplaceListingImage>;
|
|
22609
22690
|
marketingLabels: Array<Scalars['String']['output']>;
|
|
22610
|
-
marketplaceAppTrustInformation?: Maybe<MarketplaceAppTrustInformationResult>;
|
|
22611
22691
|
name: Scalars['String']['output'];
|
|
22612
22692
|
partner?: Maybe<MarketplacePartner>;
|
|
22613
22693
|
partnerId: Scalars['ID']['output'];
|
|
@@ -22625,10 +22705,6 @@ export type MarketplaceApp = {
|
|
|
22625
22705
|
watchersInfo?: Maybe<MarketplaceAppWatchersInfo>;
|
|
22626
22706
|
wikiUrl?: Maybe<Scalars['URL']['output']>;
|
|
22627
22707
|
};
|
|
22628
|
-
export type MarketplaceAppMarketplaceAppTrustInformationArgs = {
|
|
22629
|
-
appKey: Scalars['String']['input'];
|
|
22630
|
-
state: AppTrustInformationState;
|
|
22631
|
-
};
|
|
22632
22708
|
export type MarketplaceAppProductHostingOptionsArgs = {
|
|
22633
22709
|
excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
|
|
22634
22710
|
};
|
|
@@ -26638,6 +26714,7 @@ export type RoadmapExternalConfiguration = {
|
|
|
26638
26714
|
epicLinkField?: Maybe<Scalars['ID']['output']>;
|
|
26639
26715
|
epicNameField?: Maybe<Scalars['ID']['output']>;
|
|
26640
26716
|
externalSystem: Scalars['ID']['output'];
|
|
26717
|
+
fields: Array<RoadmapFieldConfiguration>;
|
|
26641
26718
|
rankField?: Maybe<Scalars['ID']['output']>;
|
|
26642
26719
|
sprintField?: Maybe<Scalars['ID']['output']>;
|
|
26643
26720
|
startDateField?: Maybe<Scalars['ID']['output']>;
|
|
@@ -26647,6 +26724,11 @@ export type RoadmapField = {
|
|
|
26647
26724
|
id: Scalars['String']['output'];
|
|
26648
26725
|
values: Array<Scalars['String']['output']>;
|
|
26649
26726
|
};
|
|
26727
|
+
export type RoadmapFieldConfiguration = {
|
|
26728
|
+
__typename?: 'RoadmapFieldConfiguration';
|
|
26729
|
+
id: Scalars['ID']['output'];
|
|
26730
|
+
name: Scalars['String']['output'];
|
|
26731
|
+
};
|
|
26650
26732
|
export type RoadmapFilterConfiguration = {
|
|
26651
26733
|
__typename?: 'RoadmapFilterConfiguration';
|
|
26652
26734
|
customFilters?: Maybe<Array<RoadmapCustomFilter>>;
|
|
@@ -26694,6 +26776,7 @@ export type RoadmapItem = {
|
|
|
26694
26776
|
dependencies?: Maybe<Array<Scalars['ID']['output']>>;
|
|
26695
26777
|
dueDate?: Maybe<Scalars['DateTime']['output']>;
|
|
26696
26778
|
dueDateRFC3339?: Maybe<Scalars['Date']['output']>;
|
|
26779
|
+
flagged?: Maybe<Scalars['Boolean']['output']>;
|
|
26697
26780
|
id: Scalars['ID']['output'];
|
|
26698
26781
|
inferredDueDate?: Maybe<Scalars['Date']['output']>;
|
|
26699
26782
|
inferredStartDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -27742,6 +27825,15 @@ export type SearchResultJiraBoardUserContainer = {
|
|
|
27742
27825
|
userId: Scalars['ID']['output'];
|
|
27743
27826
|
userName: Scalars['String']['output'];
|
|
27744
27827
|
};
|
|
27828
|
+
export type SearchResultJiraDashboard = SearchResult & {
|
|
27829
|
+
__typename?: 'SearchResultJiraDashboard';
|
|
27830
|
+
description: Scalars['String']['output'];
|
|
27831
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
27832
|
+
id: Scalars['ID']['output'];
|
|
27833
|
+
title: Scalars['String']['output'];
|
|
27834
|
+
type: SearchResultType;
|
|
27835
|
+
url: Scalars['URL']['output'];
|
|
27836
|
+
};
|
|
27745
27837
|
export type SearchResultJiraFilter = SearchResult & {
|
|
27746
27838
|
__typename?: 'SearchResultJiraFilter';
|
|
27747
27839
|
description: Scalars['String']['output'];
|
|
@@ -27783,6 +27875,8 @@ export declare enum SearchResultType {
|
|
|
27783
27875
|
Blogpost = "blogpost",
|
|
27784
27876
|
Board = "board",
|
|
27785
27877
|
Comment = "comment",
|
|
27878
|
+
Dashboard = "dashboard",
|
|
27879
|
+
Database = "database",
|
|
27786
27880
|
Filter = "filter",
|
|
27787
27881
|
Issue = "issue",
|
|
27788
27882
|
Page = "page",
|
|
@@ -27943,10 +28037,12 @@ export declare enum ShepherdActionType {
|
|
|
27943
28037
|
Create = "CREATE",
|
|
27944
28038
|
Delete = "DELETE",
|
|
27945
28039
|
Export = "EXPORT",
|
|
28040
|
+
Grant = "GRANT",
|
|
27946
28041
|
Install = "INSTALL",
|
|
27947
28042
|
Login = "LOGIN",
|
|
27948
28043
|
LoginAs = "LOGIN_AS",
|
|
27949
28044
|
Read = "READ",
|
|
28045
|
+
Revoke = "REVOKE",
|
|
27950
28046
|
Search = "SEARCH",
|
|
27951
28047
|
Uninstall = "UNINSTALL",
|
|
27952
28048
|
Update = "UPDATE"
|
|
@@ -31928,7 +32024,7 @@ export type User = {
|
|
|
31928
32024
|
picture: Scalars['URL']['output'];
|
|
31929
32025
|
};
|
|
31930
32026
|
export type UserAuthTokenForExtensionInput = {
|
|
31931
|
-
contextIds
|
|
32027
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
31932
32028
|
extensionId: Scalars['ID']['input'];
|
|
31933
32029
|
};
|
|
31934
32030
|
export type UserAuthTokenForExtensionResponse = Payload & {
|