@forge/cli-shared 2.2.1-next.1 → 2.2.1-next.5
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.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [f6901fd]
|
|
8
|
+
- @forge/manifest@3.1.0-next.5
|
|
9
|
+
|
|
10
|
+
## 2.2.1-next.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [d3ccc04]
|
|
15
|
+
- @forge/manifest@3.1.0-next.4
|
|
16
|
+
|
|
17
|
+
## 2.2.1-next.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [debe251]
|
|
22
|
+
- @forge/manifest@3.1.0-next.3
|
|
23
|
+
|
|
24
|
+
## 2.2.1-next.2
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [14102be]
|
|
29
|
+
- @forge/manifest@3.1.0-next.2
|
|
30
|
+
|
|
3
31
|
## 2.2.1-next.1
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
|
@@ -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']>;
|
|
@@ -2750,11 +2750,27 @@ export declare type ConfluenceContentBody = {
|
|
|
2750
2750
|
styledView?: Maybe<Scalars['String']>;
|
|
2751
2751
|
view?: Maybe<Scalars['String']>;
|
|
2752
2752
|
};
|
|
2753
|
+
export declare type ConfluenceContentBodyInput = {
|
|
2754
|
+
representation: ConfluenceContentRepresentation;
|
|
2755
|
+
value: Scalars['String'];
|
|
2756
|
+
};
|
|
2753
2757
|
export declare type ConfluenceContentMetadata = {
|
|
2754
2758
|
__typename?: 'ConfluenceContentMetadata';
|
|
2755
2759
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2756
2760
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2757
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
|
+
}
|
|
2758
2774
|
export declare enum ConfluenceContentStatus {
|
|
2759
2775
|
Archived = "ARCHIVED",
|
|
2760
2776
|
Current = "CURRENT",
|
|
@@ -2775,6 +2791,30 @@ export declare enum ConfluenceContentType {
|
|
|
2775
2791
|
Comment = "COMMENT",
|
|
2776
2792
|
Page = "PAGE"
|
|
2777
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
|
+
};
|
|
2778
2818
|
export declare type ConfluenceCreateSpaceInput = {
|
|
2779
2819
|
key: Scalars['String'];
|
|
2780
2820
|
name: Scalars['String'];
|
|
@@ -2786,6 +2826,24 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2786
2826
|
errors?: Maybe<Array<MutationError>>;
|
|
2787
2827
|
success: Scalars['Boolean'];
|
|
2788
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
|
+
};
|
|
2789
2847
|
export declare type ConfluenceInlineTask = {
|
|
2790
2848
|
__typename?: 'ConfluenceInlineTask';
|
|
2791
2849
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -2814,15 +2872,68 @@ export declare type ConfluenceLabel = {
|
|
|
2814
2872
|
};
|
|
2815
2873
|
export declare type ConfluenceMutationApi = {
|
|
2816
2874
|
__typename?: 'ConfluenceMutationApi';
|
|
2875
|
+
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
2876
|
+
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
2817
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>;
|
|
2818
2888
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2819
2889
|
};
|
|
2890
|
+
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
2891
|
+
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
2892
|
+
};
|
|
2893
|
+
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
2894
|
+
cloudId: Scalars['ID'];
|
|
2895
|
+
pageInput: ConfluenceCreatePageInput;
|
|
2896
|
+
};
|
|
2820
2897
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
2821
2898
|
input: ConfluenceCreateSpaceInput;
|
|
2822
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
|
+
};
|
|
2823
2930
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2824
2931
|
input: ConfluenceUpdateSpaceInput;
|
|
2825
2932
|
};
|
|
2933
|
+
export declare enum ConfluenceMutationContentStatus {
|
|
2934
|
+
Current = "CURRENT",
|
|
2935
|
+
Draft = "DRAFT"
|
|
2936
|
+
}
|
|
2826
2937
|
export declare type ConfluenceOperationCheck = {
|
|
2827
2938
|
__typename?: 'ConfluenceOperationCheck';
|
|
2828
2939
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -2870,18 +2981,72 @@ export declare type ConfluencePageLinks = {
|
|
|
2870
2981
|
base?: Maybe<Scalars['String']>;
|
|
2871
2982
|
webUi?: Maybe<Scalars['String']>;
|
|
2872
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
|
+
};
|
|
2873
3020
|
export declare type ConfluenceQueryApi = {
|
|
2874
3021
|
__typename?: 'ConfluenceQueryApi';
|
|
3022
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3023
|
+
confluenceBlogPostWithFilters?: Maybe<ConfluenceBlogPost>;
|
|
3024
|
+
confluenceBlogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3025
|
+
confluenceBlogPostsWithFilters?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
2875
3026
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2876
3027
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2877
3028
|
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
2878
|
-
confluencePage?: Maybe<
|
|
2879
|
-
confluencePageWithFilters?: Maybe<
|
|
2880
|
-
confluencePages?: Maybe<Array<Maybe<
|
|
2881
|
-
confluencePagesWithFilters?: Maybe<Array<Maybe<
|
|
3029
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3030
|
+
confluencePageWithFilters?: Maybe<ConfluencePage>;
|
|
3031
|
+
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3032
|
+
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
2882
3033
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2883
3034
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
2884
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
|
+
};
|
|
2885
3050
|
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
2886
3051
|
id: Scalars['ID'];
|
|
2887
3052
|
};
|
|
@@ -2966,6 +3131,50 @@ export declare enum ConfluenceSpaceType {
|
|
|
2966
3131
|
Global = "GLOBAL",
|
|
2967
3132
|
Personal = "PERSONAL"
|
|
2968
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
|
+
};
|
|
2969
3178
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
2970
3179
|
id: Scalars['ID'];
|
|
2971
3180
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3136,7 +3345,7 @@ export declare type ContentPlatformPracticePage = {
|
|
|
3136
3345
|
__typename?: 'ContentPlatformPracticePage';
|
|
3137
3346
|
name: Scalars['String'];
|
|
3138
3347
|
tagline: Scalars['String'];
|
|
3139
|
-
|
|
3348
|
+
introToPractice: ContentPlatformIntroToPractice;
|
|
3140
3349
|
whatIs: ContentPlatformChunkWhatIs;
|
|
3141
3350
|
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
3142
3351
|
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
@@ -3145,6 +3354,16 @@ export declare type ContentPlatformPracticePage = {
|
|
|
3145
3354
|
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
3146
3355
|
practice: ContentPlatformWhatPractice;
|
|
3147
3356
|
};
|
|
3357
|
+
export declare type ContentPlatformPracticePagesConnection = {
|
|
3358
|
+
__typename?: 'ContentPlatformPracticePagesConnection';
|
|
3359
|
+
pageInfo: PageInfo;
|
|
3360
|
+
edges: Array<ContentPlatformPracticePagesEdge>;
|
|
3361
|
+
};
|
|
3362
|
+
export declare type ContentPlatformPracticePagesEdge = {
|
|
3363
|
+
__typename?: 'ContentPlatformPracticePagesEdge';
|
|
3364
|
+
node: ContentPlatformPracticePage;
|
|
3365
|
+
cursor: Scalars['String'];
|
|
3366
|
+
};
|
|
3148
3367
|
export declare type ContentPlatformReleaseNote = {
|
|
3149
3368
|
__typename?: 'ContentPlatformReleaseNote';
|
|
3150
3369
|
releaseNoteId: Scalars['String'];
|
|
@@ -3740,6 +3959,10 @@ export declare type CreatePolarisViewSetPayload = Payload & {
|
|
|
3740
3959
|
errors?: Maybe<Array<MutationError>>;
|
|
3741
3960
|
node?: Maybe<PolarisViewSet>;
|
|
3742
3961
|
};
|
|
3962
|
+
export declare type CreateRankingListInput = {
|
|
3963
|
+
listId: Scalars['ID'];
|
|
3964
|
+
items?: Maybe<Array<Scalars['String']>>;
|
|
3965
|
+
};
|
|
3743
3966
|
export declare type CreateSprintInput = {
|
|
3744
3967
|
boardId: Scalars['ID'];
|
|
3745
3968
|
};
|
|
@@ -4155,6 +4378,13 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
4155
4378
|
success: Scalars['Boolean'];
|
|
4156
4379
|
errors?: Maybe<Array<MutationError>>;
|
|
4157
4380
|
};
|
|
4381
|
+
export declare type DevOps = {
|
|
4382
|
+
__typename?: 'DevOps';
|
|
4383
|
+
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
4384
|
+
};
|
|
4385
|
+
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
4386
|
+
ids: Array<Scalars['ID']>;
|
|
4387
|
+
};
|
|
4158
4388
|
export declare type DevOpsAvatar = {
|
|
4159
4389
|
__typename?: 'DevOpsAvatar';
|
|
4160
4390
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -4615,6 +4845,13 @@ export declare type DevOpsServicesFilterInput = {
|
|
|
4615
4845
|
nameContains?: Maybe<Scalars['String']>;
|
|
4616
4846
|
tierLevelIn?: Maybe<Array<Scalars['Int']>>;
|
|
4617
4847
|
};
|
|
4848
|
+
export declare type DevOpsSummarisedDeployments = {
|
|
4849
|
+
__typename?: 'DevOpsSummarisedDeployments';
|
|
4850
|
+
entityId: Scalars['ID'];
|
|
4851
|
+
count?: Maybe<Scalars['Int']>;
|
|
4852
|
+
deploymentState?: Maybe<DeploymentState>;
|
|
4853
|
+
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
4854
|
+
};
|
|
4618
4855
|
export declare type DevOpsThirdPartyRepository = {
|
|
4619
4856
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
4620
4857
|
id: Scalars['ID'];
|
|
@@ -6631,6 +6868,7 @@ export declare type JiraIssue = Node & {
|
|
|
6631
6868
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6632
6869
|
childIssues?: Maybe<JiraChildIssues>;
|
|
6633
6870
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6871
|
+
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
6634
6872
|
};
|
|
6635
6873
|
export declare type JiraIssueFieldsArgs = {
|
|
6636
6874
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9783,6 +10021,7 @@ export declare enum JiraVersionIssuesFilter {
|
|
|
9783
10021
|
InProgress = "IN_PROGRESS",
|
|
9784
10022
|
Done = "DONE",
|
|
9785
10023
|
UnreviewedCode = "UNREVIEWED_CODE",
|
|
10024
|
+
OpenReview = "OPEN_REVIEW",
|
|
9786
10025
|
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
9787
10026
|
FailingBuild = "FAILING_BUILD"
|
|
9788
10027
|
}
|
|
@@ -9800,6 +10039,7 @@ export declare type JiraVersionUpdatedWarningConfigInput = {
|
|
|
9800
10039
|
export declare type JiraVersionWarningConfig = {
|
|
9801
10040
|
__typename?: 'JiraVersionWarningConfig';
|
|
9802
10041
|
openPullRequest?: Maybe<JiraVersionWarningConfigState>;
|
|
10042
|
+
openReview?: Maybe<JiraVersionWarningConfigState>;
|
|
9803
10043
|
unreviewedCode?: Maybe<JiraVersionWarningConfigState>;
|
|
9804
10044
|
failingBuild?: Maybe<JiraVersionWarningConfigState>;
|
|
9805
10045
|
};
|
|
@@ -10394,8 +10634,10 @@ export declare type Mutation = {
|
|
|
10394
10634
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
10395
10635
|
jira?: Maybe<JiraMutation>;
|
|
10396
10636
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
10637
|
+
roadmaps?: Maybe<RoadmapsMutation>;
|
|
10397
10638
|
appStorage?: Maybe<AppStorageMutation>;
|
|
10398
10639
|
updatePolarisTermsConsent?: Maybe<UpdatePolarisTermsConsentPayload>;
|
|
10640
|
+
polaris?: Maybe<PolarisMutationNamespace>;
|
|
10399
10641
|
createPolarisAnonymousVisitorHash?: Maybe<CreatePolarisAnonymousVisitorHashPayload>;
|
|
10400
10642
|
deletePolarisAnonymousVisitorHash?: Maybe<DeletePolarisAnonymousVisitorHashPayload>;
|
|
10401
10643
|
resolvePolarisObject?: Maybe<ResolvePolarisObjectPayload>;
|
|
@@ -11702,6 +11944,10 @@ export declare type PolarisMatrixConfig = {
|
|
|
11702
11944
|
__typename?: 'PolarisMatrixConfig';
|
|
11703
11945
|
axes?: Maybe<Array<PolarisMatrixAxis>>;
|
|
11704
11946
|
};
|
|
11947
|
+
export declare type PolarisMutationNamespace = {
|
|
11948
|
+
__typename?: 'PolarisMutationNamespace';
|
|
11949
|
+
ranking?: Maybe<PolarisRankingMutationNamespace>;
|
|
11950
|
+
};
|
|
11705
11951
|
export declare type PolarisPlay = {
|
|
11706
11952
|
__typename?: 'PolarisPlay';
|
|
11707
11953
|
id: Scalars['ID'];
|
|
@@ -11773,6 +12019,55 @@ export declare type PolarisProjectTemplate = {
|
|
|
11773
12019
|
__typename?: 'PolarisProjectTemplate';
|
|
11774
12020
|
ideas?: Maybe<Scalars['JSON']>;
|
|
11775
12021
|
};
|
|
12022
|
+
export declare type PolarisQueryNamespace = {
|
|
12023
|
+
__typename?: 'PolarisQueryNamespace';
|
|
12024
|
+
ranking?: Maybe<PolarisRankingQueryNamespace>;
|
|
12025
|
+
};
|
|
12026
|
+
export declare type PolarisRankingMutationNamespace = {
|
|
12027
|
+
__typename?: 'PolarisRankingMutationNamespace';
|
|
12028
|
+
createList?: Maybe<RankingDiffPayload>;
|
|
12029
|
+
deleteList?: Maybe<RankingDiffPayload>;
|
|
12030
|
+
makeFirst?: Maybe<RankingDiffPayload>;
|
|
12031
|
+
makeLast?: Maybe<RankingDiffPayload>;
|
|
12032
|
+
makeBefore?: Maybe<RankingDiffPayload>;
|
|
12033
|
+
makeAfter?: Maybe<RankingDiffPayload>;
|
|
12034
|
+
makeUnranked?: Maybe<RankingDiffPayload>;
|
|
12035
|
+
};
|
|
12036
|
+
export declare type PolarisRankingMutationNamespaceCreateListArgs = {
|
|
12037
|
+
input: CreateRankingListInput;
|
|
12038
|
+
};
|
|
12039
|
+
export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
|
|
12040
|
+
listId: Scalars['ID'];
|
|
12041
|
+
};
|
|
12042
|
+
export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
|
|
12043
|
+
listId: Scalars['ID'];
|
|
12044
|
+
id: Scalars['ID'];
|
|
12045
|
+
};
|
|
12046
|
+
export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
|
|
12047
|
+
listId: Scalars['ID'];
|
|
12048
|
+
id: Scalars['ID'];
|
|
12049
|
+
};
|
|
12050
|
+
export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
|
|
12051
|
+
listId: Scalars['ID'];
|
|
12052
|
+
refId: Scalars['ID'];
|
|
12053
|
+
id: Scalars['ID'];
|
|
12054
|
+
};
|
|
12055
|
+
export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
|
|
12056
|
+
listId: Scalars['ID'];
|
|
12057
|
+
refId: Scalars['ID'];
|
|
12058
|
+
id: Scalars['ID'];
|
|
12059
|
+
};
|
|
12060
|
+
export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
|
|
12061
|
+
listId: Scalars['ID'];
|
|
12062
|
+
id: Scalars['ID'];
|
|
12063
|
+
};
|
|
12064
|
+
export declare type PolarisRankingQueryNamespace = {
|
|
12065
|
+
__typename?: 'PolarisRankingQueryNamespace';
|
|
12066
|
+
list?: Maybe<Array<Maybe<RankItem>>>;
|
|
12067
|
+
};
|
|
12068
|
+
export declare type PolarisRankingQueryNamespaceListArgs = {
|
|
12069
|
+
listId: Scalars['ID'];
|
|
12070
|
+
};
|
|
11776
12071
|
export declare enum PolarisRefreshError {
|
|
11777
12072
|
NeedAuth = "NEED_AUTH",
|
|
11778
12073
|
InvalidSnippet = "INVALID_SNIPPET",
|
|
@@ -12058,7 +12353,7 @@ export declare type Query = {
|
|
|
12058
12353
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
12059
12354
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
12060
12355
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
12061
|
-
practicePages:
|
|
12356
|
+
practicePages: ContentPlatformPracticePagesConnection;
|
|
12062
12357
|
practicePage: ContentPlatformPracticePage;
|
|
12063
12358
|
apps?: Maybe<AppConnection>;
|
|
12064
12359
|
app?: Maybe<App>;
|
|
@@ -12068,6 +12363,7 @@ export declare type Query = {
|
|
|
12068
12363
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
12069
12364
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
12070
12365
|
search?: Maybe<SearchQueryApi>;
|
|
12366
|
+
devOps?: Maybe<DevOps>;
|
|
12071
12367
|
me: AuthenticationContext;
|
|
12072
12368
|
user?: Maybe<User>;
|
|
12073
12369
|
users?: Maybe<Array<User>>;
|
|
@@ -12119,6 +12415,7 @@ export declare type Query = {
|
|
|
12119
12415
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
12120
12416
|
polarisAnonymousVisitorHashByID?: Maybe<PolarisAnonymousVisitorHash>;
|
|
12121
12417
|
polarisLinkedDeliveryTickets?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
12418
|
+
polaris?: Maybe<PolarisQueryNamespace>;
|
|
12122
12419
|
dvcs?: Maybe<DvcsQuery>;
|
|
12123
12420
|
appActiveTunnels?: Maybe<AppTunnelDefinitions>;
|
|
12124
12421
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
@@ -12170,6 +12467,10 @@ export declare type QueryReleaseNoteArgs = {
|
|
|
12170
12467
|
id: Scalars['String'];
|
|
12171
12468
|
publishedOnly?: Maybe<Scalars['Boolean']>;
|
|
12172
12469
|
};
|
|
12470
|
+
export declare type QueryPracticePagesArgs = {
|
|
12471
|
+
after?: Maybe<Scalars['String']>;
|
|
12472
|
+
first?: Maybe<Scalars['Int']>;
|
|
12473
|
+
};
|
|
12173
12474
|
export declare type QueryPracticePageArgs = {
|
|
12174
12475
|
id: Scalars['String'];
|
|
12175
12476
|
};
|
|
@@ -12444,6 +12745,17 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
12444
12745
|
success: Scalars['Boolean'];
|
|
12445
12746
|
message: Scalars['String'];
|
|
12446
12747
|
};
|
|
12748
|
+
export declare type RankItem = {
|
|
12749
|
+
__typename?: 'RankItem';
|
|
12750
|
+
id: Scalars['ID'];
|
|
12751
|
+
rank: Scalars['Float'];
|
|
12752
|
+
};
|
|
12753
|
+
export declare type RankingDiffPayload = {
|
|
12754
|
+
__typename?: 'RankingDiffPayload';
|
|
12755
|
+
added?: Maybe<Array<RankItem>>;
|
|
12756
|
+
changed?: Maybe<Array<RankItem>>;
|
|
12757
|
+
deleted?: Maybe<Array<RankItem>>;
|
|
12758
|
+
};
|
|
12447
12759
|
export declare enum RateLimitingCurrency {
|
|
12448
12760
|
TestingService = "TESTING_SERVICE",
|
|
12449
12761
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
@@ -12596,6 +12908,21 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
12596
12908
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
12597
12909
|
sprintField?: Maybe<Scalars['ID']>;
|
|
12598
12910
|
};
|
|
12911
|
+
export declare type RoadmapFeatureToggleInput = {
|
|
12912
|
+
sourceARI: Scalars['ID'];
|
|
12913
|
+
enabled: Scalars['Boolean'];
|
|
12914
|
+
};
|
|
12915
|
+
export declare type RoadmapFeatureToggleOutput = {
|
|
12916
|
+
__typename?: 'RoadmapFeatureToggleOutput';
|
|
12917
|
+
enabled: Scalars['Boolean'];
|
|
12918
|
+
isCrossProject: Scalars['Boolean'];
|
|
12919
|
+
};
|
|
12920
|
+
export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
12921
|
+
__typename?: 'RoadmapFeatureTogglePayload';
|
|
12922
|
+
success: Scalars['Boolean'];
|
|
12923
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12924
|
+
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
12925
|
+
};
|
|
12599
12926
|
export declare type RoadmapItem = {
|
|
12600
12927
|
__typename?: 'RoadmapItem';
|
|
12601
12928
|
id: Scalars['ID'];
|
|
@@ -12668,6 +12995,11 @@ export declare type RoadmapMetadata = {
|
|
|
12668
12995
|
hasExceededIssueLimit: Scalars['Boolean'];
|
|
12669
12996
|
corruptedIssueCount: Scalars['Int'];
|
|
12670
12997
|
};
|
|
12998
|
+
export declare type RoadmapMutationErrorExtension = MutationErrorExtension & {
|
|
12999
|
+
__typename?: 'RoadmapMutationErrorExtension';
|
|
13000
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
13001
|
+
errorType?: Maybe<Scalars['String']>;
|
|
13002
|
+
};
|
|
12671
13003
|
export declare enum RoadmapPaletteColor {
|
|
12672
13004
|
Purple = "PURPLE",
|
|
12673
13005
|
Blue = "BLUE",
|
|
@@ -12782,6 +13114,13 @@ export declare type RoadmapViewSettings = {
|
|
|
12782
13114
|
period: Scalars['Int'];
|
|
12783
13115
|
showCompleted: Scalars['Boolean'];
|
|
12784
13116
|
};
|
|
13117
|
+
export declare type RoadmapsMutation = {
|
|
13118
|
+
__typename?: 'RoadmapsMutation';
|
|
13119
|
+
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13120
|
+
};
|
|
13121
|
+
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13122
|
+
input?: Maybe<RoadmapFeatureToggleInput>;
|
|
13123
|
+
};
|
|
12785
13124
|
export declare type RoadmapsQuery = {
|
|
12786
13125
|
__typename?: 'RoadmapsQuery';
|
|
12787
13126
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -13465,6 +13804,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
13465
13804
|
addComment?: Maybe<SupportRequestComment>;
|
|
13466
13805
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
13467
13806
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13807
|
+
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13468
13808
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
13469
13809
|
};
|
|
13470
13810
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
@@ -13474,7 +13814,10 @@ export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
|
13474
13814
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
13475
13815
|
};
|
|
13476
13816
|
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
13477
|
-
input
|
|
13817
|
+
input: SupportRequestParticipantsInput;
|
|
13818
|
+
};
|
|
13819
|
+
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
13820
|
+
input: SupportRequestParticipantsInput;
|
|
13478
13821
|
};
|
|
13479
13822
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
13480
13823
|
emails: Array<Scalars['String']>;
|
|
@@ -13486,6 +13829,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
13486
13829
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
13487
13830
|
me?: Maybe<SupportRequestPage>;
|
|
13488
13831
|
supportRequest?: Maybe<SupportRequest>;
|
|
13832
|
+
users?: Maybe<SupportRequestUsers>;
|
|
13489
13833
|
};
|
|
13490
13834
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
13491
13835
|
key: Scalars['ID'];
|
|
@@ -13669,6 +14013,18 @@ export declare type SupportRequestUser = {
|
|
|
13669
14013
|
username?: Maybe<Scalars['String']>;
|
|
13670
14014
|
email?: Maybe<Scalars['String']>;
|
|
13671
14015
|
displayName?: Maybe<Scalars['String']>;
|
|
14016
|
+
userType?: Maybe<Scalars['String']>;
|
|
14017
|
+
};
|
|
14018
|
+
export declare type SupportRequestUsers = {
|
|
14019
|
+
__typename?: 'SupportRequestUsers';
|
|
14020
|
+
searchUsers: Array<SupportRequestUser>;
|
|
14021
|
+
};
|
|
14022
|
+
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
14023
|
+
query?: Maybe<Scalars['String']>;
|
|
14024
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
14025
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
14026
|
+
includeActive?: Maybe<Scalars['Boolean']>;
|
|
14027
|
+
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
13672
14028
|
};
|
|
13673
14029
|
export declare type SupportRequests = {
|
|
13674
14030
|
__typename?: 'SupportRequests';
|
|
@@ -13937,6 +14293,10 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
13937
14293
|
q?: Maybe<Scalars['String']>;
|
|
13938
14294
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
13939
14295
|
};
|
|
14296
|
+
export declare type TransitionFilter = {
|
|
14297
|
+
from: Scalars['String'];
|
|
14298
|
+
to: Scalars['String'];
|
|
14299
|
+
};
|
|
13940
14300
|
export declare type TunnelDefinitionsInput = {
|
|
13941
14301
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
13942
14302
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|