@forge/cli-shared 0.0.0-experimental-c3d0263 → 0.0.0-experimental-490cfcf
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 +52 -3
- package/out/config/config-file.js +8 -8
- package/out/config/config.d.ts +2 -1
- package/out/config/config.d.ts.map +1 -1
- package/out/config/config.js +3 -2
- package/out/graphql/graphql-types.d.ts +395 -132
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +35 -22
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -1
- package/package.json +4 -4
|
@@ -544,6 +544,7 @@ export declare type AppInstallationInput = {
|
|
|
544
544
|
environmentKey: Scalars['String'];
|
|
545
545
|
async?: Maybe<Scalars['Boolean']>;
|
|
546
546
|
licenseOverride?: Maybe<LicenseOverrideState>;
|
|
547
|
+
provisionRequestId?: Maybe<Scalars['ID']>;
|
|
547
548
|
};
|
|
548
549
|
export declare type AppInstallationLicense = {
|
|
549
550
|
__typename?: 'AppInstallationLicense';
|
|
@@ -958,6 +959,7 @@ export declare type AuxEffectsInvocationPayload = {
|
|
|
958
959
|
effects: Array<Scalars['JSON']>;
|
|
959
960
|
context: Scalars['JSON'];
|
|
960
961
|
contextToken?: Maybe<Scalars['String']>;
|
|
962
|
+
extensionPayload?: Maybe<Scalars['JSON']>;
|
|
961
963
|
config?: Maybe<Scalars['JSON']>;
|
|
962
964
|
};
|
|
963
965
|
export declare type AuxEffectsResult = {
|
|
@@ -1000,6 +1002,7 @@ export declare type BasicBoardFeatureView = Node & {
|
|
|
1000
1002
|
status?: Maybe<Scalars['String']>;
|
|
1001
1003
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
1002
1004
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
1005
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
1003
1006
|
imageUri?: Maybe<Scalars['String']>;
|
|
1004
1007
|
};
|
|
1005
1008
|
export declare enum BitbucketPermission {
|
|
@@ -2818,22 +2821,14 @@ export declare type ConfigurePolarisRefreshPayload = Payload & {
|
|
|
2818
2821
|
errors?: Maybe<Array<MutationError>>;
|
|
2819
2822
|
node?: Maybe<Scalars['Int']>;
|
|
2820
2823
|
};
|
|
2821
|
-
export declare type
|
|
2822
|
-
id: Scalars['ID'];
|
|
2823
|
-
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2824
|
-
space?: Maybe<ConfluenceSpace>;
|
|
2825
|
-
status?: Maybe<ConfluenceContentStatus>;
|
|
2826
|
-
title?: Maybe<Scalars['String']>;
|
|
2827
|
-
type?: Maybe<ConfluenceContentType>;
|
|
2828
|
-
};
|
|
2829
|
-
export declare type ConfluenceBlogPost = ConfluenceAbstractPage & {
|
|
2824
|
+
export declare type ConfluenceBlogPost = {
|
|
2830
2825
|
__typename?: 'ConfluenceBlogPost';
|
|
2831
2826
|
blogPostId: Scalars['ID'];
|
|
2832
2827
|
id: Scalars['ID'];
|
|
2833
2828
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
2834
2829
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
2835
2830
|
space?: Maybe<ConfluenceSpace>;
|
|
2836
|
-
status?: Maybe<
|
|
2831
|
+
status?: Maybe<ConfluenceBlogPostStatus>;
|
|
2837
2832
|
title?: Maybe<Scalars['String']>;
|
|
2838
2833
|
type?: Maybe<ConfluenceContentType>;
|
|
2839
2834
|
};
|
|
@@ -2842,20 +2837,34 @@ export declare type ConfluenceBlogPostLinks = {
|
|
|
2842
2837
|
base?: Maybe<Scalars['String']>;
|
|
2843
2838
|
webUi?: Maybe<Scalars['String']>;
|
|
2844
2839
|
};
|
|
2840
|
+
export declare enum ConfluenceBlogPostStatus {
|
|
2841
|
+
Archived = "ARCHIVED",
|
|
2842
|
+
Current = "CURRENT",
|
|
2843
|
+
Deleted = "DELETED",
|
|
2844
|
+
Draft = "DRAFT",
|
|
2845
|
+
Historical = "HISTORICAL",
|
|
2846
|
+
Trashed = "TRASHED"
|
|
2847
|
+
}
|
|
2845
2848
|
export declare type ConfluenceComment = {
|
|
2846
2849
|
__typename?: 'ConfluenceComment';
|
|
2847
2850
|
author?: Maybe<ConfluenceUserInfo>;
|
|
2848
2851
|
commentId?: Maybe<Scalars['ID']>;
|
|
2849
|
-
container?: Maybe<
|
|
2852
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
2850
2853
|
id: Scalars['ID'];
|
|
2851
2854
|
links?: Maybe<ConfluenceCommentLinks>;
|
|
2852
2855
|
name?: Maybe<Scalars['String']>;
|
|
2856
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
2853
2857
|
};
|
|
2858
|
+
export declare type ConfluenceCommentContainer = ConfluenceBlogPost | ConfluencePage;
|
|
2854
2859
|
export declare type ConfluenceCommentLinks = {
|
|
2855
2860
|
__typename?: 'ConfluenceCommentLinks';
|
|
2856
2861
|
base?: Maybe<Scalars['String']>;
|
|
2857
2862
|
webUi?: Maybe<Scalars['String']>;
|
|
2858
2863
|
};
|
|
2864
|
+
export declare enum ConfluenceCommentStatus {
|
|
2865
|
+
Current = "CURRENT",
|
|
2866
|
+
Draft = "DRAFT"
|
|
2867
|
+
}
|
|
2859
2868
|
export declare type ConfluenceContentBody = {
|
|
2860
2869
|
__typename?: 'ConfluenceContentBody';
|
|
2861
2870
|
adf?: Maybe<Scalars['String']>;
|
|
@@ -2887,14 +2896,6 @@ export declare enum ConfluenceContentRepresentation {
|
|
|
2887
2896
|
View = "VIEW",
|
|
2888
2897
|
Wiki = "WIKI"
|
|
2889
2898
|
}
|
|
2890
|
-
export declare enum ConfluenceContentStatus {
|
|
2891
|
-
Archived = "ARCHIVED",
|
|
2892
|
-
Current = "CURRENT",
|
|
2893
|
-
Deleted = "DELETED",
|
|
2894
|
-
Draft = "DRAFT",
|
|
2895
|
-
Historical = "HISTORICAL",
|
|
2896
|
-
Trashed = "TRASHED"
|
|
2897
|
-
}
|
|
2898
2899
|
export declare type ConfluenceContentTitleEmoji = {
|
|
2899
2900
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
2900
2901
|
id?: Maybe<Scalars['String']>;
|
|
@@ -2909,7 +2910,7 @@ export declare enum ConfluenceContentType {
|
|
|
2909
2910
|
}
|
|
2910
2911
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
2911
2912
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2912
|
-
|
|
2913
|
+
spaceId: Scalars['ID'];
|
|
2913
2914
|
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2914
2915
|
title?: Maybe<Scalars['String']>;
|
|
2915
2916
|
};
|
|
@@ -2921,7 +2922,7 @@ export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
|
2921
2922
|
};
|
|
2922
2923
|
export declare type ConfluenceCreatePageInput = {
|
|
2923
2924
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2924
|
-
|
|
2925
|
+
spaceId: Scalars['ID'];
|
|
2925
2926
|
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2926
2927
|
title?: Maybe<Scalars['String']>;
|
|
2927
2928
|
};
|
|
@@ -2953,21 +2954,19 @@ export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
|
2953
2954
|
errors?: Maybe<Array<MutationError>>;
|
|
2954
2955
|
success: Scalars['Boolean'];
|
|
2955
2956
|
};
|
|
2956
|
-
export declare type
|
|
2957
|
+
export declare type ConfluenceDeleteDraftBlogPostInput = {
|
|
2957
2958
|
id: Scalars['ID'];
|
|
2958
|
-
status: ConfluenceMutationContentStatus;
|
|
2959
2959
|
};
|
|
2960
|
-
export declare type
|
|
2961
|
-
__typename?: '
|
|
2960
|
+
export declare type ConfluenceDeleteDraftBlogPostPayload = Payload & {
|
|
2961
|
+
__typename?: 'ConfluenceDeleteDraftBlogPostPayload';
|
|
2962
2962
|
errors?: Maybe<Array<MutationError>>;
|
|
2963
2963
|
success: Scalars['Boolean'];
|
|
2964
2964
|
};
|
|
2965
|
-
export declare type
|
|
2965
|
+
export declare type ConfluenceDeleteDraftPageInput = {
|
|
2966
2966
|
id: Scalars['ID'];
|
|
2967
|
-
status: ConfluenceMutationContentStatus;
|
|
2968
2967
|
};
|
|
2969
|
-
export declare type
|
|
2970
|
-
__typename?: '
|
|
2968
|
+
export declare type ConfluenceDeleteDraftPagePayload = Payload & {
|
|
2969
|
+
__typename?: 'ConfluenceDeleteDraftPagePayload';
|
|
2971
2970
|
errors?: Maybe<Array<MutationError>>;
|
|
2972
2971
|
success: Scalars['Boolean'];
|
|
2973
2972
|
};
|
|
@@ -3010,12 +3009,14 @@ export declare type ConfluenceMutationApi = {
|
|
|
3010
3009
|
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
3011
3010
|
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
3012
3011
|
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
3013
|
-
|
|
3014
|
-
|
|
3012
|
+
confluenceDeleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
3013
|
+
confluenceDeleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
3015
3014
|
confluencePublishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
3016
3015
|
confluencePublishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
3017
3016
|
confluencePurgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
3018
3017
|
confluencePurgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
3018
|
+
confluenceTrashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
3019
|
+
confluenceTrashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
3019
3020
|
confluenceUpdateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
3020
3021
|
confluenceUpdateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
3021
3022
|
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
@@ -3026,59 +3027,54 @@ export declare type ConfluenceMutationApi = {
|
|
|
3026
3027
|
confluenceDeleteUserProperty?: Maybe<ConfluenceDeleteUserPropertyPayload>;
|
|
3027
3028
|
};
|
|
3028
3029
|
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
3029
|
-
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
3030
3030
|
cloudId: Scalars['ID'];
|
|
3031
|
+
input: ConfluenceCreateBlogPostInput;
|
|
3031
3032
|
};
|
|
3032
3033
|
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
3033
3034
|
cloudId: Scalars['ID'];
|
|
3034
|
-
|
|
3035
|
+
input: ConfluenceCreatePageInput;
|
|
3035
3036
|
};
|
|
3036
3037
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
3037
3038
|
cloudId: Scalars['ID'];
|
|
3038
3039
|
input: ConfluenceCreateSpaceInput;
|
|
3039
3040
|
};
|
|
3040
|
-
export declare type
|
|
3041
|
-
|
|
3042
|
-
deletBlogPostInput: ConfluenceDeleteBlogPostInput;
|
|
3041
|
+
export declare type ConfluenceMutationApiConfluenceDeleteDraftBlogPostArgs = {
|
|
3042
|
+
input: ConfluenceDeleteDraftBlogPostInput;
|
|
3043
3043
|
};
|
|
3044
|
-
export declare type
|
|
3045
|
-
|
|
3046
|
-
deletPageInput: ConfluenceDeletePageInput;
|
|
3044
|
+
export declare type ConfluenceMutationApiConfluenceDeleteDraftPageArgs = {
|
|
3045
|
+
input: ConfluenceDeleteDraftPageInput;
|
|
3047
3046
|
};
|
|
3048
3047
|
export declare type ConfluenceMutationApiConfluencePublishBlogPostArgs = {
|
|
3049
|
-
|
|
3050
|
-
publishBlogPostInput: ConfluencePublishBlogPostInput;
|
|
3048
|
+
input: ConfluencePublishBlogPostInput;
|
|
3051
3049
|
};
|
|
3052
3050
|
export declare type ConfluenceMutationApiConfluencePublishPageArgs = {
|
|
3053
|
-
|
|
3054
|
-
publishPageInput: ConfluencePublishPageInput;
|
|
3051
|
+
input: ConfluencePublishPageInput;
|
|
3055
3052
|
};
|
|
3056
3053
|
export declare type ConfluenceMutationApiConfluencePurgeBlogPostArgs = {
|
|
3057
|
-
|
|
3058
|
-
purgeBlogPostInput: ConfluencePurgeBlogPostInput;
|
|
3054
|
+
input: ConfluencePurgeBlogPostInput;
|
|
3059
3055
|
};
|
|
3060
3056
|
export declare type ConfluenceMutationApiConfluencePurgePageArgs = {
|
|
3061
|
-
|
|
3062
|
-
|
|
3057
|
+
input: ConfluencePurgePageInput;
|
|
3058
|
+
};
|
|
3059
|
+
export declare type ConfluenceMutationApiConfluenceTrashBlogPostArgs = {
|
|
3060
|
+
input: ConfluenceTrashBlogPostInput;
|
|
3061
|
+
};
|
|
3062
|
+
export declare type ConfluenceMutationApiConfluenceTrashPageArgs = {
|
|
3063
|
+
input: ConfluenceTrashPageInput;
|
|
3063
3064
|
};
|
|
3064
3065
|
export declare type ConfluenceMutationApiConfluenceUpdateCurrentBlogPostArgs = {
|
|
3065
|
-
|
|
3066
|
-
updateBlogPostInput: ConfluenceUpdateCurrentBlogPostInput;
|
|
3066
|
+
input: ConfluenceUpdateCurrentBlogPostInput;
|
|
3067
3067
|
};
|
|
3068
3068
|
export declare type ConfluenceMutationApiConfluenceUpdateCurrentPageArgs = {
|
|
3069
|
-
|
|
3070
|
-
updatePageInput: ConfluenceUpdateCurrentPageInput;
|
|
3069
|
+
input: ConfluenceUpdateCurrentPageInput;
|
|
3071
3070
|
};
|
|
3072
3071
|
export declare type ConfluenceMutationApiConfluenceUpdateDraftBlogPostArgs = {
|
|
3073
|
-
|
|
3074
|
-
updateBlogPostInput: ConfluenceUpdateDraftBlogPostInput;
|
|
3072
|
+
input: ConfluenceUpdateDraftBlogPostInput;
|
|
3075
3073
|
};
|
|
3076
3074
|
export declare type ConfluenceMutationApiConfluenceUpdateDraftPageArgs = {
|
|
3077
|
-
|
|
3078
|
-
updatePageInput: ConfluenceUpdateDraftPageInput;
|
|
3075
|
+
input: ConfluenceUpdateDraftPageInput;
|
|
3079
3076
|
};
|
|
3080
3077
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
3081
|
-
cloudId: Scalars['ID'];
|
|
3082
3078
|
input: ConfluenceUpdateSpaceInput;
|
|
3083
3079
|
};
|
|
3084
3080
|
export declare type ConfluenceMutationApiConfluenceCreateUserPropertyArgs = {
|
|
@@ -3126,14 +3122,14 @@ export declare enum ConfluenceOperationTarget {
|
|
|
3126
3122
|
Space = "SPACE",
|
|
3127
3123
|
UserProfile = "USER_PROFILE"
|
|
3128
3124
|
}
|
|
3129
|
-
export declare type ConfluencePage =
|
|
3125
|
+
export declare type ConfluencePage = {
|
|
3130
3126
|
__typename?: 'ConfluencePage';
|
|
3131
3127
|
id: Scalars['ID'];
|
|
3132
3128
|
links?: Maybe<ConfluencePageLinks>;
|
|
3133
3129
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
3134
3130
|
pageId: Scalars['ID'];
|
|
3135
3131
|
space?: Maybe<ConfluenceSpace>;
|
|
3136
|
-
status?: Maybe<
|
|
3132
|
+
status?: Maybe<ConfluencePageStatus>;
|
|
3137
3133
|
title?: Maybe<Scalars['String']>;
|
|
3138
3134
|
type?: Maybe<ConfluenceContentType>;
|
|
3139
3135
|
};
|
|
@@ -3142,8 +3138,16 @@ export declare type ConfluencePageLinks = {
|
|
|
3142
3138
|
base?: Maybe<Scalars['String']>;
|
|
3143
3139
|
webUi?: Maybe<Scalars['String']>;
|
|
3144
3140
|
};
|
|
3141
|
+
export declare enum ConfluencePageStatus {
|
|
3142
|
+
Archived = "ARCHIVED",
|
|
3143
|
+
Current = "CURRENT",
|
|
3144
|
+
Deleted = "DELETED",
|
|
3145
|
+
Draft = "DRAFT",
|
|
3146
|
+
Historical = "HISTORICAL",
|
|
3147
|
+
Trashed = "TRASHED"
|
|
3148
|
+
}
|
|
3145
3149
|
export declare type ConfluencePublishBlogPostInput = {
|
|
3146
|
-
id: Scalars['
|
|
3150
|
+
id: Scalars['ID'];
|
|
3147
3151
|
publishTitle?: Maybe<Scalars['String']>;
|
|
3148
3152
|
};
|
|
3149
3153
|
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
@@ -3153,7 +3157,7 @@ export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
|
3153
3157
|
success: Scalars['Boolean'];
|
|
3154
3158
|
};
|
|
3155
3159
|
export declare type ConfluencePublishPageInput = {
|
|
3156
|
-
id: Scalars['
|
|
3160
|
+
id: Scalars['ID'];
|
|
3157
3161
|
publishTitle?: Maybe<Scalars['String']>;
|
|
3158
3162
|
};
|
|
3159
3163
|
export declare type ConfluencePublishPagePayload = Payload & {
|
|
@@ -3190,7 +3194,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
3190
3194
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
3191
3195
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
3192
3196
|
confluenceUserProperty?: Maybe<ConfluenceUserProperty>;
|
|
3193
|
-
confluenceUserProperties
|
|
3197
|
+
confluenceUserProperties?: Maybe<Array<Maybe<ConfluenceUserProperty>>>;
|
|
3194
3198
|
};
|
|
3195
3199
|
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3196
3200
|
id: Scalars['ID'];
|
|
@@ -3227,9 +3231,10 @@ export declare type ConfluenceQueryApiConfluenceUserPropertiesArgs = {
|
|
|
3227
3231
|
};
|
|
3228
3232
|
export declare type ConfluenceSpace = {
|
|
3229
3233
|
__typename?: 'ConfluenceSpace';
|
|
3234
|
+
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3235
|
+
createdDate?: Maybe<Scalars['String']>;
|
|
3230
3236
|
description?: Maybe<ConfluenceSpaceDescription>;
|
|
3231
|
-
|
|
3232
|
-
homepage?: Maybe<ConfluenceAbstractPage>;
|
|
3237
|
+
homepage?: Maybe<ConfluencePage>;
|
|
3233
3238
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
3234
3239
|
id: Scalars['ID'];
|
|
3235
3240
|
key?: Maybe<Scalars['String']>;
|
|
@@ -3246,11 +3251,6 @@ export declare type ConfluenceSpaceDescription = {
|
|
|
3246
3251
|
plain?: Maybe<Scalars['String']>;
|
|
3247
3252
|
view?: Maybe<Scalars['String']>;
|
|
3248
3253
|
};
|
|
3249
|
-
export declare type ConfluenceSpaceHistory = {
|
|
3250
|
-
__typename?: 'ConfluenceSpaceHistory';
|
|
3251
|
-
createdBy?: Maybe<ConfluenceUserInfo>;
|
|
3252
|
-
createdDate?: Maybe<Scalars['String']>;
|
|
3253
|
-
};
|
|
3254
3254
|
export declare type ConfluenceSpaceIcon = {
|
|
3255
3255
|
__typename?: 'ConfluenceSpaceIcon';
|
|
3256
3256
|
height?: Maybe<Scalars['Int']>;
|
|
@@ -3280,6 +3280,22 @@ export declare enum ConfluenceSpaceType {
|
|
|
3280
3280
|
Global = "GLOBAL",
|
|
3281
3281
|
Personal = "PERSONAL"
|
|
3282
3282
|
}
|
|
3283
|
+
export declare type ConfluenceTrashBlogPostInput = {
|
|
3284
|
+
id: Scalars['ID'];
|
|
3285
|
+
};
|
|
3286
|
+
export declare type ConfluenceTrashBlogPostPayload = Payload & {
|
|
3287
|
+
__typename?: 'ConfluenceTrashBlogPostPayload';
|
|
3288
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3289
|
+
success: Scalars['Boolean'];
|
|
3290
|
+
};
|
|
3291
|
+
export declare type ConfluenceTrashPageInput = {
|
|
3292
|
+
id: Scalars['ID'];
|
|
3293
|
+
};
|
|
3294
|
+
export declare type ConfluenceTrashPagePayload = Payload & {
|
|
3295
|
+
__typename?: 'ConfluenceTrashPagePayload';
|
|
3296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3297
|
+
success: Scalars['Boolean'];
|
|
3298
|
+
};
|
|
3283
3299
|
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3284
3300
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3285
3301
|
id: Scalars['ID'];
|
|
@@ -5030,7 +5046,8 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
5030
5046
|
name?: Maybe<Scalars['String']>;
|
|
5031
5047
|
avatar?: Maybe<DevOpsAvatar>;
|
|
5032
5048
|
};
|
|
5033
|
-
export declare type DevOpsTool = {
|
|
5049
|
+
export declare type DevOpsTool = Node & {
|
|
5050
|
+
__typename?: 'DevOpsTool';
|
|
5034
5051
|
id: Scalars['ID'];
|
|
5035
5052
|
name: Scalars['String'];
|
|
5036
5053
|
productKey: Scalars['String'];
|
|
@@ -5038,7 +5055,6 @@ export declare type DevOpsTool = {
|
|
|
5038
5055
|
group: DevOpsToolGroup;
|
|
5039
5056
|
supportsContainers: Scalars['Boolean'];
|
|
5040
5057
|
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5041
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5042
5058
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5043
5059
|
};
|
|
5044
5060
|
export declare type DevOpsToolNamespacesArgs = {
|
|
@@ -5046,23 +5062,6 @@ export declare type DevOpsToolNamespacesArgs = {
|
|
|
5046
5062
|
first?: Maybe<Scalars['Int']>;
|
|
5047
5063
|
after?: Maybe<Scalars['String']>;
|
|
5048
5064
|
};
|
|
5049
|
-
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
5050
|
-
__typename?: 'DevOpsToolAvailable';
|
|
5051
|
-
id: Scalars['ID'];
|
|
5052
|
-
name: Scalars['String'];
|
|
5053
|
-
productKey: Scalars['String'];
|
|
5054
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5055
|
-
group: DevOpsToolGroup;
|
|
5056
|
-
supportsContainers: Scalars['Boolean'];
|
|
5057
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5058
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5059
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5060
|
-
};
|
|
5061
|
-
export declare type DevOpsToolAvailableNamespacesArgs = {
|
|
5062
|
-
query?: Maybe<Scalars['String']>;
|
|
5063
|
-
first?: Maybe<Scalars['Int']>;
|
|
5064
|
-
after?: Maybe<Scalars['String']>;
|
|
5065
|
-
};
|
|
5066
5065
|
export declare type DevOpsToolAvatar = {
|
|
5067
5066
|
__typename?: 'DevOpsToolAvatar';
|
|
5068
5067
|
url: Scalars['URL'];
|
|
@@ -5075,11 +5074,6 @@ export declare type DevOpsToolBitbucketCreate = DevOpsToolContainerCreationSpeci
|
|
|
5075
5074
|
name: Scalars['String'];
|
|
5076
5075
|
};
|
|
5077
5076
|
export declare type DevOpsToolCanContainerBeCreated = DevOpsToolContainerCanBeCreated | DevOpsToolContainerNameConflict | DevOpsToolContainerKeyConflict | DevOpsToolContainerKeyCannotBeGenerated | DevOpsToolUnknownTool;
|
|
5078
|
-
export declare enum DevOpsToolCategory {
|
|
5079
|
-
Development = "DEVELOPMENT",
|
|
5080
|
-
Documentation = "DOCUMENTATION",
|
|
5081
|
-
Operations = "OPERATIONS"
|
|
5082
|
-
}
|
|
5083
5077
|
export declare type DevOpsToolConfluenceCreate = DevOpsToolContainerCreationSpecification & {
|
|
5084
5078
|
__typename?: 'DevOpsToolConfluenceCreate';
|
|
5085
5079
|
requestId: Scalars['String'];
|
|
@@ -5154,11 +5148,6 @@ export declare type DevOpsToolContainerNameConflict = {
|
|
|
5154
5148
|
__typename?: 'DevOpsToolContainerNameConflict';
|
|
5155
5149
|
name?: Maybe<Scalars['String']>;
|
|
5156
5150
|
};
|
|
5157
|
-
export declare enum DevOpsToolContainerType {
|
|
5158
|
-
Repository = "REPOSITORY",
|
|
5159
|
-
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
5160
|
-
OnCallSchedule = "ON_CALL_SCHEDULE"
|
|
5161
|
-
}
|
|
5162
5151
|
export declare type DevOpsToolEdge = {
|
|
5163
5152
|
__typename?: 'DevOpsToolEdge';
|
|
5164
5153
|
cursor: Scalars['String'];
|
|
@@ -5181,11 +5170,6 @@ export declare type DevOpsToolGroup = {
|
|
|
5181
5170
|
groupId: Scalars['String'];
|
|
5182
5171
|
groupName: Scalars['String'];
|
|
5183
5172
|
};
|
|
5184
|
-
export declare type DevOpsToolInstallationInfo = {
|
|
5185
|
-
__typename?: 'DevOpsToolInstallationInfo';
|
|
5186
|
-
oauthUrl?: Maybe<Scalars['URL']>;
|
|
5187
|
-
webUrl: Scalars['URL'];
|
|
5188
|
-
};
|
|
5189
5173
|
export declare type DevOpsToolNamespace = Node & {
|
|
5190
5174
|
__typename?: 'DevOpsToolNamespace';
|
|
5191
5175
|
id: Scalars['ID'];
|
|
@@ -5199,6 +5183,7 @@ export declare type DevOpsToolNamespaceContainersArgs = {
|
|
|
5199
5183
|
query?: Maybe<Scalars['String']>;
|
|
5200
5184
|
first?: Maybe<Scalars['Int']>;
|
|
5201
5185
|
after?: Maybe<Scalars['String']>;
|
|
5186
|
+
projectAri?: Maybe<Scalars['String']>;
|
|
5202
5187
|
};
|
|
5203
5188
|
export declare type DevOpsToolNamespaceConnection = {
|
|
5204
5189
|
__typename?: 'DevOpsToolNamespaceConnection';
|
|
@@ -5227,29 +5212,6 @@ export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecif
|
|
|
5227
5212
|
requestId: Scalars['String'];
|
|
5228
5213
|
name: Scalars['String'];
|
|
5229
5214
|
};
|
|
5230
|
-
export declare type DevOpsToolSupportedContainerType = {
|
|
5231
|
-
__typename?: 'DevOpsToolSupportedContainerType';
|
|
5232
|
-
category: DevOpsToolCategory;
|
|
5233
|
-
type: DevOpsToolContainerType;
|
|
5234
|
-
};
|
|
5235
|
-
export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
5236
|
-
__typename?: 'DevOpsToolUnavailable';
|
|
5237
|
-
id: Scalars['ID'];
|
|
5238
|
-
name: Scalars['String'];
|
|
5239
|
-
productKey: Scalars['String'];
|
|
5240
|
-
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5241
|
-
group: DevOpsToolGroup;
|
|
5242
|
-
supportsContainers: Scalars['Boolean'];
|
|
5243
|
-
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5244
|
-
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5245
|
-
install: DevOpsToolInstallationInfo;
|
|
5246
|
-
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
5247
|
-
};
|
|
5248
|
-
export declare type DevOpsToolUnavailableNamespacesArgs = {
|
|
5249
|
-
query?: Maybe<Scalars['String']>;
|
|
5250
|
-
first?: Maybe<Scalars['Int']>;
|
|
5251
|
-
after?: Maybe<Scalars['String']>;
|
|
5252
|
-
};
|
|
5253
5215
|
export declare type DevOpsToolUnknownTool = {
|
|
5254
5216
|
__typename?: 'DevOpsToolUnknownTool';
|
|
5255
5217
|
toolId?: Maybe<Scalars['String']>;
|
|
@@ -5278,6 +5240,9 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5278
5240
|
cloudId: Scalars['ID'];
|
|
5279
5241
|
first?: Maybe<Scalars['Int']>;
|
|
5280
5242
|
after?: Maybe<Scalars['String']>;
|
|
5243
|
+
recommended?: Maybe<Scalars['Boolean']>;
|
|
5244
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
5245
|
+
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5281
5246
|
};
|
|
5282
5247
|
export declare type DevOpsToolsToolArgs = {
|
|
5283
5248
|
id: Scalars['ID'];
|
|
@@ -5399,6 +5364,7 @@ export declare type EstimationBoardFeatureView = Node & {
|
|
|
5399
5364
|
status?: Maybe<Scalars['String']>;
|
|
5400
5365
|
canEnable?: Maybe<Scalars['Boolean']>;
|
|
5401
5366
|
learnMoreLink?: Maybe<Scalars['String']>;
|
|
5367
|
+
learnMoreArticleId?: Maybe<Scalars['String']>;
|
|
5402
5368
|
imageUri?: Maybe<Scalars['String']>;
|
|
5403
5369
|
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
5404
5370
|
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
@@ -5445,6 +5411,7 @@ export declare type Extension = {
|
|
|
5445
5411
|
appOwner?: Maybe<User>;
|
|
5446
5412
|
appVersion?: Maybe<Scalars['String']>;
|
|
5447
5413
|
properties: Scalars['JSON'];
|
|
5414
|
+
migrationKey?: Maybe<Scalars['String']>;
|
|
5448
5415
|
license?: Maybe<AppInstallationLicense>;
|
|
5449
5416
|
egress?: Maybe<Array<AppNetworkEgressPermissionExtension>>;
|
|
5450
5417
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermissionExtension>>;
|
|
@@ -5670,6 +5637,134 @@ export declare enum GrantCheckProduct {
|
|
|
5670
5637
|
Compass = "COMPASS",
|
|
5671
5638
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
5672
5639
|
}
|
|
5640
|
+
export declare type HelpCenter = {
|
|
5641
|
+
__typename?: 'HelpCenter';
|
|
5642
|
+
helpCenterId: Scalars['ID'];
|
|
5643
|
+
collections?: Maybe<Array<HelpCenterCollection>>;
|
|
5644
|
+
};
|
|
5645
|
+
export declare type HelpCenterBulkCreateCollectionsInput = {
|
|
5646
|
+
helpCenterCreateCollectionInputItem: Array<HelpCenterCreateCollectionInput>;
|
|
5647
|
+
};
|
|
5648
|
+
export declare type HelpCenterBulkDeleteCollectionInput = {
|
|
5649
|
+
helpCenterCollectionDeleteInput: Array<HelpCenterCollectionDeleteInput>;
|
|
5650
|
+
};
|
|
5651
|
+
export declare type HelpCenterBulkUpdateCollectionInput = {
|
|
5652
|
+
helpCenterUpdateCollectionInputItem: Array<HelpCenterUpdateCollectionInput>;
|
|
5653
|
+
};
|
|
5654
|
+
export declare type HelpCenterCollection = {
|
|
5655
|
+
__typename?: 'HelpCenterCollection';
|
|
5656
|
+
collectionId: Scalars['ID'];
|
|
5657
|
+
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
5658
|
+
name: Scalars['String'];
|
|
5659
|
+
description?: Maybe<Scalars['String']>;
|
|
5660
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5661
|
+
};
|
|
5662
|
+
export declare type HelpCenterCollectionItemsArgs = {
|
|
5663
|
+
first?: Maybe<Scalars['Int']>;
|
|
5664
|
+
after?: Maybe<Scalars['String']>;
|
|
5665
|
+
last?: Maybe<Scalars['Int']>;
|
|
5666
|
+
before?: Maybe<Scalars['String']>;
|
|
5667
|
+
};
|
|
5668
|
+
export declare type HelpCenterCollectionDeleteInput = {
|
|
5669
|
+
helpCenterId: Scalars['ID'];
|
|
5670
|
+
collectionId: Scalars['ID'];
|
|
5671
|
+
};
|
|
5672
|
+
export declare type HelpCenterCollectionItem = {
|
|
5673
|
+
__typename?: 'HelpCenterCollectionItem';
|
|
5674
|
+
ari: Scalars['ID'];
|
|
5675
|
+
};
|
|
5676
|
+
export declare type HelpCenterCollectionItemConnection = {
|
|
5677
|
+
__typename?: 'HelpCenterCollectionItemConnection';
|
|
5678
|
+
edges?: Maybe<Array<Maybe<HelpCenterCollectionItemEdge>>>;
|
|
5679
|
+
nodes?: Maybe<Array<Maybe<HelpCenterCollectionItem>>>;
|
|
5680
|
+
pageInfo: PageInfo;
|
|
5681
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5682
|
+
};
|
|
5683
|
+
export declare type HelpCenterCollectionItemEdge = {
|
|
5684
|
+
__typename?: 'HelpCenterCollectionItemEdge';
|
|
5685
|
+
cursor: Scalars['String'];
|
|
5686
|
+
node?: Maybe<HelpCenterCollectionItem>;
|
|
5687
|
+
};
|
|
5688
|
+
export declare type HelpCenterCollectionItemInput = {
|
|
5689
|
+
ari: Scalars['ID'];
|
|
5690
|
+
};
|
|
5691
|
+
export declare type HelpCenterCollectionResult = HelpCenterCollection | HelpCenterQueryErrors;
|
|
5692
|
+
export declare type HelpCenterCreateCollectionInput = {
|
|
5693
|
+
helpCenterId: Scalars['ID'];
|
|
5694
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5695
|
+
name: Scalars['String'];
|
|
5696
|
+
description?: Maybe<Scalars['String']>;
|
|
5697
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5698
|
+
};
|
|
5699
|
+
export declare type HelpCenterCreateCollectionPayload = Payload & {
|
|
5700
|
+
__typename?: 'HelpCenterCreateCollectionPayload';
|
|
5701
|
+
success: Scalars['Boolean'];
|
|
5702
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5703
|
+
successfullyCreatedCollectionIds: Array<Maybe<HelpCenterSuccessfullyCreatedCollectionIds>>;
|
|
5704
|
+
};
|
|
5705
|
+
export declare type HelpCenterDeleteUpdateCollectionPayload = Payload & {
|
|
5706
|
+
__typename?: 'HelpCenterDeleteUpdateCollectionPayload';
|
|
5707
|
+
success: Scalars['Boolean'];
|
|
5708
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5709
|
+
};
|
|
5710
|
+
export declare type HelpCenterMutationApi = {
|
|
5711
|
+
__typename?: 'HelpCenterMutationApi';
|
|
5712
|
+
createCollection: HelpCenterCreateCollectionPayload;
|
|
5713
|
+
updateCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5714
|
+
updateCollectionsOrder: HelpCenterUpdateCollectionsOrderPayload;
|
|
5715
|
+
deleteCollection: HelpCenterDeleteUpdateCollectionPayload;
|
|
5716
|
+
};
|
|
5717
|
+
export declare type HelpCenterMutationApiCreateCollectionArgs = {
|
|
5718
|
+
input: HelpCenterBulkCreateCollectionsInput;
|
|
5719
|
+
};
|
|
5720
|
+
export declare type HelpCenterMutationApiUpdateCollectionArgs = {
|
|
5721
|
+
input: HelpCenterBulkUpdateCollectionInput;
|
|
5722
|
+
};
|
|
5723
|
+
export declare type HelpCenterMutationApiUpdateCollectionsOrderArgs = {
|
|
5724
|
+
input: HelpCenterUpdateCollectionsOrderInput;
|
|
5725
|
+
};
|
|
5726
|
+
export declare type HelpCenterMutationApiDeleteCollectionArgs = {
|
|
5727
|
+
input: HelpCenterBulkDeleteCollectionInput;
|
|
5728
|
+
};
|
|
5729
|
+
export declare type HelpCenterQueryApi = {
|
|
5730
|
+
__typename?: 'HelpCenterQueryApi';
|
|
5731
|
+
helpCenter: HelpCenterQueryResult;
|
|
5732
|
+
helpCenterCollection: HelpCenterCollectionResult;
|
|
5733
|
+
};
|
|
5734
|
+
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
5735
|
+
helpCenterId: Scalars['ID'];
|
|
5736
|
+
};
|
|
5737
|
+
export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
5738
|
+
helpCenterId: Scalars['ID'];
|
|
5739
|
+
collectionId: Scalars['ID'];
|
|
5740
|
+
};
|
|
5741
|
+
export declare type HelpCenterQueryErrors = {
|
|
5742
|
+
__typename?: 'HelpCenterQueryErrors';
|
|
5743
|
+
errors?: Maybe<Array<QueryError>>;
|
|
5744
|
+
};
|
|
5745
|
+
export declare type HelpCenterQueryResult = HelpCenter | HelpCenterQueryErrors;
|
|
5746
|
+
export declare type HelpCenterSuccessfullyCreatedCollectionIds = {
|
|
5747
|
+
__typename?: 'HelpCenterSuccessfullyCreatedCollectionIds';
|
|
5748
|
+
helpCenterId: Scalars['ID'];
|
|
5749
|
+
collectionIds: Scalars['ID'];
|
|
5750
|
+
};
|
|
5751
|
+
export declare type HelpCenterUpdateCollectionInput = {
|
|
5752
|
+
helpCenterId: Scalars['ID'];
|
|
5753
|
+
collectionId: Scalars['ID'];
|
|
5754
|
+
items: Array<HelpCenterCollectionItemInput>;
|
|
5755
|
+
name: Scalars['String'];
|
|
5756
|
+
description?: Maybe<Scalars['String']>;
|
|
5757
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
5758
|
+
};
|
|
5759
|
+
export declare type HelpCenterUpdateCollectionsOrderInput = {
|
|
5760
|
+
helpCenterId: Scalars['ID'];
|
|
5761
|
+
collectionIds: Array<Scalars['ID']>;
|
|
5762
|
+
};
|
|
5763
|
+
export declare type HelpCenterUpdateCollectionsOrderPayload = Payload & {
|
|
5764
|
+
__typename?: 'HelpCenterUpdateCollectionsOrderPayload';
|
|
5765
|
+
success: Scalars['Boolean'];
|
|
5766
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5767
|
+
};
|
|
5673
5768
|
export declare type HostedResourcePreSignedUrl = {
|
|
5674
5769
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
5675
5770
|
uploadUrl: Scalars['String'];
|
|
@@ -6074,6 +6169,15 @@ export declare type JiraAdf = {
|
|
|
6074
6169
|
__typename?: 'JiraADF';
|
|
6075
6170
|
json?: Maybe<Scalars['JSON']>;
|
|
6076
6171
|
};
|
|
6172
|
+
export declare type JiraAddIssuesToFixVersionInput = {
|
|
6173
|
+
issueIds: Array<Scalars['ID']>;
|
|
6174
|
+
versionId: Scalars['ID'];
|
|
6175
|
+
};
|
|
6176
|
+
export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
6177
|
+
__typename?: 'JiraAddIssuesToFixVersionPayload';
|
|
6178
|
+
success: Scalars['Boolean'];
|
|
6179
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6180
|
+
};
|
|
6077
6181
|
export declare type JiraAffectedService = {
|
|
6078
6182
|
__typename?: 'JiraAffectedService';
|
|
6079
6183
|
serviceId?: Maybe<Scalars['String']>;
|
|
@@ -6597,6 +6701,7 @@ export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfi
|
|
|
6597
6701
|
};
|
|
6598
6702
|
export declare type JiraComment = {
|
|
6599
6703
|
commentId: Scalars['ID'];
|
|
6704
|
+
issue?: Maybe<JiraIssue>;
|
|
6600
6705
|
webUrl?: Maybe<Scalars['URL']>;
|
|
6601
6706
|
author?: Maybe<User>;
|
|
6602
6707
|
updateAuthor?: Maybe<User>;
|
|
@@ -6605,6 +6710,10 @@ export declare type JiraComment = {
|
|
|
6605
6710
|
updated?: Maybe<Scalars['DateTime']>;
|
|
6606
6711
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
6607
6712
|
};
|
|
6713
|
+
export declare type JiraCommentByIdInput = {
|
|
6714
|
+
issueId: Scalars['ID'];
|
|
6715
|
+
id: Scalars['ID'];
|
|
6716
|
+
};
|
|
6608
6717
|
export declare type JiraCommentConnection = {
|
|
6609
6718
|
__typename?: 'JiraCommentConnection';
|
|
6610
6719
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -6792,7 +6901,7 @@ export declare type JiraDevOpsBranchDetails = {
|
|
|
6792
6901
|
providerBranchId?: Maybe<Scalars['String']>;
|
|
6793
6902
|
entityUrl?: Maybe<Scalars['URL']>;
|
|
6794
6903
|
name?: Maybe<Scalars['String']>;
|
|
6795
|
-
|
|
6904
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
6796
6905
|
};
|
|
6797
6906
|
export declare type JiraDevOpsCommitDetails = {
|
|
6798
6907
|
__typename?: 'JiraDevOpsCommitDetails';
|
|
@@ -6802,6 +6911,8 @@ export declare type JiraDevOpsCommitDetails = {
|
|
|
6802
6911
|
name?: Maybe<Scalars['String']>;
|
|
6803
6912
|
created?: Maybe<Scalars['DateTime']>;
|
|
6804
6913
|
author?: Maybe<JiraDevOpsEntityAuthor>;
|
|
6914
|
+
isMergeCommit?: Maybe<Scalars['Boolean']>;
|
|
6915
|
+
scmRepository?: Maybe<JiraScmRepository>;
|
|
6805
6916
|
};
|
|
6806
6917
|
export declare type JiraDevOpsEntityAuthor = {
|
|
6807
6918
|
__typename?: 'JiraDevOpsEntityAuthor';
|
|
@@ -8492,6 +8603,7 @@ export declare type JiraMutation = {
|
|
|
8492
8603
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
8493
8604
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
8494
8605
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
8606
|
+
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
8495
8607
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
8496
8608
|
};
|
|
8497
8609
|
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
@@ -8512,6 +8624,9 @@ export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
|
8512
8624
|
export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
|
|
8513
8625
|
input: JiraPermissionSchemeRemoveGrantInput;
|
|
8514
8626
|
};
|
|
8627
|
+
export declare type JiraMutationAddIssuesToFixVersionArgs = {
|
|
8628
|
+
input: JiraAddIssuesToFixVersionInput;
|
|
8629
|
+
};
|
|
8515
8630
|
export declare type JiraMutationUpdateVersionWarningConfigArgs = {
|
|
8516
8631
|
input: JiraUpdateVersionWarningConfigInput;
|
|
8517
8632
|
};
|
|
@@ -8886,6 +9001,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
8886
9001
|
__typename?: 'JiraPlatformComment';
|
|
8887
9002
|
id: Scalars['ID'];
|
|
8888
9003
|
commentId: Scalars['ID'];
|
|
9004
|
+
issue?: Maybe<JiraIssue>;
|
|
8889
9005
|
webUrl?: Maybe<Scalars['URL']>;
|
|
8890
9006
|
author?: Maybe<User>;
|
|
8891
9007
|
updateAuthor?: Maybe<User>;
|
|
@@ -9229,8 +9345,10 @@ export declare type JiraQuery = {
|
|
|
9229
9345
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
9230
9346
|
issueByKey?: Maybe<JiraIssue>;
|
|
9231
9347
|
issueById?: Maybe<JiraIssue>;
|
|
9348
|
+
issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
9232
9349
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
9233
9350
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
9351
|
+
commentsById?: Maybe<Array<Maybe<JiraComment>>>;
|
|
9234
9352
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
9235
9353
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
9236
9354
|
filter?: Maybe<JiraFilter>;
|
|
@@ -9306,12 +9424,18 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
9306
9424
|
export declare type JiraQueryIssueByIdArgs = {
|
|
9307
9425
|
id: Scalars['ID'];
|
|
9308
9426
|
};
|
|
9427
|
+
export declare type JiraQueryIssuesByIdArgs = {
|
|
9428
|
+
ids: Array<Scalars['ID']>;
|
|
9429
|
+
};
|
|
9309
9430
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
9310
9431
|
issueId: Scalars['ID'];
|
|
9311
9432
|
};
|
|
9312
9433
|
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
9313
9434
|
issueKey: Scalars['String'];
|
|
9314
9435
|
};
|
|
9436
|
+
export declare type JiraQueryCommentsByIdArgs = {
|
|
9437
|
+
input: Array<JiraCommentByIdInput>;
|
|
9438
|
+
};
|
|
9315
9439
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
9316
9440
|
cloudId: Scalars['ID'];
|
|
9317
9441
|
keys: Array<Scalars['String']>;
|
|
@@ -9622,6 +9746,11 @@ export declare type JiraRoleEdge = {
|
|
|
9622
9746
|
node?: Maybe<JiraRole>;
|
|
9623
9747
|
cursor: Scalars['String'];
|
|
9624
9748
|
};
|
|
9749
|
+
export declare type JiraScmRepository = {
|
|
9750
|
+
__typename?: 'JiraScmRepository';
|
|
9751
|
+
name?: Maybe<Scalars['String']>;
|
|
9752
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
9753
|
+
};
|
|
9625
9754
|
export declare type JiraSecurityLevel = Node & {
|
|
9626
9755
|
__typename?: 'JiraSecurityLevel';
|
|
9627
9756
|
id: Scalars['ID'];
|
|
@@ -9792,6 +9921,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
9792
9921
|
__typename?: 'JiraServiceManagementComment';
|
|
9793
9922
|
id: Scalars['ID'];
|
|
9794
9923
|
commentId: Scalars['ID'];
|
|
9924
|
+
issue?: Maybe<JiraIssue>;
|
|
9795
9925
|
webUrl?: Maybe<Scalars['URL']>;
|
|
9796
9926
|
author?: Maybe<User>;
|
|
9797
9927
|
updateAuthor?: Maybe<User>;
|
|
@@ -11277,6 +11407,7 @@ export declare type Mutation = {
|
|
|
11277
11407
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
11278
11408
|
deleteAppEnvironmentVariable?: Maybe<DeleteAppEnvironmentVariablePayload>;
|
|
11279
11409
|
createAppDeployment?: Maybe<CreateAppDeploymentResponse>;
|
|
11410
|
+
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
11280
11411
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
11281
11412
|
deleteConfluenceSpaceRelationshipsForJiraProject?: Maybe<JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectPayload>;
|
|
11282
11413
|
};
|
|
@@ -13022,6 +13153,7 @@ export declare type Query = {
|
|
|
13022
13153
|
marketplaceUser?: Maybe<MarketplaceUser>;
|
|
13023
13154
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
13024
13155
|
appDeployment?: Maybe<AppDeployment>;
|
|
13156
|
+
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
13025
13157
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
13026
13158
|
extensionsEcho?: Maybe<Scalars['String']>;
|
|
13027
13159
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
@@ -13350,7 +13482,11 @@ export declare type RankingDiffPayload = {
|
|
|
13350
13482
|
};
|
|
13351
13483
|
export declare enum RateLimitingCurrency {
|
|
13352
13484
|
TestingService = "TESTING_SERVICE",
|
|
13485
|
+
DevopsContainerRelationshipsReadCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_READ_CURRENCY",
|
|
13486
|
+
DevopsContainerRelationshipsWriteCurrency = "DEVOPS_CONTAINER_RELATIONSHIPS_WRITE_CURRENCY",
|
|
13353
13487
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
13488
|
+
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
13489
|
+
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
13354
13490
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
13355
13491
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
13356
13492
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY"
|
|
@@ -13498,6 +13634,11 @@ export declare type RoadmapConfiguration = {
|
|
|
13498
13634
|
userConfiguration?: Maybe<RoadmapUserConfiguration>;
|
|
13499
13635
|
boardConfiguration?: Maybe<RoadmapBoardConfiguration>;
|
|
13500
13636
|
};
|
|
13637
|
+
export declare type RoadmapContent = {
|
|
13638
|
+
__typename?: 'RoadmapContent';
|
|
13639
|
+
configuration: RoadmapConfiguration;
|
|
13640
|
+
items: RoadmapItemConnection;
|
|
13641
|
+
};
|
|
13501
13642
|
export declare type RoadmapCreationPreferences = {
|
|
13502
13643
|
__typename?: 'RoadmapCreationPreferences';
|
|
13503
13644
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -13514,6 +13655,9 @@ export declare type RoadmapDetails = {
|
|
|
13514
13655
|
roadmapConfiguration?: Maybe<RoadmapConfiguration>;
|
|
13515
13656
|
roadmapItems?: Maybe<RoadmapItemConnection>;
|
|
13516
13657
|
metadata?: Maybe<RoadmapMetadata>;
|
|
13658
|
+
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13659
|
+
healthcheck?: Maybe<RoadmapHealthCheck>;
|
|
13660
|
+
content?: Maybe<RoadmapContent>;
|
|
13517
13661
|
};
|
|
13518
13662
|
export declare enum RoadmapEpicView {
|
|
13519
13663
|
All = "ALL",
|
|
@@ -13550,6 +13694,24 @@ export declare type RoadmapFilterConfiguration = {
|
|
|
13550
13694
|
__typename?: 'RoadmapFilterConfiguration';
|
|
13551
13695
|
quickFilters?: Maybe<Array<RoadmapQuickFilter>>;
|
|
13552
13696
|
};
|
|
13697
|
+
export declare type RoadmapHealthCheck = {
|
|
13698
|
+
__typename?: 'RoadmapHealthCheck';
|
|
13699
|
+
title: Scalars['String'];
|
|
13700
|
+
explanation: Scalars['String'];
|
|
13701
|
+
learnMore: RoadmapHealthCheckLink;
|
|
13702
|
+
resolution?: Maybe<RoadmapHealthCheckResolution>;
|
|
13703
|
+
};
|
|
13704
|
+
export declare type RoadmapHealthCheckLink = {
|
|
13705
|
+
__typename?: 'RoadmapHealthCheckLink';
|
|
13706
|
+
text: Scalars['String'];
|
|
13707
|
+
url: Scalars['String'];
|
|
13708
|
+
};
|
|
13709
|
+
export declare type RoadmapHealthCheckResolution = {
|
|
13710
|
+
__typename?: 'RoadmapHealthCheckResolution';
|
|
13711
|
+
label: Scalars['String'];
|
|
13712
|
+
actionId: Scalars['ID'];
|
|
13713
|
+
fallbackMessage: Scalars['String'];
|
|
13714
|
+
};
|
|
13553
13715
|
export declare type RoadmapItem = {
|
|
13554
13716
|
__typename?: 'RoadmapItem';
|
|
13555
13717
|
id: Scalars['ID'];
|
|
@@ -13902,6 +14064,8 @@ export declare enum Scope {
|
|
|
13902
14064
|
WriteConfluenceSpacePermission = "WRITE_CONFLUENCE_SPACE_PERMISSION",
|
|
13903
14065
|
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
13904
14066
|
WriteConfluenceSpaceProperty = "WRITE_CONFLUENCE_SPACE_PROPERTY",
|
|
14067
|
+
ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
|
|
14068
|
+
WriteConfluenceUserProperty = "WRITE_CONFLUENCE_USER_PROPERTY",
|
|
13905
14069
|
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
13906
14070
|
WriteConfluenceSpaceSetting = "WRITE_CONFLUENCE_SPACE_SETTING",
|
|
13907
14071
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
@@ -14145,7 +14309,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
14145
14309
|
};
|
|
14146
14310
|
export declare type ShepherdAlert = {
|
|
14147
14311
|
__typename?: 'ShepherdAlert';
|
|
14148
|
-
|
|
14312
|
+
assignee?: Maybe<ShepherdUser>;
|
|
14149
14313
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14150
14314
|
createdOn: Scalars['DateTime'];
|
|
14151
14315
|
id: Scalars['ID'];
|
|
@@ -14182,6 +14346,7 @@ export declare type ShepherdAppInfo = {
|
|
|
14182
14346
|
loginUrl: Scalars['String'];
|
|
14183
14347
|
};
|
|
14184
14348
|
export declare type ShepherdCreateAlertInput = {
|
|
14349
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
14185
14350
|
cloudId?: Maybe<Scalars['ID']>;
|
|
14186
14351
|
orgId: Scalars['ID'];
|
|
14187
14352
|
status?: Maybe<ShepherdAlertStatus>;
|
|
@@ -14193,6 +14358,10 @@ export declare type ShepherdCreateAlertPayload = Payload & {
|
|
|
14193
14358
|
node?: Maybe<ShepherdAlert>;
|
|
14194
14359
|
success: Scalars['Boolean'];
|
|
14195
14360
|
};
|
|
14361
|
+
export declare type ShepherdCreateEmailInput = {
|
|
14362
|
+
email?: Maybe<Scalars['String']>;
|
|
14363
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14364
|
+
};
|
|
14196
14365
|
export declare type ShepherdCreateOrganizationInput = {
|
|
14197
14366
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14198
14367
|
id: Scalars['ID'];
|
|
@@ -14203,6 +14372,40 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
|
14203
14372
|
node?: Maybe<ShepherdOrganization>;
|
|
14204
14373
|
success: Scalars['Boolean'];
|
|
14205
14374
|
};
|
|
14375
|
+
export declare type ShepherdCreateSubscriptionInput = {
|
|
14376
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14377
|
+
orgId: Scalars['ID'];
|
|
14378
|
+
webhook?: Maybe<ShepherdCreateWebhookInput>;
|
|
14379
|
+
};
|
|
14380
|
+
export declare type ShepherdCreateSubscriptionPayload = Payload & {
|
|
14381
|
+
__typename?: 'ShepherdCreateSubscriptionPayload';
|
|
14382
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14383
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14384
|
+
success: Scalars['Boolean'];
|
|
14385
|
+
};
|
|
14386
|
+
export declare type ShepherdCreateWebhookInput = {
|
|
14387
|
+
authToken?: Maybe<Scalars['String']>;
|
|
14388
|
+
callbackURL: Scalars['URL'];
|
|
14389
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14390
|
+
};
|
|
14391
|
+
export declare type ShepherdEmailConnection = {
|
|
14392
|
+
__typename?: 'ShepherdEmailConnection';
|
|
14393
|
+
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
14394
|
+
};
|
|
14395
|
+
export declare type ShepherdEmailEdge = {
|
|
14396
|
+
__typename?: 'ShepherdEmailEdge';
|
|
14397
|
+
node?: Maybe<ShepherdEmailSubscription>;
|
|
14398
|
+
};
|
|
14399
|
+
export declare type ShepherdEmailSubscription = ShepherdSubscription & {
|
|
14400
|
+
__typename?: 'ShepherdEmailSubscription';
|
|
14401
|
+
createdBy: Scalars['String'];
|
|
14402
|
+
createdOn: Scalars['DateTime'];
|
|
14403
|
+
email: Scalars['String'];
|
|
14404
|
+
id: Scalars['ID'];
|
|
14405
|
+
status: ShepherdSubscriptionStatus;
|
|
14406
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14407
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14408
|
+
};
|
|
14206
14409
|
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
14207
14410
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
14208
14411
|
errorType?: Maybe<Scalars['String']>;
|
|
@@ -14213,8 +14416,10 @@ export declare type ShepherdMutation = {
|
|
|
14213
14416
|
__typename?: 'ShepherdMutation';
|
|
14214
14417
|
createAlert?: Maybe<ShepherdCreateAlertPayload>;
|
|
14215
14418
|
createOrganization?: Maybe<ShepherdCreateOrganizationPayload>;
|
|
14419
|
+
createSubscription?: Maybe<ShepherdCreateSubscriptionPayload>;
|
|
14216
14420
|
updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
|
|
14217
14421
|
updateOrganization?: Maybe<ShepherdUpdateOrganizationPayload>;
|
|
14422
|
+
updateSubscription?: Maybe<ShepherdUpdateSubscriptionPayload>;
|
|
14218
14423
|
};
|
|
14219
14424
|
export declare type ShepherdMutationCreateAlertArgs = {
|
|
14220
14425
|
input: ShepherdCreateAlertInput;
|
|
@@ -14222,6 +14427,9 @@ export declare type ShepherdMutationCreateAlertArgs = {
|
|
|
14222
14427
|
export declare type ShepherdMutationCreateOrganizationArgs = {
|
|
14223
14428
|
input: ShepherdCreateOrganizationInput;
|
|
14224
14429
|
};
|
|
14430
|
+
export declare type ShepherdMutationCreateSubscriptionArgs = {
|
|
14431
|
+
input: ShepherdCreateSubscriptionInput;
|
|
14432
|
+
};
|
|
14225
14433
|
export declare type ShepherdMutationUpdateAlertArgs = {
|
|
14226
14434
|
id: Scalars['ID'];
|
|
14227
14435
|
input: ShepherdUpdateAlertInput;
|
|
@@ -14230,19 +14438,25 @@ export declare type ShepherdMutationUpdateOrganizationArgs = {
|
|
|
14230
14438
|
id: Scalars['ID'];
|
|
14231
14439
|
input: ShepherdUpdateOrganizationInput;
|
|
14232
14440
|
};
|
|
14441
|
+
export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
14442
|
+
id: Scalars['ID'];
|
|
14443
|
+
input: ShepherdUpdateSubscriptionInput;
|
|
14444
|
+
};
|
|
14233
14445
|
export declare type ShepherdOrganization = {
|
|
14234
14446
|
__typename?: 'ShepherdOrganization';
|
|
14235
14447
|
createdOn: Scalars['DateTime'];
|
|
14236
14448
|
enabled: Scalars['Boolean'];
|
|
14237
14449
|
id: Scalars['ID'];
|
|
14450
|
+
subscriptions?: Maybe<ShepherdSubscriptionsResult>;
|
|
14238
14451
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14239
14452
|
};
|
|
14453
|
+
export declare type ShepherdOrganizationResult = QueryError | ShepherdOrganization;
|
|
14240
14454
|
export declare type ShepherdQuery = {
|
|
14241
14455
|
__typename?: 'ShepherdQuery';
|
|
14242
14456
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
14243
14457
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
14244
14458
|
shepherdAppInfo: ShepherdAppInfo;
|
|
14245
|
-
shepherdOrganization?: Maybe<
|
|
14459
|
+
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
14246
14460
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
14247
14461
|
};
|
|
14248
14462
|
export declare type ShepherdQueryShepherdAlertArgs = {
|
|
@@ -14258,7 +14472,21 @@ export declare enum ShepherdQueryErrorType {
|
|
|
14258
14472
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
14259
14473
|
Unauthorized = "UNAUTHORIZED"
|
|
14260
14474
|
}
|
|
14475
|
+
export declare type ShepherdSubscription = {
|
|
14476
|
+
createdBy: Scalars['String'];
|
|
14477
|
+
createdOn: Scalars['DateTime'];
|
|
14478
|
+
id: Scalars['ID'];
|
|
14479
|
+
status: ShepherdSubscriptionStatus;
|
|
14480
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14481
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14482
|
+
};
|
|
14483
|
+
export declare enum ShepherdSubscriptionStatus {
|
|
14484
|
+
Active = "ACTIVE",
|
|
14485
|
+
Inactive = "INACTIVE"
|
|
14486
|
+
}
|
|
14487
|
+
export declare type ShepherdSubscriptionsResult = ShepherdEmailConnection | ShepherdWebhookConnection;
|
|
14261
14488
|
export declare type ShepherdUpdateAlertInput = {
|
|
14489
|
+
assignee?: Maybe<Scalars['ID']>;
|
|
14262
14490
|
status?: Maybe<ShepherdAlertStatus>;
|
|
14263
14491
|
};
|
|
14264
14492
|
export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
@@ -14267,6 +14495,10 @@ export declare type ShepherdUpdateAlertPayload = Payload & {
|
|
|
14267
14495
|
node?: Maybe<ShepherdAlert>;
|
|
14268
14496
|
success: Scalars['Boolean'];
|
|
14269
14497
|
};
|
|
14498
|
+
export declare type ShepherdUpdateEmailInput = {
|
|
14499
|
+
email?: Maybe<ShepherdCreateEmailInput>;
|
|
14500
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14501
|
+
};
|
|
14270
14502
|
export declare type ShepherdUpdateOrganizationInput = {
|
|
14271
14503
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
14272
14504
|
};
|
|
@@ -14276,10 +14508,44 @@ export declare type ShepherdUpdateOrganizationPayload = Payload & {
|
|
|
14276
14508
|
node?: Maybe<ShepherdOrganization>;
|
|
14277
14509
|
success: Scalars['Boolean'];
|
|
14278
14510
|
};
|
|
14511
|
+
export declare type ShepherdUpdateSubscriptionInput = {
|
|
14512
|
+
email?: Maybe<ShepherdUpdateEmailInput>;
|
|
14513
|
+
orgId: Scalars['ID'];
|
|
14514
|
+
webhook?: Maybe<ShepherdUpdateWebhookInput>;
|
|
14515
|
+
};
|
|
14516
|
+
export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
14517
|
+
__typename?: 'ShepherdUpdateSubscriptionPayload';
|
|
14518
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14519
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14520
|
+
success: Scalars['Boolean'];
|
|
14521
|
+
};
|
|
14522
|
+
export declare type ShepherdUpdateWebhookInput = {
|
|
14523
|
+
callbackURL?: Maybe<Scalars['URL']>;
|
|
14524
|
+
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14525
|
+
};
|
|
14279
14526
|
export declare type ShepherdUser = {
|
|
14280
14527
|
__typename?: 'ShepherdUser';
|
|
14281
14528
|
user?: Maybe<User>;
|
|
14282
14529
|
};
|
|
14530
|
+
export declare type ShepherdWebhookConnection = {
|
|
14531
|
+
__typename?: 'ShepherdWebhookConnection';
|
|
14532
|
+
edges?: Maybe<Array<Maybe<ShepherdWebhookEdge>>>;
|
|
14533
|
+
};
|
|
14534
|
+
export declare type ShepherdWebhookEdge = {
|
|
14535
|
+
__typename?: 'ShepherdWebhookEdge';
|
|
14536
|
+
node?: Maybe<ShepherdWebhookSubscription>;
|
|
14537
|
+
};
|
|
14538
|
+
export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
14539
|
+
__typename?: 'ShepherdWebhookSubscription';
|
|
14540
|
+
authToken: Scalars['String'];
|
|
14541
|
+
callbackURL: Scalars['String'];
|
|
14542
|
+
createdBy: Scalars['String'];
|
|
14543
|
+
createdOn: Scalars['DateTime'];
|
|
14544
|
+
id: Scalars['ID'];
|
|
14545
|
+
status: ShepherdSubscriptionStatus;
|
|
14546
|
+
updatedBy?: Maybe<Scalars['String']>;
|
|
14547
|
+
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14548
|
+
};
|
|
14283
14549
|
export declare type SoftwareBoard = {
|
|
14284
14550
|
__typename?: 'SoftwareBoard';
|
|
14285
14551
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -14761,10 +15027,7 @@ export declare type SupportRequestUsers = {
|
|
|
14761
15027
|
};
|
|
14762
15028
|
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
14763
15029
|
query?: Maybe<Scalars['String']>;
|
|
14764
|
-
|
|
14765
|
-
maxResults?: Maybe<Scalars['Int']>;
|
|
14766
|
-
includeActive?: Maybe<Scalars['Boolean']>;
|
|
14767
|
-
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
15030
|
+
requestKey?: Maybe<Scalars['String']>;
|
|
14768
15031
|
};
|
|
14769
15032
|
export declare type SupportRequests = {
|
|
14770
15033
|
__typename?: 'SupportRequests';
|