@forge/cli-shared 2.2.0 → 2.2.1-fix.0
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.
|
@@ -186,7 +186,7 @@ export declare type ActivityEdge = {
|
|
|
186
186
|
export declare type ActivityEvent = {
|
|
187
187
|
__typename?: 'ActivityEvent';
|
|
188
188
|
id: Scalars['ID'];
|
|
189
|
-
timestamp?: Maybe<Scalars['
|
|
189
|
+
timestamp?: Maybe<Scalars['DateTime']>;
|
|
190
190
|
eventType?: Maybe<Scalars['String']>;
|
|
191
191
|
actor?: Maybe<User>;
|
|
192
192
|
extension?: Maybe<ActivitiesEventExtension>;
|
|
@@ -213,7 +213,7 @@ export declare type ActivityFilterArgs = {
|
|
|
213
213
|
products?: Maybe<Array<Scalars['String']>>;
|
|
214
214
|
eventTypes?: Maybe<Array<Scalars['String']>>;
|
|
215
215
|
objectTypes?: Maybe<Array<Scalars['String']>>;
|
|
216
|
-
transitions?: Maybe<Array<
|
|
216
|
+
transitions?: Maybe<Array<TransitionFilter>>;
|
|
217
217
|
containerIds?: Maybe<Array<Scalars['ID']>>;
|
|
218
218
|
earliestStart?: Maybe<Scalars['DateTime']>;
|
|
219
219
|
latestStart?: Maybe<Scalars['DateTime']>;
|
|
@@ -237,7 +237,9 @@ export declare type ActivityObject = {
|
|
|
237
237
|
product?: Maybe<Scalars['String']>;
|
|
238
238
|
subProduct?: Maybe<Scalars['String']>;
|
|
239
239
|
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
240
|
+
data?: Maybe<ActivityObjectData>;
|
|
240
241
|
};
|
|
242
|
+
export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
241
243
|
export declare enum ActivityObjectType {
|
|
242
244
|
Site = "SITE",
|
|
243
245
|
Project = "PROJECT",
|
|
@@ -294,6 +296,7 @@ export declare enum ApiContext {
|
|
|
294
296
|
}
|
|
295
297
|
export declare enum ApiGroup {
|
|
296
298
|
Compass = "COMPASS",
|
|
299
|
+
Confluence = "CONFLUENCE",
|
|
297
300
|
Jira = "JIRA",
|
|
298
301
|
Forge = "FORGE",
|
|
299
302
|
Polaris = "POLARIS",
|
|
@@ -808,6 +811,7 @@ export declare type AppUnsubscribePayload = Payload & {
|
|
|
808
811
|
export declare type AppUser = User & {
|
|
809
812
|
__typename?: 'AppUser';
|
|
810
813
|
accountId: Scalars['ID'];
|
|
814
|
+
canonicalAccountId: Scalars['ID'];
|
|
811
815
|
accountStatus: AccountStatus;
|
|
812
816
|
name: Scalars['String'];
|
|
813
817
|
picture: Scalars['URL'];
|
|
@@ -867,6 +871,7 @@ export declare type AssignIssueParentOutput = MutationResponse & {
|
|
|
867
871
|
export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
868
872
|
__typename?: 'AtlassianAccountUser';
|
|
869
873
|
accountId: Scalars['ID'];
|
|
874
|
+
canonicalAccountId: Scalars['ID'];
|
|
870
875
|
accountStatus: AccountStatus;
|
|
871
876
|
name: Scalars['String'];
|
|
872
877
|
picture: Scalars['URL'];
|
|
@@ -1610,7 +1615,7 @@ export declare type CompassCatalogMutationApiCreateDeploymentEventArgs = {
|
|
|
1610
1615
|
input: CreateDeploymentEventInput;
|
|
1611
1616
|
};
|
|
1612
1617
|
export declare type CompassCatalogMutationApiCreateCompassEventArgs = {
|
|
1613
|
-
input:
|
|
1618
|
+
input: CompassCreateEventInput;
|
|
1614
1619
|
};
|
|
1615
1620
|
export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
1616
1621
|
input: AttachEventSourceInput;
|
|
@@ -1666,6 +1671,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1666
1671
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1667
1672
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1668
1673
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1674
|
+
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1669
1675
|
};
|
|
1670
1676
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1671
1677
|
id: Scalars['ID'];
|
|
@@ -1708,6 +1714,11 @@ export declare type CompassCatalogQueryApiMetricDefinitionArgs = {
|
|
|
1708
1714
|
cloudId: Scalars['ID'];
|
|
1709
1715
|
metricDefinitionId: Scalars['ID'];
|
|
1710
1716
|
};
|
|
1717
|
+
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
1718
|
+
cloudId: Scalars['ID'];
|
|
1719
|
+
eventType: CompassEventType;
|
|
1720
|
+
externalEventSourceId: Scalars['ID'];
|
|
1721
|
+
};
|
|
1711
1722
|
export declare type CompassChangeMetadata = {
|
|
1712
1723
|
__typename?: 'CompassChangeMetadata';
|
|
1713
1724
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1784,8 +1795,6 @@ export declare enum CompassComponentType {
|
|
|
1784
1795
|
Other = "OTHER"
|
|
1785
1796
|
}
|
|
1786
1797
|
export declare type CompassCreateAlertEventInput = {
|
|
1787
|
-
cloudId: Scalars['ID'];
|
|
1788
|
-
eventType: CompassEventType;
|
|
1789
1798
|
displayName: Scalars['String'];
|
|
1790
1799
|
lastUpdated: Scalars['DateTime'];
|
|
1791
1800
|
alertId: Scalars['ID'];
|
|
@@ -1807,19 +1816,16 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1807
1816
|
errors?: Maybe<Array<MutationError>>;
|
|
1808
1817
|
};
|
|
1809
1818
|
export declare type CompassCreateCustomEventInput = {
|
|
1810
|
-
cloudId: Scalars['ID'];
|
|
1811
|
-
eventType: CompassEventType;
|
|
1812
1819
|
displayName: Scalars['String'];
|
|
1813
1820
|
lastUpdated: Scalars['DateTime'];
|
|
1814
1821
|
customEventId: Scalars['ID'];
|
|
1815
1822
|
updateSequenceNumber: Scalars['Long'];
|
|
1816
1823
|
description?: Maybe<Scalars['String']>;
|
|
1817
1824
|
url?: Maybe<Scalars['URL']>;
|
|
1818
|
-
icon
|
|
1825
|
+
icon: CompassCustomEventIcon;
|
|
1819
1826
|
externalEventSourceId: Scalars['ID'];
|
|
1820
1827
|
};
|
|
1821
1828
|
export declare type CompassCreateDeploymentEventInput = {
|
|
1822
|
-
cloudId: Scalars['ID'];
|
|
1823
1829
|
deploymentSequenceNumber: Scalars['Long'];
|
|
1824
1830
|
updateSequenceNumber: Scalars['Long'];
|
|
1825
1831
|
displayName: Scalars['String'];
|
|
@@ -1831,14 +1837,16 @@ export declare type CompassCreateDeploymentEventInput = {
|
|
|
1831
1837
|
environment: CompassDeploymentEventEnvironmentInput;
|
|
1832
1838
|
externalEventSourceId: Scalars['ID'];
|
|
1833
1839
|
};
|
|
1840
|
+
export declare type CompassCreateEventInput = {
|
|
1841
|
+
cloudId: Scalars['ID'];
|
|
1842
|
+
event: CompassEventInput;
|
|
1843
|
+
};
|
|
1834
1844
|
export declare type CompassCreateEventsPayload = Payload & {
|
|
1835
1845
|
__typename?: 'CompassCreateEventsPayload';
|
|
1836
1846
|
success: Scalars['Boolean'];
|
|
1837
1847
|
errors?: Maybe<Array<MutationError>>;
|
|
1838
1848
|
};
|
|
1839
1849
|
export declare type CompassCreateFlagEventInput = {
|
|
1840
|
-
cloudId: Scalars['ID'];
|
|
1841
|
-
eventType: CompassEventType;
|
|
1842
1850
|
displayName: Scalars['String'];
|
|
1843
1851
|
lastUpdated: Scalars['DateTime'];
|
|
1844
1852
|
flagId: Scalars['ID'];
|
|
@@ -1849,27 +1857,23 @@ export declare type CompassCreateFlagEventInput = {
|
|
|
1849
1857
|
externalEventSourceId: Scalars['ID'];
|
|
1850
1858
|
};
|
|
1851
1859
|
export declare type CompassCreateIncidentEventInput = {
|
|
1852
|
-
cloudId: Scalars['ID'];
|
|
1853
|
-
eventType: CompassEventType;
|
|
1854
1860
|
displayName: Scalars['String'];
|
|
1855
1861
|
lastUpdated: Scalars['DateTime'];
|
|
1856
1862
|
incidentId: Scalars['ID'];
|
|
1857
1863
|
updateSequenceNumber: Scalars['Long'];
|
|
1858
1864
|
description?: Maybe<Scalars['String']>;
|
|
1859
1865
|
url?: Maybe<Scalars['URL']>;
|
|
1860
|
-
state
|
|
1866
|
+
state: CompassIncidentEventState;
|
|
1861
1867
|
externalEventSourceId: Scalars['ID'];
|
|
1862
1868
|
};
|
|
1863
1869
|
export declare type CompassCreateLifecycleEventInput = {
|
|
1864
|
-
cloudId: Scalars['ID'];
|
|
1865
|
-
eventType: CompassEventType;
|
|
1866
1870
|
displayName: Scalars['String'];
|
|
1867
1871
|
lastUpdated: Scalars['DateTime'];
|
|
1868
|
-
|
|
1872
|
+
lifecycleId: Scalars['ID'];
|
|
1869
1873
|
updateSequenceNumber: Scalars['Long'];
|
|
1870
1874
|
description?: Maybe<Scalars['String']>;
|
|
1871
1875
|
url?: Maybe<Scalars['URL']>;
|
|
1872
|
-
stage
|
|
1876
|
+
stage: CompassLifecycleEventStage;
|
|
1873
1877
|
externalEventSourceId: Scalars['ID'];
|
|
1874
1878
|
};
|
|
1875
1879
|
export declare type CompassCreateMetricDefinitionInput = {
|
|
@@ -2070,6 +2074,7 @@ export declare type CompassEventInput = {
|
|
|
2070
2074
|
lifecycle?: Maybe<CompassCreateLifecycleEventInput>;
|
|
2071
2075
|
custom?: Maybe<CompassCreateCustomEventInput>;
|
|
2072
2076
|
};
|
|
2077
|
+
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
2073
2078
|
export declare type CompassEventTimeParameters = {
|
|
2074
2079
|
startFrom?: Maybe<Scalars['DateTime']>;
|
|
2075
2080
|
endAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -2082,6 +2087,11 @@ export declare enum CompassEventType {
|
|
|
2082
2087
|
Lifecycle = "LIFECYCLE",
|
|
2083
2088
|
Custom = "CUSTOM"
|
|
2084
2089
|
}
|
|
2090
|
+
export declare type CompassEventsInEventSourceQuery = {
|
|
2091
|
+
first?: Maybe<Scalars['Int']>;
|
|
2092
|
+
after?: Maybe<Scalars['String']>;
|
|
2093
|
+
timeParameters?: Maybe<CompassEventTimeParameters>;
|
|
2094
|
+
};
|
|
2085
2095
|
export declare type CompassEventsQuery = {
|
|
2086
2096
|
eventTypes?: Maybe<Array<CompassEventType>>;
|
|
2087
2097
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -2409,6 +2419,7 @@ export declare type CompassScorecard = Node & {
|
|
|
2409
2419
|
importance: CompassScorecardImportance;
|
|
2410
2420
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
2411
2421
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
2422
|
+
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
2412
2423
|
changeMetadata: CompassChangeMetadata;
|
|
2413
2424
|
};
|
|
2414
2425
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
@@ -2735,11 +2746,27 @@ export declare type ConfluenceContentBody = {
|
|
|
2735
2746
|
styledView?: Maybe<Scalars['String']>;
|
|
2736
2747
|
view?: Maybe<Scalars['String']>;
|
|
2737
2748
|
};
|
|
2749
|
+
export declare type ConfluenceContentBodyInput = {
|
|
2750
|
+
representation: ConfluenceContentRepresentation;
|
|
2751
|
+
value: Scalars['String'];
|
|
2752
|
+
};
|
|
2738
2753
|
export declare type ConfluenceContentMetadata = {
|
|
2739
2754
|
__typename?: 'ConfluenceContentMetadata';
|
|
2740
2755
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2741
2756
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2742
2757
|
};
|
|
2758
|
+
export declare enum ConfluenceContentRepresentation {
|
|
2759
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
2760
|
+
Editor = "EDITOR",
|
|
2761
|
+
Editor2 = "EDITOR2",
|
|
2762
|
+
ExportView = "EXPORT_VIEW",
|
|
2763
|
+
Plain = "PLAIN",
|
|
2764
|
+
Raw = "RAW",
|
|
2765
|
+
Storage = "STORAGE",
|
|
2766
|
+
StyledView = "STYLED_VIEW",
|
|
2767
|
+
View = "VIEW",
|
|
2768
|
+
Wiki = "WIKI"
|
|
2769
|
+
}
|
|
2743
2770
|
export declare enum ConfluenceContentStatus {
|
|
2744
2771
|
Archived = "ARCHIVED",
|
|
2745
2772
|
Current = "CURRENT",
|
|
@@ -2760,6 +2787,30 @@ export declare enum ConfluenceContentType {
|
|
|
2760
2787
|
Comment = "COMMENT",
|
|
2761
2788
|
Page = "PAGE"
|
|
2762
2789
|
}
|
|
2790
|
+
export declare type ConfluenceCreateBlogPostInput = {
|
|
2791
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2792
|
+
spaceKey: Scalars['String'];
|
|
2793
|
+
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2794
|
+
title?: Maybe<Scalars['String']>;
|
|
2795
|
+
};
|
|
2796
|
+
export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
2797
|
+
__typename?: 'ConfluenceCreateBlogPostPayload';
|
|
2798
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
2799
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2800
|
+
success: Scalars['Boolean'];
|
|
2801
|
+
};
|
|
2802
|
+
export declare type ConfluenceCreatePageInput = {
|
|
2803
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2804
|
+
spaceKey: Scalars['String'];
|
|
2805
|
+
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2806
|
+
title?: Maybe<Scalars['String']>;
|
|
2807
|
+
};
|
|
2808
|
+
export declare type ConfluenceCreatePagePayload = Payload & {
|
|
2809
|
+
__typename?: 'ConfluenceCreatePagePayload';
|
|
2810
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
2811
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2812
|
+
success: Scalars['Boolean'];
|
|
2813
|
+
};
|
|
2763
2814
|
export declare type ConfluenceCreateSpaceInput = {
|
|
2764
2815
|
key: Scalars['String'];
|
|
2765
2816
|
name: Scalars['String'];
|
|
@@ -2771,6 +2822,24 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2771
2822
|
errors?: Maybe<Array<MutationError>>;
|
|
2772
2823
|
success: Scalars['Boolean'];
|
|
2773
2824
|
};
|
|
2825
|
+
export declare type ConfluenceDeleteBlogPostInput = {
|
|
2826
|
+
id: Scalars['ID'];
|
|
2827
|
+
status: ConfluenceMutationContentStatus;
|
|
2828
|
+
};
|
|
2829
|
+
export declare type ConfluenceDeleteBlogPostPayload = Payload & {
|
|
2830
|
+
__typename?: 'ConfluenceDeleteBlogPostPayload';
|
|
2831
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2832
|
+
success: Scalars['Boolean'];
|
|
2833
|
+
};
|
|
2834
|
+
export declare type ConfluenceDeletePageInput = {
|
|
2835
|
+
id: Scalars['ID'];
|
|
2836
|
+
status: ConfluenceMutationContentStatus;
|
|
2837
|
+
};
|
|
2838
|
+
export declare type ConfluenceDeletePagePayload = Payload & {
|
|
2839
|
+
__typename?: 'ConfluenceDeletePagePayload';
|
|
2840
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2841
|
+
success: Scalars['Boolean'];
|
|
2842
|
+
};
|
|
2774
2843
|
export declare type ConfluenceInlineTask = {
|
|
2775
2844
|
__typename?: 'ConfluenceInlineTask';
|
|
2776
2845
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -2799,15 +2868,68 @@ export declare type ConfluenceLabel = {
|
|
|
2799
2868
|
};
|
|
2800
2869
|
export declare type ConfluenceMutationApi = {
|
|
2801
2870
|
__typename?: 'ConfluenceMutationApi';
|
|
2871
|
+
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
2872
|
+
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
2802
2873
|
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
2874
|
+
confluenceDeleteBlogPost?: Maybe<ConfluenceDeleteBlogPostPayload>;
|
|
2875
|
+
confluenceDeletePage?: Maybe<ConfluenceDeletePagePayload>;
|
|
2876
|
+
confluencePublishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
2877
|
+
confluencePublishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
2878
|
+
confluencePurgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
2879
|
+
confluencePurgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
2880
|
+
confluenceUpdateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
2881
|
+
confluenceUpdateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
2882
|
+
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
2883
|
+
confluenceUpdateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
2803
2884
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2804
2885
|
};
|
|
2886
|
+
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
2887
|
+
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
2888
|
+
};
|
|
2889
|
+
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
2890
|
+
cloudId: Scalars['ID'];
|
|
2891
|
+
pageInput: ConfluenceCreatePageInput;
|
|
2892
|
+
};
|
|
2805
2893
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
2806
2894
|
input: ConfluenceCreateSpaceInput;
|
|
2807
2895
|
};
|
|
2896
|
+
export declare type ConfluenceMutationApiConfluenceDeleteBlogPostArgs = {
|
|
2897
|
+
deletBlogPostInput: ConfluenceDeleteBlogPostInput;
|
|
2898
|
+
};
|
|
2899
|
+
export declare type ConfluenceMutationApiConfluenceDeletePageArgs = {
|
|
2900
|
+
deletPageInput: ConfluenceDeletePageInput;
|
|
2901
|
+
};
|
|
2902
|
+
export declare type ConfluenceMutationApiConfluencePublishBlogPostArgs = {
|
|
2903
|
+
publishBlogPostInput: ConfluencePublishBlogPostInput;
|
|
2904
|
+
};
|
|
2905
|
+
export declare type ConfluenceMutationApiConfluencePublishPageArgs = {
|
|
2906
|
+
publishPageInput: ConfluencePublishPageInput;
|
|
2907
|
+
};
|
|
2908
|
+
export declare type ConfluenceMutationApiConfluencePurgeBlogPostArgs = {
|
|
2909
|
+
purgeBlogPostInput: ConfluencePurgeBlogPostInput;
|
|
2910
|
+
};
|
|
2911
|
+
export declare type ConfluenceMutationApiConfluencePurgePageArgs = {
|
|
2912
|
+
purgePageInput: ConfluencePurgePageInput;
|
|
2913
|
+
};
|
|
2914
|
+
export declare type ConfluenceMutationApiConfluenceUpdateCurrentBlogPostArgs = {
|
|
2915
|
+
updateBlogPostInput: ConfluenceUpdateCurrentBlogPostInput;
|
|
2916
|
+
};
|
|
2917
|
+
export declare type ConfluenceMutationApiConfluenceUpdateCurrentPageArgs = {
|
|
2918
|
+
updatePageInput: ConfluenceUpdateCurrentPageInput;
|
|
2919
|
+
};
|
|
2920
|
+
export declare type ConfluenceMutationApiConfluenceUpdateDraftBlogPostArgs = {
|
|
2921
|
+
updateBlogPostInput: ConfluenceUpdateDraftBlogPostInput;
|
|
2922
|
+
};
|
|
2923
|
+
export declare type ConfluenceMutationApiConfluenceUpdateDraftPageArgs = {
|
|
2924
|
+
updatePageInput: ConfluenceUpdateDraftPageInput;
|
|
2925
|
+
};
|
|
2808
2926
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2809
2927
|
input: ConfluenceUpdateSpaceInput;
|
|
2810
2928
|
};
|
|
2929
|
+
export declare enum ConfluenceMutationContentStatus {
|
|
2930
|
+
Current = "CURRENT",
|
|
2931
|
+
Draft = "DRAFT"
|
|
2932
|
+
}
|
|
2811
2933
|
export declare type ConfluenceOperationCheck = {
|
|
2812
2934
|
__typename?: 'ConfluenceOperationCheck';
|
|
2813
2935
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -2855,18 +2977,72 @@ export declare type ConfluencePageLinks = {
|
|
|
2855
2977
|
base?: Maybe<Scalars['String']>;
|
|
2856
2978
|
webUi?: Maybe<Scalars['String']>;
|
|
2857
2979
|
};
|
|
2980
|
+
export declare type ConfluencePublishBlogPostInput = {
|
|
2981
|
+
id: Scalars['String'];
|
|
2982
|
+
publishTitle?: Maybe<Scalars['String']>;
|
|
2983
|
+
};
|
|
2984
|
+
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
2985
|
+
__typename?: 'ConfluencePublishBlogPostPayload';
|
|
2986
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
2987
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2988
|
+
success: Scalars['Boolean'];
|
|
2989
|
+
};
|
|
2990
|
+
export declare type ConfluencePublishPageInput = {
|
|
2991
|
+
id: Scalars['String'];
|
|
2992
|
+
publishTitle?: Maybe<Scalars['String']>;
|
|
2993
|
+
};
|
|
2994
|
+
export declare type ConfluencePublishPagePayload = Payload & {
|
|
2995
|
+
__typename?: 'ConfluencePublishPagePayload';
|
|
2996
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
2997
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2998
|
+
success: Scalars['Boolean'];
|
|
2999
|
+
};
|
|
3000
|
+
export declare type ConfluencePurgeBlogPostInput = {
|
|
3001
|
+
id: Scalars['ID'];
|
|
3002
|
+
};
|
|
3003
|
+
export declare type ConfluencePurgeBlogPostPayload = Payload & {
|
|
3004
|
+
__typename?: 'ConfluencePurgeBlogPostPayload';
|
|
3005
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3006
|
+
success: Scalars['Boolean'];
|
|
3007
|
+
};
|
|
3008
|
+
export declare type ConfluencePurgePageInput = {
|
|
3009
|
+
id: Scalars['ID'];
|
|
3010
|
+
};
|
|
3011
|
+
export declare type ConfluencePurgePagePayload = Payload & {
|
|
3012
|
+
__typename?: 'ConfluencePurgePagePayload';
|
|
3013
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3014
|
+
success: Scalars['Boolean'];
|
|
3015
|
+
};
|
|
2858
3016
|
export declare type ConfluenceQueryApi = {
|
|
2859
3017
|
__typename?: 'ConfluenceQueryApi';
|
|
3018
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3019
|
+
confluenceBlogPostWithFilters?: Maybe<ConfluenceBlogPost>;
|
|
3020
|
+
confluenceBlogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3021
|
+
confluenceBlogPostsWithFilters?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
2860
3022
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2861
3023
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2862
3024
|
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
2863
|
-
confluencePage?: Maybe<
|
|
2864
|
-
confluencePageWithFilters?: Maybe<
|
|
2865
|
-
confluencePages?: Maybe<Array<Maybe<
|
|
2866
|
-
confluencePagesWithFilters?: Maybe<Array<Maybe<
|
|
3025
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3026
|
+
confluencePageWithFilters?: Maybe<ConfluencePage>;
|
|
3027
|
+
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3028
|
+
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
2867
3029
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2868
3030
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
2869
3031
|
};
|
|
3032
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3033
|
+
id: Scalars['ID'];
|
|
3034
|
+
};
|
|
3035
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostWithFiltersArgs = {
|
|
3036
|
+
id: Scalars['ID'];
|
|
3037
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3038
|
+
};
|
|
3039
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostsArgs = {
|
|
3040
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
3041
|
+
};
|
|
3042
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostsWithFiltersArgs = {
|
|
3043
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
3044
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3045
|
+
};
|
|
2870
3046
|
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
2871
3047
|
id: Scalars['ID'];
|
|
2872
3048
|
};
|
|
@@ -2951,6 +3127,50 @@ export declare enum ConfluenceSpaceType {
|
|
|
2951
3127
|
Global = "GLOBAL",
|
|
2952
3128
|
Personal = "PERSONAL"
|
|
2953
3129
|
}
|
|
3130
|
+
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3131
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3132
|
+
id: Scalars['ID'];
|
|
3133
|
+
title?: Maybe<Scalars['String']>;
|
|
3134
|
+
};
|
|
3135
|
+
export declare type ConfluenceUpdateCurrentBlogPostPayload = Payload & {
|
|
3136
|
+
__typename?: 'ConfluenceUpdateCurrentBlogPostPayload';
|
|
3137
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3138
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3139
|
+
success: Scalars['Boolean'];
|
|
3140
|
+
};
|
|
3141
|
+
export declare type ConfluenceUpdateCurrentPageInput = {
|
|
3142
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3143
|
+
id: Scalars['ID'];
|
|
3144
|
+
title?: Maybe<Scalars['String']>;
|
|
3145
|
+
};
|
|
3146
|
+
export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
3147
|
+
__typename?: 'ConfluenceUpdateCurrentPagePayload';
|
|
3148
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3149
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3150
|
+
success: Scalars['Boolean'];
|
|
3151
|
+
};
|
|
3152
|
+
export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
3153
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3154
|
+
id: Scalars['ID'];
|
|
3155
|
+
title?: Maybe<Scalars['String']>;
|
|
3156
|
+
};
|
|
3157
|
+
export declare type ConfluenceUpdateDraftBlogPostPayload = Payload & {
|
|
3158
|
+
__typename?: 'ConfluenceUpdateDraftBlogPostPayload';
|
|
3159
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3160
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3161
|
+
success: Scalars['Boolean'];
|
|
3162
|
+
};
|
|
3163
|
+
export declare type ConfluenceUpdateDraftPageInput = {
|
|
3164
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3165
|
+
id: Scalars['ID'];
|
|
3166
|
+
title?: Maybe<Scalars['String']>;
|
|
3167
|
+
};
|
|
3168
|
+
export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
3169
|
+
__typename?: 'ConfluenceUpdateDraftPagePayload';
|
|
3170
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3171
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3172
|
+
success: Scalars['Boolean'];
|
|
3173
|
+
};
|
|
2954
3174
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
2955
3175
|
id: Scalars['ID'];
|
|
2956
3176
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3121,7 +3341,7 @@ export declare type ContentPlatformPracticePage = {
|
|
|
3121
3341
|
__typename?: 'ContentPlatformPracticePage';
|
|
3122
3342
|
name: Scalars['String'];
|
|
3123
3343
|
tagline: Scalars['String'];
|
|
3124
|
-
|
|
3344
|
+
introToPractice: ContentPlatformIntroToPractice;
|
|
3125
3345
|
whatIs: ContentPlatformChunkWhatIs;
|
|
3126
3346
|
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
3127
3347
|
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
@@ -3130,6 +3350,16 @@ export declare type ContentPlatformPracticePage = {
|
|
|
3130
3350
|
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
3131
3351
|
practice: ContentPlatformWhatPractice;
|
|
3132
3352
|
};
|
|
3353
|
+
export declare type ContentPlatformPracticePagesConnection = {
|
|
3354
|
+
__typename?: 'ContentPlatformPracticePagesConnection';
|
|
3355
|
+
pageInfo: PageInfo;
|
|
3356
|
+
edges: Array<ContentPlatformPracticePagesEdge>;
|
|
3357
|
+
};
|
|
3358
|
+
export declare type ContentPlatformPracticePagesEdge = {
|
|
3359
|
+
__typename?: 'ContentPlatformPracticePagesEdge';
|
|
3360
|
+
node: ContentPlatformPracticePage;
|
|
3361
|
+
cursor: Scalars['String'];
|
|
3362
|
+
};
|
|
3133
3363
|
export declare type ContentPlatformReleaseNote = {
|
|
3134
3364
|
__typename?: 'ContentPlatformReleaseNote';
|
|
3135
3365
|
releaseNoteId: Scalars['String'];
|
|
@@ -3158,6 +3388,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3158
3388
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
3159
3389
|
publishStatus?: Maybe<Scalars['String']>;
|
|
3160
3390
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3391
|
+
getStarted?: Maybe<Scalars['JSON']>;
|
|
3161
3392
|
};
|
|
3162
3393
|
export declare type ContentPlatformReleaseNoteEntry = {
|
|
3163
3394
|
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
@@ -3186,6 +3417,7 @@ export declare type ContentPlatformReleaseNoteEntry = {
|
|
|
3186
3417
|
updatedAt: Scalars['String'];
|
|
3187
3418
|
url: Scalars['String'];
|
|
3188
3419
|
benefitsList: Scalars['JSON'];
|
|
3420
|
+
getStarted: Scalars['JSON'];
|
|
3189
3421
|
};
|
|
3190
3422
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
3191
3423
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
@@ -3336,7 +3568,7 @@ export declare type CreateColumnInput = {
|
|
|
3336
3568
|
export declare type CreateColumnOutput = MutationResponse & {
|
|
3337
3569
|
__typename?: 'CreateColumnOutput';
|
|
3338
3570
|
newColumn?: Maybe<Column>;
|
|
3339
|
-
columns?: Maybe<Array<Column
|
|
3571
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
3340
3572
|
statusCode: Scalars['Int'];
|
|
3341
3573
|
success: Scalars['Boolean'];
|
|
3342
3574
|
message: Scalars['String'];
|
|
@@ -3439,6 +3671,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
3439
3671
|
componentType: CompassComponentType;
|
|
3440
3672
|
importance: CompassScorecardImportance;
|
|
3441
3673
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
3674
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
3442
3675
|
};
|
|
3443
3676
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
3444
3677
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -3723,6 +3956,10 @@ export declare type CreatePolarisViewSetPayload = Payload & {
|
|
|
3723
3956
|
errors?: Maybe<Array<MutationError>>;
|
|
3724
3957
|
node?: Maybe<PolarisViewSet>;
|
|
3725
3958
|
};
|
|
3959
|
+
export declare type CreateRankingListInput = {
|
|
3960
|
+
listId: Scalars['ID'];
|
|
3961
|
+
items?: Maybe<Array<Scalars['String']>>;
|
|
3962
|
+
};
|
|
3726
3963
|
export declare type CreateSprintInput = {
|
|
3727
3964
|
boardId: Scalars['ID'];
|
|
3728
3965
|
};
|
|
@@ -3802,6 +4039,7 @@ export declare type CustomUiTunnelDefinitionInput = {
|
|
|
3802
4039
|
export declare type CustomerUser = User & LocalizationContext & {
|
|
3803
4040
|
__typename?: 'CustomerUser';
|
|
3804
4041
|
accountId: Scalars['ID'];
|
|
4042
|
+
canonicalAccountId: Scalars['ID'];
|
|
3805
4043
|
accountStatus: AccountStatus;
|
|
3806
4044
|
name: Scalars['String'];
|
|
3807
4045
|
picture: Scalars['URL'];
|
|
@@ -3860,7 +4098,7 @@ export declare type DeleteColumnInput = {
|
|
|
3860
4098
|
};
|
|
3861
4099
|
export declare type DeleteColumnOutput = MutationResponse & {
|
|
3862
4100
|
__typename?: 'DeleteColumnOutput';
|
|
3863
|
-
columns?: Maybe<Array<Column
|
|
4101
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
3864
4102
|
statusCode: Scalars['Int'];
|
|
3865
4103
|
success: Scalars['Boolean'];
|
|
3866
4104
|
message: Scalars['String'];
|
|
@@ -4137,6 +4375,13 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
4137
4375
|
success: Scalars['Boolean'];
|
|
4138
4376
|
errors?: Maybe<Array<MutationError>>;
|
|
4139
4377
|
};
|
|
4378
|
+
export declare type DevOps = {
|
|
4379
|
+
__typename?: 'DevOps';
|
|
4380
|
+
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4381
|
+
};
|
|
4382
|
+
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4383
|
+
ids: Array<Scalars['ID']>;
|
|
4384
|
+
};
|
|
4140
4385
|
export declare type DevOpsAvatar = {
|
|
4141
4386
|
__typename?: 'DevOpsAvatar';
|
|
4142
4387
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -4597,6 +4842,13 @@ export declare type DevOpsServicesFilterInput = {
|
|
|
4597
4842
|
nameContains?: Maybe<Scalars['String']>;
|
|
4598
4843
|
tierLevelIn?: Maybe<Array<Scalars['Int']>>;
|
|
4599
4844
|
};
|
|
4845
|
+
export declare type DevOpsSummarisedDeployments = {
|
|
4846
|
+
__typename?: 'DevOpsSummarisedDeployments';
|
|
4847
|
+
entityId: Scalars['ID'];
|
|
4848
|
+
count?: Maybe<Scalars['Int']>;
|
|
4849
|
+
deploymentState?: Maybe<DeploymentState>;
|
|
4850
|
+
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
4851
|
+
};
|
|
4600
4852
|
export declare type DevOpsThirdPartyRepository = {
|
|
4601
4853
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
4602
4854
|
id: Scalars['ID'];
|
|
@@ -4713,9 +4965,9 @@ export declare type DevOpsToolNavbarConnectionState = {
|
|
|
4713
4965
|
pagesTab: DevOpsToolConnectionState;
|
|
4714
4966
|
};
|
|
4715
4967
|
export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
4716
|
-
CodeTab = "
|
|
4717
|
-
OncallTab = "
|
|
4718
|
-
PagesTab = "
|
|
4968
|
+
CodeTab = "CODE_TAB",
|
|
4969
|
+
OncallTab = "ONCALL_TAB",
|
|
4970
|
+
PagesTab = "PAGES_TAB"
|
|
4719
4971
|
}
|
|
4720
4972
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4721
4973
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
@@ -4740,7 +4992,7 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
4740
4992
|
__typename?: 'DevOpsToolUpdateNavbarConnectionStateTabSeenPayload';
|
|
4741
4993
|
success: Scalars['Boolean'];
|
|
4742
4994
|
errors?: Maybe<Array<MutationError>>;
|
|
4743
|
-
updatedNavbarConnectionState
|
|
4995
|
+
updatedNavbarConnectionState?: Maybe<DevOpsToolNavbarConnectionState>;
|
|
4744
4996
|
};
|
|
4745
4997
|
export declare type DevOpsTools = {
|
|
4746
4998
|
__typename?: 'DevOpsTools';
|
|
@@ -4809,6 +5061,7 @@ export declare type EcosystemMutation = {
|
|
|
4809
5061
|
__typename?: 'EcosystemMutation';
|
|
4810
5062
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
4811
5063
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
5064
|
+
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
4812
5065
|
};
|
|
4813
5066
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
4814
5067
|
input: UpdateAppHostServiceScopesInput;
|
|
@@ -4816,10 +5069,14 @@ export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
|
4816
5069
|
export declare type EcosystemMutationDeleteUserGrantArgs = {
|
|
4817
5070
|
input: DeleteUserGrantInput;
|
|
4818
5071
|
};
|
|
5072
|
+
export declare type EcosystemMutationUpdateUserInstallationRulesArgs = {
|
|
5073
|
+
input: UpdateUserInstallationRulesInput;
|
|
5074
|
+
};
|
|
4819
5075
|
export declare type EcosystemQuery = {
|
|
4820
5076
|
__typename?: 'EcosystemQuery';
|
|
4821
5077
|
userGrants?: Maybe<UserGrantConnection>;
|
|
4822
5078
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
5079
|
+
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
4823
5080
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
4824
5081
|
};
|
|
4825
5082
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -4831,6 +5088,9 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
4831
5088
|
export declare type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
4832
5089
|
input: CheckConsentPermissionByOAuthClientIdInput;
|
|
4833
5090
|
};
|
|
5091
|
+
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
5092
|
+
cloudId: Scalars['ID'];
|
|
5093
|
+
};
|
|
4834
5094
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
4835
5095
|
appId: Scalars['ID'];
|
|
4836
5096
|
};
|
|
@@ -4889,6 +5149,10 @@ export declare type EventSource = {
|
|
|
4889
5149
|
externalEventSourceId: Scalars['ID'];
|
|
4890
5150
|
eventType: CompassEventType;
|
|
4891
5151
|
forgeAppId?: Maybe<Scalars['ID']>;
|
|
5152
|
+
events?: Maybe<CompassEventsQueryResult>;
|
|
5153
|
+
};
|
|
5154
|
+
export declare type EventSourceEventsArgs = {
|
|
5155
|
+
query?: Maybe<CompassEventsInEventSourceQuery>;
|
|
4892
5156
|
};
|
|
4893
5157
|
export declare type Extension = {
|
|
4894
5158
|
__typename?: 'Extension';
|
|
@@ -5160,11 +5424,8 @@ export declare type InvokeAuxEffectsInput = {
|
|
|
5160
5424
|
entryPoint?: Maybe<Scalars['String']>;
|
|
5161
5425
|
payload: AuxEffectsInvocationPayload;
|
|
5162
5426
|
};
|
|
5163
|
-
export declare type InvokeAuxEffectsResponse =
|
|
5427
|
+
export declare type InvokeAuxEffectsResponse = Payload & {
|
|
5164
5428
|
__typename?: 'InvokeAuxEffectsResponse';
|
|
5165
|
-
statusCode: Scalars['Int'];
|
|
5166
|
-
message: Scalars['String'];
|
|
5167
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
5168
5429
|
success: Scalars['Boolean'];
|
|
5169
5430
|
errors?: Maybe<Array<MutationError>>;
|
|
5170
5431
|
result?: Maybe<AuxEffectsResult>;
|
|
@@ -5187,11 +5448,8 @@ export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
|
5187
5448
|
__typename?: 'InvokeExtensionPayloadErrorExtensionFields';
|
|
5188
5449
|
authInfoUrl?: Maybe<Scalars['String']>;
|
|
5189
5450
|
};
|
|
5190
|
-
export declare type InvokeExtensionResponse =
|
|
5451
|
+
export declare type InvokeExtensionResponse = Payload & {
|
|
5191
5452
|
__typename?: 'InvokeExtensionResponse';
|
|
5192
|
-
statusCode: Scalars['Int'];
|
|
5193
|
-
message: Scalars['String'];
|
|
5194
|
-
errorDetails?: Maybe<ErrorDetails>;
|
|
5195
5453
|
success: Scalars['Boolean'];
|
|
5196
5454
|
errors?: Maybe<Array<MutationError>>;
|
|
5197
5455
|
response?: Maybe<InvocationResponsePayload>;
|
|
@@ -6609,6 +6867,7 @@ export declare type JiraIssue = Node & {
|
|
|
6609
6867
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6610
6868
|
childIssues?: Maybe<JiraChildIssues>;
|
|
6611
6869
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6870
|
+
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
6612
6871
|
};
|
|
6613
6872
|
export declare type JiraIssueFieldsArgs = {
|
|
6614
6873
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -8511,6 +8770,9 @@ export declare type JiraQuery = {
|
|
|
8511
8770
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
8512
8771
|
issueByKey?: Maybe<JiraIssue>;
|
|
8513
8772
|
issueById?: Maybe<JiraIssue>;
|
|
8773
|
+
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8774
|
+
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8775
|
+
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
8514
8776
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8515
8777
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8516
8778
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
@@ -8568,6 +8830,12 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
8568
8830
|
export declare type JiraQueryIssueByIdArgs = {
|
|
8569
8831
|
id: Scalars['ID'];
|
|
8570
8832
|
};
|
|
8833
|
+
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
8834
|
+
issueId: Scalars['ID'];
|
|
8835
|
+
};
|
|
8836
|
+
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
8837
|
+
issueKey: Scalars['String'];
|
|
8838
|
+
};
|
|
8571
8839
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
8572
8840
|
cloudId: Scalars['ID'];
|
|
8573
8841
|
keys: Array<Scalars['String']>;
|
|
@@ -8818,8 +9086,8 @@ export declare enum JiraReviewState {
|
|
|
8818
9086
|
}
|
|
8819
9087
|
export declare type JiraRichText = {
|
|
8820
9088
|
__typename?: 'JiraRichText';
|
|
8821
|
-
plainText?: Maybe<Scalars['String']>;
|
|
8822
9089
|
adfValue?: Maybe<JiraAdf>;
|
|
9090
|
+
plainText?: Maybe<Scalars['String']>;
|
|
8823
9091
|
wikiValue?: Maybe<Scalars['String']>;
|
|
8824
9092
|
};
|
|
8825
9093
|
export declare type JiraRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
@@ -8907,6 +9175,30 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
8907
9175
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
8908
9176
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
8909
9177
|
};
|
|
9178
|
+
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
9179
|
+
first?: Maybe<Scalars['Int']>;
|
|
9180
|
+
after?: Maybe<Scalars['String']>;
|
|
9181
|
+
last?: Maybe<Scalars['Int']>;
|
|
9182
|
+
before?: Maybe<Scalars['String']>;
|
|
9183
|
+
};
|
|
9184
|
+
export declare type JiraServiceManagementActiveApprovalExcludedApproversArgs = {
|
|
9185
|
+
first?: Maybe<Scalars['Int']>;
|
|
9186
|
+
after?: Maybe<Scalars['String']>;
|
|
9187
|
+
last?: Maybe<Scalars['Int']>;
|
|
9188
|
+
before?: Maybe<Scalars['String']>;
|
|
9189
|
+
};
|
|
9190
|
+
export declare type JiraServiceManagementActiveApprovalDecisionsArgs = {
|
|
9191
|
+
first?: Maybe<Scalars['Int']>;
|
|
9192
|
+
after?: Maybe<Scalars['String']>;
|
|
9193
|
+
last?: Maybe<Scalars['Int']>;
|
|
9194
|
+
before?: Maybe<Scalars['String']>;
|
|
9195
|
+
};
|
|
9196
|
+
export declare type JiraServiceManagementActiveApprovalApproverPrincipalsArgs = {
|
|
9197
|
+
first?: Maybe<Scalars['Int']>;
|
|
9198
|
+
after?: Maybe<Scalars['String']>;
|
|
9199
|
+
last?: Maybe<Scalars['Int']>;
|
|
9200
|
+
before?: Maybe<Scalars['String']>;
|
|
9201
|
+
};
|
|
8910
9202
|
export declare type JiraServiceManagementApprovalCondition = {
|
|
8911
9203
|
__typename?: 'JiraServiceManagementApprovalCondition';
|
|
8912
9204
|
type?: Maybe<Scalars['String']>;
|
|
@@ -8964,7 +9256,7 @@ export declare type JiraServiceManagementApproverEdge = {
|
|
|
8964
9256
|
node?: Maybe<JiraServiceManagementApprover>;
|
|
8965
9257
|
cursor: Scalars['String'];
|
|
8966
9258
|
};
|
|
8967
|
-
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal |
|
|
9259
|
+
export declare type JiraServiceManagementApproverPrincipal = JiraServiceManagementUserApproverPrincipal | JiraServiceManagementGroupApproverPrincipal;
|
|
8968
9260
|
export declare type JiraServiceManagementApproverPrincipalConnection = {
|
|
8969
9261
|
__typename?: 'JiraServiceManagementApproverPrincipalConnection';
|
|
8970
9262
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -9024,6 +9316,12 @@ export declare type JiraServiceManagementCompletedApproval = Node & {
|
|
|
9024
9316
|
completedDate?: Maybe<Scalars['DateTime']>;
|
|
9025
9317
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
9026
9318
|
};
|
|
9319
|
+
export declare type JiraServiceManagementCompletedApprovalApproversArgs = {
|
|
9320
|
+
first?: Maybe<Scalars['Int']>;
|
|
9321
|
+
after?: Maybe<Scalars['String']>;
|
|
9322
|
+
last?: Maybe<Scalars['Int']>;
|
|
9323
|
+
before?: Maybe<Scalars['String']>;
|
|
9324
|
+
};
|
|
9027
9325
|
export declare type JiraServiceManagementCompletedApprovalConnection = {
|
|
9028
9326
|
__typename?: 'JiraServiceManagementCompletedApprovalConnection';
|
|
9029
9327
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -9074,17 +9372,6 @@ export declare type JiraServiceManagementGroupApproverPrincipal = {
|
|
|
9074
9372
|
memberCount?: Maybe<Scalars['Int']>;
|
|
9075
9373
|
approvedCount?: Maybe<Scalars['Int']>;
|
|
9076
9374
|
};
|
|
9077
|
-
export declare type JiraServiceManagementGroupApproverPrincipalConnection = {
|
|
9078
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalConnection';
|
|
9079
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
9080
|
-
pageInfo: PageInfo;
|
|
9081
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementGroupApproverPrincipalEdge>>>;
|
|
9082
|
-
};
|
|
9083
|
-
export declare type JiraServiceManagementGroupApproverPrincipalEdge = {
|
|
9084
|
-
__typename?: 'JiraServiceManagementGroupApproverPrincipalEdge';
|
|
9085
|
-
node?: Maybe<JiraServiceManagementGroupApproverPrincipal>;
|
|
9086
|
-
cursor: Scalars['String'];
|
|
9087
|
-
};
|
|
9088
9375
|
export declare type JiraServiceManagementIncident = {
|
|
9089
9376
|
__typename?: 'JiraServiceManagementIncident';
|
|
9090
9377
|
hasLinkedIncidents?: Maybe<Scalars['Boolean']>;
|
|
@@ -9344,17 +9631,6 @@ export declare type JiraServiceManagementUserApproverPrincipal = {
|
|
|
9344
9631
|
user?: Maybe<User>;
|
|
9345
9632
|
jiraRest?: Maybe<Scalars['URL']>;
|
|
9346
9633
|
};
|
|
9347
|
-
export declare type JiraServiceManagementUserApproverPrincipalConnection = {
|
|
9348
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalConnection';
|
|
9349
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
9350
|
-
pageInfo: PageInfo;
|
|
9351
|
-
edges?: Maybe<Array<Maybe<JiraServiceManagementUserApproverPrincipalEdge>>>;
|
|
9352
|
-
};
|
|
9353
|
-
export declare type JiraServiceManagementUserApproverPrincipalEdge = {
|
|
9354
|
-
__typename?: 'JiraServiceManagementUserApproverPrincipalEdge';
|
|
9355
|
-
node?: Maybe<JiraServiceManagementUserApproverPrincipal>;
|
|
9356
|
-
cursor: Scalars['String'];
|
|
9357
|
-
};
|
|
9358
9634
|
export declare type JiraServiceManagementUserResponder = {
|
|
9359
9635
|
__typename?: 'JiraServiceManagementUserResponder';
|
|
9360
9636
|
user?: Maybe<User>;
|
|
@@ -9545,6 +9821,18 @@ export declare enum JiraStatusCategoryColor {
|
|
|
9545
9821
|
WarmRed = "WARM_RED",
|
|
9546
9822
|
BlueGray = "BLUE_GRAY"
|
|
9547
9823
|
}
|
|
9824
|
+
export declare type JiraStatusCategoryField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9825
|
+
__typename?: 'JiraStatusCategoryField';
|
|
9826
|
+
id: Scalars['ID'];
|
|
9827
|
+
fieldId: Scalars['String'];
|
|
9828
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9829
|
+
type: Scalars['String'];
|
|
9830
|
+
name: Scalars['String'];
|
|
9831
|
+
description?: Maybe<Scalars['String']>;
|
|
9832
|
+
statusCategory: JiraStatusCategory;
|
|
9833
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9834
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9835
|
+
};
|
|
9548
9836
|
export declare type JiraStatusField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9549
9837
|
__typename?: 'JiraStatusField';
|
|
9550
9838
|
id: Scalars['ID'];
|
|
@@ -9615,6 +9903,26 @@ export declare type JiraTeamFieldTeamsArgs = {
|
|
|
9615
9903
|
last?: Maybe<Scalars['Int']>;
|
|
9616
9904
|
before?: Maybe<Scalars['String']>;
|
|
9617
9905
|
};
|
|
9906
|
+
export declare type JiraTeamView = {
|
|
9907
|
+
__typename?: 'JiraTeamView';
|
|
9908
|
+
jiraSuppliedId?: Maybe<Scalars['String']>;
|
|
9909
|
+
jiraSuppliedName?: Maybe<Scalars['String']>;
|
|
9910
|
+
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
9911
|
+
fullTeam?: Maybe<Team>;
|
|
9912
|
+
};
|
|
9913
|
+
export declare type JiraTeamViewField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9914
|
+
__typename?: 'JiraTeamViewField';
|
|
9915
|
+
id: Scalars['ID'];
|
|
9916
|
+
fieldId: Scalars['String'];
|
|
9917
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9918
|
+
type: Scalars['String'];
|
|
9919
|
+
name: Scalars['String'];
|
|
9920
|
+
description?: Maybe<Scalars['String']>;
|
|
9921
|
+
selectedTeam?: Maybe<JiraTeamView>;
|
|
9922
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
9923
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9924
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9925
|
+
};
|
|
9618
9926
|
export declare enum JiraTimeFormat {
|
|
9619
9927
|
Pretty = "PRETTY",
|
|
9620
9928
|
Days = "DAYS",
|
|
@@ -9753,6 +10061,7 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
9753
10061
|
InProgress = "IN_PROGRESS",
|
|
9754
10062
|
Done = "DONE",
|
|
9755
10063
|
UnreviewedCode = "UNREVIEWED_CODE",
|
|
10064
|
+
OpenReview = "OPEN_REVIEW",
|
|
9756
10065
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
9757
10066
|
FailingBuild = "FAILING_BUILD"
|
|
9758
10067
|
}
|
|
@@ -9770,6 +10079,7 @@ export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
|
9770
10079
|
export declare type JiraVersionWarningConfig = {
|
|
9771
10080
|
__typename?: 'JiraVersionWarningConfig';
|
|
9772
10081
|
openPullRequest?: Maybe<JiraVersionWarningConfigState>;
|
|
10082
|
+
openReview?: Maybe<JiraVersionWarningConfigState>;
|
|
9773
10083
|
unreviewedCode?: Maybe<JiraVersionWarningConfigState>;
|
|
9774
10084
|
failingBuild?: Maybe<JiraVersionWarningConfigState>;
|
|
9775
10085
|
};
|
|
@@ -10364,8 +10674,10 @@ export declare type Mutation = {
|
|
|
10364
10674
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
10365
10675
|
jira?: Maybe<JiraMutation>;
|
|
10366
10676
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
10677
|
+
roadmaps?: Maybe<RoadmapsMutation>;
|
|
10367
10678
|
appStorage?: Maybe<AppStorageMutation>;
|
|
10368
10679
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
10680
|
+
polaris?: Maybe<PolarisMutationNamespace>;
|
|
10369
10681
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
10370
10682
|
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
10371
10683
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
@@ -11672,6 +11984,10 @@ export declare type PolarisMatrixConfig = {
|
|
|
11672
11984
|
__typename?: 'PolarisMatrixConfig';
|
|
11673
11985
|
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
11674
11986
|
};
|
|
11987
|
+
export declare type PolarisMutationNamespace = {
|
|
11988
|
+
__typename?: 'PolarisMutationNamespace';
|
|
11989
|
+
ranking?: Maybe<PolarisRankingMutationNamespace>;
|
|
11990
|
+
};
|
|
11675
11991
|
export declare type PolarisPlay = {
|
|
11676
11992
|
__typename?: 'PolarisPlay';
|
|
11677
11993
|
id: Scalars['ID'];
|
|
@@ -11743,6 +12059,55 @@ export declare type PolarisProjectTemplate = {
|
|
|
11743
12059
|
__typename?: 'PolarisProjectTemplate';
|
|
11744
12060
|
ideas?: Maybe<Scalars['JSON']>;
|
|
11745
12061
|
};
|
|
12062
|
+
export declare type PolarisQueryNamespace = {
|
|
12063
|
+
__typename?: 'PolarisQueryNamespace';
|
|
12064
|
+
ranking?: Maybe<PolarisRankingQueryNamespace>;
|
|
12065
|
+
};
|
|
12066
|
+
export declare type PolarisRankingMutationNamespace = {
|
|
12067
|
+
__typename?: 'PolarisRankingMutationNamespace';
|
|
12068
|
+
createList?: Maybe<RankingDiffPayload>;
|
|
12069
|
+
deleteList?: Maybe<RankingDiffPayload>;
|
|
12070
|
+
makeFirst?: Maybe<RankingDiffPayload>;
|
|
12071
|
+
makeLast?: Maybe<RankingDiffPayload>;
|
|
12072
|
+
makeBefore?: Maybe<RankingDiffPayload>;
|
|
12073
|
+
makeAfter?: Maybe<RankingDiffPayload>;
|
|
12074
|
+
makeUnranked?: Maybe<RankingDiffPayload>;
|
|
12075
|
+
};
|
|
12076
|
+
export declare type PolarisRankingMutationNamespaceCreateListArgs = {
|
|
12077
|
+
input: CreateRankingListInput;
|
|
12078
|
+
};
|
|
12079
|
+
export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
|
|
12080
|
+
listId: Scalars['ID'];
|
|
12081
|
+
};
|
|
12082
|
+
export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
|
|
12083
|
+
listId: Scalars['ID'];
|
|
12084
|
+
id: Scalars['ID'];
|
|
12085
|
+
};
|
|
12086
|
+
export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
|
|
12087
|
+
listId: Scalars['ID'];
|
|
12088
|
+
id: Scalars['ID'];
|
|
12089
|
+
};
|
|
12090
|
+
export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
|
|
12091
|
+
listId: Scalars['ID'];
|
|
12092
|
+
refId: Scalars['ID'];
|
|
12093
|
+
id: Scalars['ID'];
|
|
12094
|
+
};
|
|
12095
|
+
export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
|
|
12096
|
+
listId: Scalars['ID'];
|
|
12097
|
+
refId: Scalars['ID'];
|
|
12098
|
+
id: Scalars['ID'];
|
|
12099
|
+
};
|
|
12100
|
+
export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
|
|
12101
|
+
listId: Scalars['ID'];
|
|
12102
|
+
id: Scalars['ID'];
|
|
12103
|
+
};
|
|
12104
|
+
export declare type PolarisRankingQueryNamespace = {
|
|
12105
|
+
__typename?: 'PolarisRankingQueryNamespace';
|
|
12106
|
+
list?: Maybe<Array<Maybe<RankItem>>>;
|
|
12107
|
+
};
|
|
12108
|
+
export declare type PolarisRankingQueryNamespaceListArgs = {
|
|
12109
|
+
listId: Scalars['ID'];
|
|
12110
|
+
};
|
|
11746
12111
|
export declare enum PolarisRefreshError {
|
|
11747
12112
|
NeedAuth = "NEED_AUTH",
|
|
11748
12113
|
InvalidSnippet = "INVALID_SNIPPET",
|
|
@@ -11921,6 +12286,7 @@ export declare type PolarisView = {
|
|
|
11921
12286
|
lastViewed?: Maybe<Array<Maybe<PolarisViewLastViewed>>>;
|
|
11922
12287
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
11923
12288
|
collabServiceDelegation?: Maybe<PolarisDelegationToken>;
|
|
12289
|
+
sortMode: PolarisViewSortMode;
|
|
11924
12290
|
};
|
|
11925
12291
|
export declare type PolarisViewJqlArgs = {
|
|
11926
12292
|
filter?: Maybe<PolarisFilterInput>;
|
|
@@ -11987,6 +12353,11 @@ export declare enum PolarisViewSetType {
|
|
|
11987
12353
|
Single = "SINGLE",
|
|
11988
12354
|
Section = "SECTION"
|
|
11989
12355
|
}
|
|
12356
|
+
export declare enum PolarisViewSortMode {
|
|
12357
|
+
ProjectRank = "PROJECT_RANK",
|
|
12358
|
+
ViewRank = "VIEW_RANK",
|
|
12359
|
+
FieldsSort = "FIELDS_SORT"
|
|
12360
|
+
}
|
|
11990
12361
|
export declare type PolarisViewTableColumnSize = {
|
|
11991
12362
|
__typename?: 'PolarisViewTableColumnSize';
|
|
11992
12363
|
field: PolarisIdeaField;
|
|
@@ -12020,15 +12391,12 @@ export declare type Query = {
|
|
|
12020
12391
|
activities?: Maybe<Activities>;
|
|
12021
12392
|
activity?: Maybe<Activity>;
|
|
12022
12393
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
12023
|
-
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12024
|
-
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12025
|
-
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
12026
12394
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
12027
12395
|
shepherd?: Maybe<ShepherdQuery>;
|
|
12028
12396
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
12029
12397
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
12030
12398
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
12031
|
-
practicePages:
|
|
12399
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
12032
12400
|
practicePage: ContentPlatformPracticePage;
|
|
12033
12401
|
apps?: Maybe<AppConnection>;
|
|
12034
12402
|
app?: Maybe<App>;
|
|
@@ -12038,10 +12406,14 @@ export declare type Query = {
|
|
|
12038
12406
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
12039
12407
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
12040
12408
|
search?: Maybe<SearchQueryApi>;
|
|
12409
|
+
devOps?: Maybe<DevOps>;
|
|
12041
12410
|
me: AuthenticationContext;
|
|
12042
12411
|
user?: Maybe<User>;
|
|
12043
12412
|
users?: Maybe<Array<User>>;
|
|
12044
12413
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
12414
|
+
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12415
|
+
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
12416
|
+
jiraProjectAndRepositoryRelationship?: Maybe<JiraProjectAndRepositoryRelationship>;
|
|
12045
12417
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
12046
12418
|
devOpsServiceRelationshipsForOpsgenieTeam?: Maybe<DevOpsServiceAndOpsgenieTeamRelationshipConnection>;
|
|
12047
12419
|
devOpsServiceAndOpsgenieTeamRelationship?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
@@ -12089,6 +12461,7 @@ export declare type Query = {
|
|
|
12089
12461
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
12090
12462
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
12091
12463
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
12464
|
+
polaris?: Maybe<PolarisQueryNamespace>;
|
|
12092
12465
|
dvcs?: Maybe<DvcsQuery>;
|
|
12093
12466
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
12094
12467
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -12111,24 +12484,6 @@ export declare type Query = {
|
|
|
12111
12484
|
export declare type QueryNodeArgs = {
|
|
12112
12485
|
id: Scalars['ID'];
|
|
12113
12486
|
};
|
|
12114
|
-
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
12115
|
-
id: Scalars['ID'];
|
|
12116
|
-
cloudId: Scalars['ID'];
|
|
12117
|
-
first?: Maybe<Scalars['Int']>;
|
|
12118
|
-
after?: Maybe<Scalars['String']>;
|
|
12119
|
-
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12120
|
-
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12121
|
-
};
|
|
12122
|
-
export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
12123
|
-
id: Scalars['ID'];
|
|
12124
|
-
first?: Maybe<Scalars['Int']>;
|
|
12125
|
-
after?: Maybe<Scalars['String']>;
|
|
12126
|
-
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12127
|
-
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12128
|
-
};
|
|
12129
|
-
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
12130
|
-
id: Scalars['ID'];
|
|
12131
|
-
};
|
|
12132
12487
|
export declare type QueryReleaseNotesArgs = {
|
|
12133
12488
|
after?: Maybe<Scalars['String']>;
|
|
12134
12489
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -12140,6 +12495,10 @@ export declare type QueryReleaseNoteArgs = {
|
|
|
12140
12495
|
id: Scalars['String'];
|
|
12141
12496
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
12142
12497
|
};
|
|
12498
|
+
export declare type QueryPracticePagesArgs = {
|
|
12499
|
+
after?: Maybe<Scalars['String']>;
|
|
12500
|
+
first?: Maybe<Scalars['Int']>;
|
|
12501
|
+
};
|
|
12143
12502
|
export declare type QueryPracticePageArgs = {
|
|
12144
12503
|
id: Scalars['String'];
|
|
12145
12504
|
};
|
|
@@ -12168,6 +12527,24 @@ export declare type QueryUserArgs = {
|
|
|
12168
12527
|
export declare type QueryUsersArgs = {
|
|
12169
12528
|
accountIds: Array<Scalars['ID']>;
|
|
12170
12529
|
};
|
|
12530
|
+
export declare type QueryJiraProjectRelationshipsForRepositoryArgs = {
|
|
12531
|
+
id: Scalars['ID'];
|
|
12532
|
+
cloudId: Scalars['ID'];
|
|
12533
|
+
first?: Maybe<Scalars['Int']>;
|
|
12534
|
+
after?: Maybe<Scalars['String']>;
|
|
12535
|
+
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12536
|
+
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12537
|
+
};
|
|
12538
|
+
export declare type QueryRepositoryRelationshipsForJiraProjectArgs = {
|
|
12539
|
+
id: Scalars['ID'];
|
|
12540
|
+
first?: Maybe<Scalars['Int']>;
|
|
12541
|
+
after?: Maybe<Scalars['String']>;
|
|
12542
|
+
filter?: Maybe<JiraProjectAndRepositoryRelationshipFilter>;
|
|
12543
|
+
sort?: Maybe<JiraProjectAndRepositoryRelationshipSort>;
|
|
12544
|
+
};
|
|
12545
|
+
export declare type QueryJiraProjectAndRepositoryRelationshipArgs = {
|
|
12546
|
+
id: Scalars['ID'];
|
|
12547
|
+
};
|
|
12171
12548
|
export declare type QueryOpsgenieTeamRelationshipForDevOpsServiceArgs = {
|
|
12172
12549
|
id: Scalars['ID'];
|
|
12173
12550
|
};
|
|
@@ -12409,11 +12786,22 @@ export declare type RankColumnInput = {
|
|
|
12409
12786
|
};
|
|
12410
12787
|
export declare type RankColumnOutput = MutationResponse & {
|
|
12411
12788
|
__typename?: 'RankColumnOutput';
|
|
12412
|
-
columns?: Maybe<Array<Column
|
|
12789
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
12413
12790
|
statusCode: Scalars['Int'];
|
|
12414
12791
|
success: Scalars['Boolean'];
|
|
12415
12792
|
message: Scalars['String'];
|
|
12416
12793
|
};
|
|
12794
|
+
export declare type RankItem = {
|
|
12795
|
+
__typename?: 'RankItem';
|
|
12796
|
+
id: Scalars['ID'];
|
|
12797
|
+
rank: Scalars['Float'];
|
|
12798
|
+
};
|
|
12799
|
+
export declare type RankingDiffPayload = {
|
|
12800
|
+
__typename?: 'RankingDiffPayload';
|
|
12801
|
+
added?: Maybe<Array<RankItem>>;
|
|
12802
|
+
changed?: Maybe<Array<RankItem>>;
|
|
12803
|
+
deleted?: Maybe<Array<RankItem>>;
|
|
12804
|
+
};
|
|
12417
12805
|
export declare enum RateLimitingCurrency {
|
|
12418
12806
|
TestingService = "TESTING_SERVICE",
|
|
12419
12807
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
@@ -12566,6 +12954,21 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
12566
12954
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
12567
12955
|
sprintField?: Maybe<Scalars['ID']>;
|
|
12568
12956
|
};
|
|
12957
|
+
export declare type RoadmapFeatureToggleInput = {
|
|
12958
|
+
sourceARI: Scalars['ID'];
|
|
12959
|
+
enabled: Scalars['Boolean'];
|
|
12960
|
+
};
|
|
12961
|
+
export declare type RoadmapFeatureToggleOutput = {
|
|
12962
|
+
__typename?: 'RoadmapFeatureToggleOutput';
|
|
12963
|
+
enabled: Scalars['Boolean'];
|
|
12964
|
+
isCrossProject: Scalars['Boolean'];
|
|
12965
|
+
};
|
|
12966
|
+
export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
12967
|
+
__typename?: 'RoadmapFeatureTogglePayload';
|
|
12968
|
+
success: Scalars['Boolean'];
|
|
12969
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12970
|
+
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
12971
|
+
};
|
|
12569
12972
|
export declare type RoadmapItem = {
|
|
12570
12973
|
__typename?: 'RoadmapItem';
|
|
12571
12974
|
id: Scalars['ID'];
|
|
@@ -12638,6 +13041,11 @@ export declare type RoadmapMetadata = {
|
|
|
12638
13041
|
hasExceededIssueLimit: Scalars['Boolean'];
|
|
12639
13042
|
corruptedIssueCount: Scalars['Int'];
|
|
12640
13043
|
};
|
|
13044
|
+
export declare type RoadmapMutationErrorExtension = MutationErrorExtension & {
|
|
13045
|
+
__typename?: 'RoadmapMutationErrorExtension';
|
|
13046
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
13047
|
+
errorType?: Maybe<Scalars['String']>;
|
|
13048
|
+
};
|
|
12641
13049
|
export declare enum RoadmapPaletteColor {
|
|
12642
13050
|
Purple = "PURPLE",
|
|
12643
13051
|
Blue = "BLUE",
|
|
@@ -12734,6 +13142,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
12734
13142
|
timelineMode: RoadmapTimelineMode;
|
|
12735
13143
|
epicView: RoadmapEpicView;
|
|
12736
13144
|
levelOneView: RoadmapLevelOneView;
|
|
13145
|
+
levelOneViewSettings: RoadmapViewSettings;
|
|
12737
13146
|
};
|
|
12738
13147
|
export declare type RoadmapVersion = {
|
|
12739
13148
|
__typename?: 'RoadmapVersion';
|
|
@@ -12746,6 +13155,18 @@ export declare enum RoadmapVersionStatus {
|
|
|
12746
13155
|
Unreleased = "UNRELEASED",
|
|
12747
13156
|
Archived = "ARCHIVED"
|
|
12748
13157
|
}
|
|
13158
|
+
export declare type RoadmapViewSettings = {
|
|
13159
|
+
__typename?: 'RoadmapViewSettings';
|
|
13160
|
+
period: Scalars['Int'];
|
|
13161
|
+
showCompleted: Scalars['Boolean'];
|
|
13162
|
+
};
|
|
13163
|
+
export declare type RoadmapsMutation = {
|
|
13164
|
+
__typename?: 'RoadmapsMutation';
|
|
13165
|
+
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13166
|
+
};
|
|
13167
|
+
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13168
|
+
input?: Maybe<RoadmapFeatureToggleInput>;
|
|
13169
|
+
};
|
|
12749
13170
|
export declare type RoadmapsQuery = {
|
|
12750
13171
|
__typename?: 'RoadmapsQuery';
|
|
12751
13172
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -12776,21 +13197,57 @@ export declare enum Scope {
|
|
|
12776
13197
|
WriteCompassScorecard = "WRITE_COMPASS_SCORECARD",
|
|
12777
13198
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
12778
13199
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
13200
|
+
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
13201
|
+
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
12779
13202
|
ConfluenceAtlassianExternal = "CONFLUENCE_ATLASSIAN_EXTERNAL",
|
|
12780
|
-
|
|
12781
|
-
|
|
12782
|
-
|
|
12783
|
-
|
|
13203
|
+
ReadConfluenceContentAnalytics = "READ_CONFLUENCE_CONTENT_ANALYTICS",
|
|
13204
|
+
ReadConfluenceAuditLog = "READ_CONFLUENCE_AUDIT_LOG",
|
|
13205
|
+
WriteConfluenceAuditLog = "WRITE_CONFLUENCE_AUDIT_LOG",
|
|
13206
|
+
ReadConfluenceConfiguration = "READ_CONFLUENCE_CONFIGURATION",
|
|
13207
|
+
WriteConfluenceConfiguration = "WRITE_CONFLUENCE_CONFIGURATION",
|
|
13208
|
+
ReadConfluencePage = "READ_CONFLUENCE_PAGE",
|
|
13209
|
+
WriteConfluencePage = "WRITE_CONFLUENCE_PAGE",
|
|
13210
|
+
DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
|
|
13211
|
+
ReadConfluenceBlogpost = "READ_CONFLUENCE_BLOGPOST",
|
|
13212
|
+
WriteConfluenceBlogpost = "WRITE_CONFLUENCE_BLOGPOST",
|
|
13213
|
+
DeleteConfluenceBlogpost = "DELETE_CONFLUENCE_BLOGPOST",
|
|
13214
|
+
ReadConfluenceCustomContent = "READ_CONFLUENCE_CUSTOM_CONTENT",
|
|
13215
|
+
WriteConfluenceCustomContent = "WRITE_CONFLUENCE_CUSTOM_CONTENT",
|
|
13216
|
+
DeleteConfluenceCustomContent = "DELETE_CONFLUENCE_CUSTOM_CONTENT",
|
|
13217
|
+
ReadConfluenceAttachment = "READ_CONFLUENCE_ATTACHMENT",
|
|
13218
|
+
WriteConfluenceAttachment = "WRITE_CONFLUENCE_ATTACHMENT",
|
|
13219
|
+
DeleteConfluenceAttachment = "DELETE_CONFLUENCE_ATTACHMENT",
|
|
13220
|
+
ReadConfluenceComment = "READ_CONFLUENCE_COMMENT",
|
|
13221
|
+
WriteConfluenceComment = "WRITE_CONFLUENCE_COMMENT",
|
|
13222
|
+
DeleteConfluenceComment = "DELETE_CONFLUENCE_COMMENT",
|
|
13223
|
+
ReadConfluenceTemplate = "READ_CONFLUENCE_TEMPLATE",
|
|
13224
|
+
WriteConfluenceTemplate = "WRITE_CONFLUENCE_TEMPLATE",
|
|
13225
|
+
ReadConfluenceLabel = "READ_CONFLUENCE_LABEL",
|
|
13226
|
+
WriteConfluenceLabel = "WRITE_CONFLUENCE_LABEL",
|
|
13227
|
+
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
13228
|
+
ReadConfluenceContentProperty = "READ_CONFLUENCE_CONTENT_PROPERTY",
|
|
13229
|
+
WriteConfluenceContentProperty = "WRITE_CONFLUENCE_CONTENT_PROPERTY",
|
|
13230
|
+
ReadConfluenceContentRestriction = "READ_CONFLUENCE_CONTENT_RESTRICTION",
|
|
13231
|
+
WriteConfluenceContentRestriction = "WRITE_CONFLUENCE_CONTENT_RESTRICTION",
|
|
13232
|
+
ReadConfluenceContentMetadata = "READ_CONFLUENCE_CONTENT_METADATA",
|
|
13233
|
+
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
13234
|
+
WriteConfluenceWatcher = "WRITE_CONFLUENCE_WATCHER",
|
|
13235
|
+
ReadConfluenceGroup = "READ_CONFLUENCE_GROUP",
|
|
13236
|
+
WriteConfluenceGroup = "WRITE_CONFLUENCE_GROUP",
|
|
13237
|
+
ReadConfluenceInlineTask = "READ_CONFLUENCE_INLINE_TASK",
|
|
13238
|
+
WriteConfluenceInlineTask = "WRITE_CONFLUENCE_INLINE_TASK",
|
|
13239
|
+
ReadConfluenceRelation = "READ_CONFLUENCE_RELATION",
|
|
13240
|
+
WriteConfluenceRelation = "WRITE_CONFLUENCE_RELATION",
|
|
13241
|
+
ReadConfluenceSpace = "READ_CONFLUENCE_SPACE",
|
|
12784
13242
|
WriteConfluenceSpace = "WRITE_CONFLUENCE_SPACE",
|
|
12785
|
-
|
|
12786
|
-
|
|
12787
|
-
|
|
12788
|
-
|
|
12789
|
-
|
|
12790
|
-
|
|
12791
|
-
|
|
13243
|
+
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
13244
|
+
ReadConfluenceSpacePermission = "READ_CONFLUENCE_SPACE_PERMISSION",
|
|
13245
|
+
WriteConfluenceSpacePermission = "WRITE_CONFLUENCE_SPACE_PERMISSION",
|
|
13246
|
+
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
13247
|
+
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
13248
|
+
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
13249
|
+
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
12792
13250
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
12793
|
-
ReadConfluenceContentPermission = "READ_CONFLUENCE_CONTENT_PERMISSION",
|
|
12794
13251
|
ManageApp = "MANAGE_APP",
|
|
12795
13252
|
StorageApp = "STORAGE_APP",
|
|
12796
13253
|
ReadJiraUser = "READ_JIRA_USER",
|
|
@@ -12942,7 +13399,7 @@ export declare type SetColumnLimitInput = {
|
|
|
12942
13399
|
};
|
|
12943
13400
|
export declare type SetColumnLimitOutput = MutationResponse & {
|
|
12944
13401
|
__typename?: 'SetColumnLimitOutput';
|
|
12945
|
-
columns?: Maybe<Array<Column
|
|
13402
|
+
columns?: Maybe<Array<Maybe<Column>>>;
|
|
12946
13403
|
statusCode: Scalars['Int'];
|
|
12947
13404
|
success: Scalars['Boolean'];
|
|
12948
13405
|
message: Scalars['String'];
|
|
@@ -13382,7 +13839,7 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
13382
13839
|
cloudId: Scalars['ID'];
|
|
13383
13840
|
accountId: Scalars['ID'];
|
|
13384
13841
|
projectType?: JiraProjectType;
|
|
13385
|
-
filter
|
|
13842
|
+
filter?: JiraProjectFilterInput;
|
|
13386
13843
|
};
|
|
13387
13844
|
export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
13388
13845
|
__typename?: 'SupportRequest';
|
|
@@ -13401,6 +13858,7 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
13401
13858
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
13402
13859
|
targetScreen: Scalars['String'];
|
|
13403
13860
|
lastComment: SupportRequestComments;
|
|
13861
|
+
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
13404
13862
|
};
|
|
13405
13863
|
export declare type SupportRequestCommentsArgs = {
|
|
13406
13864
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -13427,7 +13885,8 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
13427
13885
|
addComment?: Maybe<SupportRequestComment>;
|
|
13428
13886
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
13429
13887
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13430
|
-
|
|
13888
|
+
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13889
|
+
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
13431
13890
|
};
|
|
13432
13891
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
13433
13892
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -13436,7 +13895,10 @@ export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
|
13436
13895
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
13437
13896
|
};
|
|
13438
13897
|
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
13439
|
-
input
|
|
13898
|
+
input: SupportRequestParticipantsInput;
|
|
13899
|
+
};
|
|
13900
|
+
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
13901
|
+
input: SupportRequestParticipantsInput;
|
|
13440
13902
|
};
|
|
13441
13903
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
13442
13904
|
emails: Array<Scalars['String']>;
|
|
@@ -13448,6 +13910,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
13448
13910
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
13449
13911
|
me?: Maybe<SupportRequestPage>;
|
|
13450
13912
|
supportRequest?: Maybe<SupportRequest>;
|
|
13913
|
+
users?: Maybe<SupportRequestUsers>;
|
|
13451
13914
|
};
|
|
13452
13915
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
13453
13916
|
key: Scalars['ID'];
|
|
@@ -13631,6 +14094,22 @@ export declare type SupportRequestUser = {
|
|
|
13631
14094
|
username?: Maybe<Scalars['String']>;
|
|
13632
14095
|
email?: Maybe<Scalars['String']>;
|
|
13633
14096
|
displayName?: Maybe<Scalars['String']>;
|
|
14097
|
+
userType?: Maybe<SupportRequestUserType>;
|
|
14098
|
+
};
|
|
14099
|
+
export declare enum SupportRequestUserType {
|
|
14100
|
+
Customer = "CUSTOMER",
|
|
14101
|
+
Partner = "PARTNER"
|
|
14102
|
+
}
|
|
14103
|
+
export declare type SupportRequestUsers = {
|
|
14104
|
+
__typename?: 'SupportRequestUsers';
|
|
14105
|
+
searchUsers: Array<SupportRequestUser>;
|
|
14106
|
+
};
|
|
14107
|
+
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
14108
|
+
query?: Maybe<Scalars['String']>;
|
|
14109
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
14110
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
14111
|
+
includeActive?: Maybe<Scalars['Boolean']>;
|
|
14112
|
+
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
13634
14113
|
};
|
|
13635
14114
|
export declare type SupportRequests = {
|
|
13636
14115
|
__typename?: 'SupportRequests';
|
|
@@ -13813,6 +14292,53 @@ export declare enum TownsquareGoalSortEnum {
|
|
|
13813
14292
|
WatchingAsc = "WATCHING_ASC",
|
|
13814
14293
|
WatchingDesc = "WATCHING_DESC"
|
|
13815
14294
|
}
|
|
14295
|
+
export declare type TownsquareHelpPointer = Node & {
|
|
14296
|
+
__typename?: 'TownsquareHelpPointer';
|
|
14297
|
+
cloudId?: Maybe<Scalars['String']>;
|
|
14298
|
+
creationDate?: Maybe<Scalars['DateTime']>;
|
|
14299
|
+
creatorAaid?: Maybe<Scalars['String']>;
|
|
14300
|
+
description?: Maybe<Scalars['String']>;
|
|
14301
|
+
id: Scalars['ID'];
|
|
14302
|
+
link?: Maybe<Scalars['String']>;
|
|
14303
|
+
name?: Maybe<Scalars['String']>;
|
|
14304
|
+
owner?: Maybe<TownsquareHelpPointerOwner>;
|
|
14305
|
+
tags?: Maybe<TownsquareTagConnection>;
|
|
14306
|
+
teamId?: Maybe<Scalars['String']>;
|
|
14307
|
+
type?: Maybe<TownsquareHelpPointerType>;
|
|
14308
|
+
iconData?: Maybe<Scalars['String']>;
|
|
14309
|
+
};
|
|
14310
|
+
export declare type TownsquareHelpPointerTagsArgs = {
|
|
14311
|
+
after?: Maybe<Scalars['String']>;
|
|
14312
|
+
first?: Maybe<Scalars['Int']>;
|
|
14313
|
+
};
|
|
14314
|
+
export declare type TownsquareHelpPointerConnection = {
|
|
14315
|
+
__typename?: 'TownsquareHelpPointerConnection';
|
|
14316
|
+
count: Scalars['Int'];
|
|
14317
|
+
edges?: Maybe<Array<Maybe<TownsquareHelpPointerEdge>>>;
|
|
14318
|
+
pageInfo: PageInfo;
|
|
14319
|
+
};
|
|
14320
|
+
export declare type TownsquareHelpPointerEdge = {
|
|
14321
|
+
__typename?: 'TownsquareHelpPointerEdge';
|
|
14322
|
+
cursor: Scalars['String'];
|
|
14323
|
+
node?: Maybe<TownsquareHelpPointer>;
|
|
14324
|
+
};
|
|
14325
|
+
export declare type TownsquareHelpPointerOwner = {
|
|
14326
|
+
__typename?: 'TownsquareHelpPointerOwner';
|
|
14327
|
+
displayName?: Maybe<Scalars['String']>;
|
|
14328
|
+
id?: Maybe<Scalars['String']>;
|
|
14329
|
+
largeAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
14330
|
+
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
14331
|
+
};
|
|
14332
|
+
export declare type TownsquareHelpPointerSearchResponse = {
|
|
14333
|
+
__typename?: 'TownsquareHelpPointerSearchResponse';
|
|
14334
|
+
results?: Maybe<TownsquareHelpPointerConnection>;
|
|
14335
|
+
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
14336
|
+
teams?: Maybe<Array<Maybe<TownsquareTeam>>>;
|
|
14337
|
+
};
|
|
14338
|
+
export declare enum TownsquareHelpPointerType {
|
|
14339
|
+
Action = "ACTION",
|
|
14340
|
+
Information = "INFORMATION"
|
|
14341
|
+
}
|
|
13816
14342
|
export declare type TownsquareProject = Node & {
|
|
13817
14343
|
__typename?: 'TownsquareProject';
|
|
13818
14344
|
archived: Scalars['Boolean'];
|
|
@@ -13874,6 +14400,9 @@ export declare type TownsquareQueryApi = {
|
|
|
13874
14400
|
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
13875
14401
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
13876
14402
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
14403
|
+
helpPointerSearch?: Maybe<TownsquareHelpPointerSearchResponse>;
|
|
14404
|
+
helpPointersByCloudIds?: Maybe<TownsquareHelpPointerConnection>;
|
|
14405
|
+
helpPointersByTeam?: Maybe<TownsquareHelpPointerConnection>;
|
|
13877
14406
|
};
|
|
13878
14407
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
13879
14408
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -13899,6 +14428,49 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
13899
14428
|
q?: Maybe<Scalars['String']>;
|
|
13900
14429
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
13901
14430
|
};
|
|
14431
|
+
export declare type TownsquareQueryApiHelpPointerSearchArgs = {
|
|
14432
|
+
after?: Maybe<Scalars['String']>;
|
|
14433
|
+
cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14434
|
+
first?: Maybe<Scalars['Int']>;
|
|
14435
|
+
q?: Maybe<Scalars['String']>;
|
|
14436
|
+
};
|
|
14437
|
+
export declare type TownsquareQueryApiHelpPointersByCloudIdsArgs = {
|
|
14438
|
+
after?: Maybe<Scalars['String']>;
|
|
14439
|
+
cloudIds?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
14440
|
+
first?: Maybe<Scalars['Int']>;
|
|
14441
|
+
};
|
|
14442
|
+
export declare type TownsquareQueryApiHelpPointersByTeamArgs = {
|
|
14443
|
+
after?: Maybe<Scalars['String']>;
|
|
14444
|
+
first?: Maybe<Scalars['Int']>;
|
|
14445
|
+
teamUuid: Scalars['String'];
|
|
14446
|
+
};
|
|
14447
|
+
export declare type TownsquareTag = Node & {
|
|
14448
|
+
__typename?: 'TownsquareTag';
|
|
14449
|
+
description?: Maybe<Scalars['String']>;
|
|
14450
|
+
id: Scalars['ID'];
|
|
14451
|
+
name?: Maybe<Scalars['String']>;
|
|
14452
|
+
};
|
|
14453
|
+
export declare type TownsquareTagConnection = {
|
|
14454
|
+
__typename?: 'TownsquareTagConnection';
|
|
14455
|
+
count: Scalars['Int'];
|
|
14456
|
+
edges?: Maybe<Array<Maybe<TownsquareTagEdge>>>;
|
|
14457
|
+
pageInfo: PageInfo;
|
|
14458
|
+
};
|
|
14459
|
+
export declare type TownsquareTagEdge = {
|
|
14460
|
+
__typename?: 'TownsquareTagEdge';
|
|
14461
|
+
cursor: Scalars['String'];
|
|
14462
|
+
node?: Maybe<TownsquareTag>;
|
|
14463
|
+
};
|
|
14464
|
+
export declare type TownsquareTeam = Node & {
|
|
14465
|
+
__typename?: 'TownsquareTeam';
|
|
14466
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
14467
|
+
id: Scalars['ID'];
|
|
14468
|
+
name?: Maybe<Scalars['String']>;
|
|
14469
|
+
};
|
|
14470
|
+
export declare type TransitionFilter = {
|
|
14471
|
+
from: Scalars['String'];
|
|
14472
|
+
to: Scalars['String'];
|
|
14473
|
+
};
|
|
13902
14474
|
export declare type TunnelDefinitionsInput = {
|
|
13903
14475
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
13904
14476
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|
|
@@ -14061,6 +14633,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
14061
14633
|
ownerId?: Maybe<Scalars['ID']>;
|
|
14062
14634
|
componentType?: Maybe<CompassComponentType>;
|
|
14063
14635
|
importance?: Maybe<CompassScorecardImportance>;
|
|
14636
|
+
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
14064
14637
|
};
|
|
14065
14638
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
14066
14639
|
__typename?: 'UpdateCompassScorecardPayload';
|
|
@@ -14344,6 +14917,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
14344
14917
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']>;
|
|
14345
14918
|
timelineConfig?: Maybe<UpdatePolarisTimelineConfig>;
|
|
14346
14919
|
matrixConfig?: Maybe<UpdatePolarisMatrixConfig>;
|
|
14920
|
+
sortMode?: Maybe<PolarisViewSortMode>;
|
|
14347
14921
|
};
|
|
14348
14922
|
export declare type UpdatePolarisViewPayload = Payload & {
|
|
14349
14923
|
__typename?: 'UpdatePolarisViewPayload';
|
|
@@ -14376,8 +14950,13 @@ export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
|
14376
14950
|
success: Scalars['Boolean'];
|
|
14377
14951
|
errors?: Maybe<Array<MutationError>>;
|
|
14378
14952
|
};
|
|
14953
|
+
export declare type UpdateUserInstallationRulesInput = {
|
|
14954
|
+
cloudId: Scalars['ID'];
|
|
14955
|
+
rule: UserInstallationRuleValue;
|
|
14956
|
+
};
|
|
14379
14957
|
export declare type User = {
|
|
14380
14958
|
accountId: Scalars['ID'];
|
|
14959
|
+
canonicalAccountId: Scalars['ID'];
|
|
14381
14960
|
accountStatus: AccountStatus;
|
|
14382
14961
|
name: Scalars['String'];
|
|
14383
14962
|
picture: Scalars['URL'];
|
|
@@ -14442,6 +15021,20 @@ export declare type UserGrantPageInfo = {
|
|
|
14442
15021
|
startCursor?: Maybe<Scalars['String']>;
|
|
14443
15022
|
endCursor?: Maybe<Scalars['String']>;
|
|
14444
15023
|
};
|
|
15024
|
+
export declare enum UserInstallationRuleValue {
|
|
15025
|
+
Allow = "allow",
|
|
15026
|
+
Deny = "deny"
|
|
15027
|
+
}
|
|
15028
|
+
export declare type UserInstallationRules = {
|
|
15029
|
+
__typename?: 'UserInstallationRules';
|
|
15030
|
+
rule: UserInstallationRuleValue;
|
|
15031
|
+
};
|
|
15032
|
+
export declare type UserInstallationRulesPayload = Payload & {
|
|
15033
|
+
__typename?: 'UserInstallationRulesPayload';
|
|
15034
|
+
rule?: Maybe<UserInstallationRuleValue>;
|
|
15035
|
+
success: Scalars['Boolean'];
|
|
15036
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15037
|
+
};
|
|
14445
15038
|
export declare type WatchMarketplaceAppPayload = Payload & {
|
|
14446
15039
|
__typename?: 'WatchMarketplaceAppPayload';
|
|
14447
15040
|
success: Scalars['Boolean'];
|