@forge/cli-shared 2.2.0 → 2.2.1-next.3
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,34 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.2.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [debe251]
|
|
8
|
+
- @forge/manifest@3.1.0-next.3
|
|
9
|
+
|
|
10
|
+
## 2.2.1-next.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [14102be]
|
|
15
|
+
- @forge/manifest@3.1.0-next.2
|
|
16
|
+
|
|
17
|
+
## 2.2.1-next.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [8ee1c58]
|
|
22
|
+
- @forge/manifest@3.1.0-next.1
|
|
23
|
+
|
|
24
|
+
## 2.2.1-next.0
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [813f8f3]
|
|
29
|
+
- Updated dependencies [5152239]
|
|
30
|
+
- @forge/manifest@3.1.0-next.0
|
|
31
|
+
|
|
3
32
|
## 2.2.0
|
|
4
33
|
|
|
5
34
|
### Minor 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>;
|
|
@@ -808,6 +808,7 @@ export declare type AppUnsubscribePayload = Payload & {
|
|
|
808
808
|
export declare type AppUser = User & {
|
|
809
809
|
__typename?: 'AppUser';
|
|
810
810
|
accountId: Scalars['ID'];
|
|
811
|
+
canonicalAccountId: Scalars['ID'];
|
|
811
812
|
accountStatus: AccountStatus;
|
|
812
813
|
name: Scalars['String'];
|
|
813
814
|
picture: Scalars['URL'];
|
|
@@ -867,6 +868,7 @@ export declare type AssignIssueParentOutput = MutationResponse & {
|
|
|
867
868
|
export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
868
869
|
__typename?: 'AtlassianAccountUser';
|
|
869
870
|
accountId: Scalars['ID'];
|
|
871
|
+
canonicalAccountId: Scalars['ID'];
|
|
870
872
|
accountStatus: AccountStatus;
|
|
871
873
|
name: Scalars['String'];
|
|
872
874
|
picture: Scalars['URL'];
|
|
@@ -1666,6 +1668,8 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1666
1668
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1667
1669
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1668
1670
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1671
|
+
builtinMetricDefinitions: Array<CompassMetricDefinition>;
|
|
1672
|
+
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1669
1673
|
};
|
|
1670
1674
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1671
1675
|
id: Scalars['ID'];
|
|
@@ -1708,6 +1712,11 @@ export declare type CompassCatalogQueryApiMetricDefinitionArgs = {
|
|
|
1708
1712
|
cloudId: Scalars['ID'];
|
|
1709
1713
|
metricDefinitionId: Scalars['ID'];
|
|
1710
1714
|
};
|
|
1715
|
+
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
1716
|
+
cloudId: Scalars['ID'];
|
|
1717
|
+
eventType: CompassEventType;
|
|
1718
|
+
externalEventSourceId: Scalars['ID'];
|
|
1719
|
+
};
|
|
1711
1720
|
export declare type CompassChangeMetadata = {
|
|
1712
1721
|
__typename?: 'CompassChangeMetadata';
|
|
1713
1722
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -2070,6 +2079,7 @@ export declare type CompassEventInput = {
|
|
|
2070
2079
|
lifecycle?: Maybe<CompassCreateLifecycleEventInput>;
|
|
2071
2080
|
custom?: Maybe<CompassCreateCustomEventInput>;
|
|
2072
2081
|
};
|
|
2082
|
+
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
2073
2083
|
export declare type CompassEventTimeParameters = {
|
|
2074
2084
|
startFrom?: Maybe<Scalars['DateTime']>;
|
|
2075
2085
|
endAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -2082,6 +2092,11 @@ export declare enum CompassEventType {
|
|
|
2082
2092
|
Lifecycle = "LIFECYCLE",
|
|
2083
2093
|
Custom = "CUSTOM"
|
|
2084
2094
|
}
|
|
2095
|
+
export declare type CompassEventsInEventSourceQuery = {
|
|
2096
|
+
first?: Maybe<Scalars['Int']>;
|
|
2097
|
+
after?: Maybe<Scalars['String']>;
|
|
2098
|
+
timeParameters?: Maybe<CompassEventTimeParameters>;
|
|
2099
|
+
};
|
|
2085
2100
|
export declare type CompassEventsQuery = {
|
|
2086
2101
|
eventTypes?: Maybe<Array<CompassEventType>>;
|
|
2087
2102
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -2735,11 +2750,27 @@ export declare type ConfluenceContentBody = {
|
|
|
2735
2750
|
styledView?: Maybe<Scalars['String']>;
|
|
2736
2751
|
view?: Maybe<Scalars['String']>;
|
|
2737
2752
|
};
|
|
2753
|
+
export declare type ConfluenceContentBodyInput = {
|
|
2754
|
+
representation: ConfluenceContentRepresentation;
|
|
2755
|
+
value: Scalars['String'];
|
|
2756
|
+
};
|
|
2738
2757
|
export declare type ConfluenceContentMetadata = {
|
|
2739
2758
|
__typename?: 'ConfluenceContentMetadata';
|
|
2740
2759
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2741
2760
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2742
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
|
+
}
|
|
2743
2774
|
export declare enum ConfluenceContentStatus {
|
|
2744
2775
|
Archived = "ARCHIVED",
|
|
2745
2776
|
Current = "CURRENT",
|
|
@@ -2760,6 +2791,30 @@ export declare enum ConfluenceContentType {
|
|
|
2760
2791
|
Comment = "COMMENT",
|
|
2761
2792
|
Page = "PAGE"
|
|
2762
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
|
+
};
|
|
2763
2818
|
export declare type ConfluenceCreateSpaceInput = {
|
|
2764
2819
|
key: Scalars['String'];
|
|
2765
2820
|
name: Scalars['String'];
|
|
@@ -2771,6 +2826,24 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2771
2826
|
errors?: Maybe<Array<MutationError>>;
|
|
2772
2827
|
success: Scalars['Boolean'];
|
|
2773
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
|
+
};
|
|
2774
2847
|
export declare type ConfluenceInlineTask = {
|
|
2775
2848
|
__typename?: 'ConfluenceInlineTask';
|
|
2776
2849
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -2799,15 +2872,68 @@ export declare type ConfluenceLabel = {
|
|
|
2799
2872
|
};
|
|
2800
2873
|
export declare type ConfluenceMutationApi = {
|
|
2801
2874
|
__typename?: 'ConfluenceMutationApi';
|
|
2875
|
+
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
2876
|
+
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
2802
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>;
|
|
2803
2888
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2804
2889
|
};
|
|
2890
|
+
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
2891
|
+
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
2892
|
+
};
|
|
2893
|
+
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
2894
|
+
cloudId: Scalars['ID'];
|
|
2895
|
+
pageInput: ConfluenceCreatePageInput;
|
|
2896
|
+
};
|
|
2805
2897
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
2806
2898
|
input: ConfluenceCreateSpaceInput;
|
|
2807
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
|
+
};
|
|
2808
2930
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2809
2931
|
input: ConfluenceUpdateSpaceInput;
|
|
2810
2932
|
};
|
|
2933
|
+
export declare enum ConfluenceMutationContentStatus {
|
|
2934
|
+
Current = "CURRENT",
|
|
2935
|
+
Draft = "DRAFT"
|
|
2936
|
+
}
|
|
2811
2937
|
export declare type ConfluenceOperationCheck = {
|
|
2812
2938
|
__typename?: 'ConfluenceOperationCheck';
|
|
2813
2939
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -2855,18 +2981,72 @@ export declare type ConfluencePageLinks = {
|
|
|
2855
2981
|
base?: Maybe<Scalars['String']>;
|
|
2856
2982
|
webUi?: Maybe<Scalars['String']>;
|
|
2857
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
|
+
};
|
|
2858
3020
|
export declare type ConfluenceQueryApi = {
|
|
2859
3021
|
__typename?: 'ConfluenceQueryApi';
|
|
3022
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3023
|
+
confluenceBlogPostWithFilters?: Maybe<ConfluenceBlogPost>;
|
|
3024
|
+
confluenceBlogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3025
|
+
confluenceBlogPostsWithFilters?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
2860
3026
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2861
3027
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2862
3028
|
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
2863
|
-
confluencePage?: Maybe<
|
|
2864
|
-
confluencePageWithFilters?: Maybe<
|
|
2865
|
-
confluencePages?: Maybe<Array<Maybe<
|
|
2866
|
-
confluencePagesWithFilters?: Maybe<Array<Maybe<
|
|
3029
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3030
|
+
confluencePageWithFilters?: Maybe<ConfluencePage>;
|
|
3031
|
+
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3032
|
+
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
2867
3033
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2868
3034
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
2869
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
|
+
};
|
|
2870
3050
|
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
2871
3051
|
id: Scalars['ID'];
|
|
2872
3052
|
};
|
|
@@ -2951,6 +3131,50 @@ export declare enum ConfluenceSpaceType {
|
|
|
2951
3131
|
Global = "GLOBAL",
|
|
2952
3132
|
Personal = "PERSONAL"
|
|
2953
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
|
+
};
|
|
2954
3178
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
2955
3179
|
id: Scalars['ID'];
|
|
2956
3180
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3158,6 +3382,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3158
3382
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
3159
3383
|
publishStatus?: Maybe<Scalars['String']>;
|
|
3160
3384
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3385
|
+
getStarted?: Maybe<Scalars['JSON']>;
|
|
3161
3386
|
};
|
|
3162
3387
|
export declare type ContentPlatformReleaseNoteEntry = {
|
|
3163
3388
|
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
@@ -3186,6 +3411,7 @@ export declare type ContentPlatformReleaseNoteEntry = {
|
|
|
3186
3411
|
updatedAt: Scalars['String'];
|
|
3187
3412
|
url: Scalars['String'];
|
|
3188
3413
|
benefitsList: Scalars['JSON'];
|
|
3414
|
+
getStarted: Scalars['JSON'];
|
|
3189
3415
|
};
|
|
3190
3416
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
3191
3417
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
@@ -3802,6 +4028,7 @@ export declare type CustomUiTunnelDefinitionInput = {
|
|
|
3802
4028
|
export declare type CustomerUser = User & LocalizationContext & {
|
|
3803
4029
|
__typename?: 'CustomerUser';
|
|
3804
4030
|
accountId: Scalars['ID'];
|
|
4031
|
+
canonicalAccountId: Scalars['ID'];
|
|
3805
4032
|
accountStatus: AccountStatus;
|
|
3806
4033
|
name: Scalars['String'];
|
|
3807
4034
|
picture: Scalars['URL'];
|
|
@@ -4889,6 +5116,10 @@ export declare type EventSource = {
|
|
|
4889
5116
|
externalEventSourceId: Scalars['ID'];
|
|
4890
5117
|
eventType: CompassEventType;
|
|
4891
5118
|
forgeAppId?: Maybe<Scalars['ID']>;
|
|
5119
|
+
events?: Maybe<CompassEventsQueryResult>;
|
|
5120
|
+
};
|
|
5121
|
+
export declare type EventSourceEventsArgs = {
|
|
5122
|
+
query?: Maybe<CompassEventsInEventSourceQuery>;
|
|
4892
5123
|
};
|
|
4893
5124
|
export declare type Extension = {
|
|
4894
5125
|
__typename?: 'Extension';
|
|
@@ -8511,6 +8742,8 @@ export declare type JiraQuery = {
|
|
|
8511
8742
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
8512
8743
|
issueByKey?: Maybe<JiraIssue>;
|
|
8513
8744
|
issueById?: Maybe<JiraIssue>;
|
|
8745
|
+
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8746
|
+
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8514
8747
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8515
8748
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8516
8749
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
@@ -8568,6 +8801,12 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
8568
8801
|
export declare type JiraQueryIssueByIdArgs = {
|
|
8569
8802
|
id: Scalars['ID'];
|
|
8570
8803
|
};
|
|
8804
|
+
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
8805
|
+
issueId: Scalars['ID'];
|
|
8806
|
+
};
|
|
8807
|
+
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
8808
|
+
issueKey: Scalars['String'];
|
|
8809
|
+
};
|
|
8571
8810
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
8572
8811
|
cloudId: Scalars['ID'];
|
|
8573
8812
|
keys: Array<Scalars['String']>;
|
|
@@ -12734,6 +12973,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
12734
12973
|
timelineMode: RoadmapTimelineMode;
|
|
12735
12974
|
epicView: RoadmapEpicView;
|
|
12736
12975
|
levelOneView: RoadmapLevelOneView;
|
|
12976
|
+
levelOneViewSettings: RoadmapViewSettings;
|
|
12737
12977
|
};
|
|
12738
12978
|
export declare type RoadmapVersion = {
|
|
12739
12979
|
__typename?: 'RoadmapVersion';
|
|
@@ -12746,6 +12986,11 @@ export declare enum RoadmapVersionStatus {
|
|
|
12746
12986
|
Unreleased = "UNRELEASED",
|
|
12747
12987
|
Archived = "ARCHIVED"
|
|
12748
12988
|
}
|
|
12989
|
+
export declare type RoadmapViewSettings = {
|
|
12990
|
+
__typename?: 'RoadmapViewSettings';
|
|
12991
|
+
period: Scalars['Int'];
|
|
12992
|
+
showCompleted: Scalars['Boolean'];
|
|
12993
|
+
};
|
|
12749
12994
|
export declare type RoadmapsQuery = {
|
|
12750
12995
|
__typename?: 'RoadmapsQuery';
|
|
12751
12996
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -12776,6 +13021,8 @@ export declare enum Scope {
|
|
|
12776
13021
|
WriteCompassScorecard = "WRITE_COMPASS_SCORECARD",
|
|
12777
13022
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
12778
13023
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
13024
|
+
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
13025
|
+
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
12779
13026
|
ConfluenceAtlassianExternal = "CONFLUENCE_ATLASSIAN_EXTERNAL",
|
|
12780
13027
|
ReadConfluenceContentAll = "READ_CONFLUENCE_CONTENT_ALL",
|
|
12781
13028
|
ReadConfluenceContentSummary = "READ_CONFLUENCE_CONTENT_SUMMARY",
|
|
@@ -13382,7 +13629,7 @@ export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
|
13382
13629
|
cloudId: Scalars['ID'];
|
|
13383
13630
|
accountId: Scalars['ID'];
|
|
13384
13631
|
projectType?: JiraProjectType;
|
|
13385
|
-
filter
|
|
13632
|
+
filter?: JiraProjectFilterInput;
|
|
13386
13633
|
};
|
|
13387
13634
|
export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
13388
13635
|
__typename?: 'SupportRequest';
|
|
@@ -13427,7 +13674,8 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
13427
13674
|
addComment?: Maybe<SupportRequestComment>;
|
|
13428
13675
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
13429
13676
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13430
|
-
|
|
13677
|
+
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13678
|
+
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
13431
13679
|
};
|
|
13432
13680
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
13433
13681
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -13436,7 +13684,10 @@ export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
|
13436
13684
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
13437
13685
|
};
|
|
13438
13686
|
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
13439
|
-
input
|
|
13687
|
+
input: SupportRequestParticipantsInput;
|
|
13688
|
+
};
|
|
13689
|
+
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
13690
|
+
input: SupportRequestParticipantsInput;
|
|
13440
13691
|
};
|
|
13441
13692
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
13442
13693
|
emails: Array<Scalars['String']>;
|
|
@@ -13448,6 +13699,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
13448
13699
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
13449
13700
|
me?: Maybe<SupportRequestPage>;
|
|
13450
13701
|
supportRequest?: Maybe<SupportRequest>;
|
|
13702
|
+
users?: Maybe<SupportRequestUsers>;
|
|
13451
13703
|
};
|
|
13452
13704
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
13453
13705
|
key: Scalars['ID'];
|
|
@@ -13632,6 +13884,17 @@ export declare type SupportRequestUser = {
|
|
|
13632
13884
|
email?: Maybe<Scalars['String']>;
|
|
13633
13885
|
displayName?: Maybe<Scalars['String']>;
|
|
13634
13886
|
};
|
|
13887
|
+
export declare type SupportRequestUsers = {
|
|
13888
|
+
__typename?: 'SupportRequestUsers';
|
|
13889
|
+
searchUsers: Array<SupportRequestUser>;
|
|
13890
|
+
};
|
|
13891
|
+
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
13892
|
+
query?: Maybe<Scalars['String']>;
|
|
13893
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
13894
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
13895
|
+
includeActive?: Maybe<Scalars['Boolean']>;
|
|
13896
|
+
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
13897
|
+
};
|
|
13635
13898
|
export declare type SupportRequests = {
|
|
13636
13899
|
__typename?: 'SupportRequests';
|
|
13637
13900
|
total: Scalars['Int'];
|
|
@@ -14378,6 +14641,7 @@ export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
|
14378
14641
|
};
|
|
14379
14642
|
export declare type User = {
|
|
14380
14643
|
accountId: Scalars['ID'];
|
|
14644
|
+
canonicalAccountId: Scalars['ID'];
|
|
14381
14645
|
accountStatus: AccountStatus;
|
|
14382
14646
|
name: Scalars['String'];
|
|
14383
14647
|
picture: Scalars['URL'];
|