@forge/cli-shared 2.2.1-next.0 → 2.2.1-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.2.1-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [d3ccc04]
|
|
8
|
+
- @forge/manifest@3.1.0-next.4
|
|
9
|
+
|
|
10
|
+
## 2.2.1-next.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [debe251]
|
|
15
|
+
- @forge/manifest@3.1.0-next.3
|
|
16
|
+
|
|
17
|
+
## 2.2.1-next.2
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [14102be]
|
|
22
|
+
- @forge/manifest@3.1.0-next.2
|
|
23
|
+
|
|
24
|
+
## 2.2.1-next.1
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [8ee1c58]
|
|
29
|
+
- @forge/manifest@3.1.0-next.1
|
|
30
|
+
|
|
3
31
|
## 2.2.1-next.0
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
|
@@ -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']>;
|
|
@@ -1669,6 +1669,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1669
1669
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1670
1670
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1671
1671
|
builtinMetricDefinitions: Array<CompassMetricDefinition>;
|
|
1672
|
+
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1672
1673
|
};
|
|
1673
1674
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1674
1675
|
id: Scalars['ID'];
|
|
@@ -1711,6 +1712,11 @@ export declare type CompassCatalogQueryApiMetricDefinitionArgs = {
|
|
|
1711
1712
|
cloudId: Scalars['ID'];
|
|
1712
1713
|
metricDefinitionId: Scalars['ID'];
|
|
1713
1714
|
};
|
|
1715
|
+
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
1716
|
+
cloudId: Scalars['ID'];
|
|
1717
|
+
eventType: CompassEventType;
|
|
1718
|
+
externalEventSourceId: Scalars['ID'];
|
|
1719
|
+
};
|
|
1714
1720
|
export declare type CompassChangeMetadata = {
|
|
1715
1721
|
__typename?: 'CompassChangeMetadata';
|
|
1716
1722
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -2073,6 +2079,7 @@ export declare type CompassEventInput = {
|
|
|
2073
2079
|
lifecycle?: Maybe<CompassCreateLifecycleEventInput>;
|
|
2074
2080
|
custom?: Maybe<CompassCreateCustomEventInput>;
|
|
2075
2081
|
};
|
|
2082
|
+
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
2076
2083
|
export declare type CompassEventTimeParameters = {
|
|
2077
2084
|
startFrom?: Maybe<Scalars['DateTime']>;
|
|
2078
2085
|
endAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -2085,6 +2092,11 @@ export declare enum CompassEventType {
|
|
|
2085
2092
|
Lifecycle = "LIFECYCLE",
|
|
2086
2093
|
Custom = "CUSTOM"
|
|
2087
2094
|
}
|
|
2095
|
+
export declare type CompassEventsInEventSourceQuery = {
|
|
2096
|
+
first?: Maybe<Scalars['Int']>;
|
|
2097
|
+
after?: Maybe<Scalars['String']>;
|
|
2098
|
+
timeParameters?: Maybe<CompassEventTimeParameters>;
|
|
2099
|
+
};
|
|
2088
2100
|
export declare type CompassEventsQuery = {
|
|
2089
2101
|
eventTypes?: Maybe<Array<CompassEventType>>;
|
|
2090
2102
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -2738,11 +2750,27 @@ export declare type ConfluenceContentBody = {
|
|
|
2738
2750
|
styledView?: Maybe<Scalars['String']>;
|
|
2739
2751
|
view?: Maybe<Scalars['String']>;
|
|
2740
2752
|
};
|
|
2753
|
+
export declare type ConfluenceContentBodyInput = {
|
|
2754
|
+
representation: ConfluenceContentRepresentation;
|
|
2755
|
+
value: Scalars['String'];
|
|
2756
|
+
};
|
|
2741
2757
|
export declare type ConfluenceContentMetadata = {
|
|
2742
2758
|
__typename?: 'ConfluenceContentMetadata';
|
|
2743
2759
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2744
2760
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2745
2761
|
};
|
|
2762
|
+
export declare enum ConfluenceContentRepresentation {
|
|
2763
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
2764
|
+
Editor = "EDITOR",
|
|
2765
|
+
Editor2 = "EDITOR2",
|
|
2766
|
+
ExportView = "EXPORT_VIEW",
|
|
2767
|
+
Plain = "PLAIN",
|
|
2768
|
+
Raw = "RAW",
|
|
2769
|
+
Storage = "STORAGE",
|
|
2770
|
+
StyledView = "STYLED_VIEW",
|
|
2771
|
+
View = "VIEW",
|
|
2772
|
+
Wiki = "WIKI"
|
|
2773
|
+
}
|
|
2746
2774
|
export declare enum ConfluenceContentStatus {
|
|
2747
2775
|
Archived = "ARCHIVED",
|
|
2748
2776
|
Current = "CURRENT",
|
|
@@ -2763,6 +2791,30 @@ export declare enum ConfluenceContentType {
|
|
|
2763
2791
|
Comment = "COMMENT",
|
|
2764
2792
|
Page = "PAGE"
|
|
2765
2793
|
}
|
|
2794
|
+
export declare type ConfluenceCreateBlogPostInput = {
|
|
2795
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2796
|
+
spaceKey: Scalars['String'];
|
|
2797
|
+
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2798
|
+
title?: Maybe<Scalars['String']>;
|
|
2799
|
+
};
|
|
2800
|
+
export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
2801
|
+
__typename?: 'ConfluenceCreateBlogPostPayload';
|
|
2802
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
2803
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2804
|
+
success: Scalars['Boolean'];
|
|
2805
|
+
};
|
|
2806
|
+
export declare type ConfluenceCreatePageInput = {
|
|
2807
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2808
|
+
spaceKey: Scalars['String'];
|
|
2809
|
+
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2810
|
+
title?: Maybe<Scalars['String']>;
|
|
2811
|
+
};
|
|
2812
|
+
export declare type ConfluenceCreatePagePayload = Payload & {
|
|
2813
|
+
__typename?: 'ConfluenceCreatePagePayload';
|
|
2814
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
2815
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2816
|
+
success: Scalars['Boolean'];
|
|
2817
|
+
};
|
|
2766
2818
|
export declare type ConfluenceCreateSpaceInput = {
|
|
2767
2819
|
key: Scalars['String'];
|
|
2768
2820
|
name: Scalars['String'];
|
|
@@ -2774,6 +2826,24 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2774
2826
|
errors?: Maybe<Array<MutationError>>;
|
|
2775
2827
|
success: Scalars['Boolean'];
|
|
2776
2828
|
};
|
|
2829
|
+
export declare type ConfluenceDeleteBlogPostInput = {
|
|
2830
|
+
id: Scalars['ID'];
|
|
2831
|
+
status: ConfluenceMutationContentStatus;
|
|
2832
|
+
};
|
|
2833
|
+
export declare type ConfluenceDeleteBlogPostPayload = Payload & {
|
|
2834
|
+
__typename?: 'ConfluenceDeleteBlogPostPayload';
|
|
2835
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2836
|
+
success: Scalars['Boolean'];
|
|
2837
|
+
};
|
|
2838
|
+
export declare type ConfluenceDeletePageInput = {
|
|
2839
|
+
id: Scalars['ID'];
|
|
2840
|
+
status: ConfluenceMutationContentStatus;
|
|
2841
|
+
};
|
|
2842
|
+
export declare type ConfluenceDeletePagePayload = Payload & {
|
|
2843
|
+
__typename?: 'ConfluenceDeletePagePayload';
|
|
2844
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2845
|
+
success: Scalars['Boolean'];
|
|
2846
|
+
};
|
|
2777
2847
|
export declare type ConfluenceInlineTask = {
|
|
2778
2848
|
__typename?: 'ConfluenceInlineTask';
|
|
2779
2849
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -2802,15 +2872,68 @@ export declare type ConfluenceLabel = {
|
|
|
2802
2872
|
};
|
|
2803
2873
|
export declare type ConfluenceMutationApi = {
|
|
2804
2874
|
__typename?: 'ConfluenceMutationApi';
|
|
2875
|
+
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
2876
|
+
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
2805
2877
|
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
2878
|
+
confluenceDeleteBlogPost?: Maybe<ConfluenceDeleteBlogPostPayload>;
|
|
2879
|
+
confluenceDeletePage?: Maybe<ConfluenceDeletePagePayload>;
|
|
2880
|
+
confluencePublishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
2881
|
+
confluencePublishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
2882
|
+
confluencePurgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
2883
|
+
confluencePurgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
2884
|
+
confluenceUpdateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
2885
|
+
confluenceUpdateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
2886
|
+
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
2887
|
+
confluenceUpdateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
2806
2888
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2807
2889
|
};
|
|
2890
|
+
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
2891
|
+
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
2892
|
+
};
|
|
2893
|
+
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
2894
|
+
cloudId: Scalars['ID'];
|
|
2895
|
+
pageInput: ConfluenceCreatePageInput;
|
|
2896
|
+
};
|
|
2808
2897
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
2809
2898
|
input: ConfluenceCreateSpaceInput;
|
|
2810
2899
|
};
|
|
2900
|
+
export declare type ConfluenceMutationApiConfluenceDeleteBlogPostArgs = {
|
|
2901
|
+
deletBlogPostInput: ConfluenceDeleteBlogPostInput;
|
|
2902
|
+
};
|
|
2903
|
+
export declare type ConfluenceMutationApiConfluenceDeletePageArgs = {
|
|
2904
|
+
deletPageInput: ConfluenceDeletePageInput;
|
|
2905
|
+
};
|
|
2906
|
+
export declare type ConfluenceMutationApiConfluencePublishBlogPostArgs = {
|
|
2907
|
+
publishBlogPostInput: ConfluencePublishBlogPostInput;
|
|
2908
|
+
};
|
|
2909
|
+
export declare type ConfluenceMutationApiConfluencePublishPageArgs = {
|
|
2910
|
+
publishPageInput: ConfluencePublishPageInput;
|
|
2911
|
+
};
|
|
2912
|
+
export declare type ConfluenceMutationApiConfluencePurgeBlogPostArgs = {
|
|
2913
|
+
purgeBlogPostInput: ConfluencePurgeBlogPostInput;
|
|
2914
|
+
};
|
|
2915
|
+
export declare type ConfluenceMutationApiConfluencePurgePageArgs = {
|
|
2916
|
+
purgePageInput: ConfluencePurgePageInput;
|
|
2917
|
+
};
|
|
2918
|
+
export declare type ConfluenceMutationApiConfluenceUpdateCurrentBlogPostArgs = {
|
|
2919
|
+
updateBlogPostInput: ConfluenceUpdateCurrentBlogPostInput;
|
|
2920
|
+
};
|
|
2921
|
+
export declare type ConfluenceMutationApiConfluenceUpdateCurrentPageArgs = {
|
|
2922
|
+
updatePageInput: ConfluenceUpdateCurrentPageInput;
|
|
2923
|
+
};
|
|
2924
|
+
export declare type ConfluenceMutationApiConfluenceUpdateDraftBlogPostArgs = {
|
|
2925
|
+
updateBlogPostInput: ConfluenceUpdateDraftBlogPostInput;
|
|
2926
|
+
};
|
|
2927
|
+
export declare type ConfluenceMutationApiConfluenceUpdateDraftPageArgs = {
|
|
2928
|
+
updatePageInput: ConfluenceUpdateDraftPageInput;
|
|
2929
|
+
};
|
|
2811
2930
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2812
2931
|
input: ConfluenceUpdateSpaceInput;
|
|
2813
2932
|
};
|
|
2933
|
+
export declare enum ConfluenceMutationContentStatus {
|
|
2934
|
+
Current = "CURRENT",
|
|
2935
|
+
Draft = "DRAFT"
|
|
2936
|
+
}
|
|
2814
2937
|
export declare type ConfluenceOperationCheck = {
|
|
2815
2938
|
__typename?: 'ConfluenceOperationCheck';
|
|
2816
2939
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -2858,18 +2981,72 @@ export declare type ConfluencePageLinks = {
|
|
|
2858
2981
|
base?: Maybe<Scalars['String']>;
|
|
2859
2982
|
webUi?: Maybe<Scalars['String']>;
|
|
2860
2983
|
};
|
|
2984
|
+
export declare type ConfluencePublishBlogPostInput = {
|
|
2985
|
+
id: Scalars['String'];
|
|
2986
|
+
publishTitle?: Maybe<Scalars['String']>;
|
|
2987
|
+
};
|
|
2988
|
+
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
2989
|
+
__typename?: 'ConfluencePublishBlogPostPayload';
|
|
2990
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
2991
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2992
|
+
success: Scalars['Boolean'];
|
|
2993
|
+
};
|
|
2994
|
+
export declare type ConfluencePublishPageInput = {
|
|
2995
|
+
id: Scalars['String'];
|
|
2996
|
+
publishTitle?: Maybe<Scalars['String']>;
|
|
2997
|
+
};
|
|
2998
|
+
export declare type ConfluencePublishPagePayload = Payload & {
|
|
2999
|
+
__typename?: 'ConfluencePublishPagePayload';
|
|
3000
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3001
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3002
|
+
success: Scalars['Boolean'];
|
|
3003
|
+
};
|
|
3004
|
+
export declare type ConfluencePurgeBlogPostInput = {
|
|
3005
|
+
id: Scalars['ID'];
|
|
3006
|
+
};
|
|
3007
|
+
export declare type ConfluencePurgeBlogPostPayload = Payload & {
|
|
3008
|
+
__typename?: 'ConfluencePurgeBlogPostPayload';
|
|
3009
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3010
|
+
success: Scalars['Boolean'];
|
|
3011
|
+
};
|
|
3012
|
+
export declare type ConfluencePurgePageInput = {
|
|
3013
|
+
id: Scalars['ID'];
|
|
3014
|
+
};
|
|
3015
|
+
export declare type ConfluencePurgePagePayload = Payload & {
|
|
3016
|
+
__typename?: 'ConfluencePurgePagePayload';
|
|
3017
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3018
|
+
success: Scalars['Boolean'];
|
|
3019
|
+
};
|
|
2861
3020
|
export declare type ConfluenceQueryApi = {
|
|
2862
3021
|
__typename?: 'ConfluenceQueryApi';
|
|
3022
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3023
|
+
confluenceBlogPostWithFilters?: Maybe<ConfluenceBlogPost>;
|
|
3024
|
+
confluenceBlogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3025
|
+
confluenceBlogPostsWithFilters?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
2863
3026
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2864
3027
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2865
3028
|
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
2866
|
-
confluencePage?: Maybe<
|
|
2867
|
-
confluencePageWithFilters?: Maybe<
|
|
2868
|
-
confluencePages?: Maybe<Array<Maybe<
|
|
2869
|
-
confluencePagesWithFilters?: Maybe<Array<Maybe<
|
|
3029
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3030
|
+
confluencePageWithFilters?: Maybe<ConfluencePage>;
|
|
3031
|
+
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3032
|
+
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
2870
3033
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2871
3034
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
2872
3035
|
};
|
|
3036
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3037
|
+
id: Scalars['ID'];
|
|
3038
|
+
};
|
|
3039
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostWithFiltersArgs = {
|
|
3040
|
+
id: Scalars['ID'];
|
|
3041
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3042
|
+
};
|
|
3043
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostsArgs = {
|
|
3044
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
3045
|
+
};
|
|
3046
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostsWithFiltersArgs = {
|
|
3047
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
3048
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3049
|
+
};
|
|
2873
3050
|
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
2874
3051
|
id: Scalars['ID'];
|
|
2875
3052
|
};
|
|
@@ -2954,6 +3131,50 @@ export declare enum ConfluenceSpaceType {
|
|
|
2954
3131
|
Global = "GLOBAL",
|
|
2955
3132
|
Personal = "PERSONAL"
|
|
2956
3133
|
}
|
|
3134
|
+
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3135
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3136
|
+
id: Scalars['ID'];
|
|
3137
|
+
title?: Maybe<Scalars['String']>;
|
|
3138
|
+
};
|
|
3139
|
+
export declare type ConfluenceUpdateCurrentBlogPostPayload = Payload & {
|
|
3140
|
+
__typename?: 'ConfluenceUpdateCurrentBlogPostPayload';
|
|
3141
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3142
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3143
|
+
success: Scalars['Boolean'];
|
|
3144
|
+
};
|
|
3145
|
+
export declare type ConfluenceUpdateCurrentPageInput = {
|
|
3146
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3147
|
+
id: Scalars['ID'];
|
|
3148
|
+
title?: Maybe<Scalars['String']>;
|
|
3149
|
+
};
|
|
3150
|
+
export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
3151
|
+
__typename?: 'ConfluenceUpdateCurrentPagePayload';
|
|
3152
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3153
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3154
|
+
success: Scalars['Boolean'];
|
|
3155
|
+
};
|
|
3156
|
+
export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
3157
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3158
|
+
id: Scalars['ID'];
|
|
3159
|
+
title?: Maybe<Scalars['String']>;
|
|
3160
|
+
};
|
|
3161
|
+
export declare type ConfluenceUpdateDraftBlogPostPayload = Payload & {
|
|
3162
|
+
__typename?: 'ConfluenceUpdateDraftBlogPostPayload';
|
|
3163
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3164
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3165
|
+
success: Scalars['Boolean'];
|
|
3166
|
+
};
|
|
3167
|
+
export declare type ConfluenceUpdateDraftPageInput = {
|
|
3168
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3169
|
+
id: Scalars['ID'];
|
|
3170
|
+
title?: Maybe<Scalars['String']>;
|
|
3171
|
+
};
|
|
3172
|
+
export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
3173
|
+
__typename?: 'ConfluenceUpdateDraftPagePayload';
|
|
3174
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3175
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3176
|
+
success: Scalars['Boolean'];
|
|
3177
|
+
};
|
|
2957
3178
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
2958
3179
|
id: Scalars['ID'];
|
|
2959
3180
|
name?: Maybe<Scalars['String']>;
|
|
@@ -4143,6 +4364,13 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
4143
4364
|
success: Scalars['Boolean'];
|
|
4144
4365
|
errors?: Maybe<Array<MutationError>>;
|
|
4145
4366
|
};
|
|
4367
|
+
export declare type DevOps = {
|
|
4368
|
+
__typename?: 'DevOps';
|
|
4369
|
+
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4370
|
+
};
|
|
4371
|
+
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4372
|
+
ids: Array<Scalars['ID']>;
|
|
4373
|
+
};
|
|
4146
4374
|
export declare type DevOpsAvatar = {
|
|
4147
4375
|
__typename?: 'DevOpsAvatar';
|
|
4148
4376
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -4603,6 +4831,13 @@ export declare type DevOpsServicesFilterInput = {
|
|
|
4603
4831
|
nameContains?: Maybe<Scalars['String']>;
|
|
4604
4832
|
tierLevelIn?: Maybe<Array<Scalars['Int']>>;
|
|
4605
4833
|
};
|
|
4834
|
+
export declare type DevOpsSummarisedDeployments = {
|
|
4835
|
+
__typename?: 'DevOpsSummarisedDeployments';
|
|
4836
|
+
entityId: Scalars['ID'];
|
|
4837
|
+
count?: Maybe<Scalars['Int']>;
|
|
4838
|
+
deploymentState?: Maybe<DeploymentState>;
|
|
4839
|
+
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
4840
|
+
};
|
|
4606
4841
|
export declare type DevOpsThirdPartyRepository = {
|
|
4607
4842
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
4608
4843
|
id: Scalars['ID'];
|
|
@@ -4895,6 +5130,10 @@ export declare type EventSource = {
|
|
|
4895
5130
|
externalEventSourceId: Scalars['ID'];
|
|
4896
5131
|
eventType: CompassEventType;
|
|
4897
5132
|
forgeAppId?: Maybe<Scalars['ID']>;
|
|
5133
|
+
events?: Maybe<CompassEventsQueryResult>;
|
|
5134
|
+
};
|
|
5135
|
+
export declare type EventSourceEventsArgs = {
|
|
5136
|
+
query?: Maybe<CompassEventsInEventSourceQuery>;
|
|
4898
5137
|
};
|
|
4899
5138
|
export declare type Extension = {
|
|
4900
5139
|
__typename?: 'Extension';
|
|
@@ -6615,6 +6854,7 @@ export declare type JiraIssue = Node & {
|
|
|
6615
6854
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6616
6855
|
childIssues?: Maybe<JiraChildIssues>;
|
|
6617
6856
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6857
|
+
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
6618
6858
|
};
|
|
6619
6859
|
export declare type JiraIssueFieldsArgs = {
|
|
6620
6860
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9767,6 +10007,7 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
9767
10007
|
InProgress = "IN_PROGRESS",
|
|
9768
10008
|
Done = "DONE",
|
|
9769
10009
|
UnreviewedCode = "UNREVIEWED_CODE",
|
|
10010
|
+
OpenReview = "OPEN_REVIEW",
|
|
9770
10011
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
9771
10012
|
FailingBuild = "FAILING_BUILD"
|
|
9772
10013
|
}
|
|
@@ -9784,6 +10025,7 @@ export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
|
9784
10025
|
export declare type JiraVersionWarningConfig = {
|
|
9785
10026
|
__typename?: 'JiraVersionWarningConfig';
|
|
9786
10027
|
openPullRequest?: Maybe<JiraVersionWarningConfigState>;
|
|
10028
|
+
openReview?: Maybe<JiraVersionWarningConfigState>;
|
|
9787
10029
|
unreviewedCode?: Maybe<JiraVersionWarningConfigState>;
|
|
9788
10030
|
failingBuild?: Maybe<JiraVersionWarningConfigState>;
|
|
9789
10031
|
};
|
|
@@ -12052,6 +12294,7 @@ export declare type Query = {
|
|
|
12052
12294
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
12053
12295
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
12054
12296
|
search?: Maybe<SearchQueryApi>;
|
|
12297
|
+
devOps?: Maybe<DevOps>;
|
|
12055
12298
|
me: AuthenticationContext;
|
|
12056
12299
|
user?: Maybe<User>;
|
|
12057
12300
|
users?: Maybe<Array<User>>;
|
|
@@ -12796,6 +13039,8 @@ export declare enum Scope {
|
|
|
12796
13039
|
WriteCompassScorecard = "WRITE_COMPASS_SCORECARD",
|
|
12797
13040
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
12798
13041
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
13042
|
+
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
13043
|
+
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
12799
13044
|
ConfluenceAtlassianExternal = "CONFLUENCE_ATLASSIAN_EXTERNAL",
|
|
12800
13045
|
ReadConfluenceContentAll = "READ_CONFLUENCE_CONTENT_ALL",
|
|
12801
13046
|
ReadConfluenceContentSummary = "READ_CONFLUENCE_CONTENT_SUMMARY",
|
|
@@ -13447,7 +13692,8 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
13447
13692
|
addComment?: Maybe<SupportRequestComment>;
|
|
13448
13693
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
13449
13694
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13450
|
-
|
|
13695
|
+
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13696
|
+
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
13451
13697
|
};
|
|
13452
13698
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
13453
13699
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -13456,7 +13702,10 @@ export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
|
13456
13702
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
13457
13703
|
};
|
|
13458
13704
|
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
13459
|
-
input
|
|
13705
|
+
input: SupportRequestParticipantsInput;
|
|
13706
|
+
};
|
|
13707
|
+
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
13708
|
+
input: SupportRequestParticipantsInput;
|
|
13460
13709
|
};
|
|
13461
13710
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
13462
13711
|
emails: Array<Scalars['String']>;
|
|
@@ -13468,6 +13717,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
13468
13717
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
13469
13718
|
me?: Maybe<SupportRequestPage>;
|
|
13470
13719
|
supportRequest?: Maybe<SupportRequest>;
|
|
13720
|
+
users?: Maybe<SupportRequestUsers>;
|
|
13471
13721
|
};
|
|
13472
13722
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
13473
13723
|
key: Scalars['ID'];
|
|
@@ -13651,6 +13901,18 @@ export declare type SupportRequestUser = {
|
|
|
13651
13901
|
username?: Maybe<Scalars['String']>;
|
|
13652
13902
|
email?: Maybe<Scalars['String']>;
|
|
13653
13903
|
displayName?: Maybe<Scalars['String']>;
|
|
13904
|
+
userType?: Maybe<Scalars['String']>;
|
|
13905
|
+
};
|
|
13906
|
+
export declare type SupportRequestUsers = {
|
|
13907
|
+
__typename?: 'SupportRequestUsers';
|
|
13908
|
+
searchUsers: Array<SupportRequestUser>;
|
|
13909
|
+
};
|
|
13910
|
+
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
13911
|
+
query?: Maybe<Scalars['String']>;
|
|
13912
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
13913
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
13914
|
+
includeActive?: Maybe<Scalars['Boolean']>;
|
|
13915
|
+
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
13654
13916
|
};
|
|
13655
13917
|
export declare type SupportRequests = {
|
|
13656
13918
|
__typename?: 'SupportRequests';
|
|
@@ -13919,6 +14181,10 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
13919
14181
|
q?: Maybe<Scalars['String']>;
|
|
13920
14182
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
13921
14183
|
};
|
|
14184
|
+
export declare type TransitionFilter = {
|
|
14185
|
+
from: Scalars['String'];
|
|
14186
|
+
to: Scalars['String'];
|
|
14187
|
+
};
|
|
13922
14188
|
export declare type TunnelDefinitionsInput = {
|
|
13923
14189
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
13924
14190
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|